diff --git a/Docs/Tools/GenPlot.py b/Docs/Tools/GenPlot.py deleted file mode 100644 index bea0e098aa..0000000000 --- a/Docs/Tools/GenPlot.py +++ /dev/null @@ -1,78 +0,0 @@ -import json -import sys -from datetime import datetime -from matplotlib import pyplot - - -def pyplot_init(): - pyplot.close('all') - pyplot.figure(figsize=(14, 8), dpi=200) - pyplot.xticks(rotation='vertical') - pyplot.grid() - - -def genKeys(data, type): - keys = map(lambda kv: kv["key"], data) - if type == "date": - keys = map(lambda key: datetime.strptime(key, "%Y-%m-%dT%H:%M:%S.000Z"), keys) - return list(keys) - - -def createPie(options): - data = options["plot"]["count"] - keys = genKeys(data, options["interpetKeysAs"]) - values = list(map(lambda kv: kv["value"], data)) - - total = sum(map(lambda kv: kv["value"], data)) - first_pct = data[0]["value"] / total - - pyplot_init() - pyplot.pie(values, labels=keys, startangle=(90 - 360 * first_pct / 2)) - - -def createBar(options): - data = options["plot"]["count"] - keys = genKeys(data, options["interpetKeysAs"]) - values = list(map(lambda kv: kv["value"], data)) - - color = None - if "color" in options["plot"]: - color = options["plot"]["color"] - pyplot.bar(keys, values, label=options["name"], color=color) - 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 -names = [] -while (True): - line = sys.stdin.readline() - if line == "" or line == "\n": - if (len(names) > 1): - pyplot.legend(loc="upper left", ncol=3) - pyplot.savefig(title + ".png", dpi=400, facecolor='w', edgecolor='w', - bbox_inches='tight') - break - - options = json.loads(line) - print("Creating " + options["plot"]["type"] + " '" + options["name"] + "'") - names.append(options["name"]) - if (options["plot"]["type"] == "pie"): - 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") diff --git a/Docs/Tools/GenerateSeries.ts b/Docs/Tools/GenerateSeries.ts index 07d4a8ab98..d77f79bbd0 100644 --- a/Docs/Tools/GenerateSeries.ts +++ b/Docs/Tools/GenerateSeries.ts @@ -1,8 +1,6 @@ import {existsSync, mkdirSync, readdirSync, readFileSync, writeFileSync} from "fs"; import ScriptUtils from "../../scripts/ScriptUtils"; import {Utils} from "../../Utils"; -import {exec} from "child_process" -import {GeoOperations} from "../../Logic/GeoOperations"; ScriptUtils.fixUtils() @@ -40,39 +38,41 @@ class StatsDownloader { continue; } + const features = [] for (let day = 1; day <= 31; day++) { - if (year === currentYear && month === currentMonth && day === today.getDate() ) { + if (year === currentYear && month === currentMonth && day === today.getDate()) { break; } - const path = `${this._targetDirectory}/stats.${year}-${month}-${(day < 10 ? "0" : "") + day}.json` - if(existsSync(path)){ - console.log("Skipping ", path,": already exists") + const path = `${this._targetDirectory}/stats.${year}-${month}-${(day < 10 ? "0" : "") + day}.day.json` + if (existsSync(path)) { + features.push(...JSON.parse(readFileSync(path, "UTF-8"))) + console.log("Loaded ", path, "from disk, got", features.length, "features now") continue } - try{ - - await this.DownloadStatsForDay(year, month, day, path) - }catch(e){ + let dayFeatures: any[] = undefined + try { + dayFeatures = await this.DownloadStatsForDay(year, month, day, path) + } catch (e) { console.error(e) - console.error("Could not download "+year+"-"+month+"-"+day+"... Trying again") - try{ - await this.DownloadStatsForDay(year, month, day, path) - }catch(e){ - console.error("Could not download "+year+"-"+month+"-"+day+", skipping for now") - } + console.error("Could not download " + year + "-" + month + "-" + day + "... Trying again") + dayFeatures = await this.DownloadStatsForDay(year, month, day, path) } + writeFileSync(path, JSON.stringify(dayFeatures)) + features.push(...dayFeatures) + } + writeFileSync("stats." + year + "-" + month + ".json", JSON.stringify({features})) } } } - public async DownloadStatsForDay(year: number, month: number, day: number, path: string) { + public async DownloadStatsForDay(year: number, month: number, day: number, path: string): Promise { let page = 1; let allFeatures = [] - let endDay = new Date(year,month - 1 /* Zero-indexed: 0 = january*/,day + 1); - let endDate = `${endDay.getFullYear()}-${Utils.TwoDigits(endDay.getMonth()+1)}-${Utils.TwoDigits(endDay.getDate())}` + let endDay = new Date(year, month - 1 /* Zero-indexed: 0 = january*/, day + 1); + let endDate = `${endDay.getFullYear()}-${Utils.TwoDigits(endDay.getMonth() + 1)}-${Utils.TwoDigits(endDay.getDate())}` let url = this.urlTemplate.replace("{start_date}", year + "-" + Utils.TwoDigits(month) + "-" + Utils.TwoDigits(day)) .replace("{end_date}", endDate) .replace("{page}", "" + page) @@ -106,11 +106,11 @@ class StatsDownloader { console.log(`Writing ${allFeatures.length} features to `, path, Utils.Times(_ => " ", 80)) allFeatures = Utils.NoNull(allFeatures) allFeatures.forEach(f => { + f.properties = {...f.properties, ...f.properties.metadata} + delete f.properties.metadata f.properties.id = f.id }) - writeFileSync(path, JSON.stringify({ - features: allFeatures - }, undefined, 2)) + return allFeatures } } @@ -155,616 +155,6 @@ interface ChangeSetData { } - -interface PlotSpec { - name: string, - interpetKeysAs: "date" | "number" | "string" | string - plot: { - type: "pie" | "bar" | "line" - count: { key: string, value: number }[] - } | { - type: "stacked-bar" - count: { - label: string, - values: { key: string | Date, value: number }[], - color?: string - }[] - }, - - render(): Promise -} - -function createGraph( - title: string, - ...options: PlotSpec[]): Promise { - console.log("Creating graph", title, "...") - const process = exec("python3 Docs/Tools/GenPlot.py \"graphs/" + title + "\"", ((error, stdout, stderr) => { - console.log("Python: ", stdout) - if (error !== null) { - console.error(error) - } - if (stderr !== "") { - console.error(stderr) - } - })) - - for (const option of options) { - const d = JSON.stringify(option) + "\n" - process.stdin._write(d, "utf-8", undefined) - } - process.stdin._write("\n", "utf-8", undefined) - - - return new Promise((resolve) => { - process.on("exit", () => resolve()) - }) - -} - -class Histogram { - public counts: Map = new Map() - private sortAtEnd: K[] = [] - - constructor(keys?: K[]) { - const self = this - keys?.forEach(key => self.bump(key)) - } - - total(): number { - let total = 0 - Array.from(this.counts.values()).forEach(i => total = total + i) - return total - } - - public bump(key: K, increase = 1) { - - if (this.counts.has(key)) { - this.counts.set(key, increase + this.counts.get(key)) - } else { - this.counts.set(key, increase) - } - } - - /** - * Adds all the values of the given histogram to this histogram - * @param hist - */ - public bumpHist(hist: Histogram) { - const self = this - hist.counts.forEach((value, key) => { - self.bump(key, value) - }) - } - - /** - * Creates a new histogram. All entries with less then 'cutoff' count are lumped together into the 'other' category - */ - public createOthersCategory(otherName: K, cutoff: number | ((key: K, value: number) => boolean) = 15): Histogram { - const hist = new Histogram() - hist.sortAtEnd.push(otherName) - - if (typeof cutoff === "number") { - this.counts.forEach((value, key) => { - if (value <= cutoff) { - hist.bump(otherName, value) - } else { - hist.bump(key, value) - } - }) - } else { - this.counts.forEach((value, key) => { - if (cutoff(key, value)) { - hist.bump(otherName, value) - } else { - hist.bump(key, value) - } - }) - } - - return hist; - } - - public addCountToName(): Histogram { - const self = this; - const hist = new Histogram() - hist.sortAtEnd = this.sortAtEnd.map(name => `${name} (${self.counts.get(name)})`) - - this.counts.forEach((value, key) => { - hist.bump(`${key} (${value})`, value) - }) - - return hist; - } - - public Clone(): Histogram { - const hist = new Histogram() - hist.bumpHist(this) - hist.sortAtEnd = [...this.sortAtEnd]; - return hist; - } - - public keyToDate(addMissingDays: boolean = false): Histogram { - const hist = new Histogram() - hist.sortAtEnd = this.sortAtEnd.map(name => new Date("" + name)) - - let earliest = undefined; - let latest = undefined; - this.counts.forEach((value, key) => { - const d = new Date("" + key); - if (earliest === undefined) { - earliest = d - } else if (d < earliest) { - earliest = d - } - if (latest === undefined) { - latest = d - } else if (d > latest) { - latest = d - } - hist.bump(d, value) - }) - - if (addMissingDays) { - while (earliest < latest) { - earliest.setDate(earliest.getDate() + 1) - hist.bump(earliest, 0) - } - } - 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 - * 'b': 5 - * 'c': 3 - * 'd': 1 - * - * This will create a new histogram, which counts how much every count occurs, thus: - * 5: 1 // as only 'b' had 5 counts - * 3: 2 // as both 'a' and 'c' had 3 counts - * 1: 1 // as only 'd' has 1 count - */ - public binPerCount(): Histogram { - const hist = new Histogram() - this.counts.forEach((value) => { - hist.bump(value) - }) - return hist; - } - - public stringifyName(): Histogram { - const hist = new Histogram() - this.counts.forEach((value, key) => { - hist.bump("" + key, value) - }) - return hist; - } - - public asPie(options: { - name: string - compare?: (a: K, b: K) => number - }): PlotSpec { - const self = this - const entriesArray = Array.from(this.counts.entries()) - let type: string = (typeof entriesArray[0][0]) - if (entriesArray[0][0] instanceof Date) { - type = "date" - } - const entries = entriesArray.map(kv => { - return ({key: kv[0], value: kv[1]}); - }) - - if (options.compare) { - entries.sort((a, b) => options.compare(a.key, b.key)) - } else { - entries.sort((a, b) => b.value - a.value) - } - entries.sort((a, b) => self.sortAtEnd.indexOf(a.key) - self.sortAtEnd.indexOf(b.key)) - - - const graph: PlotSpec = { - name: options.name, - interpetKeysAs: type, - plot: { - - type: "pie", - count: entries.map(kv => { - if (kv.key instanceof Date) { - return ({key: kv.key.toISOString(), value: kv.value}) - } - return ({key: kv.key + "", value: kv.value}); - }) - }, - render: undefined - } - graph.render = async () => await createGraph(graph.name, graph) - return graph; - } - - public asBar(options: { - name: string - compare?: (a: K, b: K) => number, - color?: string - }): PlotSpec { - const spec = this.asPie(options) - spec.plot.type = "bar" - spec.plot["color"] = options.color - return spec; - } - - public asLine(options: { - name: string - compare?: (a: K, b: K) => number - }) { - const spec = this.asPie(options) - spec.plot.type = "line" - return spec - } - -} - -/** - * A group keeps track of a matrix of changes, e.g. - * 'All contributors per day'. This will be stored internally, e.g. as {'2022-03-16' --> ['Pieter Vander Vennet', 'Pieter Vander Vennet', 'Joost Schouppe', 'Pieter Vander Vennet', 'dentonny', ...]} - */ -class Group { - - public groups: Map = new Map() - - constructor(features?: any[], fkey?: (feature: any) => K, fvalue?: (feature: any) => V) { - const self = this; - features?.forEach(f => { - self.bump(fkey(f), fvalue(f)) - }) - } - - public static createStackedBarChartPerDay(name: string, features: any, extractV: (feature: any) => string, minNeededTotal = 1): void { - const perDay = new Group( - features, - f => f.properties.date.substr(0, 10), - extractV - ) - - createGraph( - name, - ...Array.from( - stackHists( - perDay.asGroupedHists() - .filter(tpl => tpl[1].total() > minNeededTotal) - .map(tpl => [`${tpl[0]} (${tpl[1].total()})`, tpl[1]]) - ) - ) - .map( - tpl => { - const [name, hist] = tpl - return hist - .keyToDate(true) - .asBar({ - name: name - }); - } - ) - ) - } - - public bump(key: K, value: V) { - if (!this.groups.has(key)) { - this.groups.set(key, []) - } - this.groups.get(key).push(value) - } - - public asHist(dedup = false): Histogram { - const hist = new Histogram() - this.groups.forEach((values, key) => { - if (dedup) { - hist.bump(key, new Set(values).size) - } else { - hist.bump(key, values.length) - } - }) - return hist - } - - /** - * Given a group, creates a kind of histogram. - * E.g: if the Group is {'2022-03-16' --> ['Pieter Vander Vennet', 'Pieter Vander Vennet', 'Seppe Santens']}, the resulting 'groupedHists' will be: - * [['Pieter Vander Vennet', {'2022-03-16' --> 2}],['Seppe Santens', {'2022-03-16' --> 1}]] - */ - asGroupedHists(): [V, Histogram][] { - - const allHists = new Map>() - - const allValues = new Set(); - Array.from(this.groups.values()).forEach(vs => - vs.forEach(v => { - allValues.add(v) - }) - ) - - allValues.forEach(v => allHists.set(v, new Histogram())) - - this.groups.forEach((values, key) => { - values.forEach(v => { - allHists.get(v).bump(key) - }) - }) - - return Array.from(allHists.entries()) - } -} - -/** - * - * @param hists - */ -function stackHists(hists: [V, Histogram][]): [V, Histogram][] { - const runningTotals = new Histogram() - const result: [V, Histogram][] = [] - hists.forEach(vhist => { - const hist = vhist[1] - const clone = hist.Clone() - clone.bumpHist(runningTotals) - runningTotals.bumpHist(hist) - result.push([vhist[0], clone]) - }) - result.reverse(/* Changes in place, safe copy*/) - return result -} - -/** - * Given histograms which should be shown as bars on top of each other, creates a new list of histograms with adjusted heights in order to create a coherent sum - * e.g.: for a given day, there are 2 deletions, 3 additions and 5 answers, this will be ordered as 2, 5 and 10 in order to mimic a coherent bar - * @param hists - */ -function stackHistsSimple(hists: Histogram[]): Histogram[] { - const runningTotals = new Histogram() - const result: Histogram[] = [] - for (const hist of hists) { - const clone = hist.Clone() - clone.bumpHist(runningTotals) // "Copies" one histogram into the other - runningTotals.bumpHist(hist) - result.push(clone) - } - result.reverse(/* Changes in place, safe copy*/) - return result -} - -function createActualChangesGraph(allFeatures: ChangeSetData[], appliedFilterDescription: string) { - const metadataOptions = { - "answer": "#5b5bdc", - "create": "#46ea46", - "move": "#ffa600", - "deletion": "#ff0000", - "soft-delete": "#ff8888", - "add-image": "#8888ff", - "import": "#00ff00", - "conflation": "#ffff00", - "split": "#000000", - "relation-fix": "#cccccc", - "delete-image": "#ff00ff" - } - - const metadataKeys: string[] = Object.keys(metadataOptions) - const histograms: Map> = new Map>() // {metakey --> Histogram} - allFeatures.forEach(f => { - const day = f.properties.date.substr(0, 10) - - for (const key of metadataKeys) { - const v = f.properties.metadata[key] - if (v === undefined) { - continue - } - const count = Number(v) - if (isNaN(count)) { - continue - } - if (!histograms.has(key)) { - histograms.set(key, new Histogram()) - } - histograms.get(key).bump(day, count) - } - - }) - - - const entries = stackHists(Array.from(histograms.entries())) - - const allGraphs = entries.map(([name, stackedHist]) => { - const hist = histograms.get(name) - return stackedHist - .keyToDate(true) - .asBar({name: `${name} (${hist.total()})`, color: metadataOptions[name]}); - } - ) - - createGraph("Actual changes" + appliedFilterDescription, ...allGraphs) -} - -async function createGraphs(allFeatures: ChangeSetData[], appliedFilterDescription: string, cutoff = undefined) { - const hist = new Histogram(allFeatures.map(f => f.properties.metadata.theme)) - await hist - .createOthersCategory("other", cutoff ?? 20) - .addCountToName() - .asBar({name: "Changesets per theme (bar)" + appliedFilterDescription}) - .render() - - - await new Histogram(allFeatures.map(f => f.properties.user)) - .binPerCount() - .stringifyName() - .createOthersCategory("25 or more", (key, _) => Number(key) >= (cutoff ?? 25)).asBar( - { - compare: (a, b) => Number(a) - Number(b), - name: "Contributors per changeset count" + appliedFilterDescription - }) - .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(true) - .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 - }) - - await createGraph("Changesets per day (line)" + appliedFilterDescription, perDayLine, perDayAvg, perDayAvgMonth) - - - await new Histogram(allFeatures.map(f => f.properties.metadata.host)) - .asPie({ - name: "Changesets per host" + appliedFilterDescription - }).render() - - await new Histogram(allFeatures.map(f => f.properties.metadata.theme)) - .createOthersCategory("< 25 changesets", (cutoff ?? 25)) - .addCountToName() - .asPie({ - name: "Changesets per theme (pie)" + appliedFilterDescription - }).render() - - Group.createStackedBarChartPerDay( - "Changesets per theme" + appliedFilterDescription, - allFeatures, - f => f.properties.metadata.theme, - cutoff ?? 25 - ) - - - Group.createStackedBarChartPerDay( - "Changesets per version number" + appliedFilterDescription, - allFeatures, - f => f.properties.editor?.substr("MapComplete ".length, 6)?.replace(/[a-zA-Z-/]/g, '') ?? "UNKNOWN", - cutoff ?? 1 - ) - - Group.createStackedBarChartPerDay( - "Changesets per minor version number" + appliedFilterDescription, - allFeatures, - f => { - const base = f.properties.editor?.substr("MapComplete ".length)?.replace(/[a-zA-Z-/]/g, '') ?? "UNKNOWN" - const [major, minor, patch] = base.split(".") - return major + "." + minor - - }, - cutoff ?? 1 - ) - - Group.createStackedBarChartPerDay( - "Deletion-changesets per theme" + appliedFilterDescription, - allFeatures.filter(f => f.properties.delete > 0), - f => f.properties.metadata.theme, - cutoff ?? 1 - ) - - { - // Contributors (unique + unique new) per day - const contributorCountPerDay = new Group() - const newContributorsPerDay = new Group() - const seenContributors = new Set() - allFeatures.forEach(f => { - const user = f.properties.user - const day = f.properties.date.substr(0, 10) - contributorCountPerDay.bump(day, user) - if (!seenContributors.has(user)) { - seenContributors.add(user) - newContributorsPerDay.bump(day, user) - } - }) - const total = new Set(allFeatures.map(f => f.properties.user)).size - await createGraph( - `Contributors per day${appliedFilterDescription}`, - contributorCountPerDay - .asHist(true) - .keyToDate(true) - .asBar({ - name: `Unique contributors per day (${total} total)` - }), - newContributorsPerDay - .asHist(true) - .keyToDate(true) - .asBar({ - name: "New, unique contributors per day" - }), - ) - - await createActualChangesGraph(allFeatures, appliedFilterDescription); - } - - -} - -async function createMiscGraphs(allFeatures: ChangeSetData[], emptyCS: ChangeSetData[]) { - await 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)) -} - async function main(): Promise { if (!existsSync("graphs")) { mkdirSync("graphs") @@ -772,7 +162,16 @@ async function main(): Promise { const targetDir = "Docs/Tools/stats" if (process.argv.indexOf("--no-download") < 0) { - await new StatsDownloader(targetDir).DownloadStats() + do { + try { + + await new StatsDownloader(targetDir).DownloadStats() + break + } catch (e) { + console.log(e) + } + + } while (true) } const allPaths = readdirSync(targetDir) .filter(p => p.startsWith("stats.") && p.endsWith(".json")); @@ -780,7 +179,6 @@ async function main(): Promise { .map(path => JSON.parse(readFileSync("Docs/Tools/stats/" + path, "utf-8")).features)); allFeatures = allFeatures.filter(f => f.properties.editor === null || f.properties.editor.toLowerCase().startsWith("mapcomplete")) - const emptyCS = allFeatures.filter(f => f.properties.metadata.theme === "EMPTY CS") allFeatures = allFeatures.filter(f => f.properties.metadata.theme !== "EMPTY CS") const noEditor = allFeatures.filter(f => f.properties.editor === null).map(f => "https://www.osm.org/changeset/" + f.id) @@ -791,17 +189,7 @@ async function main(): Promise { } const allFiles = readdirSync("Docs/Tools/stats").filter(p => p.endsWith(".json")) writeFileSync("Docs/Tools/stats/file-overview.json", JSON.stringify(allFiles)) - - await createMiscGraphs(allFeatures, emptyCS) - const grbOnly = allFeatures.filter(f => f.properties.metadata.theme === "grb") - allFeatures = allFeatures.filter(f => f.properties.metadata.theme !== "grb") - await createGraphs(allFeatures, "") - /*await createGraphs(allFeatures.filter(f => f.properties.date.startsWith("2020")), " in 2020") - await createGraphs(allFeatures.filter(f => f.properties.date.startsWith("2021")), " in 2021") - await createGraphs(allFeatures.filter(f => f.properties.date.startsWith("2022")), " in 2022") - await createGraphs(allFeatures.filter(f => f.properties.metadata.theme === "toerisme_vlaanderen"), " met pin je punt", 0) - await createGraphs(grbOnly, " with the GRB import tool", 0)*/ } main().then(_ => console.log("All done!")) diff --git a/Docs/Tools/graphs/Actual changes in 2020.png b/Docs/Tools/graphs/Actual changes in 2020.png deleted file mode 100644 index fbbef894e0..0000000000 Binary files a/Docs/Tools/graphs/Actual changes in 2020.png and /dev/null differ diff --git a/Docs/Tools/graphs/Actual changes in 2021.png b/Docs/Tools/graphs/Actual changes in 2021.png deleted file mode 100644 index 8b95658f60..0000000000 Binary files a/Docs/Tools/graphs/Actual changes in 2021.png and /dev/null differ diff --git a/Docs/Tools/graphs/Actual changes in 2022.png b/Docs/Tools/graphs/Actual changes in 2022.png deleted file mode 100644 index fd084a87aa..0000000000 Binary files a/Docs/Tools/graphs/Actual changes in 2022.png and /dev/null differ diff --git a/Docs/Tools/graphs/Actual changes met pin je punt.png b/Docs/Tools/graphs/Actual changes met pin je punt.png deleted file mode 100644 index bbb4b900ad..0000000000 Binary files a/Docs/Tools/graphs/Actual changes met pin je punt.png and /dev/null differ diff --git a/Docs/Tools/graphs/Actual changes with the GRB import tool.png b/Docs/Tools/graphs/Actual changes with the GRB import tool.png deleted file mode 100644 index 171bfb1716..0000000000 Binary files a/Docs/Tools/graphs/Actual changes with the GRB import tool.png and /dev/null differ diff --git a/Docs/Tools/graphs/Actual changes.png b/Docs/Tools/graphs/Actual changes.png deleted file mode 100644 index 7f3ce92036..0000000000 Binary files a/Docs/Tools/graphs/Actual changes.png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per day (line) in 2020.png b/Docs/Tools/graphs/Changesets per day (line) in 2020.png deleted file mode 100644 index a9413d0b7b..0000000000 Binary files a/Docs/Tools/graphs/Changesets per day (line) in 2020.png and /dev/null 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 deleted file mode 100644 index 23e392fa59..0000000000 Binary files a/Docs/Tools/graphs/Changesets per day (line) in 2021.png and /dev/null 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 deleted file mode 100644 index c148fa723e..0000000000 Binary files a/Docs/Tools/graphs/Changesets per day (line) in 2022.png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per day (line) met pin je punt.png b/Docs/Tools/graphs/Changesets per day (line) met pin je punt.png deleted file mode 100644 index 574b389f0b..0000000000 Binary files a/Docs/Tools/graphs/Changesets per day (line) met pin je punt.png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per day (line) with the GRB import tool.png b/Docs/Tools/graphs/Changesets per day (line) with the GRB import tool.png deleted file mode 100644 index e1d551b94b..0000000000 Binary files a/Docs/Tools/graphs/Changesets per day (line) with the GRB import tool.png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per day (line).png b/Docs/Tools/graphs/Changesets per day (line).png deleted file mode 100644 index d86c03461e..0000000000 Binary files a/Docs/Tools/graphs/Changesets per day (line).png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per host in 2020.png b/Docs/Tools/graphs/Changesets per host in 2020.png deleted file mode 100644 index 0eed875f9c..0000000000 Binary files a/Docs/Tools/graphs/Changesets per host in 2020.png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per host in 2021.png b/Docs/Tools/graphs/Changesets per host in 2021.png deleted file mode 100644 index 091b2f80ce..0000000000 Binary files a/Docs/Tools/graphs/Changesets per host in 2021.png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per host in 2022.png b/Docs/Tools/graphs/Changesets per host in 2022.png deleted file mode 100644 index 2eaa1d11f7..0000000000 Binary files a/Docs/Tools/graphs/Changesets per host in 2022.png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per host met pin je punt.png b/Docs/Tools/graphs/Changesets per host met pin je punt.png deleted file mode 100644 index eae3febbfb..0000000000 Binary files a/Docs/Tools/graphs/Changesets per host met pin je punt.png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per host with the GRB import tool.png b/Docs/Tools/graphs/Changesets per host with the GRB import tool.png deleted file mode 100644 index a0608815c3..0000000000 Binary files a/Docs/Tools/graphs/Changesets per host with the GRB import tool.png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per host.png b/Docs/Tools/graphs/Changesets per host.png deleted file mode 100644 index c0ea9dbaca..0000000000 Binary files a/Docs/Tools/graphs/Changesets per host.png and /dev/null 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 deleted file mode 100644 index 052f4cb2b7..0000000000 Binary files a/Docs/Tools/graphs/Changesets per minor version number in 2020.png and /dev/null 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 deleted file mode 100644 index 084a934514..0000000000 Binary files a/Docs/Tools/graphs/Changesets per minor version number in 2021.png and /dev/null 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 deleted file mode 100644 index 72e4a016c2..0000000000 Binary files a/Docs/Tools/graphs/Changesets per minor version number in 2022.png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per minor version number met pin je punt.png b/Docs/Tools/graphs/Changesets per minor version number met pin je punt.png deleted file mode 100644 index 63c03b2ad1..0000000000 Binary files a/Docs/Tools/graphs/Changesets per minor version number met pin je punt.png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per minor version number with the GRB import tool.png b/Docs/Tools/graphs/Changesets per minor version number with the GRB import tool.png deleted file mode 100644 index 5c4a87962f..0000000000 Binary files a/Docs/Tools/graphs/Changesets per minor version number with the GRB import tool.png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per minor version number.png b/Docs/Tools/graphs/Changesets per minor version number.png deleted file mode 100644 index 3cbd2d3b52..0000000000 Binary files a/Docs/Tools/graphs/Changesets per minor version number.png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per theme (bar) in 2020.png b/Docs/Tools/graphs/Changesets per theme (bar) in 2020.png deleted file mode 100644 index bb1c588237..0000000000 Binary files a/Docs/Tools/graphs/Changesets per theme (bar) in 2020.png and /dev/null 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 deleted file mode 100644 index f320bf272e..0000000000 Binary files a/Docs/Tools/graphs/Changesets per theme (bar) in 2021.png and /dev/null 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 deleted file mode 100644 index bd4f32b6ce..0000000000 Binary files a/Docs/Tools/graphs/Changesets per theme (bar) in 2022.png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per theme (bar) met pin je punt.png b/Docs/Tools/graphs/Changesets per theme (bar) met pin je punt.png deleted file mode 100644 index e2374cc994..0000000000 Binary files a/Docs/Tools/graphs/Changesets per theme (bar) met pin je punt.png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per theme (bar) with the GRB import tool.png b/Docs/Tools/graphs/Changesets per theme (bar) with the GRB import tool.png deleted file mode 100644 index c7a886fcf3..0000000000 Binary files a/Docs/Tools/graphs/Changesets per theme (bar) with the GRB import tool.png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per theme (bar).png b/Docs/Tools/graphs/Changesets per theme (bar).png deleted file mode 100644 index d72a3c2cf0..0000000000 Binary files a/Docs/Tools/graphs/Changesets per theme (bar).png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per theme (pie) in 2020.png b/Docs/Tools/graphs/Changesets per theme (pie) in 2020.png deleted file mode 100644 index 8ffcf7c6e0..0000000000 Binary files a/Docs/Tools/graphs/Changesets per theme (pie) in 2020.png and /dev/null 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 deleted file mode 100644 index a85e13c1b0..0000000000 Binary files a/Docs/Tools/graphs/Changesets per theme (pie) in 2021.png and /dev/null 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 deleted file mode 100644 index 71a36a024f..0000000000 Binary files a/Docs/Tools/graphs/Changesets per theme (pie) in 2022.png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per theme (pie) met pin je punt.png b/Docs/Tools/graphs/Changesets per theme (pie) met pin je punt.png deleted file mode 100644 index 8247d9973c..0000000000 Binary files a/Docs/Tools/graphs/Changesets per theme (pie) met pin je punt.png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per theme (pie) with the GRB import tool.png b/Docs/Tools/graphs/Changesets per theme (pie) with the GRB import tool.png deleted file mode 100644 index 6a00227d28..0000000000 Binary files a/Docs/Tools/graphs/Changesets per theme (pie) with the GRB import tool.png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per theme (pie).png b/Docs/Tools/graphs/Changesets per theme (pie).png deleted file mode 100644 index 0a570e7fcc..0000000000 Binary files a/Docs/Tools/graphs/Changesets per theme (pie).png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per theme in 2020.png b/Docs/Tools/graphs/Changesets per theme in 2020.png deleted file mode 100644 index b972667abb..0000000000 Binary files a/Docs/Tools/graphs/Changesets per theme in 2020.png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per theme in 2021.png b/Docs/Tools/graphs/Changesets per theme in 2021.png deleted file mode 100644 index 50f1164484..0000000000 Binary files a/Docs/Tools/graphs/Changesets per theme in 2021.png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per theme in 2022.png b/Docs/Tools/graphs/Changesets per theme in 2022.png deleted file mode 100644 index e0de0dee11..0000000000 Binary files a/Docs/Tools/graphs/Changesets per theme in 2022.png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per theme met pin je punt.png b/Docs/Tools/graphs/Changesets per theme met pin je punt.png deleted file mode 100644 index cfdcb4d0ce..0000000000 Binary files a/Docs/Tools/graphs/Changesets per theme met pin je punt.png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per theme with the GRB import tool.png b/Docs/Tools/graphs/Changesets per theme with the GRB import tool.png deleted file mode 100644 index dbed3064a2..0000000000 Binary files a/Docs/Tools/graphs/Changesets per theme with the GRB import tool.png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per theme.png b/Docs/Tools/graphs/Changesets per theme.png deleted file mode 100644 index 1287236e02..0000000000 Binary files a/Docs/Tools/graphs/Changesets per theme.png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per version number in 2020.png b/Docs/Tools/graphs/Changesets per version number in 2020.png deleted file mode 100644 index f383d92f81..0000000000 Binary files a/Docs/Tools/graphs/Changesets per version number in 2020.png and /dev/null 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 deleted file mode 100644 index 5336f38360..0000000000 Binary files a/Docs/Tools/graphs/Changesets per version number in 2021.png and /dev/null 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 deleted file mode 100644 index b51175b0b4..0000000000 Binary files a/Docs/Tools/graphs/Changesets per version number in 2022.png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per version number met pin je punt.png b/Docs/Tools/graphs/Changesets per version number met pin je punt.png deleted file mode 100644 index f081df83ab..0000000000 Binary files a/Docs/Tools/graphs/Changesets per version number met pin je punt.png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per version number with the GRB import tool.png b/Docs/Tools/graphs/Changesets per version number with the GRB import tool.png deleted file mode 100644 index 64c27e7b8a..0000000000 Binary files a/Docs/Tools/graphs/Changesets per version number with the GRB import tool.png and /dev/null differ diff --git a/Docs/Tools/graphs/Changesets per version number.png b/Docs/Tools/graphs/Changesets per version number.png deleted file mode 100644 index 7b51501154..0000000000 Binary files a/Docs/Tools/graphs/Changesets per version number.png and /dev/null differ diff --git a/Docs/Tools/graphs/Contributors per changeset count in 2020.png b/Docs/Tools/graphs/Contributors per changeset count in 2020.png deleted file mode 100644 index bdbc31a308..0000000000 Binary files a/Docs/Tools/graphs/Contributors per changeset count in 2020.png and /dev/null 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 deleted file mode 100644 index e2c5d3d454..0000000000 Binary files a/Docs/Tools/graphs/Contributors per changeset count in 2021.png and /dev/null 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 deleted file mode 100644 index d91cd2174d..0000000000 Binary files a/Docs/Tools/graphs/Contributors per changeset count in 2022.png and /dev/null differ diff --git a/Docs/Tools/graphs/Contributors per changeset count met pin je punt.png b/Docs/Tools/graphs/Contributors per changeset count met pin je punt.png deleted file mode 100644 index 15f4e8f5d2..0000000000 Binary files a/Docs/Tools/graphs/Contributors per changeset count met pin je punt.png and /dev/null differ diff --git a/Docs/Tools/graphs/Contributors per changeset count with the GRB import tool.png b/Docs/Tools/graphs/Contributors per changeset count with the GRB import tool.png deleted file mode 100644 index e6af9e97d9..0000000000 Binary files a/Docs/Tools/graphs/Contributors per changeset count with the GRB import tool.png and /dev/null differ diff --git a/Docs/Tools/graphs/Contributors per changeset count.png b/Docs/Tools/graphs/Contributors per changeset count.png deleted file mode 100644 index ac908305ba..0000000000 Binary files a/Docs/Tools/graphs/Contributors per changeset count.png and /dev/null differ diff --git a/Docs/Tools/graphs/Contributors per day in 2020.png b/Docs/Tools/graphs/Contributors per day in 2020.png deleted file mode 100644 index f70da664f6..0000000000 Binary files a/Docs/Tools/graphs/Contributors per day in 2020.png and /dev/null differ diff --git a/Docs/Tools/graphs/Contributors per day in 2021.png b/Docs/Tools/graphs/Contributors per day in 2021.png deleted file mode 100644 index 2e39f9c216..0000000000 Binary files a/Docs/Tools/graphs/Contributors per day in 2021.png and /dev/null differ diff --git a/Docs/Tools/graphs/Contributors per day in 2022.png b/Docs/Tools/graphs/Contributors per day in 2022.png deleted file mode 100644 index dbbfa65e38..0000000000 Binary files a/Docs/Tools/graphs/Contributors per day in 2022.png and /dev/null differ diff --git a/Docs/Tools/graphs/Contributors per day met pin je punt.png b/Docs/Tools/graphs/Contributors per day met pin je punt.png deleted file mode 100644 index 8f23791503..0000000000 Binary files a/Docs/Tools/graphs/Contributors per day met pin je punt.png and /dev/null differ diff --git a/Docs/Tools/graphs/Contributors per day with the GRB import tool.png b/Docs/Tools/graphs/Contributors per day with the GRB import tool.png deleted file mode 100644 index c6060d4b45..0000000000 Binary files a/Docs/Tools/graphs/Contributors per day with the GRB import tool.png and /dev/null differ diff --git a/Docs/Tools/graphs/Contributors per day.png b/Docs/Tools/graphs/Contributors per day.png deleted file mode 100644 index 224d3a1cd1..0000000000 Binary files a/Docs/Tools/graphs/Contributors per day.png and /dev/null differ diff --git a/Docs/Tools/graphs/Deletion-changesets per theme in 2020.png b/Docs/Tools/graphs/Deletion-changesets per theme in 2020.png deleted file mode 100644 index fbbef894e0..0000000000 Binary files a/Docs/Tools/graphs/Deletion-changesets per theme in 2020.png and /dev/null 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 deleted file mode 100644 index cfcc72a459..0000000000 Binary files a/Docs/Tools/graphs/Deletion-changesets per theme in 2021.png and /dev/null 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 deleted file mode 100644 index 1d19e28e40..0000000000 Binary files a/Docs/Tools/graphs/Deletion-changesets per theme in 2022.png and /dev/null differ diff --git a/Docs/Tools/graphs/Deletion-changesets per theme met pin je punt.png b/Docs/Tools/graphs/Deletion-changesets per theme met pin je punt.png deleted file mode 100644 index 8bd8fc4bb5..0000000000 Binary files a/Docs/Tools/graphs/Deletion-changesets per theme met pin je punt.png and /dev/null differ diff --git a/Docs/Tools/graphs/Deletion-changesets per theme with the GRB import tool.png b/Docs/Tools/graphs/Deletion-changesets per theme with the GRB import tool.png deleted file mode 100644 index bd7c4d0d15..0000000000 Binary files a/Docs/Tools/graphs/Deletion-changesets per theme with the GRB import tool.png and /dev/null differ diff --git a/Docs/Tools/graphs/Deletion-changesets per theme.png b/Docs/Tools/graphs/Deletion-changesets per theme.png deleted file mode 100644 index 2a2a8ad3ac..0000000000 Binary files a/Docs/Tools/graphs/Deletion-changesets per theme.png and /dev/null differ diff --git a/Docs/Tools/graphs/Empty changesets by date.png b/Docs/Tools/graphs/Empty changesets by date.png deleted file mode 100644 index 40c88e480d..0000000000 Binary files a/Docs/Tools/graphs/Empty changesets by date.png and /dev/null differ diff --git a/Docs/Tools/missing_editor.json b/Docs/Tools/missing_editor.json deleted file mode 100644 index 6b53805a13..0000000000 --- a/Docs/Tools/missing_editor.json +++ /dev/null @@ -1,12 +0,0 @@ -[ - "https://www.osm.org/changeset/117826283", - "https://www.osm.org/changeset/117742017", - "https://www.osm.org/changeset/117522028", - "https://www.osm.org/changeset/117244083", - "https://www.osm.org/changeset/117010979", - "https://www.osm.org/changeset/118422299", - "https://www.osm.org/changeset/118344062", - "https://www.osm.org/changeset/118281107", - "https://www.osm.org/changeset/118228793", - "https://www.osm.org/changeset/118092916" -] \ No newline at end of file diff --git a/Docs/Tools/stats/file-overview.json b/Docs/Tools/stats/file-overview.json deleted file mode 100644 index 3fde2672ab..0000000000 --- a/Docs/Tools/stats/file-overview.json +++ /dev/null @@ -1 +0,0 @@ -["stats.2020-10.json","stats.2020-11.json","stats.2020-12.json","stats.2020-5.json","stats.2020-6.json","stats.2020-7.json","stats.2020-8.json","stats.2020-9.json","stats.2021-1.json","stats.2021-10.json","stats.2021-11.json","stats.2021-12.json","stats.2021-2.json","stats.2021-3.json","stats.2021-4.json","stats.2021-5.json","stats.2021-6.json","stats.2021-7.json","stats.2021-8.json","stats.2021-9.json","stats.2022-1.json","stats.2022-2.json","stats.2022-3.json","stats.2022-4.json","stats.2022-5-01.json","stats.2022-5-02.json","stats.2022-5-03.json","stats.2022-5-04.json","stats.2022-5-05.json","stats.2022-5-06.json","stats.2022-5-07.json","stats.2022-5-08.json","stats.2022-5-09.json","stats.2022-5-10.json","stats.2022-5-11.json","stats.2022-5-12.json","stats.2022-5-13.json","stats.2022-5-14.json","stats.2022-5-15.json","stats.2022-5-16.json","stats.2022-5-17.json","stats.2022-5-18.json","stats.2022-5-19.json","stats.2022-5-20.json","stats.2022-5-21.json","stats.2022-5-22.json","stats.2022-5-23.json","stats.2022-5-24.json","stats.2022-5-25.json","stats.2022-5-26.json","stats.2022-5-27.json","stats.2022-5-28.json","stats.2022-5-29.json","stats.2022-5-30.json","stats.2022-5-31.json","stats.2022-6-01.json","stats.2022-6-02.json","stats.2022-6-03.json","stats.2022-6-04.json","stats.2022-6-05.json","stats.2022-6-06.json","stats.2022-6-07.json","stats.2022-6-08.json","stats.2022-6-09.json","stats.2022-6-10.json","stats.2022-6-11.json","stats.2022-6-12.json","stats.2022-6-13.json","stats.2022-6-14.json","stats.2022-6-15.json","stats.2022-6-16.json","stats.2022-6-17.json","stats.2022-6-18.json","stats.2022-6-19.json","stats.2022-6-20.json","stats.2022-6-21.json","stats.2022-6-22.json","stats.2022-6-23.json","stats.2022-6-24.json","stats.2022-6-25.json","stats.2022-6-26.json","stats.2022-6-27.json","stats.2022-6-28.json","stats.2022-6-29.json","stats.2022-6-30.json","stats.2022-7-01.json","stats.2022-7-02.json","stats.2022-7-03.json","stats.2022-7-04.json","stats.2022-7-05.json","stats.2022-7-06.json","stats.2022-7-07.json","stats.2022-7-08.json","stats.2022-7-09.json","stats.2022-7-10.json","stats.2022-7-11.json","stats.2022-7-12.json","stats.2022-7-13.json","stats.2022-7-14.json","stats.2022-7-15.json","stats.2022-7-16.json","stats.2022-7-17.json","stats.2022-7-18.json","stats.2022-7-19.json","stats.2022-7-20.json","stats.2022-7-21.json","stats.2022-7-22.json","stats.2022-7-23.json","stats.2022-7-24.json","stats.2022-7-25.json","stats.2022-7-26.json","stats.2022-7-27.json","stats.2022-7-28.json"] \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2020-10.json b/Docs/Tools/stats/stats.2020-10.json deleted file mode 100644 index 1a4a8f58cd..0000000000 --- a/Docs/Tools/stats/stats.2020-10.json +++ /dev/null @@ -1,6141 +0,0 @@ -{ - "features": [ - { - "id": 93348440, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.7592043, - 45.1852545 - ], - [ - 5.7593197, - 45.1852545 - ], - [ - 5.7593197, - 45.1853188 - ], - [ - 5.7592043, - 45.1853188 - ], - [ - 5.7592043, - 45.1852545 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "benches", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 93348440 - } - }, - { - "id": 93344361, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.0865699, - 48.6426475 - ], - [ - 2.0865699, - 48.6426475 - ], - [ - 2.0865699, - 48.6426475 - ], - [ - 2.0865699, - 48.6426475 - ], - [ - 2.0865699, - 48.6426475 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "benches", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 93344361 - } - }, - { - "id": 93344041, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.0687225, - 48.6428788 - ], - [ - 2.0874392, - 48.6428788 - ], - [ - 2.0874392, - 48.704943 - ], - [ - 2.0687225, - 48.704943 - ], - [ - 2.0687225, - 48.6428788 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 93344041 - } - }, - { - "id": 93343913, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.0668224, - 48.6987777 - ], - [ - 2.0745765, - 48.6987777 - ], - [ - 2.0745765, - 48.7101119 - ], - [ - 2.0668224, - 48.7101119 - ], - [ - 2.0668224, - 48.6987777 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 93343913 - } - }, - { - "id": 93334680, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1711141, - 48.6832294 - ], - [ - 2.1711141, - 48.6832294 - ], - [ - 2.1711141, - 48.6832294 - ], - [ - 2.1711141, - 48.6832294 - ], - [ - 2.1711141, - 48.6832294 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "artworks", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 93334680 - } - }, - { - "id": 93334615, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.7395233, - 45.1987047 - ], - [ - 5.7395233, - 45.1987047 - ], - [ - 5.7395233, - 45.1987047 - ], - [ - 5.7395233, - 45.1987047 - ], - [ - 5.7395233, - 45.1987047 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 93334615 - } - }, - { - "id": 93334256, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1267381, - 48.6193089 - ], - [ - 2.1267381, - 48.6193089 - ], - [ - 2.1267381, - 48.6193089 - ], - [ - 2.1267381, - 48.6193089 - ], - [ - 2.1267381, - 48.6193089 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 93334256 - } - }, - { - "id": 93334153, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1278505, - 48.6296057 - ], - [ - 2.1279572, - 48.6296057 - ], - [ - 2.1279572, - 48.6298156 - ], - [ - 2.1278505, - 48.6298156 - ], - [ - 2.1278505, - 48.6296057 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "benches", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 93334153 - } - }, - { - "id": 93298136, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7667437, - 48.0944715 - ], - [ - 11.8026799, - 48.0944715 - ], - [ - 11.8026799, - 48.1021903 - ], - [ - 11.7667437, - 48.1021903 - ], - [ - 11.7667437, - 48.0944715 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "benches", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 93298136 - } - }, - { - "id": 93239558, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7043372, - 51.0507819 - ], - [ - 3.7044203, - 51.0507819 - ], - [ - 3.7044203, - 51.0508611 - ], - [ - 3.7043372, - 51.0508611 - ], - [ - 3.7043372, - 51.0507819 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "artworks", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 93239558 - } - }, - { - "id": 93219317, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7818338, - 48.1074113 - ], - [ - 11.7818955, - 48.1074113 - ], - [ - 11.7818955, - 48.1080956 - ], - [ - 11.7818338, - 48.1080956 - ], - [ - 11.7818338, - 48.1074113 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "benches", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 93219317 - } - }, - { - "id": 93138222, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7040531, - 51.0499375 - ], - [ - 3.7040531, - 51.0499375 - ], - [ - 3.7040531, - 51.0499375 - ], - [ - 3.7040531, - 51.0499375 - ], - [ - 3.7040531, - 51.0499375 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "fritures", - "language": "nl", - "theme-creator": "" - }, - "id": 93138222 - } - }, - { - "id": 93108212, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.1768913, - 49.1089488 - ], - [ - 6.1768913, - 49.1089488 - ], - [ - 6.1768913, - 49.1089488 - ], - [ - 6.1768913, - 49.1089488 - ], - [ - 6.1768913, - 49.1089488 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "personal", - "language": "en" - }, - "id": 93108212 - } - }, - { - "id": 93101275, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5971909, - 49.8174408 - ], - [ - 5.5971909, - 49.8174408 - ], - [ - 5.5971909, - 49.8174408 - ], - [ - 5.5971909, - 49.8174408 - ], - [ - 5.5971909, - 49.8174408 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "maps", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 93101275 - } - }, - { - "id": 93080334, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7396382, - 50.8743746 - ], - [ - 4.7443596, - 50.8743746 - ], - [ - 4.7443596, - 50.8773495 - ], - [ - 4.7396382, - 50.8773495 - ], - [ - 4.7396382, - 50.8743746 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 93080334 - } - }, - { - "id": 93077975, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2743061, - 50.4939812 - ], - [ - 4.7019484, - 50.4939812 - ], - [ - 4.7019484, - 50.690115 - ], - [ - 4.2743061, - 50.690115 - ], - [ - 4.2743061, - 50.4939812 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "charging_stations", - "language": "en", - "theme-creator": "" - }, - "id": 93077975 - } - }, - { - "id": 93072877, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.214877, - 41.4398994 - ], - [ - 2.2193241, - 41.4398994 - ], - [ - 2.2193241, - 41.4418216 - ], - [ - 2.214877, - 41.4418216 - ], - [ - 2.214877, - 41.4398994 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "arbres", - "language": "ca", - "theme-creator": "" - }, - "id": 93072877 - } - }, - { - "id": 93072573, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.714889, - 51.0753333 - ], - [ - 3.7150204, - 51.0753333 - ], - [ - 3.7150204, - 51.0755288 - ], - [ - 3.714889, - 51.0755288 - ], - [ - 3.714889, - 51.0753333 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 93072573 - } - }, - { - "id": 93071742, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7871933, - 48.1047027 - ], - [ - 11.7871933, - 48.1047027 - ], - [ - 11.7871933, - 48.1047027 - ], - [ - 11.7871933, - 48.1047027 - ], - [ - 11.7871933, - 48.1047027 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "benches", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 93071742 - } - }, - { - "id": 93030151, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -8.5518438, - 42.8711066 - ], - [ - -8.5450708, - 42.8711066 - ], - [ - -8.5450708, - 42.8744867 - ], - [ - -8.5518438, - 42.8744867 - ], - [ - -8.5518438, - 42.8711066 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "dalemasvelocidad", - "language": "es", - "theme-creator": "" - }, - "id": 93030151 - } - }, - { - "id": 93028022, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3951992, - 51.0371826 - ], - [ - 3.3951992, - 51.0371826 - ], - [ - 3.3951992, - 51.0371826 - ], - [ - 3.3951992, - 51.0371826 - ], - [ - 3.3951992, - 51.0371826 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 93028022 - } - }, - { - "id": 93013547, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5640147, - 50.8841722 - ], - [ - 4.5640147, - 50.8841722 - ], - [ - 4.5640147, - 50.8841722 - ], - [ - 4.5640147, - 50.8841722 - ], - [ - 4.5640147, - 50.8841722 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "klimbomen", - "language": "nl", - "theme-creator": "" - }, - "id": 93013547 - } - }, - { - "id": 93001764, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3943006, - 51.0400464 - ], - [ - 3.3943006, - 51.0400464 - ], - [ - 3.3943006, - 51.0400464 - ], - [ - 3.3943006, - 51.0400464 - ], - [ - 3.3943006, - 51.0400464 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 93001764 - } - }, - { - "id": 93001720, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3943006, - 51.0400464 - ], - [ - 3.3943006, - 51.0400464 - ], - [ - 3.3943006, - 51.0400464 - ], - [ - 3.3943006, - 51.0400464 - ], - [ - 3.3943006, - 51.0400464 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 93001720 - } - }, - { - "id": 92991026, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3253628, - 51.0679494 - ], - [ - 3.3505379, - 51.0679494 - ], - [ - 3.3505379, - 51.0843882 - ], - [ - 3.3253628, - 51.0843882 - ], - [ - 3.3253628, - 51.0679494 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "nature", - "language": "nl", - "theme-creator": "" - }, - "id": 92991026 - } - }, - { - "id": 92990737, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7866457, - 48.0954981 - ], - [ - 11.800738, - 48.0954981 - ], - [ - 11.800738, - 48.098762 - ], - [ - 11.7866457, - 48.098762 - ], - [ - 11.7866457, - 48.0954981 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "benches", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 92990737 - } - }, - { - "id": 92988162, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3253628, - 51.0679494 - ], - [ - 3.3505379, - 51.0679494 - ], - [ - 3.3505379, - 51.0843882 - ], - [ - 3.3253628, - 51.0843882 - ], - [ - 3.3253628, - 51.0679494 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "nature", - "language": "nl", - "theme-creator": "" - }, - "id": 92988162 - } - }, - { - "id": 92988161, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3253628, - 51.0679494 - ], - [ - 3.3505379, - 51.0679494 - ], - [ - 3.3505379, - 51.0843882 - ], - [ - 3.3253628, - 51.0843882 - ], - [ - 3.3253628, - 51.0679494 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "nature", - "language": "nl", - "theme-creator": "" - }, - "id": 92988161 - } - }, - { - "id": 92986777, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4028605, - 50.8211128 - ], - [ - 4.4028605, - 50.8211128 - ], - [ - 4.4028605, - 50.8211128 - ], - [ - 4.4028605, - 50.8211128 - ], - [ - 4.4028605, - 50.8211128 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 92986777 - } - }, - { - "id": 92984809, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2581117, - 50.7507305 - ], - [ - 4.2581117, - 50.7507305 - ], - [ - 4.2581117, - 50.7507305 - ], - [ - 4.2581117, - 50.7507305 - ], - [ - 4.2581117, - 50.7507305 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 92984809 - } - }, - { - "id": 92982905, - "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.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, - "metadata": { - "theme": "charging_stations", - "language": "en", - "theme-creator": "" - }, - "id": 92982905 - } - }, - { - "id": 92973349, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5674775, - 50.5993796 - ], - [ - 4.7905838, - 50.5993796 - ], - [ - 4.7905838, - 50.7011721 - ], - [ - 4.5674775, - 50.7011721 - ], - [ - 4.5674775, - 50.5993796 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "charging_stations", - "language": "en", - "theme-creator": "" - }, - "id": 92973349 - } - }, - { - "id": 92967046, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3954021, - 51.0350253 - ], - [ - 3.3954021, - 51.0350253 - ], - [ - 3.3954021, - 51.0350253 - ], - [ - 3.3954021, - 51.0350253 - ], - [ - 3.3954021, - 51.0350253 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "charging_stations", - "language": "en", - "theme-creator": "" - }, - "id": 92967046 - } - }, - { - "id": 92956134, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7741515, - 48.1003992 - ], - [ - 11.7844892, - 48.1003992 - ], - [ - 11.7844892, - 48.1064605 - ], - [ - 11.7741515, - 48.1064605 - ], - [ - 11.7741515, - 48.1003992 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "benches", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 92956134 - } - }, - { - "id": 92950532, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7828369, - 48.1053983 - ], - [ - 11.7878231, - 48.1053983 - ], - [ - 11.7878231, - 48.1120178 - ], - [ - 11.7828369, - 48.1120178 - ], - [ - 11.7828369, - 48.1053983 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "benches", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 92950532 - } - }, - { - "id": 92941745, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4429967, - 51.0831965 - ], - [ - 3.4429967, - 51.0831965 - ], - [ - 3.4429967, - 51.0831965 - ], - [ - 3.4429967, - 51.0831965 - ], - [ - 3.4429967, - 51.0831965 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "fritures", - "language": "nl", - "theme-creator": "" - }, - "id": 92941745 - } - }, - { - "id": 92909378, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4125638, - 52.539718 - ], - [ - 13.4125638, - 52.539718 - ], - [ - 13.4125638, - 52.539718 - ], - [ - 13.4125638, - 52.539718 - ], - [ - 13.4125638, - 52.539718 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 92909378 - } - }, - { - "id": 92883743, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7253015, - 51.048925 - ], - [ - 3.7380204, - 51.048925 - ], - [ - 3.7380204, - 51.0596245 - ], - [ - 3.7253015, - 51.0596245 - ], - [ - 3.7253015, - 51.048925 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 92883743 - } - }, - { - "id": 92818838, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0626491, - 51.1485984 - ], - [ - 4.0783181, - 51.1485984 - ], - [ - 4.0783181, - 51.1733295 - ], - [ - 4.0626491, - 51.1733295 - ], - [ - 4.0626491, - 51.1485984 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 92818838 - } - }, - { - "id": 92777556, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7970846, - 48.1041581 - ], - [ - 11.7996809, - 48.1041581 - ], - [ - 11.7996809, - 48.10512 - ], - [ - 11.7970846, - 48.10512 - ], - [ - 11.7970846, - 48.1041581 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "benches", - "language": "de", - "theme-creator": "" - }, - "id": 92777556 - } - }, - { - "id": 92776734, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9642778, - 51.1966855 - ], - [ - 3.9881346, - 51.1966855 - ], - [ - 3.9881346, - 51.2104874 - ], - [ - 3.9642778, - 51.2104874 - ], - [ - 3.9642778, - 51.1966855 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 92776734 - } - }, - { - "id": 92762566, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7004163, - 51.0508861 - ], - [ - 3.7041469, - 51.0508861 - ], - [ - 3.7041469, - 51.0535894 - ], - [ - 3.7004163, - 51.0535894 - ], - [ - 3.7004163, - 51.0508861 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "shops", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 92762566 - } - }, - { - "id": 92675350, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 25.0844794, - 60.2784955 - ], - [ - 25.087481, - 60.2784955 - ], - [ - 25.087481, - 60.2810023 - ], - [ - 25.0844794, - 60.2810023 - ], - [ - 25.0844794, - 60.2784955 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "shops", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 92675350 - } - }, - { - "id": 92672486, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7115416, - 51.0506061 - ], - [ - 3.7115416, - 51.0506061 - ], - [ - 3.7115416, - 51.0506061 - ], - [ - 3.7115416, - 51.0506061 - ], - [ - 3.7115416, - 51.0506061 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "wiki:MapComplete/Fritures", - "language": "nl", - "theme-creator": "" - }, - "id": 92672486 - } - }, - { - "id": 92672464, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6996553, - 51.0521448 - ], - [ - 3.6996553, - 51.0521448 - ], - [ - 3.6996553, - 51.0521448 - ], - [ - 3.6996553, - 51.0521448 - ], - [ - 3.6996553, - 51.0521448 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "wiki:MapComplete/Fritures", - "language": "nl", - "theme-creator": "" - }, - "id": 92672464 - } - }, - { - "id": 92655740, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7859085, - 48.1056387 - ], - [ - 11.7859085, - 48.1056387 - ], - [ - 11.7859085, - 48.1056387 - ], - [ - 11.7859085, - 48.1056387 - ], - [ - 11.7859085, - 48.1056387 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "benches", - "language": "de", - "theme-creator": "" - }, - "id": 92655740 - } - }, - { - "id": 92655413, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1423784, - 51.1888697 - ], - [ - 3.1424981, - 51.1888697 - ], - [ - 3.1424981, - 51.1889452 - ], - [ - 3.1423784, - 51.1889452 - ], - [ - 3.1423784, - 51.1888697 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "toilets", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 92655413 - } - }, - { - "id": 92655353, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1375902, - 51.1883978 - ], - [ - 3.142227, - 51.1883978 - ], - [ - 3.142227, - 51.1911527 - ], - [ - 3.1375902, - 51.1911527 - ], - [ - 3.1375902, - 51.1883978 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "fietsstraten", - "language": "nl", - "theme-creator": "MapComlete" - }, - "id": 92655353 - } - }, - { - "id": 92655156, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.133783, - 51.1875413 - ], - [ - 3.133783, - 51.1875413 - ], - [ - 3.133783, - 51.1875413 - ], - [ - 3.133783, - 51.1875413 - ], - [ - 3.133783, - 51.1875413 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 92655156 - } - }, - { - "id": 92644570, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2170021, - 51.2143766 - ], - [ - 3.2170021, - 51.2143766 - ], - [ - 3.2170021, - 51.2143766 - ], - [ - 3.2170021, - 51.2143766 - ], - [ - 3.2170021, - 51.2143766 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "wiki:MapComplete/covid", - "language": "en", - "theme-creator": "" - }, - "id": 92644570 - } - }, - { - "id": 92629048, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0914494, - 51.1387412 - ], - [ - 3.1154931, - 51.1387412 - ], - [ - 3.1154931, - 51.1554054 - ], - [ - 3.0914494, - 51.1554054 - ], - [ - 3.0914494, - 51.1387412 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 92629048 - } - }, - { - "id": 92628414, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1512973, - 51.1597192 - ], - [ - 3.1581819, - 51.1597192 - ], - [ - 3.1581819, - 51.1709136 - ], - [ - 3.1512973, - 51.1709136 - ], - [ - 3.1512973, - 51.1597192 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "nature", - "language": "nl", - "theme-creator": "" - }, - "id": 92628414 - } - }, - { - "id": 92626634, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1582148, - 51.1705313 - ], - [ - 3.1612387, - 51.1705313 - ], - [ - 3.1612387, - 51.172596 - ], - [ - 3.1582148, - 51.172596 - ], - [ - 3.1582148, - 51.1705313 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "nature", - "language": "nl", - "theme-creator": "" - }, - "id": 92626634 - } - }, - { - "id": 92626511, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1582148, - 51.1705313 - ], - [ - 3.1612387, - 51.1705313 - ], - [ - 3.1612387, - 51.172596 - ], - [ - 3.1582148, - 51.172596 - ], - [ - 3.1582148, - 51.1705313 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "nature", - "language": "nl", - "theme-creator": "" - }, - "id": 92626511 - } - }, - { - "id": 92623504, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2203063, - 41.4376909 - ], - [ - 2.2214597, - 41.4376909 - ], - [ - 2.2214597, - 41.4392234 - ], - [ - 2.2203063, - 41.4392234 - ], - [ - 2.2203063, - 41.4376909 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "arbres", - "language": "ca", - "theme-creator": "" - }, - "id": 92623504 - } - }, - { - "id": 92623044, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2188802, - 41.437956 - ], - [ - 2.2188802, - 41.437956 - ], - [ - 2.2188802, - 41.437956 - ], - [ - 2.2188802, - 41.437956 - ], - [ - 2.2188802, - 41.437956 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "arbres", - "language": "ca", - "theme-creator": "" - }, - "id": 92623044 - } - }, - { - "id": 92622358, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2153041, - 41.4336843 - ], - [ - 2.2227147, - 41.4336843 - ], - [ - 2.2227147, - 41.439124 - ], - [ - 2.2153041, - 41.439124 - ], - [ - 2.2153041, - 41.4336843 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "arbres", - "language": "ca", - "theme-creator": "" - }, - "id": 92622358 - } - }, - { - "id": 92608270, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.206361, - 51.2163913 - ], - [ - 3.206361, - 51.2163913 - ], - [ - 3.206361, - 51.2163913 - ], - [ - 3.206361, - 51.2163913 - ], - [ - 3.206361, - 51.2163913 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 92608270 - } - }, - { - "id": 92594805, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1933442, - 41.41607 - ], - [ - 2.1933496, - 41.41607 - ], - [ - 2.1933496, - 41.4161987 - ], - [ - 2.1933442, - 41.4161987 - ], - [ - 2.1933442, - 41.41607 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "arbres", - "language": "ca", - "theme-creator": "" - }, - "id": 92594805 - } - }, - { - "id": 92591880, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.713025, - 41.2201956 - ], - [ - 1.7131376, - 41.2201956 - ], - [ - 1.7131376, - 41.2204095 - ], - [ - 1.713025, - 41.2204095 - ], - [ - 1.713025, - 41.2201956 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "arbres", - "language": "ca", - "theme-creator": "" - }, - "id": 92591880 - } - }, - { - "id": 92480675, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2487155, - 50.982231 - ], - [ - 3.2786626, - 50.982231 - ], - [ - 3.2786626, - 50.9896885 - ], - [ - 3.2487155, - 50.9896885 - ], - [ - 3.2487155, - 50.982231 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "boomgaarden", - "language": "nl", - "theme-creator": "" - }, - "id": 92480675 - } - }, - { - "id": 92451359, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4181561, - 50.7982014 - ], - [ - 4.4181561, - 50.7982014 - ], - [ - 4.4181561, - 50.7982014 - ], - [ - 4.4181561, - 50.7982014 - ], - [ - 4.4181561, - 50.7982014 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "skateparks", - "language": "en", - "theme-creator": "" - }, - "id": 92451359 - } - }, - { - "id": 92451054, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2381851, - 50.8859868 - ], - [ - 3.8865083, - 50.8859868 - ], - [ - 3.8865083, - 51.0070347 - ], - [ - 3.2381851, - 51.0070347 - ], - [ - 3.2381851, - 50.8859868 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "fietsstraten", - "language": "nl", - "theme-creator": "MapComlete" - }, - "id": 92451054 - } - }, - { - "id": 92432289, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.2016446, - 48.0022815 - ], - [ - 0.2016446, - 48.0022815 - ], - [ - 0.2016446, - 48.0022815 - ], - [ - 0.2016446, - 48.0022815 - ], - [ - 0.2016446, - 48.0022815 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 92432289 - } - }, - { - "id": 92428732, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -6.9397952, - 37.2617108 - ], - [ - -5.6619314, - 37.2617108 - ], - [ - -5.6619314, - 40.9666994 - ], - [ - -6.9397952, - 40.9666994 - ], - [ - -6.9397952, - 37.2617108 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "restaurants", - "language": "es", - "theme-creator": "" - }, - "id": 92428732 - } - }, - { - "id": 92428636, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -6.9297941, - 37.2674201 - ], - [ - -6.9292057, - 37.2674201 - ], - [ - -6.9292057, - 37.2678164 - ], - [ - -6.9297941, - 37.2678164 - ], - [ - -6.9297941, - 37.2674201 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "crossingtime", - "language": "es", - "theme-creator": "" - }, - "id": 92428636 - } - }, - { - "id": 92365914, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -79.6175993, - 43.57749 - ], - [ - -79.61284, - 43.57749 - ], - [ - -79.61284, - 43.5804174 - ], - [ - -79.6175993, - 43.5804174 - ], - [ - -79.6175993, - 43.57749 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "mcac_cyclofix" - }, - "id": 92365914 - } - }, - { - "id": 92364775, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7086034, - 51.0371267 - ], - [ - 3.7086099, - 51.0371267 - ], - [ - 3.7086099, - 51.0371877 - ], - [ - 3.7086034, - 51.0371877 - ], - [ - 3.7086034, - 51.0371267 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 92364775 - } - }, - { - "id": 92364006, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7158123, - 51.0341047 - ], - [ - 3.7158123, - 51.0341047 - ], - [ - 3.7158123, - 51.0341047 - ], - [ - 3.7158123, - 51.0341047 - ], - [ - 3.7158123, - 51.0341047 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 92364006 - } - }, - { - "id": 92315583, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.37889, - 50.843518 - ], - [ - 4.37889, - 50.843518 - ], - [ - 4.37889, - 50.843518 - ], - [ - 4.37889, - 50.843518 - ], - [ - 4.37889, - 50.843518 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 92315583 - } - }, - { - "id": 92314448, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.8537107, - 45.2404562 - ], - [ - 5.8537107, - 45.2404562 - ], - [ - 5.8537107, - 45.2404562 - ], - [ - 5.8537107, - 45.2404562 - ], - [ - 5.8537107, - 45.2404562 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 92314448 - } - }, - { - "id": 92313828, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3831027, - 50.8000429 - ], - [ - 4.4192089, - 50.8000429 - ], - [ - 4.4192089, - 50.8266582 - ], - [ - 4.3831027, - 50.8266582 - ], - [ - 4.3831027, - 50.8000429 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 92313828 - } - }, - { - "id": 92304842, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.194865, - 51.1959226 - ], - [ - 3.194865, - 51.1959226 - ], - [ - 3.194865, - 51.1959226 - ], - [ - 3.194865, - 51.1959226 - ], - [ - 3.194865, - 51.1959226 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 92304842 - } - }, - { - "id": 92298874, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.205752, - 51.2034039 - ], - [ - 3.2060578, - 51.2034039 - ], - [ - 3.2060578, - 51.2034858 - ], - [ - 3.205752, - 51.2034858 - ], - [ - 3.205752, - 51.2034039 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "artworks", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 92298874 - } - }, - { - "id": 92279052, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.274686, - 51.2528222 - ], - [ - 3.2747797, - 51.2528222 - ], - [ - 3.2747797, - 51.2528846 - ], - [ - 3.274686, - 51.2528846 - ], - [ - 3.274686, - 51.2528222 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "nature", - "language": "nl", - "theme-creator": "" - }, - "id": 92279052 - } - }, - { - "id": 92275261, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.177915, - 51.2000113 - ], - [ - 3.177915, - 51.2000113 - ], - [ - 3.177915, - 51.2000113 - ], - [ - 3.177915, - 51.2000113 - ], - [ - 3.177915, - 51.2000113 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "shops", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 92275261 - } - }, - { - "id": 92254992, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2350853, - 51.2254433 - ], - [ - 3.2356119, - 51.2254433 - ], - [ - 3.2356119, - 51.2257413 - ], - [ - 3.2350853, - 51.2257413 - ], - [ - 3.2350853, - 51.2254433 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 92254992 - } - }, - { - "id": 92250660, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2270548, - 51.2096997 - ], - [ - 3.2271969, - 51.2096997 - ], - [ - 3.2271969, - 51.2098075 - ], - [ - 3.2270548, - 51.2098075 - ], - [ - 3.2270548, - 51.2096997 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 92250660 - } - }, - { - "id": 92247398, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1956675, - 51.2122374 - ], - [ - 3.1956675, - 51.2122374 - ], - [ - 3.1956675, - 51.2122374 - ], - [ - 3.1956675, - 51.2122374 - ], - [ - 3.1956675, - 51.2122374 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 92247398 - } - }, - { - "id": 92161174, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2345802, - 50.7077989 - ], - [ - 4.2573105, - 50.7077989 - ], - [ - 4.2573105, - 50.7161073 - ], - [ - 4.2345802, - 50.7161073 - ], - [ - 4.2345802, - 50.7077989 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "nature", - "language": "nl", - "theme-creator": "" - }, - "id": 92161174 - } - }, - { - "id": 92049987, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.736715, - 51.0781126 - ], - [ - 4.7434669, - 51.0781126 - ], - [ - 4.7434669, - 51.0816373 - ], - [ - 4.736715, - 51.0816373 - ], - [ - 4.736715, - 51.0781126 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 92049987 - } - }, - { - "id": 92049678, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4218702, - 51.2558986 - ], - [ - 4.4270247, - 51.2558986 - ], - [ - 4.4270247, - 51.2605573 - ], - [ - 4.4218702, - 51.2605573 - ], - [ - 4.4218702, - 51.2558986 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 92049678 - } - }, - { - "id": 92026826, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2350853, - 51.2254433 - ], - [ - 3.2356119, - 51.2254433 - ], - [ - 3.2356119, - 51.2257413 - ], - [ - 3.2350853, - 51.2257413 - ], - [ - 3.2350853, - 51.2254433 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 92026826 - } - }, - { - "id": 92021465, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6083265, - 50.8733351 - ], - [ - 4.6493972, - 50.8733351 - ], - [ - 4.6493972, - 50.893942 - ], - [ - 4.6083265, - 50.893942 - ], - [ - 4.6083265, - 50.8733351 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 92021465 - } - }, - { - "id": 92001085, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1965491, - 50.8966836 - ], - [ - 4.2454302, - 50.8966836 - ], - [ - 4.2454302, - 50.9132255 - ], - [ - 4.1965491, - 50.9132255 - ], - [ - 4.1965491, - 50.8966836 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "fietsstraten", - "language": "nl", - "theme-creator": "MapComlete" - }, - "id": 92001085 - } - }, - { - "id": 91974181, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2467632, - 51.1522547 - ], - [ - 3.250882, - 51.1522547 - ], - [ - 3.250882, - 51.1533473 - ], - [ - 3.2467632, - 51.1533473 - ], - [ - 3.2467632, - 51.1522547 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 91974181 - } - }, - { - "id": 91940593, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -6.9397269, - 37.2616019 - ], - [ - -6.9299523, - 37.2616019 - ], - [ - -6.9299523, - 37.2709228 - ], - [ - -6.9397269, - 37.2709228 - ], - [ - -6.9397269, - 37.2616019 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "crossingtime", - "language": "es", - "theme-creator": "" - }, - "id": 91940593 - } - }, - { - "id": 91937284, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4446135, - 51.3793682 - ], - [ - 4.4446135, - 51.3793682 - ], - [ - 4.4446135, - 51.3793682 - ], - [ - 4.4446135, - 51.3793682 - ], - [ - 4.4446135, - 51.3793682 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "klimbomen", - "language": "nl", - "theme-creator": "" - }, - "id": 91937284 - } - }, - { - "id": 91936823, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2237475, - 51.0814483 - ], - [ - 3.2632889, - 51.0814483 - ], - [ - 3.2632889, - 51.1581514 - ], - [ - 3.2237475, - 51.1581514 - ], - [ - 3.2237475, - 51.0814483 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 91936823 - } - }, - { - "id": 91928820, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -6.9426993, - 37.2626182 - ], - [ - -6.9332056, - 37.2626182 - ], - [ - -6.9332056, - 37.2775886 - ], - [ - -6.9426993, - 37.2775886 - ], - [ - -6.9426993, - 37.2626182 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "crossingtime", - "language": "es", - "theme-creator": "" - }, - "id": 91928820 - } - }, - { - "id": 91901760, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.236458, - 51.2081994 - ], - [ - 3.236458, - 51.2081994 - ], - [ - 3.236458, - 51.2081994 - ], - [ - 3.236458, - 51.2081994 - ], - [ - 3.236458, - 51.2081994 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "artworks", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 91901760 - } - }, - { - "id": 91896505, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4209376, - 50.8180287 - ], - [ - 4.4209376, - 50.8180287 - ], - [ - 4.4209376, - 50.8180287 - ], - [ - 4.4209376, - 50.8180287 - ], - [ - 4.4209376, - 50.8180287 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "maps", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 91896505 - } - }, - { - "id": 91896414, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.421238, - 50.8178556 - ], - [ - 4.421238, - 50.8178556 - ], - [ - 4.421238, - 50.8178556 - ], - [ - 4.421238, - 50.8178556 - ], - [ - 4.421238, - 50.8178556 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 91896414 - } - }, - { - "id": 91873200, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2321611, - 51.209337 - ], - [ - 3.2321611, - 51.209337 - ], - [ - 3.2321611, - 51.209337 - ], - [ - 3.2321611, - 51.209337 - ], - [ - 3.2321611, - 51.209337 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "artworks", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 91873200 - } - }, - { - "id": 91820037, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1238829, - 51.1675162 - ], - [ - 4.1238829, - 51.1675162 - ], - [ - 4.1238829, - 51.1675162 - ], - [ - 4.1238829, - 51.1675162 - ], - [ - 4.1238829, - 51.1675162 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 91820037 - } - }, - { - "id": 91817612, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.377513, - 48.8030247 - ], - [ - 2.4093077, - 48.8030247 - ], - [ - 2.4093077, - 48.8296475 - ], - [ - 2.377513, - 48.8296475 - ], - [ - 2.377513, - 48.8030247 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "personal", - "language": "en" - }, - "id": 91817612 - } - }, - { - "id": 91816014, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.3893289, - 48.8168731 - ], - [ - 2.4070463, - 48.8168731 - ], - [ - 2.4070463, - 48.8245599 - ], - [ - 2.3893289, - 48.8245599 - ], - [ - 2.3893289, - 48.8168731 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 91816014 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2020-11.json b/Docs/Tools/stats/stats.2020-11.json deleted file mode 100644 index b93a2b3a05..0000000000 --- a/Docs/Tools/stats/stats.2020-11.json +++ /dev/null @@ -1,10682 +0,0 @@ -{ - "features": [ - { - "id": 95071485, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3302333, - 50.6199238 - ], - [ - 4.3302333, - 50.6199238 - ], - [ - 4.3302333, - 50.6199238 - ], - [ - 4.3302333, - 50.6199238 - ], - [ - 4.3302333, - 50.6199238 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "climbing", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 95071485 - } - }, - { - "id": 95044929, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.0097427, - 49.2294722 - ], - [ - 7.0097427, - 49.2294722 - ], - [ - 7.0097427, - 49.2294722 - ], - [ - 7.0097427, - 49.2294722 - ], - [ - 7.0097427, - 49.2294722 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 95044929 - } - }, - { - "id": 95026219, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1550529, - 51.150891 - ], - [ - 4.1550529, - 51.150891 - ], - [ - 4.1550529, - 51.150891 - ], - [ - 4.1550529, - 51.150891 - ], - [ - 4.1550529, - 51.150891 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 95026219 - } - }, - { - "id": 94990757, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.3534909, - -33.6408167 - ], - [ - -70.3533858, - -33.6408167 - ], - [ - -70.3533858, - -33.6403671 - ], - [ - -70.3534909, - -33.6403671 - ], - [ - -70.3534909, - -33.6408167 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94990757 - } - }, - { - "id": 94987265, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.3532453, - -33.677618 - ], - [ - -70.3409709, - -33.677618 - ], - [ - -70.3409709, - -33.6441481 - ], - [ - -70.3532453, - -33.6441481 - ], - [ - -70.3532453, - -33.677618 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94987265 - } - }, - { - "id": 94969449, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6644019, - -33.4441381 - ], - [ - -70.6644019, - -33.4441381 - ], - [ - -70.6644019, - -33.4441381 - ], - [ - -70.6644019, - -33.4441381 - ], - [ - -70.6644019, - -33.4441381 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94969449 - } - }, - { - "id": 94964190, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0292208, - 14.6048081 - ], - [ - 121.0299303, - 14.6048081 - ], - [ - 121.0299303, - 14.6048885 - ], - [ - 121.0292208, - 14.6048885 - ], - [ - 121.0292208, - 14.6048081 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94964190 - } - }, - { - "id": 94954013, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.213592, - 41.4370411 - ], - [ - 2.219768, - 41.4370411 - ], - [ - 2.219768, - 41.4405143 - ], - [ - 2.213592, - 41.4405143 - ], - [ - 2.213592, - 41.4370411 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "arbres_llefia", - "language": "ca", - "theme-creator": "" - }, - "id": 94954013 - } - }, - { - "id": 94940524, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2216254, - 41.4378011 - ], - [ - 2.2229692, - 41.4378011 - ], - [ - 2.2229692, - 41.4387502 - ], - [ - 2.2216254, - 41.4387502 - ], - [ - 2.2216254, - 41.4378011 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "arbres_llefia", - "language": "ca", - "theme-creator": "" - }, - "id": 94940524 - } - }, - { - "id": 94938881, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2137736, - 41.4343209 - ], - [ - 2.2227936, - 41.4343209 - ], - [ - 2.2227936, - 41.440604 - ], - [ - 2.2137736, - 41.440604 - ], - [ - 2.2137736, - 41.4343209 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "arbres_llefia", - "language": "ca", - "theme-creator": "" - }, - "id": 94938881 - } - }, - { - "id": 94938851, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2202843, - 41.4378363 - ], - [ - 2.2227345, - 41.4378363 - ], - [ - 2.2227345, - 41.4386678 - ], - [ - 2.2202843, - 41.4386678 - ], - [ - 2.2202843, - 41.4378363 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "arbres_llefia", - "language": "ca", - "theme-creator": "" - }, - "id": 94938851 - } - }, - { - "id": 94909480, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2154006, - 41.4344797 - ], - [ - 2.2163394, - 41.4344797 - ], - [ - 2.2163394, - 41.4349457 - ], - [ - 2.2154006, - 41.4349457 - ], - [ - 2.2154006, - 41.4344797 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "arbres_llefia", - "language": "ca", - "theme-creator": "" - }, - "id": 94909480 - } - }, - { - "id": 94909391, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2153417, - 41.4337216 - ], - [ - 2.2153775, - 41.4337216 - ], - [ - 2.2153775, - 41.4337572 - ], - [ - 2.2153417, - 41.4337572 - ], - [ - 2.2153417, - 41.4337216 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "arbres_llefia", - "language": "ca", - "theme-creator": "" - }, - "id": 94909391 - } - }, - { - "id": 94908940, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2184618, - 41.4374261 - ], - [ - 2.2187315, - 41.4374261 - ], - [ - 2.2187315, - 41.4395606 - ], - [ - 2.2184618, - 41.4395606 - ], - [ - 2.2184618, - 41.4374261 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "arbres_llefia", - "language": "ca", - "theme-creator": "" - }, - "id": 94908940 - } - }, - { - "id": 94908939, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2184618, - 41.4374261 - ], - [ - 2.2184618, - 41.4374261 - ], - [ - 2.2184618, - 41.4374261 - ], - [ - 2.2184618, - 41.4374261 - ], - [ - 2.2184618, - 41.4374261 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "arbres_llefia", - "language": "ca", - "theme-creator": "" - }, - "id": 94908939 - } - }, - { - "id": 94908676, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.215481, - 41.4340085 - ], - [ - 2.2165039, - 41.4340085 - ], - [ - 2.2165039, - 41.4349881 - ], - [ - 2.215481, - 41.4349881 - ], - [ - 2.215481, - 41.4340085 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "arbres_llefia", - "language": "ca", - "theme-creator": "" - }, - "id": 94908676 - } - }, - { - "id": 94908194, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2135308, - 41.4373892 - ], - [ - 2.2170953, - 41.4373892 - ], - [ - 2.2170953, - 41.4399409 - ], - [ - 2.2135308, - 41.4399409 - ], - [ - 2.2135308, - 41.4373892 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "arbres_llefia", - "language": "ca", - "theme-creator": "" - }, - "id": 94908194 - } - }, - { - "id": 94907892, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.8498808, - 47.9886388 - ], - [ - 7.8498808, - 47.9886388 - ], - [ - 7.8498808, - 47.9886388 - ], - [ - 7.8498808, - 47.9886388 - ], - [ - 7.8498808, - 47.9886388 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "openinghourscovid19", - "language": "es", - "theme-creator": "" - }, - "id": 94907892 - } - }, - { - "id": 94904697, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7060482, - 51.025956 - ], - [ - 3.713482, - 51.025956 - ], - [ - 3.713482, - 51.0344284 - ], - [ - 3.7060482, - 51.0344284 - ], - [ - 3.7060482, - 51.025956 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 94904697 - } - }, - { - "id": 94903388, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2155675, - 41.4353329 - ], - [ - 2.2214936, - 41.4353329 - ], - [ - 2.2214936, - 41.4405868 - ], - [ - 2.2155675, - 41.4405868 - ], - [ - 2.2155675, - 41.4353329 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "arbres_llefia", - "language": "ca", - "theme-creator": "" - }, - "id": 94903388 - } - }, - { - "id": 94892190, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3095114, - 52.4312024 - ], - [ - 13.3528157, - 52.4312024 - ], - [ - 13.3528157, - 52.4331415 - ], - [ - 13.3095114, - 52.4331415 - ], - [ - 13.3095114, - 52.4312024 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 94892190 - } - }, - { - "id": 94886678, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.904993, - 47.3520043 - ], - [ - 7.904993, - 47.3520043 - ], - [ - 7.904993, - 47.3520043 - ], - [ - 7.904993, - 47.3520043 - ], - [ - 7.904993, - 47.3520043 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "artworks", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94886678 - } - }, - { - "id": 94886654, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2148578, - 41.4389847 - ], - [ - 2.2193176, - 41.4389847 - ], - [ - 2.2193176, - 41.4418136 - ], - [ - 2.2148578, - 41.4418136 - ], - [ - 2.2148578, - 41.4389847 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "arbres_llefia", - "language": "ca", - "theme-creator": "" - }, - "id": 94886654 - } - }, - { - "id": 94884306, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2166406, - 41.4414979 - ], - [ - 2.2183291, - 41.4414979 - ], - [ - 2.2183291, - 41.4416808 - ], - [ - 2.2166406, - 41.4416808 - ], - [ - 2.2166406, - 41.4414979 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "arbres_llefia", - "language": "ca", - "theme-creator": "" - }, - "id": 94884306 - } - }, - { - "id": 94855667, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7119752, - 51.025956 - ], - [ - 3.713482, - 51.025956 - ], - [ - 3.713482, - 51.0268982 - ], - [ - 3.7119752, - 51.0268982 - ], - [ - 3.7119752, - 51.025956 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94855667 - } - }, - { - "id": 94846986, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7060482, - 51.0319746 - ], - [ - 3.7060482, - 51.0319746 - ], - [ - 3.7060482, - 51.0319746 - ], - [ - 3.7060482, - 51.0319746 - ], - [ - 3.7060482, - 51.0319746 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94846986 - } - }, - { - "id": 94840108, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7866564, - 48.1036502 - ], - [ - 11.7866564, - 48.1036502 - ], - [ - 11.7866564, - 48.1036502 - ], - [ - 11.7866564, - 48.1036502 - ], - [ - 11.7866564, - 48.1036502 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "benches", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 94840108 - } - }, - { - "id": 94835855, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7879288, - 48.0996586 - ], - [ - 11.7879288, - 48.0996586 - ], - [ - 11.7879288, - 48.0996586 - ], - [ - 11.7879288, - 48.0996586 - ], - [ - 11.7879288, - 48.0996586 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "benches", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 94835855 - } - }, - { - "id": 94831177, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.7437298, - 50.1829142 - ], - [ - 8.7437298, - 50.1829142 - ], - [ - 8.7437298, - 50.1829142 - ], - [ - 8.7437298, - 50.1829142 - ], - [ - 8.7437298, - 50.1829142 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "vegan", - "language": "de", - "theme-creator": "Christian Neumann " - }, - "id": 94831177 - } - }, - { - "id": 94778286, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7082026, - 51.0344391 - ], - [ - 3.7082026, - 51.0344391 - ], - [ - 3.7082026, - 51.0344391 - ], - [ - 3.7082026, - 51.0344391 - ], - [ - 3.7082026, - 51.0344391 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94778286 - } - }, - { - "id": 94775738, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7083597, - 51.0268982 - ], - [ - 3.7593564, - 51.0268982 - ], - [ - 3.7593564, - 51.0597109 - ], - [ - 3.7083597, - 51.0597109 - ], - [ - 3.7083597, - 51.0268982 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94775738 - } - }, - { - "id": 94761434, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.7501113, - 59.9088459 - ], - [ - 10.7501113, - 59.9088459 - ], - [ - 10.7501113, - 59.9088459 - ], - [ - 10.7501113, - 59.9088459 - ], - [ - 10.7501113, - 59.9088459 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94761434 - } - }, - { - "id": 94735016, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -61.1012954, - 14.6162439 - ], - [ - -61.1012954, - 14.6162439 - ], - [ - -61.1012954, - 14.6162439 - ], - [ - -61.1012954, - 14.6162439 - ], - [ - -61.1012954, - 14.6162439 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "shops", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94735016 - } - }, - { - "id": 94731389, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7100154, - 51.0621159 - ], - [ - 3.7100154, - 51.0621159 - ], - [ - 3.7100154, - 51.0621159 - ], - [ - 3.7100154, - 51.0621159 - ], - [ - 3.7100154, - 51.0621159 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "shops", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94731389 - } - }, - { - "id": 94726631, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7100154, - 51.0621159 - ], - [ - 3.7100154, - 51.0621159 - ], - [ - 3.7100154, - 51.0621159 - ], - [ - 3.7100154, - 51.0621159 - ], - [ - 3.7100154, - 51.0621159 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "shops", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94726631 - } - }, - { - "id": 94724303, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7237454, - 51.0540818 - ], - [ - 3.7237454, - 51.0540818 - ], - [ - 3.7237454, - 51.0540818 - ], - [ - 3.7237454, - 51.0540818 - ], - [ - 3.7237454, - 51.0540818 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94724303 - } - }, - { - "id": 94717790, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.5698806, - -33.593523 - ], - [ - -70.5698806, - -33.593523 - ], - [ - -70.5698806, - -33.593523 - ], - [ - -70.5698806, - -33.593523 - ], - [ - -70.5698806, - -33.593523 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94717790 - } - }, - { - "id": 94717255, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 23.1411418, - 53.1597184 - ], - [ - 23.1411418, - 53.1597184 - ], - [ - 23.1411418, - 53.1597184 - ], - [ - 23.1411418, - 53.1597184 - ], - [ - 23.1411418, - 53.1597184 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94717255 - } - }, - { - "id": 94716778, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7237235, - 51.0540502 - ], - [ - 3.7372398, - 51.0540502 - ], - [ - 3.7372398, - 51.0649869 - ], - [ - 3.7237235, - 51.0649869 - ], - [ - 3.7237235, - 51.0540502 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94716778 - } - }, - { - "id": 94715749, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7152567, - 51.0593976 - ], - [ - 3.7176919, - 51.0593976 - ], - [ - 3.7176919, - 51.0644948 - ], - [ - 3.7152567, - 51.0644948 - ], - [ - 3.7152567, - 51.0593976 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "personal", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94715749 - } - }, - { - "id": 94707872, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1341274, - 51.1124125 - ], - [ - 4.1341274, - 51.1124125 - ], - [ - 4.1341274, - 51.1124125 - ], - [ - 4.1341274, - 51.1124125 - ], - [ - 4.1341274, - 51.1124125 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94707872 - } - }, - { - "id": 94664971, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7176919, - 51.0644948 - ], - [ - 3.7176919, - 51.0644948 - ], - [ - 3.7176919, - 51.0644948 - ], - [ - 3.7176919, - 51.0644948 - ], - [ - 3.7176919, - 51.0644948 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 94664971 - } - }, - { - "id": 94657023, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 18.7095608, - 50.1248695 - ], - [ - 18.7095608, - 50.1248695 - ], - [ - 18.7095608, - 50.1248695 - ], - [ - 18.7095608, - 50.1248695 - ], - [ - 18.7095608, - 50.1248695 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94657023 - } - }, - { - "id": 94653959, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.6354308, - 47.8906849 - ], - [ - 10.6354308, - 47.8906849 - ], - [ - 10.6354308, - 47.8906849 - ], - [ - 10.6354308, - 47.8906849 - ], - [ - 10.6354308, - 47.8906849 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 94653959 - } - }, - { - "id": 94653732, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 23.1411418, - 53.1597184 - ], - [ - 23.1411418, - 53.1597184 - ], - [ - 23.1411418, - 53.1597184 - ], - [ - 23.1411418, - 53.1597184 - ], - [ - 23.1411418, - 53.1597184 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94653732 - } - }, - { - "id": 94637900, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7232309, - 51.0422215 - ], - [ - 3.7233245, - 51.0422215 - ], - [ - 3.7233245, - 51.0422337 - ], - [ - 3.7232309, - 51.0422337 - ], - [ - 3.7232309, - 51.0422215 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 94637900 - } - }, - { - "id": 94626216, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.9248738, - 51.4706253 - ], - [ - 11.9936761, - 51.4706253 - ], - [ - 11.9936761, - 51.5088429 - ], - [ - 11.9248738, - 51.5088429 - ], - [ - 11.9248738, - 51.4706253 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94626216 - } - }, - { - "id": 94602336, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -79.2904726, - 43.7353469 - ], - [ - -79.2904726, - 43.7353469 - ], - [ - -79.2904726, - 43.7353469 - ], - [ - -79.2904726, - 43.7353469 - ], - [ - -79.2904726, - 43.7353469 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94602336 - } - }, - { - "id": 94601973, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 23.1724902, - 53.1339625 - ], - [ - 23.1724902, - 53.1339625 - ], - [ - 23.1724902, - 53.1339625 - ], - [ - 23.1724902, - 53.1339625 - ], - [ - 23.1724902, - 53.1339625 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94601973 - } - }, - { - "id": 94600621, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.5904394, - 50.9298353 - ], - [ - 11.5904394, - 50.9298353 - ], - [ - 11.5904394, - 50.9298353 - ], - [ - 11.5904394, - 50.9298353 - ], - [ - 11.5904394, - 50.9298353 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94600621 - } - }, - { - "id": 94591717, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -6.8135803, - 42.6068109 - ], - [ - -6.8075839, - 42.6068109 - ], - [ - -6.8075839, - 42.6098155 - ], - [ - -6.8135803, - 42.6098155 - ], - [ - -6.8135803, - 42.6068109 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "wherethesidewalkshavenoname", - "language": "es", - "theme-creator": "" - }, - "id": 94591717 - } - }, - { - "id": 94586263, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8665464, - 45.7544485 - ], - [ - 4.8665464, - 45.7544485 - ], - [ - 4.8665464, - 45.7544485 - ], - [ - 4.8665464, - 45.7544485 - ], - [ - 4.8665464, - 45.7544485 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94586263 - } - }, - { - "id": 94583605, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -6.2856951, - 53.2841855 - ], - [ - -6.2856951, - 53.2841855 - ], - [ - -6.2856951, - 53.2841855 - ], - [ - -6.2856951, - 53.2841855 - ], - [ - -6.2856951, - 53.2841855 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94583605 - } - }, - { - "id": 94581348, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 138.4995934, - -35.1040843 - ], - [ - 138.4995934, - -35.1040843 - ], - [ - 138.4995934, - -35.1040843 - ], - [ - 138.4995934, - -35.1040843 - ], - [ - 138.4995934, - -35.1040843 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94581348 - } - }, - { - "id": 94564689, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.7755967, - 47.2630141 - ], - [ - 8.7755967, - 47.2630141 - ], - [ - 8.7755967, - 47.2630141 - ], - [ - 8.7755967, - 47.2630141 - ], - [ - 8.7755967, - 47.2630141 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "toilets", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94564689 - } - }, - { - "id": 94564358, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.8148078, - 47.2239204 - ], - [ - 8.8148078, - 47.2239204 - ], - [ - 8.8148078, - 47.2239204 - ], - [ - 8.8148078, - 47.2239204 - ], - [ - 8.8148078, - 47.2239204 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "drinking_water", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94564358 - } - }, - { - "id": 94563857, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.8162361, - 47.2235528 - ], - [ - 8.8164086, - 47.2235528 - ], - [ - 8.8164086, - 47.2237743 - ], - [ - 8.8162361, - 47.2237743 - ], - [ - 8.8162361, - 47.2235528 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "benches", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 94563857 - } - }, - { - "id": 94563656, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.7795418, - 47.2453326 - ], - [ - 8.8284299, - 47.2453326 - ], - [ - 8.8284299, - 47.2749635 - ], - [ - 8.7795418, - 47.2749635 - ], - [ - 8.7795418, - 47.2453326 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "charging_stations", - "language": "en", - "theme-creator": "" - }, - "id": 94563656 - } - }, - { - "id": 94556495, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2154107, - 51.2156295 - ], - [ - 3.2154107, - 51.2156295 - ], - [ - 3.2154107, - 51.2156295 - ], - [ - 3.2154107, - 51.2156295 - ], - [ - 3.2154107, - 51.2156295 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94556495 - } - }, - { - "id": 94549828, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 17.9015538, - 59.5210737 - ], - [ - 17.9015538, - 59.5210737 - ], - [ - 17.9015538, - 59.5210737 - ], - [ - 17.9015538, - 59.5210737 - ], - [ - 17.9015538, - 59.5210737 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94549828 - } - }, - { - "id": 94545816, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2431303, - 51.0412934 - ], - [ - 3.7446009, - 51.0412934 - ], - [ - 3.7446009, - 51.2060932 - ], - [ - 3.2431303, - 51.2060932 - ], - [ - 3.2431303, - 51.0412934 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "climbing", - "language": "nl", - "theme-creator": "Christian Neumann " - }, - "id": 94545816 - } - }, - { - "id": 94542770, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7027162, - 51.0387284 - ], - [ - 3.7027162, - 51.0387284 - ], - [ - 3.7027162, - 51.0387284 - ], - [ - 3.7027162, - 51.0387284 - ], - [ - 3.7027162, - 51.0387284 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "climbing", - "language": "nl", - "theme-creator": "Christian Neumann " - }, - "id": 94542770 - } - }, - { - "id": 94520039, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5911264, - 50.6487841 - ], - [ - 5.5911264, - 50.6487841 - ], - [ - 5.5911264, - 50.6487841 - ], - [ - 5.5911264, - 50.6487841 - ], - [ - 5.5911264, - 50.6487841 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "maps", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94520039 - } - }, - { - "id": 94518239, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7989655, - 51.0244628 - ], - [ - 3.8007599, - 51.0244628 - ], - [ - 3.8007599, - 51.0283069 - ], - [ - 3.7989655, - 51.0283069 - ], - [ - 3.7989655, - 51.0244628 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "personal", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94518239 - } - }, - { - "id": 94504900, - "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.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, - "metadata": { - "theme": "climbing", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 94504900 - } - }, - { - "id": 94483775, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6048447, - -33.4181799 - ], - [ - -70.6048447, - -33.4181799 - ], - [ - -70.6048447, - -33.4181799 - ], - [ - -70.6048447, - -33.4181799 - ], - [ - -70.6048447, - -33.4181799 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94483775 - } - }, - { - "id": 94467467, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7400941, - 51.0559919 - ], - [ - 3.7400941, - 51.0559919 - ], - [ - 3.7400941, - 51.0559919 - ], - [ - 3.7400941, - 51.0559919 - ], - [ - 3.7400941, - 51.0559919 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 94467467 - } - }, - { - "id": 94442683, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.4293212, - 47.0754965 - ], - [ - 15.4296437, - 47.0754965 - ], - [ - 15.4296437, - 47.0758 - ], - [ - 15.4293212, - 47.0758 - ], - [ - 15.4293212, - 47.0754965 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "artworks", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94442683 - } - }, - { - "id": 94442306, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.4333376, - 47.0780868 - ], - [ - 15.4333376, - 47.0780868 - ], - [ - 15.4333376, - 47.0780868 - ], - [ - 15.4333376, - 47.0780868 - ], - [ - 15.4333376, - 47.0780868 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94442306 - } - }, - { - "id": 94439809, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6158055, - 50.6692047 - ], - [ - 4.729664, - 50.6692047 - ], - [ - 4.729664, - 50.6914237 - ], - [ - 4.6158055, - 50.6914237 - ], - [ - 4.6158055, - 50.6692047 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94439809 - } - }, - { - "id": 94434758, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7232309, - 51.0422215 - ], - [ - 3.7232309, - 51.0422215 - ], - [ - 3.7232309, - 51.0422215 - ], - [ - 3.7232309, - 51.0422215 - ], - [ - 3.7232309, - 51.0422215 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 94434758 - } - }, - { - "id": 94420981, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.97212, - 40.5800783 - ], - [ - -73.97212, - 40.5800783 - ], - [ - -73.97212, - 40.5800783 - ], - [ - -73.97212, - 40.5800783 - ], - [ - -73.97212, - 40.5800783 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "shops", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94420981 - } - }, - { - "id": 94420513, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4577679, - 51.0907471 - ], - [ - 3.4668001, - 51.0907471 - ], - [ - 3.4668001, - 51.0947368 - ], - [ - 3.4577679, - 51.0947368 - ], - [ - 3.4577679, - 51.0907471 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "surveillance", - "language": "nl", - "theme-creator": "" - }, - "id": 94420513 - } - }, - { - "id": 94418348, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.7790362, - 47.2522611 - ], - [ - 8.7811443, - 47.2522611 - ], - [ - 8.7811443, - 47.2529646 - ], - [ - 8.7790362, - 47.2529646 - ], - [ - 8.7790362, - 47.2522611 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 94418348 - } - }, - { - "id": 94402050, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7233245, - 51.0422337 - ], - [ - 3.7233245, - 51.0422337 - ], - [ - 3.7233245, - 51.0422337 - ], - [ - 3.7233245, - 51.0422337 - ], - [ - 3.7233245, - 51.0422337 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 94402050 - } - }, - { - "id": 94382614, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6812702, - 51.0464867 - ], - [ - 3.6815411, - 51.0464867 - ], - [ - 3.6815411, - 51.0464985 - ], - [ - 3.6812702, - 51.0464985 - ], - [ - 3.6812702, - 51.0464867 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "pingpong", - "language": "nl", - "theme-creator": "" - }, - "id": 94382614 - } - }, - { - "id": 94359040, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5033791, - 50.1942086 - ], - [ - 8.5036969, - 50.1942086 - ], - [ - 8.5036969, - 50.1943052 - ], - [ - 8.5033791, - 50.1943052 - ], - [ - 8.5033791, - 50.1942086 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "climbing", - "language": "de", - "theme-creator": "Christian Neumann " - }, - "id": 94359040 - } - }, - { - "id": 94322960, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2289291, - -39.8419032 - ], - [ - -73.2289291, - -39.8419032 - ], - [ - -73.2289291, - -39.8419032 - ], - [ - -73.2289291, - -39.8419032 - ], - [ - -73.2289291, - -39.8419032 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94322960 - } - }, - { - "id": 94308579, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.7682647, - -33.4882303 - ], - [ - -70.7682647, - -33.4882303 - ], - [ - -70.7682647, - -33.4882303 - ], - [ - -70.7682647, - -33.4882303 - ], - [ - -70.7682647, - -33.4882303 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94308579 - } - }, - { - "id": 94292046, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.6809726, - 41.2503222 - ], - [ - 1.6809726, - 41.2503222 - ], - [ - 1.6809726, - 41.2503222 - ], - [ - 1.6809726, - 41.2503222 - ], - [ - 1.6809726, - 41.2503222 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94292046 - } - }, - { - "id": 94240483, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6921506, - -33.4541405 - ], - [ - -70.6921506, - -33.4541405 - ], - [ - -70.6921506, - -33.4541405 - ], - [ - -70.6921506, - -33.4541405 - ], - [ - -70.6921506, - -33.4541405 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94240483 - } - }, - { - "id": 94224931, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2583717, - 51.2030737 - ], - [ - 3.2583717, - 51.2030737 - ], - [ - 3.2583717, - 51.2030737 - ], - [ - 3.2583717, - 51.2030737 - ], - [ - 3.2583717, - 51.2030737 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "boomgaarden", - "language": "nl", - "theme-creator": "" - }, - "id": 94224931 - } - }, - { - "id": 94218339, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7103936, - 51.0407568 - ], - [ - 3.7103936, - 51.0407568 - ], - [ - 3.7103936, - 51.0407568 - ], - [ - 3.7103936, - 51.0407568 - ], - [ - 3.7103936, - 51.0407568 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 94218339 - } - }, - { - "id": 94159774, - "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.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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94159774 - } - }, - { - "id": 94153746, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2155448, - 51.1964366 - ], - [ - 3.2155448, - 51.1964366 - ], - [ - 3.2155448, - 51.1964366 - ], - [ - 3.2155448, - 51.1964366 - ], - [ - 3.2155448, - 51.1964366 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "surveillance", - "language": "en", - "theme-creator": "" - }, - "id": 94153746 - } - }, - { - "id": 94151721, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.8587197, - 48.0172648 - ], - [ - 7.9893294, - 48.0172648 - ], - [ - 7.9893294, - 48.0890595 - ], - [ - 7.8587197, - 48.0890595 - ], - [ - 7.8587197, - 48.0172648 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "openinghourscovid19", - "language": "es", - "theme-creator": "" - }, - "id": 94151721 - } - }, - { - "id": 94148345, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.7544806, - -33.5263805 - ], - [ - -70.5181798, - -33.5263805 - ], - [ - -70.5181798, - -33.4906527 - ], - [ - -70.7544806, - -33.4906527 - ], - [ - -70.7544806, - -33.5263805 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94148345 - } - }, - { - "id": 94138988, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3969104, - 51.0414748 - ], - [ - 3.3969104, - 51.0414748 - ], - [ - 3.3969104, - 51.0414748 - ], - [ - 3.3969104, - 51.0414748 - ], - [ - 3.3969104, - 51.0414748 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "surveillance", - "language": "en", - "theme-creator": "" - }, - "id": 94138988 - } - }, - { - "id": 94124940, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2277489, - 51.2066372 - ], - [ - 3.2277489, - 51.2066372 - ], - [ - 3.2277489, - 51.2066372 - ], - [ - 3.2277489, - 51.2066372 - ], - [ - 3.2277489, - 51.2066372 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "surveillance", - "language": "nl", - "theme-creator": "" - }, - "id": 94124940 - } - }, - { - "id": 94113792, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.8377655, - 47.9905195 - ], - [ - 7.838148, - 47.9905195 - ], - [ - 7.838148, - 47.9910477 - ], - [ - 7.8377655, - 47.9910477 - ], - [ - 7.8377655, - 47.9905195 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94113792 - } - }, - { - "id": 94108987, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7706946, - 48.1051404 - ], - [ - 11.7706946, - 48.1051404 - ], - [ - 11.7706946, - 48.1051404 - ], - [ - 11.7706946, - 48.1051404 - ], - [ - 11.7706946, - 48.1051404 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "benches", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 94108987 - } - }, - { - "id": 94103291, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.1932868, - 55.9513723 - ], - [ - -3.1872386, - 55.9513723 - ], - [ - -3.1872386, - 55.9526733 - ], - [ - -3.1932868, - 55.9526733 - ], - [ - -3.1932868, - 55.9513723 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94103291 - } - }, - { - "id": 94091759, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.5672321, - -33.4607463 - ], - [ - -70.5672321, - -33.4607463 - ], - [ - -70.5672321, - -33.4607463 - ], - [ - -70.5672321, - -33.4607463 - ], - [ - -70.5672321, - -33.4607463 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94091759 - } - }, - { - "id": 94086068, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.0247852, - 50.6174013 - ], - [ - 7.0247852, - 50.6174013 - ], - [ - 7.0247852, - 50.6174013 - ], - [ - 7.0247852, - 50.6174013 - ], - [ - 7.0247852, - 50.6174013 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 94086068 - } - }, - { - "id": 94076961, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2165796, - 51.0401883 - ], - [ - 3.7081727, - 51.0401883 - ], - [ - 3.7081727, - 51.1966576 - ], - [ - 3.2165796, - 51.1966576 - ], - [ - 3.2165796, - 51.0401883 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 94076961 - } - }, - { - "id": 94018048, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7020895, - 51.025956 - ], - [ - 3.713482, - 51.025956 - ], - [ - 3.713482, - 51.0572084 - ], - [ - 3.7020895, - 51.0572084 - ], - [ - 3.7020895, - 51.025956 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "personal", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 94018048 - } - }, - { - "id": 94017764, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.7556894, - -33.5223856 - ], - [ - -70.6350571, - -33.5223856 - ], - [ - -70.6350571, - -33.4026459 - ], - [ - -70.7556894, - -33.4026459 - ], - [ - -70.7556894, - -33.5223856 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94017764 - } - }, - { - "id": 94011144, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.3053461, - 51.4650246 - ], - [ - 7.3053461, - 51.4650246 - ], - [ - 7.3053461, - 51.4650246 - ], - [ - 7.3053461, - 51.4650246 - ], - [ - 7.3053461, - 51.4650246 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "toilets", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 94011144 - } - }, - { - "id": 94010704, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.5721673, - -33.4461622 - ], - [ - -70.5721673, - -33.4461622 - ], - [ - -70.5721673, - -33.4461622 - ], - [ - -70.5721673, - -33.4461622 - ], - [ - -70.5721673, - -33.4461622 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94010704 - } - }, - { - "id": 94002390, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6601357, - -33.4468732 - ], - [ - -70.590452, - -33.4468732 - ], - [ - -70.590452, - -33.434743 - ], - [ - -70.6601357, - -33.434743 - ], - [ - -70.6601357, - -33.4468732 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94002390 - } - }, - { - "id": 94000102, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -8.4281988, - 41.5493095 - ], - [ - -8.4229545, - 41.5493095 - ], - [ - -8.4229545, - 41.5533092 - ], - [ - -8.4281988, - 41.5533092 - ], - [ - -8.4281988, - 41.5493095 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 94000102 - } - }, - { - "id": 93957232, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7051982, - 51.0475375 - ], - [ - 3.7051982, - 51.0475375 - ], - [ - 3.7051982, - 51.0475375 - ], - [ - 3.7051982, - 51.0475375 - ], - [ - 3.7051982, - 51.0475375 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "personal", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 93957232 - } - }, - { - "id": 93954090, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7033764, - 51.0476311 - ], - [ - 3.7033764, - 51.0476311 - ], - [ - 3.7033764, - 51.0476311 - ], - [ - 3.7033764, - 51.0476311 - ], - [ - 3.7033764, - 51.0476311 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "nature", - "language": "nl", - "theme-creator": "" - }, - "id": 93954090 - } - }, - { - "id": 93953970, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7051982, - 51.0475375 - ], - [ - 3.7051982, - 51.0475375 - ], - [ - 3.7051982, - 51.0475375 - ], - [ - 3.7051982, - 51.0475375 - ], - [ - 3.7051982, - 51.0475375 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "toilets", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 93953970 - } - }, - { - "id": 93946511, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2073964, - 41.404976 - ], - [ - 2.2202669, - 41.404976 - ], - [ - 2.2202669, - 41.4143954 - ], - [ - 2.2073964, - 41.4143954 - ], - [ - 2.2073964, - 41.404976 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "crossingtime", - "language": "es", - "theme-creator": "" - }, - "id": 93946511 - } - }, - { - "id": 93942265, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3970654, - 51.0415172 - ], - [ - 3.3970654, - 51.0415172 - ], - [ - 3.3970654, - 51.0415172 - ], - [ - 3.3970654, - 51.0415172 - ], - [ - 3.3970654, - 51.0415172 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "openinghourscovid19", - "language": "es", - "theme-creator": "" - }, - "id": 93942265 - } - }, - { - "id": 93935559, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7004163, - 51.0535894 - ], - [ - 3.7114971, - 51.0535894 - ], - [ - 3.7114971, - 51.0703867 - ], - [ - 3.7004163, - 51.0703867 - ], - [ - 3.7004163, - 51.0535894 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "shops", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 93935559 - } - }, - { - "id": 93895358, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.630342, - -33.4468376 - ], - [ - -70.630342, - -33.4468376 - ], - [ - -70.630342, - -33.4468376 - ], - [ - -70.630342, - -33.4468376 - ], - [ - -70.630342, - -33.4468376 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 93895358 - } - }, - { - "id": 93880755, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.119091, - -33.5163344 - ], - [ - -71.1187628, - -33.5163344 - ], - [ - -71.1187628, - -33.5157075 - ], - [ - -71.119091, - -33.5157075 - ], - [ - -71.119091, - -33.5163344 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 93880755 - } - }, - { - "id": 93854796, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7233607, - 51.0522911 - ], - [ - 3.7233607, - 51.0522911 - ], - [ - 3.7233607, - 51.0522911 - ], - [ - 3.7233607, - 51.0522911 - ], - [ - 3.7233607, - 51.0522911 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 93854796 - } - }, - { - "id": 93804822, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4923729, - 51.2013343 - ], - [ - 4.4923729, - 51.2013343 - ], - [ - 4.4923729, - 51.2013343 - ], - [ - 4.4923729, - 51.2013343 - ], - [ - 4.4923729, - 51.2013343 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 93804822 - } - }, - { - "id": 93781079, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 18.2077455, - 54.3336577 - ], - [ - 18.4094955, - 54.3336577 - ], - [ - 18.4094955, - 54.3935447 - ], - [ - 18.2077455, - 54.3935447 - ], - [ - 18.2077455, - 54.3336577 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 93781079 - } - }, - { - "id": 93759603, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7424085, - 51.0501964 - ], - [ - 3.7424085, - 51.0501964 - ], - [ - 3.7424085, - 51.0501964 - ], - [ - 3.7424085, - 51.0501964 - ], - [ - 3.7424085, - 51.0501964 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 93759603 - } - }, - { - "id": 93756396, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5075986, - 50.9569514 - ], - [ - 5.5075986, - 50.9569514 - ], - [ - 5.5075986, - 50.9569514 - ], - [ - 5.5075986, - 50.9569514 - ], - [ - 5.5075986, - 50.9569514 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 93756396 - } - }, - { - "id": 93756032, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4965199, - 50.9619584 - ], - [ - 5.4976755, - 50.9619584 - ], - [ - 5.4976755, - 50.9619771 - ], - [ - 5.4965199, - 50.9619771 - ], - [ - 5.4965199, - 50.9619584 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 93756032 - } - }, - { - "id": 93735609, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7890382, - 48.0983946 - ], - [ - 11.7893466, - 48.0983946 - ], - [ - 11.7893466, - 48.1069421 - ], - [ - 11.7890382, - 48.1069421 - ], - [ - 11.7890382, - 48.0983946 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "benches", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 93735609 - } - }, - { - "id": 93709301, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.7107128, - 41.2183573 - ], - [ - 1.7138425, - 41.2183573 - ], - [ - 1.7138425, - 41.2201171 - ], - [ - 1.7107128, - 41.2201171 - ], - [ - 1.7107128, - 41.2183573 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "comerciosantiguos", - "language": "es", - "theme-creator": "" - }, - "id": 93709301 - } - }, - { - "id": 93674814, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7071723, - 51.0542214 - ], - [ - 3.7071723, - 51.0542214 - ], - [ - 3.7071723, - 51.0542214 - ], - [ - 3.7071723, - 51.0542214 - ], - [ - 3.7071723, - 51.0542214 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 93674814 - } - }, - { - "id": 93659374, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7101668, - 51.0697373 - ], - [ - 3.7114971, - 51.0697373 - ], - [ - 3.7114971, - 51.0703867 - ], - [ - 3.7101668, - 51.0703867 - ], - [ - 3.7101668, - 51.0697373 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "shops", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 93659374 - } - }, - { - "id": 93551101, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6928367, - 51.061425 - ], - [ - 3.7035835, - 51.061425 - ], - [ - 3.7035835, - 51.0644938 - ], - [ - 3.6928367, - 51.0644938 - ], - [ - 3.6928367, - 51.061425 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "shops", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 93551101 - } - }, - { - "id": 93507143, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -8.4706964, - 51.8995348 - ], - [ - -8.4706964, - 51.8995348 - ], - [ - -8.4706964, - 51.8995348 - ], - [ - -8.4706964, - 51.8995348 - ], - [ - -8.4706964, - 51.8995348 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 93507143 - } - }, - { - "id": 93441998, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7074351, - 51.0521623 - ], - [ - 3.7074351, - 51.0521623 - ], - [ - 3.7074351, - 51.0521623 - ], - [ - 3.7074351, - 51.0521623 - ], - [ - 3.7074351, - 51.0521623 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "charging_stations", - "language": "en", - "theme-creator": "" - }, - "id": 93441998 - } - }, - { - "id": 93441481, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7098888, - 51.0561889 - ], - [ - 3.7141541, - 51.0561889 - ], - [ - 3.7141541, - 51.0565114 - ], - [ - 3.7098888, - 51.0565114 - ], - [ - 3.7098888, - 51.0561889 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "shops", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 93441481 - } - }, - { - "id": 93441005, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7101028, - 51.0507378 - ], - [ - 3.7101028, - 51.0507378 - ], - [ - 3.7101028, - 51.0507378 - ], - [ - 3.7101028, - 51.0507378 - ], - [ - 3.7101028, - 51.0507378 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "toilets", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 93441005 - } - }, - { - "id": 93438341, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5960476, - 45.1829205 - ], - [ - 5.7506576, - 45.1829205 - ], - [ - 5.7506576, - 45.3496539 - ], - [ - 5.5960476, - 45.3496539 - ], - [ - 5.5960476, - 45.1829205 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 93438341 - } - }, - { - "id": 93437995, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.7096512, - -36.8719309 - ], - [ - 174.7106278, - -36.8719309 - ], - [ - 174.7106278, - -36.8702552 - ], - [ - 174.7096512, - -36.8702552 - ], - [ - 174.7096512, - -36.8719309 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 93437995 - } - }, - { - "id": 93436673, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.6976388, - -36.934883 - ], - [ - 174.861978, - -36.934883 - ], - [ - 174.861978, - -36.852097 - ], - [ - 174.6976388, - -36.852097 - ], - [ - 174.6976388, - -36.934883 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "toilets", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 93436673 - } - }, - { - "id": 93434827, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1275065, - 50.9312161 - ], - [ - 3.1466831, - 50.9312161 - ], - [ - 3.1466831, - 50.9436406 - ], - [ - 3.1275065, - 50.9436406 - ], - [ - 3.1275065, - 50.9312161 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 93434827 - } - }, - { - "id": 93414684, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2153406, - 51.2156501 - ], - [ - 3.2153406, - 51.2156501 - ], - [ - 3.2153406, - 51.2156501 - ], - [ - 3.2153406, - 51.2156501 - ], - [ - 3.2153406, - 51.2156501 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 93414684 - } - }, - { - "id": 93414604, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198739, - 51.2156998 - ], - [ - 3.2198739, - 51.2156998 - ], - [ - 3.2198739, - 51.2156998 - ], - [ - 3.2198739, - 51.2156998 - ], - [ - 3.2198739, - 51.2156998 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 93414604 - } - }, - { - "id": 93379896, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.397208, - 51.0410683 - ], - [ - 3.397208, - 51.0410683 - ], - [ - 3.397208, - 51.0410683 - ], - [ - 3.397208, - 51.0410683 - ], - [ - 3.397208, - 51.0410683 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 93379896 - } - }, - { - "id": 93372113, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7785239, - 48.0998062 - ], - [ - 11.7785239, - 48.0998062 - ], - [ - 11.7785239, - 48.0998062 - ], - [ - 11.7785239, - 48.0998062 - ], - [ - 11.7785239, - 48.0998062 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "benches", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 93372113 - } - }, - { - "id": 93367038, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3237048, - 52.4712974 - ], - [ - 13.3245302, - 52.4712974 - ], - [ - 13.3245302, - 52.471851 - ], - [ - 13.3237048, - 52.471851 - ], - [ - 13.3237048, - 52.4712974 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "benches", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 93367038 - } - }, - { - "id": 93361191, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3943006, - 51.0371826 - ], - [ - 3.3951992, - 51.0371826 - ], - [ - 3.3951992, - 51.0400464 - ], - [ - 3.3943006, - 51.0400464 - ], - [ - 3.3943006, - 51.0371826 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 93361191 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2020-12.json b/Docs/Tools/stats/stats.2020-12.json deleted file mode 100644 index fd30aa5cb1..0000000000 --- a/Docs/Tools/stats/stats.2020-12.json +++ /dev/null @@ -1,9053 +0,0 @@ -{ - "features": [ - { - "id": 96736844, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -77.7905926, - 42.2538906 - ], - [ - -77.7905926, - 42.2538906 - ], - [ - -77.7905926, - 42.2538906 - ], - [ - -77.7905926, - 42.2538906 - ], - [ - -77.7905926, - 42.2538906 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96736844 - } - }, - { - "id": 96697083, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1320637, - 51.3042923 - ], - [ - 3.1336436, - 51.3042923 - ], - [ - 3.1336436, - 51.3053738 - ], - [ - 3.1320637, - 51.3053738 - ], - [ - 3.1320637, - 51.3042923 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "trees", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 96697083 - } - }, - { - "id": 96687111, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1345979, - 51.3084992 - ], - [ - 3.1361385, - 51.3084992 - ], - [ - 3.1361385, - 51.3092346 - ], - [ - 3.1345979, - 51.3092346 - ], - [ - 3.1345979, - 51.3084992 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "trees", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 96687111 - } - }, - { - "id": 96677926, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.3411934, - -33.677618 - ], - [ - -70.3409709, - -33.677618 - ], - [ - -70.3409709, - -33.6773162 - ], - [ - -70.3411934, - -33.6773162 - ], - [ - -70.3411934, - -33.677618 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96677926 - } - }, - { - "id": 96671133, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2653131, - 51.3106492 - ], - [ - 4.2653131, - 51.3106492 - ], - [ - 4.2653131, - 51.3106492 - ], - [ - 4.2653131, - 51.3106492 - ], - [ - 4.2653131, - 51.3106492 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "personal", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 96671133 - } - }, - { - "id": 96666725, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2088366, - 51.319858 - ], - [ - 4.2088366, - 51.319858 - ], - [ - 4.2088366, - 51.319858 - ], - [ - 4.2088366, - 51.319858 - ], - [ - 4.2088366, - 51.319858 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "nature", - "language": "nl", - "theme-creator": "" - }, - "id": 96666725 - } - }, - { - "id": 96623421, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3545632, - 51.1723135 - ], - [ - 4.5186067, - 51.1723135 - ], - [ - 4.5186067, - 51.2506569 - ], - [ - 4.3545632, - 51.2506569 - ], - [ - 4.3545632, - 51.1723135 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "fietsstraten", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 96623421 - } - }, - { - "id": 96622577, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -79.6287686, - 43.5724116 - ], - [ - -79.6287686, - 43.5724116 - ], - [ - -79.6287686, - 43.5724116 - ], - [ - -79.6287686, - 43.5724116 - ], - [ - -79.6287686, - 43.5724116 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "mcac_cyclofix" - }, - "id": 96622577 - } - }, - { - "id": 96602006, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0609639, - 51.2303938 - ], - [ - 4.0991517, - 51.2303938 - ], - [ - 4.0991517, - 51.2482648 - ], - [ - 4.0609639, - 51.2482648 - ], - [ - 4.0609639, - 51.2303938 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "nature", - "language": "nl", - "theme-creator": "" - }, - "id": 96602006 - } - }, - { - "id": 96587062, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8945192, - 51.8681605 - ], - [ - 4.9440023, - 51.8681605 - ], - [ - 4.9440023, - 51.8880178 - ], - [ - 4.8945192, - 51.8880178 - ], - [ - 4.8945192, - 51.8681605 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "benches", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 96587062 - } - }, - { - "id": 96558606, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7315237, - 51.1590972 - ], - [ - 4.7465108, - 51.1590972 - ], - [ - 4.7465108, - 51.1777396 - ], - [ - 4.7315237, - 51.1777396 - ], - [ - 4.7315237, - 51.1590972 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "benches", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 96558606 - } - }, - { - "id": 96557858, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7457978, - 51.1595168 - ], - [ - 4.7509801, - 51.1595168 - ], - [ - 4.7509801, - 51.1622084 - ], - [ - 4.7457978, - 51.1622084 - ], - [ - 4.7457978, - 51.1595168 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "trees", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 96557858 - } - }, - { - "id": 96547243, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8363254, - 51.1278714 - ], - [ - 4.8961651, - 51.1278714 - ], - [ - 4.8961651, - 51.1638948 - ], - [ - 4.8363254, - 51.1638948 - ], - [ - 4.8363254, - 51.1278714 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 96547243 - } - }, - { - "id": 96536010, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1251705, - 51.3108802 - ], - [ - 3.1252684, - 51.3108802 - ], - [ - 3.1252684, - 51.3109934 - ], - [ - 3.1251705, - 51.3109934 - ], - [ - 3.1251705, - 51.3108802 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "trees", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 96536010 - } - }, - { - "id": 96529515, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2629364, - 45.4779683 - ], - [ - 9.3043336, - 45.4779683 - ], - [ - 9.3043336, - 45.4891744 - ], - [ - 9.2629364, - 45.4891744 - ], - [ - 9.2629364, - 45.4779683 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96529515 - } - }, - { - "id": 96529089, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8840284, - 51.175703 - ], - [ - 3.9213823, - 51.175703 - ], - [ - 3.9213823, - 51.1955576 - ], - [ - 3.8840284, - 51.1955576 - ], - [ - 3.8840284, - 51.175703 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "personal", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 96529089 - } - }, - { - "id": 96526621, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9109464, - 51.1817121 - ], - [ - 3.9109464, - 51.1817121 - ], - [ - 3.9109464, - 51.1817121 - ], - [ - 3.9109464, - 51.1817121 - ], - [ - 3.9109464, - 51.1817121 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "nature", - "language": "nl", - "theme-creator": "" - }, - "id": 96526621 - } - }, - { - "id": 96497486, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1423808, - 51.1685305 - ], - [ - 4.1423808, - 51.1685305 - ], - [ - 4.1423808, - 51.1685305 - ], - [ - 4.1423808, - 51.1685305 - ], - [ - 4.1423808, - 51.1685305 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96497486 - } - }, - { - "id": 96487512, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3253628, - 51.0679494 - ], - [ - 3.3505379, - 51.0679494 - ], - [ - 3.3505379, - 51.0843882 - ], - [ - 3.3253628, - 51.0843882 - ], - [ - 3.3253628, - 51.0679494 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "nature", - "language": "nl", - "theme-creator": "" - }, - "id": 96487512 - } - }, - { - "id": 96480786, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0111865, - 51.1276464 - ], - [ - 5.0114492, - 51.1276464 - ], - [ - 5.0114492, - 51.1298247 - ], - [ - 5.0111865, - 51.1298247 - ], - [ - 5.0111865, - 51.1276464 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "fritures", - "language": "nl", - "theme-creator": "" - }, - "id": 96480786 - } - }, - { - "id": 96480644, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0026423, - 51.1268323 - ], - [ - 5.0027352, - 51.1268323 - ], - [ - 5.0027352, - 51.1270149 - ], - [ - 5.0026423, - 51.1270149 - ], - [ - 5.0026423, - 51.1268323 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "trees", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 96480644 - } - }, - { - "id": 96467370, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.376881, - 51.0883675 - ], - [ - 3.4712163, - 51.0883675 - ], - [ - 3.4712163, - 51.1010604 - ], - [ - 3.376881, - 51.1010604 - ], - [ - 3.376881, - 51.0883675 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "trees", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 96467370 - } - }, - { - "id": 96464209, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7216874, - 51.0423994 - ], - [ - 3.7216874, - 51.0423994 - ], - [ - 3.7216874, - 51.0423994 - ], - [ - 3.7216874, - 51.0423994 - ], - [ - 3.7216874, - 51.0423994 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "M!dgard", - "uid": "763799", - "editor": "MapComplete 0.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, - "metadata": { - "theme": "trees", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 96464209 - } - }, - { - "id": 96455190, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2975479, - 51.1267247 - ], - [ - 4.3310326, - 51.1267247 - ], - [ - 4.3310326, - 51.1432305 - ], - [ - 4.2975479, - 51.1432305 - ], - [ - 4.2975479, - 51.1267247 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "personal", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96455190 - } - }, - { - "id": 96454086, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2523849, - 51.1183139 - ], - [ - 4.2523849, - 51.1183139 - ], - [ - 4.2523849, - 51.1183139 - ], - [ - 4.2523849, - 51.1183139 - ], - [ - 4.2523849, - 51.1183139 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "toilets", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96454086 - } - }, - { - "id": 96452710, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4645415, - 51.2361818 - ], - [ - 4.6653016, - 51.2361818 - ], - [ - 4.6653016, - 51.3364324 - ], - [ - 4.4645415, - 51.3364324 - ], - [ - 4.4645415, - 51.2361818 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "nature", - "language": "nl", - "theme-creator": "" - }, - "id": 96452710 - } - }, - { - "id": 96435672, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9867941, - 51.1845669 - ], - [ - 3.9867941, - 51.1845669 - ], - [ - 3.9867941, - 51.1845669 - ], - [ - 3.9867941, - 51.1845669 - ], - [ - 3.9867941, - 51.1845669 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96435672 - } - }, - { - "id": 96425274, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0672937, - 51.154808 - ], - [ - 4.0683156, - 51.154808 - ], - [ - 4.0683156, - 51.1554624 - ], - [ - 4.0672937, - 51.1554624 - ], - [ - 4.0672937, - 51.154808 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "artworks", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96425274 - } - }, - { - "id": 96424469, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1373286, - 51.2998156 - ], - [ - 3.1470788, - 51.2998156 - ], - [ - 3.1470788, - 51.3146741 - ], - [ - 3.1373286, - 51.3146741 - ], - [ - 3.1373286, - 51.2998156 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "trees", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 96424469 - } - }, - { - "id": 96422689, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1399923, - 51.1664247 - ], - [ - 4.1399923, - 51.1664247 - ], - [ - 4.1399923, - 51.1664247 - ], - [ - 4.1399923, - 51.1664247 - ], - [ - 4.1399923, - 51.1664247 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "artworks", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96422689 - } - }, - { - "id": 96406794, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7008128, - 51.0236 - ], - [ - 3.7140104, - 51.0236 - ], - [ - 3.7140104, - 51.0359581 - ], - [ - 3.7008128, - 51.0359581 - ], - [ - 3.7008128, - 51.0236 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "trees", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 96406794 - } - }, - { - "id": 96402559, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7100248, - 51.0267345 - ], - [ - 3.7100248, - 51.0267345 - ], - [ - 3.7100248, - 51.0267345 - ], - [ - 3.7100248, - 51.0267345 - ], - [ - 3.7100248, - 51.0267345 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "fritures", - "language": "nl", - "theme-creator": "" - }, - "id": 96402559 - } - }, - { - "id": 96401700, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1215186, - 51.3108764 - ], - [ - 3.1350387, - 51.3108764 - ], - [ - 3.1350387, - 51.3125686 - ], - [ - 3.1215186, - 51.3125686 - ], - [ - 3.1215186, - 51.3108764 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 96401700 - } - }, - { - "id": 96399525, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2304046, - 51.206838 - ], - [ - 3.2304046, - 51.206838 - ], - [ - 3.2304046, - 51.206838 - ], - [ - 3.2304046, - 51.206838 - ], - [ - 3.2304046, - 51.206838 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "trees", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 96399525 - } - }, - { - "id": 96399228, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1217526, - 51.3054826 - ], - [ - 3.1345455, - 51.3054826 - ], - [ - 3.1345455, - 51.3072209 - ], - [ - 3.1217526, - 51.3072209 - ], - [ - 3.1217526, - 51.3054826 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "trees", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 96399228 - } - }, - { - "id": 96398801, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.397002, - 51.0417241 - ], - [ - 3.397002, - 51.0417241 - ], - [ - 3.397002, - 51.0417241 - ], - [ - 3.397002, - 51.0417241 - ], - [ - 3.397002, - 51.0417241 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "trees", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 96398801 - } - }, - { - "id": 96386796, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9779064, - 51.1595721 - ], - [ - 3.9779064, - 51.1595721 - ], - [ - 3.9779064, - 51.1595721 - ], - [ - 3.9779064, - 51.1595721 - ], - [ - 3.9779064, - 51.1595721 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "nature", - "language": "nl", - "theme-creator": "" - }, - "id": 96386796 - } - }, - { - "id": 96351658, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1191078, - 51.313528 - ], - [ - 3.1469259, - 51.313528 - ], - [ - 3.1469259, - 51.3150704 - ], - [ - 3.1191078, - 51.3150704 - ], - [ - 3.1191078, - 51.313528 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96351658 - } - }, - { - "id": 96351269, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.12412, - 51.2911858 - ], - [ - 3.1367546, - 51.2911858 - ], - [ - 3.1367546, - 51.3134958 - ], - [ - 3.12412, - 51.3134958 - ], - [ - 3.12412, - 51.2911858 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "charging_stations", - "language": "en", - "theme-creator": "" - }, - "id": 96351269 - } - }, - { - "id": 96344297, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0810755, - 50.9426002 - ], - [ - 3.0812346, - 50.9426002 - ], - [ - 3.0812346, - 50.9428054 - ], - [ - 3.0810755, - 50.9428054 - ], - [ - 3.0810755, - 50.9426002 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bakeries", - "language": "nl", - "theme-creator": "" - }, - "id": 96344297 - } - }, - { - "id": 96343222, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0878441, - 52.0726528 - ], - [ - 5.1398867, - 52.0726528 - ], - [ - 5.1398867, - 52.0772151 - ], - [ - 5.0878441, - 52.0772151 - ], - [ - 5.0878441, - 52.0726528 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "benches", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 96343222 - } - }, - { - "id": 96331045, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5347983, - 51.2698895 - ], - [ - 4.6324978, - 51.2698895 - ], - [ - 4.6324978, - 51.310505 - ], - [ - 4.5347983, - 51.310505 - ], - [ - 4.5347983, - 51.2698895 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "nature", - "language": "nl", - "theme-creator": "" - }, - "id": 96331045 - } - }, - { - "id": 96321611, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6106646, - 51.9639581 - ], - [ - 4.6106646, - 51.9639581 - ], - [ - 4.6106646, - 51.9639581 - ], - [ - 4.6106646, - 51.9639581 - ], - [ - 4.6106646, - 51.9639581 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "benches", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 96321611 - } - }, - { - "id": 96311393, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6079358, - 51.9639581 - ], - [ - 4.6106646, - 51.9639581 - ], - [ - 4.6106646, - 51.9657951 - ], - [ - 4.6079358, - 51.9657951 - ], - [ - 4.6079358, - 51.9639581 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "benches", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 96311393 - } - }, - { - "id": 96310585, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1046624, - 52.0886899 - ], - [ - 5.1250188, - 52.0886899 - ], - [ - 5.1250188, - 52.0994886 - ], - [ - 5.1046624, - 52.0994886 - ], - [ - 5.1046624, - 52.0886899 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 96310585 - } - }, - { - "id": 96309725, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0709044, - 52.064597 - ], - [ - 5.1083846, - 52.064597 - ], - [ - 5.1083846, - 52.099977 - ], - [ - 5.0709044, - 52.099977 - ], - [ - 5.0709044, - 52.064597 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "climbing", - "language": "nl", - "theme-creator": "Christian Neumann " - }, - "id": 96309725 - } - }, - { - "id": 96299874, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -61.5888296, - 16.2538861 - ], - [ - -61.5823363, - 16.2538861 - ], - [ - -61.5823363, - 16.2668516 - ], - [ - -61.5888296, - 16.2668516 - ], - [ - -61.5888296, - 16.2538861 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "toilets", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96299874 - } - }, - { - "id": 96275189, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6167603, - 51.9655175 - ], - [ - 4.6167603, - 51.9655175 - ], - [ - 4.6167603, - 51.9655175 - ], - [ - 4.6167603, - 51.9655175 - ], - [ - 4.6167603, - 51.9655175 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "Bankjes", - "language": "nl", - "theme-creator": "" - }, - "id": 96275189 - } - }, - { - "id": 96271520, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7081902, - 51.0471195 - ], - [ - 3.7091303, - 51.0471195 - ], - [ - 3.7091303, - 51.0475086 - ], - [ - 3.7081902, - 51.0475086 - ], - [ - 3.7081902, - 51.0471195 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "shops", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96271520 - } - }, - { - "id": 96255037, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3868676, - 50.7797406 - ], - [ - 3.387092, - 50.7797406 - ], - [ - 3.387092, - 50.7798224 - ], - [ - 3.3868676, - 50.7798224 - ], - [ - 3.3868676, - 50.7797406 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "boomgaarden", - "language": "nl", - "theme-creator": "" - }, - "id": 96255037 - } - }, - { - "id": 96248250, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1013029, - 51.0700038 - ], - [ - 3.1069114, - 51.0700038 - ], - [ - 3.1069114, - 51.0717064 - ], - [ - 3.1013029, - 51.0717064 - ], - [ - 3.1013029, - 51.0700038 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 96248250 - } - }, - { - "id": 96197552, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1321597, - 50.945512 - ], - [ - 3.1321597, - 50.945512 - ], - [ - 3.1321597, - 50.945512 - ], - [ - 3.1321597, - 50.945512 - ], - [ - 3.1321597, - 50.945512 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 96197552 - } - }, - { - "id": 96181026, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2935088, - 50.9923792 - ], - [ - 3.2935088, - 50.9923792 - ], - [ - 3.2935088, - 50.9923792 - ], - [ - 3.2935088, - 50.9923792 - ], - [ - 3.2935088, - 50.9923792 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "boomgaarden", - "language": "nl", - "theme-creator": "" - }, - "id": 96181026 - } - }, - { - "id": 96178531, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2995643, - 50.9867167 - ], - [ - 3.2997124, - 50.9867167 - ], - [ - 3.2997124, - 50.9870099 - ], - [ - 3.2995643, - 50.9870099 - ], - [ - 3.2995643, - 50.9867167 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "boomgaarden", - "language": "nl", - "theme-creator": "" - }, - "id": 96178531 - } - }, - { - "id": 96156366, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7027162, - 51.0387284 - ], - [ - 3.7027162, - 51.0387284 - ], - [ - 3.7027162, - 51.0387284 - ], - [ - 3.7027162, - 51.0387284 - ], - [ - 3.7027162, - 51.0387284 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "climbing", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 96156366 - } - }, - { - "id": 96140521, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1912878, - 50.9045228 - ], - [ - 4.200643, - 50.9045228 - ], - [ - 4.200643, - 50.906928 - ], - [ - 4.1912878, - 50.906928 - ], - [ - 4.1912878, - 50.9045228 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "fietsstraten", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 96140521 - } - }, - { - "id": 96136482, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6044526, - 50.8963414 - ], - [ - 3.6044526, - 50.8963414 - ], - [ - 3.6044526, - 50.8963414 - ], - [ - 3.6044526, - 50.8963414 - ], - [ - 3.6044526, - 50.8963414 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 96136482 - } - }, - { - "id": 96134834, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6044526, - 50.8963414 - ], - [ - 3.6044526, - 50.8963414 - ], - [ - 3.6044526, - 50.8963414 - ], - [ - 3.6044526, - 50.8963414 - ], - [ - 3.6044526, - 50.8963414 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 96134834 - } - }, - { - "id": 96119259, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.716198, - 51.0340851 - ], - [ - 3.716198, - 51.0340851 - ], - [ - 3.716198, - 51.0340851 - ], - [ - 3.716198, - 51.0340851 - ], - [ - 3.716198, - 51.0340851 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "toilets", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96119259 - } - }, - { - "id": 96118879, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.576957, - 47.794737 - ], - [ - 3.7182686, - 47.794737 - ], - [ - 3.7182686, - 51.0370604 - ], - [ - 3.576957, - 51.0370604 - ], - [ - 3.576957, - 47.794737 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96118879 - } - }, - { - "id": 96118696, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7125135, - 51.0362302 - ], - [ - 3.7138074, - 51.0362302 - ], - [ - 3.7138074, - 51.0365891 - ], - [ - 3.7125135, - 51.0365891 - ], - [ - 3.7125135, - 51.0362302 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 96118696 - } - }, - { - "id": 96118491, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7177118, - 51.0317241 - ], - [ - 3.7177118, - 51.0317241 - ], - [ - 3.7177118, - 51.0317241 - ], - [ - 3.7177118, - 51.0317241 - ], - [ - 3.7177118, - 51.0317241 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "artworks", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 96118491 - } - }, - { - "id": 96118227, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7100248, - 51.0267345 - ], - [ - 3.7100248, - 51.0267345 - ], - [ - 3.7100248, - 51.0267345 - ], - [ - 3.7100248, - 51.0267345 - ], - [ - 3.7100248, - 51.0267345 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "fritures", - "language": "fr", - "theme-creator": "" - }, - "id": 96118227 - } - }, - { - "id": 96089062, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9757675, - 51.3369519 - ], - [ - 4.9757675, - 51.3369519 - ], - [ - 4.9757675, - 51.3369519 - ], - [ - 4.9757675, - 51.3369519 - ], - [ - 4.9757675, - 51.3369519 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "artworks", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 96089062 - } - }, - { - "id": 96085989, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -38.4611039, - -12.9910504 - ], - [ - -38.4611039, - -12.9910504 - ], - [ - -38.4611039, - -12.9910504 - ], - [ - -38.4611039, - -12.9910504 - ], - [ - -38.4611039, - -12.9910504 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96085989 - } - }, - { - "id": 96082820, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4500352, - 51.0861239 - ], - [ - 3.4500352, - 51.0861239 - ], - [ - 3.4500352, - 51.0861239 - ], - [ - 3.4500352, - 51.0861239 - ], - [ - 3.4500352, - 51.0861239 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "artworks", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96082820 - } - }, - { - "id": 96079709, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -93.7281418, - 39.0644232 - ], - [ - -93.7281418, - 39.0644232 - ], - [ - -93.7281418, - 39.0644232 - ], - [ - -93.7281418, - 39.0644232 - ], - [ - -93.7281418, - 39.0644232 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96079709 - } - }, - { - "id": 96069566, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5658147, - 51.180928 - ], - [ - 3.5691226, - 51.180928 - ], - [ - 3.5691226, - 51.1855626 - ], - [ - 3.5658147, - 51.1855626 - ], - [ - 3.5658147, - 51.180928 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "fietsstraten", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 96069566 - } - }, - { - "id": 95999002, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3560481, - 50.8379065 - ], - [ - 4.3560481, - 50.8379065 - ], - [ - 4.3560481, - 50.8379065 - ], - [ - 4.3560481, - 50.8379065 - ], - [ - 4.3560481, - 50.8379065 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 95999002 - } - }, - { - "id": 95996514, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3540058, - 50.838517 - ], - [ - 4.3622965, - 50.838517 - ], - [ - 4.3622965, - 50.8439794 - ], - [ - 4.3540058, - 50.8439794 - ], - [ - 4.3540058, - 50.838517 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "surveillance", - "language": "nl", - "theme-creator": "" - }, - "id": 95996514 - } - }, - { - "id": 95945154, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9548946, - 50.9625177 - ], - [ - 3.9594124, - 50.9625177 - ], - [ - 3.9594124, - 50.9659446 - ], - [ - 3.9548946, - 50.9659446 - ], - [ - 3.9548946, - 50.9625177 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "nature", - "language": "nl", - "theme-creator": "" - }, - "id": 95945154 - } - }, - { - "id": 95942831, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1279089, - 44.4052106 - ], - [ - 4.1279089, - 44.4052106 - ], - [ - 4.1279089, - 44.4052106 - ], - [ - 4.1279089, - 44.4052106 - ], - [ - 4.1279089, - 44.4052106 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 95942831 - } - }, - { - "id": 95941222, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1304383, - 44.4053467 - ], - [ - 4.1304383, - 44.4053467 - ], - [ - 4.1304383, - 44.4053467 - ], - [ - 4.1304383, - 44.4053467 - ], - [ - 4.1304383, - 44.4053467 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 95941222 - } - }, - { - "id": 95933427, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0379635, - 14.5876029 - ], - [ - 121.0379635, - 14.5876029 - ], - [ - 121.0379635, - 14.5876029 - ], - [ - 121.0379635, - 14.5876029 - ], - [ - 121.0379635, - 14.5876029 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95933427 - } - }, - { - "id": 95923089, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9039812, - 51.1689079 - ], - [ - 4.9894726, - 51.1689079 - ], - [ - 4.9894726, - 51.2020213 - ], - [ - 4.9039812, - 51.2020213 - ], - [ - 4.9039812, - 51.1689079 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "toilets", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95923089 - } - }, - { - "id": 95912450, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0478246, - 14.6016569 - ], - [ - 121.0478246, - 14.6016569 - ], - [ - 121.0478246, - 14.6016569 - ], - [ - 121.0478246, - 14.6016569 - ], - [ - 121.0478246, - 14.6016569 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95912450 - } - }, - { - "id": 95899211, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7077034, - 51.0730919 - ], - [ - 3.7093556, - 51.0730919 - ], - [ - 3.7093556, - 51.0776252 - ], - [ - 3.7077034, - 51.0776252 - ], - [ - 3.7077034, - 51.0730919 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95899211 - } - }, - { - "id": 95899099, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4528854, - 51.2134786 - ], - [ - 4.4528854, - 51.2134786 - ], - [ - 4.4528854, - 51.2134786 - ], - [ - 4.4528854, - 51.2134786 - ], - [ - 4.4528854, - 51.2134786 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 95899099 - } - }, - { - "id": 95898587, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1886851, - 50.9685034 - ], - [ - 4.1886851, - 50.9685034 - ], - [ - 4.1886851, - 50.9685034 - ], - [ - 4.1886851, - 50.9685034 - ], - [ - 4.1886851, - 50.9685034 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 95898587 - } - }, - { - "id": 95897696, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.160723, - 50.9669538 - ], - [ - 4.1912904, - 50.9669538 - ], - [ - 4.1912904, - 50.9871873 - ], - [ - 4.160723, - 50.9871873 - ], - [ - 4.160723, - 50.9669538 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "fietsstraten", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 95897696 - } - }, - { - "id": 95894829, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5723397, - 51.1391629 - ], - [ - 4.5723397, - 51.1391629 - ], - [ - 4.5723397, - 51.1391629 - ], - [ - 4.5723397, - 51.1391629 - ], - [ - 4.5723397, - 51.1391629 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 95894829 - } - }, - { - "id": 95893983, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7601566, - 51.3991387 - ], - [ - 4.7602236, - 51.3991387 - ], - [ - 4.7602236, - 51.3992793 - ], - [ - 4.7601566, - 51.3992793 - ], - [ - 4.7601566, - 51.3991387 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 95893983 - } - }, - { - "id": 95890882, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.09542, - 50.9432529 - ], - [ - 5.0958754, - 50.9432529 - ], - [ - 5.0958754, - 50.943637 - ], - [ - 5.09542, - 50.943637 - ], - [ - 5.09542, - 50.9432529 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "artworks", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 95890882 - } - }, - { - "id": 95890041, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4466197, - 51.1555008 - ], - [ - 4.4466197, - 51.1555008 - ], - [ - 4.4466197, - 51.1555008 - ], - [ - 4.4466197, - 51.1555008 - ], - [ - 4.4466197, - 51.1555008 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95890041 - } - }, - { - "id": 95887704, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5150563, - 51.0099163 - ], - [ - 4.5159227, - 51.0099163 - ], - [ - 4.5159227, - 51.011247 - ], - [ - 4.5150563, - 51.011247 - ], - [ - 4.5150563, - 51.0099163 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 95887704 - } - }, - { - "id": 95887280, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3414353, - 50.8336425 - ], - [ - 4.3414353, - 50.8336425 - ], - [ - 4.3414353, - 50.8336425 - ], - [ - 4.3414353, - 50.8336425 - ], - [ - 4.3414353, - 50.8336425 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95887280 - } - }, - { - "id": 95885883, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4357756, - 51.2418449 - ], - [ - 4.4395682, - 51.2418449 - ], - [ - 4.4395682, - 51.2435862 - ], - [ - 4.4357756, - 51.2435862 - ], - [ - 4.4357756, - 51.2418449 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95885883 - } - }, - { - "id": 95879791, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7244068, - 50.9806432 - ], - [ - 3.7510988, - 50.9806432 - ], - [ - 3.7510988, - 51.0448055 - ], - [ - 3.7244068, - 51.0448055 - ], - [ - 3.7244068, - 50.9806432 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95879791 - } - }, - { - "id": 95875912, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6172146, - 51.9665257 - ], - [ - 4.6172146, - 51.9665257 - ], - [ - 4.6172146, - 51.9665257 - ], - [ - 4.6172146, - 51.9665257 - ], - [ - 4.6172146, - 51.9665257 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 95875912 - } - }, - { - "id": 95866902, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.74015, - 50.990612 - ], - [ - 3.7519544, - 50.990612 - ], - [ - 3.7519544, - 51.0026612 - ], - [ - 3.74015, - 51.0026612 - ], - [ - 3.74015, - 50.990612 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95866902 - } - }, - { - "id": 95835460, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4738978, - 50.7677134 - ], - [ - 4.4738978, - 50.7677134 - ], - [ - 4.4738978, - 50.7677134 - ], - [ - 4.4738978, - 50.7677134 - ], - [ - 4.4738978, - 50.7677134 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 95835460 - } - }, - { - "id": 95823381, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4646159, - 51.1538063 - ], - [ - 4.4653174, - 51.1538063 - ], - [ - 4.4653174, - 51.1549539 - ], - [ - 4.4646159, - 51.1549539 - ], - [ - 4.4646159, - 51.1538063 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95823381 - } - }, - { - "id": 95810321, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6845827, - 51.0195406 - ], - [ - 3.6933482, - 51.0195406 - ], - [ - 3.6933482, - 51.0717639 - ], - [ - 3.6845827, - 51.0717639 - ], - [ - 3.6845827, - 51.0195406 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 95810321 - } - }, - { - "id": 95768699, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2157776, - 51.1963888 - ], - [ - 3.2167779, - 51.1963888 - ], - [ - 3.2167779, - 51.1970235 - ], - [ - 3.2157776, - 51.1970235 - ], - [ - 3.2157776, - 51.1963888 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95768699 - } - }, - { - "id": 95768408, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6135577, - 50.8403377 - ], - [ - 3.6135577, - 50.8403377 - ], - [ - 3.6135577, - 50.8403377 - ], - [ - 3.6135577, - 50.8403377 - ], - [ - 3.6135577, - 50.8403377 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95768408 - } - }, - { - "id": 95758045, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7474376, - 51.0244219 - ], - [ - 3.7474376, - 51.0244219 - ], - [ - 3.7474376, - 51.0244219 - ], - [ - 3.7474376, - 51.0244219 - ], - [ - 3.7474376, - 51.0244219 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95758045 - } - }, - { - "id": 95755595, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1275065, - 50.9436406 - ], - [ - 3.1275065, - 50.9436406 - ], - [ - 3.1275065, - 50.9436406 - ], - [ - 3.1275065, - 50.9436406 - ], - [ - 3.1275065, - 50.9436406 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95755595 - } - }, - { - "id": 95747526, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1842233, - 50.7983379 - ], - [ - 3.1842233, - 50.7983379 - ], - [ - 3.1842233, - 50.7983379 - ], - [ - 3.1842233, - 50.7983379 - ], - [ - 3.1842233, - 50.7983379 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 95747526 - } - }, - { - "id": 95724607, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4765993, - 51.0236468 - ], - [ - 4.4765993, - 51.0236468 - ], - [ - 4.4765993, - 51.0236468 - ], - [ - 4.4765993, - 51.0236468 - ], - [ - 4.4765993, - 51.0236468 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 95724607 - } - }, - { - "id": 95719098, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7756207, - 51.0389479 - ], - [ - 3.7756207, - 51.0389479 - ], - [ - 3.7756207, - 51.0389479 - ], - [ - 3.7756207, - 51.0389479 - ], - [ - 3.7756207, - 51.0389479 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95719098 - } - }, - { - "id": 95715532, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1953692, - 50.7782774 - ], - [ - 3.1953692, - 50.7782774 - ], - [ - 3.1953692, - 50.7782774 - ], - [ - 3.1953692, - 50.7782774 - ], - [ - 3.1953692, - 50.7782774 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "benches", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 95715532 - } - }, - { - "id": 95701366, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4389072, - 51.0817285 - ], - [ - 3.4389072, - 51.0817285 - ], - [ - 3.4389072, - 51.0817285 - ], - [ - 3.4389072, - 51.0817285 - ], - [ - 3.4389072, - 51.0817285 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 95701366 - } - }, - { - "id": 95676598, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6051258, - 51.9665257 - ], - [ - 4.6172146, - 51.9665257 - ], - [ - 4.6172146, - 51.9695601 - ], - [ - 4.6051258, - 51.9695601 - ], - [ - 4.6051258, - 51.9665257 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 95676598 - } - }, - { - "id": 95671310, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.514806, - 47.1691833 - ], - [ - 8.514806, - 47.1691833 - ], - [ - 8.514806, - 47.1691833 - ], - [ - 8.514806, - 47.1691833 - ], - [ - 8.514806, - 47.1691833 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "shops", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95671310 - } - }, - { - "id": 95652825, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.7673329, - -33.4887966 - ], - [ - -70.7673329, - -33.4887966 - ], - [ - -70.7673329, - -33.4887966 - ], - [ - -70.7673329, - -33.4887966 - ], - [ - -70.7673329, - -33.4887966 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95652825 - } - }, - { - "id": 95636305, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.4013699, - 41.8261065 - ], - [ - -71.4013699, - 41.8261065 - ], - [ - -71.4013699, - 41.8261065 - ], - [ - -71.4013699, - 41.8261065 - ], - [ - -71.4013699, - 41.8261065 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "surveillance", - "language": "en", - "theme-creator": "" - }, - "id": 95636305 - } - }, - { - "id": 95627442, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7051982, - 51.0475375 - ], - [ - 3.7051982, - 51.0475375 - ], - [ - 3.7051982, - 51.0475375 - ], - [ - 3.7051982, - 51.0475375 - ], - [ - 3.7051982, - 51.0475375 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "personal", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 95627442 - } - }, - { - "id": 95575101, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7255883, - 51.0406232 - ], - [ - 3.7255883, - 51.0406232 - ], - [ - 3.7255883, - 51.0406232 - ], - [ - 3.7255883, - 51.0406232 - ], - [ - 3.7255883, - 51.0406232 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95575101 - } - }, - { - "id": 95563399, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4765886, - 51.0236355 - ], - [ - 4.482277, - 51.0236355 - ], - [ - 4.482277, - 51.0284541 - ], - [ - 4.4765886, - 51.0284541 - ], - [ - 4.4765886, - 51.0236355 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 95563399 - } - }, - { - "id": 95558462, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9200531, - 51.2193741 - ], - [ - 4.9239598, - 51.2193741 - ], - [ - 4.9239598, - 51.2223614 - ], - [ - 4.9200531, - 51.2223614 - ], - [ - 4.9200531, - 51.2193741 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "fietsstraten", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 95558462 - } - }, - { - "id": 95546223, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4654649, - 51.0258303 - ], - [ - 5.4654649, - 51.0258303 - ], - [ - 5.4654649, - 51.0258303 - ], - [ - 5.4654649, - 51.0258303 - ], - [ - 5.4654649, - 51.0258303 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95546223 - } - }, - { - "id": 95545333, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9192062, - 51.2233403 - ], - [ - 4.9192062, - 51.2233403 - ], - [ - 4.9192062, - 51.2233403 - ], - [ - 4.9192062, - 51.2233403 - ], - [ - 4.9192062, - 51.2233403 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 95545333 - } - }, - { - "id": 95441444, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.220888, - 41.4425459 - ], - [ - 2.2231621, - 41.4425459 - ], - [ - 2.2231621, - 41.4432148 - ], - [ - 2.220888, - 41.4432148 - ], - [ - 2.220888, - 41.4425459 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "arbres_llefia", - "language": "ca", - "theme-creator": "" - }, - "id": 95441444 - } - }, - { - "id": 95438534, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.3983429, - 41.8299723 - ], - [ - -71.3967539, - 41.8299723 - ], - [ - -71.3967539, - 41.8317269 - ], - [ - -71.3983429, - 41.8317269 - ], - [ - -71.3983429, - 41.8299723 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "surveillance", - "language": "en", - "theme-creator": "" - }, - "id": 95438534 - } - }, - { - "id": 95432954, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.239902, - 51.2126842 - ], - [ - 3.239902, - 51.2126842 - ], - [ - 3.239902, - 51.2126842 - ], - [ - 3.239902, - 51.2126842 - ], - [ - 3.239902, - 51.2126842 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95432954 - } - }, - { - "id": 95410193, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.8089679, - 51.132875 - ], - [ - 5.8089679, - 51.132875 - ], - [ - 5.8089679, - 51.132875 - ], - [ - 5.8089679, - 51.132875 - ], - [ - 5.8089679, - 51.132875 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95410193 - } - }, - { - "id": 95408103, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9596159, - 42.2642 - ], - [ - 2.9617926, - 42.2642 - ], - [ - 2.9617926, - 42.2671038 - ], - [ - 2.9596159, - 42.2671038 - ], - [ - 2.9596159, - 42.2642 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "lit", - "language": "es", - "theme-creator": "" - }, - "id": 95408103 - } - }, - { - "id": 95379838, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.40488, - 41.8277405 - ], - [ - -71.404836, - 41.8277405 - ], - [ - -71.404836, - 41.8277826 - ], - [ - -71.40488, - 41.8277826 - ], - [ - -71.40488, - 41.8277405 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "surveillance", - "language": "en", - "theme-creator": "" - }, - "id": 95379838 - } - }, - { - "id": 95378664, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.704049, - 51.0526508 - ], - [ - 3.706189, - 51.0526508 - ], - [ - 3.706189, - 51.0529391 - ], - [ - 3.704049, - 51.0529391 - ], - [ - 3.704049, - 51.0526508 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "lit", - "language": "en", - "theme-creator": "" - }, - "id": 95378664 - } - }, - { - "id": 95376444, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1627885, - 41.3745385 - ], - [ - 2.1659616, - 41.3745385 - ], - [ - 2.1659616, - 41.3745706 - ], - [ - 2.1627885, - 41.3745706 - ], - [ - 2.1627885, - 41.3745385 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "lit", - "language": "ca", - "theme-creator": "" - }, - "id": 95376444 - } - }, - { - "id": 95375812, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -6.9365318, - 37.2667956 - ], - [ - -6.9260168, - 37.2667956 - ], - [ - -6.9260168, - 37.2731983 - ], - [ - -6.9365318, - 37.2731983 - ], - [ - -6.9365318, - 37.2667956 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "lits", - "language": "en", - "theme-creator": "" - }, - "id": 95375812 - } - }, - { - "id": 95374751, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1548465, - 41.3745385 - ], - [ - 2.1661198, - 41.3745385 - ], - [ - 2.1661198, - 41.3827824 - ], - [ - 2.1548465, - 41.3827824 - ], - [ - 2.1548465, - 41.3745385 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "lits", - "language": "en", - "theme-creator": "" - }, - "id": 95374751 - } - }, - { - "id": 95369710, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.182233, - 51.1197075 - ], - [ - 3.1997142, - 51.1197075 - ], - [ - 3.1997142, - 51.1322547 - ], - [ - 3.182233, - 51.1322547 - ], - [ - 3.182233, - 51.1197075 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "nature", - "language": "nl", - "theme-creator": "" - }, - "id": 95369710 - } - }, - { - "id": 95369636, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1848335, - 51.1221707 - ], - [ - 3.1848335, - 51.1221707 - ], - [ - 3.1848335, - 51.1221707 - ], - [ - 3.1848335, - 51.1221707 - ], - [ - 3.1848335, - 51.1221707 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "personal", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 95369636 - } - }, - { - "id": 95368843, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2192532, - 41.4434089 - ], - [ - 2.2197354, - 41.4434089 - ], - [ - 2.2197354, - 41.4437694 - ], - [ - 2.2192532, - 41.4437694 - ], - [ - 2.2192532, - 41.4434089 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "arbres_llefia", - "language": "ca", - "theme-creator": "" - }, - "id": 95368843 - } - }, - { - "id": 95368199, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1805849, - 51.1222842 - ], - [ - 3.1866793, - 51.1222842 - ], - [ - 3.1866793, - 51.1305561 - ], - [ - 3.1805849, - 51.1305561 - ], - [ - 3.1805849, - 51.1222842 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "nature", - "language": "nl", - "theme-creator": "" - }, - "id": 95368199 - } - }, - { - "id": 95367959, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.182233, - 51.1197075 - ], - [ - 3.1997142, - 51.1197075 - ], - [ - 3.1997142, - 51.1322547 - ], - [ - 3.182233, - 51.1322547 - ], - [ - 3.182233, - 51.1197075 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 95367959 - } - }, - { - "id": 95362845, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2241441, - 51.2100561 - ], - [ - 3.2241441, - 51.2100561 - ], - [ - 3.2241441, - 51.2100561 - ], - [ - 3.2241441, - 51.2100561 - ], - [ - 3.2241441, - 51.2100561 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95362845 - } - }, - { - "id": 95357564, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1658156, - 41.3886336 - ], - [ - 2.1665741, - 41.3886336 - ], - [ - 2.1665741, - 41.3891951 - ], - [ - 2.1658156, - 41.3891951 - ], - [ - 2.1658156, - 41.3886336 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "lits", - "language": "en", - "theme-creator": "" - }, - "id": 95357564 - } - }, - { - "id": 95336723, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.0718926, - -33.460611 - ], - [ - -71.0718926, - -33.460611 - ], - [ - -71.0718926, - -33.460611 - ], - [ - -71.0718926, - -33.460611 - ], - [ - -71.0718926, - -33.460611 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95336723 - } - }, - { - "id": 95336591, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.1078643, - -33.4707554 - ], - [ - -71.1078643, - -33.4707554 - ], - [ - -71.1078643, - -33.4707554 - ], - [ - -71.1078643, - -33.4707554 - ], - [ - -71.1078643, - -33.4707554 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95336591 - } - }, - { - "id": 95321733, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 122.5457744, - 10.7363361 - ], - [ - 122.5596197, - 10.7363361 - ], - [ - 122.5596197, - 10.743588 - ], - [ - 122.5457744, - 10.743588 - ], - [ - 122.5457744, - 10.7363361 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95321733 - } - }, - { - "id": 95320020, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2160458, - 51.0506319 - ], - [ - 3.7097472, - 51.0506319 - ], - [ - 3.7097472, - 51.219777 - ], - [ - 3.2160458, - 51.219777 - ], - [ - 3.2160458, - 51.0506319 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "shops", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95320020 - } - }, - { - "id": 95315093, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7097472, - 51.0506319 - ], - [ - 3.7097472, - 51.0506319 - ], - [ - 3.7097472, - 51.0506319 - ], - [ - 3.7097472, - 51.0506319 - ], - [ - 3.7097472, - 51.0506319 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "shops", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95315093 - } - }, - { - "id": 95260980, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 122.5482876, - 10.7214848 - ], - [ - 122.5482876, - 10.7214848 - ], - [ - 122.5482876, - 10.7214848 - ], - [ - 122.5482876, - 10.7214848 - ], - [ - 122.5482876, - 10.7214848 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95260980 - } - }, - { - "id": 95250503, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.2138589, - 39.8873342 - ], - [ - -0.0838341, - 39.8873342 - ], - [ - -0.0838341, - 40.6188277 - ], - [ - -0.2138589, - 40.6188277 - ], - [ - -0.2138589, - 39.8873342 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "postalcode", - "language": "es", - "theme-creator": "" - }, - "id": 95250503 - } - }, - { - "id": 95242530, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1498632, - 41.3749641 - ], - [ - 2.150045, - 41.3749641 - ], - [ - 2.150045, - 41.3750707 - ], - [ - 2.1498632, - 41.3750707 - ], - [ - 2.1498632, - 41.3749641 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "kerbs", - "language": "en", - "theme-creator": "" - }, - "id": 95242530 - } - }, - { - "id": 95240617, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6891478, - 51.0234504 - ], - [ - 3.6891478, - 51.0234504 - ], - [ - 3.6891478, - 51.0234504 - ], - [ - 3.6891478, - 51.0234504 - ], - [ - 3.6891478, - 51.0234504 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "charging_stations", - "language": "en", - "theme-creator": "" - }, - "id": 95240617 - } - }, - { - "id": 95236418, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7082026, - 51.0344391 - ], - [ - 3.7082026, - 51.0344391 - ], - [ - 3.7082026, - 51.0344391 - ], - [ - 3.7082026, - 51.0344391 - ], - [ - 3.7082026, - 51.0344391 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95236418 - } - }, - { - "id": 95228146, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7367263, - 51.0567966 - ], - [ - 3.7367263, - 51.0567966 - ], - [ - 3.7367263, - 51.0567966 - ], - [ - 3.7367263, - 51.0567966 - ], - [ - 3.7367263, - 51.0567966 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "shops", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95228146 - } - }, - { - "id": 95199073, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.9065905, - -33.4577948 - ], - [ - -70.9065905, - -33.4577948 - ], - [ - -70.9065905, - -33.4577948 - ], - [ - -70.9065905, - -33.4577948 - ], - [ - -70.9065905, - -33.4577948 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95199073 - } - }, - { - "id": 95184168, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7097472, - 51.0506319 - ], - [ - 3.7097472, - 51.0506319 - ], - [ - 3.7097472, - 51.0506319 - ], - [ - 3.7097472, - 51.0506319 - ], - [ - 3.7097472, - 51.0506319 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "shops", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95184168 - } - }, - { - "id": 95178556, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7866457, - 48.0969079 - ], - [ - 11.7900091, - 48.0969079 - ], - [ - 11.7900091, - 48.1036502 - ], - [ - 11.7866457, - 48.1036502 - ], - [ - 11.7866457, - 48.0969079 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "benches", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 95178556 - } - }, - { - "id": 95149264, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8851959, - 51.0038347 - ], - [ - 3.8938272, - 51.0038347 - ], - [ - 3.8938272, - 51.0085781 - ], - [ - 3.8851959, - 51.0085781 - ], - [ - 3.8851959, - 51.0038347 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "surveillance", - "language": "nl", - "theme-creator": "" - }, - "id": 95149264 - } - }, - { - "id": 95100929, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7018776, - 51.0588206 - ], - [ - 3.7018776, - 51.0588206 - ], - [ - 3.7018776, - 51.0588206 - ], - [ - 3.7018776, - 51.0588206 - ], - [ - 3.7018776, - 51.0588206 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "artworks", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 95100929 - } - }, - { - "id": 95090081, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7881186, - 51.2622438 - ], - [ - 4.7881186, - 51.2622438 - ], - [ - 4.7881186, - 51.2622438 - ], - [ - 4.7881186, - 51.2622438 - ], - [ - 4.7881186, - 51.2622438 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 95090081 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2020-5-01.day.json b/Docs/Tools/stats/stats.2020-5-01.day.json new file mode 100644 index 0000000000..0637a088a0 --- /dev/null +++ b/Docs/Tools/stats/stats.2020-5-01.day.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2020-5-02.day.json b/Docs/Tools/stats/stats.2020-5-02.day.json new file mode 100644 index 0000000000..0637a088a0 --- /dev/null +++ b/Docs/Tools/stats/stats.2020-5-02.day.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2020-5-03.day.json b/Docs/Tools/stats/stats.2020-5-03.day.json new file mode 100644 index 0000000000..0637a088a0 --- /dev/null +++ b/Docs/Tools/stats/stats.2020-5-03.day.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2020-5-04.day.json b/Docs/Tools/stats/stats.2020-5-04.day.json new file mode 100644 index 0000000000..0637a088a0 --- /dev/null +++ b/Docs/Tools/stats/stats.2020-5-04.day.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2020-5-05.day.json b/Docs/Tools/stats/stats.2020-5-05.day.json new file mode 100644 index 0000000000..0637a088a0 --- /dev/null +++ b/Docs/Tools/stats/stats.2020-5-05.day.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2020-5-06.day.json b/Docs/Tools/stats/stats.2020-5-06.day.json new file mode 100644 index 0000000000..0637a088a0 --- /dev/null +++ b/Docs/Tools/stats/stats.2020-5-06.day.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2020-5-07.day.json b/Docs/Tools/stats/stats.2020-5-07.day.json new file mode 100644 index 0000000000..0637a088a0 --- /dev/null +++ b/Docs/Tools/stats/stats.2020-5-07.day.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2020-5-08.day.json b/Docs/Tools/stats/stats.2020-5-08.day.json new file mode 100644 index 0000000000..0637a088a0 --- /dev/null +++ b/Docs/Tools/stats/stats.2020-5-08.day.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2020-5-09.day.json b/Docs/Tools/stats/stats.2020-5-09.day.json new file mode 100644 index 0000000000..0637a088a0 --- /dev/null +++ b/Docs/Tools/stats/stats.2020-5-09.day.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2020-5-10.day.json b/Docs/Tools/stats/stats.2020-5-10.day.json new file mode 100644 index 0000000000..0637a088a0 --- /dev/null +++ b/Docs/Tools/stats/stats.2020-5-10.day.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2020-5-11.day.json b/Docs/Tools/stats/stats.2020-5-11.day.json new file mode 100644 index 0000000000..0637a088a0 --- /dev/null +++ b/Docs/Tools/stats/stats.2020-5-11.day.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2020-5.json b/Docs/Tools/stats/stats.2020-5.json deleted file mode 100644 index 0df89de120..0000000000 --- a/Docs/Tools/stats/stats.2020-5.json +++ /dev/null @@ -1,1715 +0,0 @@ -{ - "features": [ - { - "id": 85964427, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 85964427 - } - }, - { - "id": 85964426, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2319562, - 51.20296 - ], - [ - 3.2345334, - 51.20296 - ], - [ - 3.2345334, - 51.21206 - ], - [ - 3.2319562, - 51.21206 - ], - [ - 3.2319562, - 51.20296 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 85964426 - } - }, - { - "id": 85964318, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2194673, - 51.2131627 - ], - [ - 3.2194673, - 51.2131627 - ], - [ - 3.2194673, - 51.2131627 - ], - [ - 3.2194673, - 51.2131627 - ], - [ - 3.2194673, - 51.2131627 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 85964318 - } - }, - { - "id": 85964229, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2194673, - 51.2131627 - ], - [ - 3.2194673, - 51.2131627 - ], - [ - 3.2194673, - 51.2131627 - ], - [ - 3.2194673, - 51.2131627 - ], - [ - 3.2194673, - 51.2131627 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 85964229 - } - }, - { - "id": 85961402, - "type": "Feature", - "geometry": null, - "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:31Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 85961402 - } - }, - { - "id": 85961401, - "type": "Feature", - "geometry": null, - "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:31Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 85961401 - } - }, - { - "id": 85961400, - "type": "Feature", - "geometry": null, - "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:31Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 85961400 - } - }, - { - "id": 85961398, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.217728, - 51.2058585 - ], - [ - 3.217728, - 51.2058585 - ], - [ - 3.217728, - 51.2058585 - ], - [ - 3.217728, - 51.2058585 - ], - [ - 3.217728, - 51.2058585 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 85961398 - } - }, - { - "id": 85959748, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1647077, - 51.1791624 - ], - [ - 3.315736, - 51.1791624 - ], - [ - 3.315736, - 51.3249222 - ], - [ - 3.1647077, - 51.3249222 - ], - [ - 3.1647077, - 51.1791624 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 85959748 - } - }, - { - "id": 85959295, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2300527, - 50.7085687 - ], - [ - 4.2354362, - 50.7085687 - ], - [ - 4.2354362, - 50.713622 - ], - [ - 4.2300527, - 50.713622 - ], - [ - 4.2300527, - 50.7085687 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 85959295 - } - }, - { - "id": 85959134, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.104352, - 51.2756347 - ], - [ - 3.1522026, - 51.2756347 - ], - [ - 3.1522026, - 51.3071476 - ], - [ - 3.104352, - 51.3071476 - ], - [ - 3.104352, - 51.2756347 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 85959134 - } - }, - { - "id": 85959077, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2483648, - 51.2347129 - ], - [ - 3.2594896, - 51.2347129 - ], - [ - 3.2594896, - 51.2416789 - ], - [ - 3.2483648, - 51.2416789 - ], - [ - 3.2483648, - 51.2347129 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 85959077 - } - }, - { - "id": 85914046, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0405637, - 51.1731876 - ], - [ - 3.0573667, - 51.1731876 - ], - [ - 3.0573667, - 51.1787359 - ], - [ - 3.0405637, - 51.1787359 - ], - [ - 3.0405637, - 51.1731876 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 85914046 - } - }, - { - "id": 85912330, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6584773, - 51.0538256 - ], - [ - 3.6890486, - 51.0538256 - ], - [ - 3.6890486, - 51.0703779 - ], - [ - 3.6584773, - 51.0703779 - ], - [ - 3.6584773, - 51.0538256 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 85912330 - } - }, - { - "id": 85911841, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2781905, - 51.2568614 - ], - [ - 3.2855451, - 51.2568614 - ], - [ - 3.2855451, - 51.2621717 - ], - [ - 3.2781905, - 51.2621717 - ], - [ - 3.2781905, - 51.2568614 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 85911841 - } - }, - { - "id": 85907088, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2483648, - 51.2347129 - ], - [ - 3.2594896, - 51.2347129 - ], - [ - 3.2594896, - 51.2416789 - ], - [ - 3.2483648, - 51.2416789 - ], - [ - 3.2483648, - 51.2347129 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 85907088 - } - }, - { - "id": 85906742, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2803896, - 51.191496 - ], - [ - 3.315736, - 51.191496 - ], - [ - 3.315736, - 51.2058162 - ], - [ - 3.2803896, - 51.2058162 - ], - [ - 3.2803896, - 51.191496 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 85906742 - } - }, - { - "id": 85906674, - "type": "Feature", - "geometry": null, - "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:50:58Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 85906674 - } - }, - { - "id": 85906630, - "type": "Feature", - "geometry": null, - "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:49:28Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 85906630 - } - }, - { - "id": 85906563, - "type": "Feature", - "geometry": null, - "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:47:14Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 85906563 - } - }, - { - "id": 85906489, - "type": "Feature", - "geometry": null, - "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:45:03Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 85906489 - } - }, - { - "id": 85906408, - "type": "Feature", - "geometry": null, - "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:42:43Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 85906408 - } - }, - { - "id": 85906342, - "type": "Feature", - "geometry": null, - "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:41:04Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 85906342 - } - }, - { - "id": 85905687, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.257052, - 51.1945809 - ], - [ - 3.2689366, - 51.1945809 - ], - [ - 3.2689366, - 51.2020482 - ], - [ - 3.257052, - 51.2020482 - ], - [ - 3.257052, - 51.1945809 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 85905687 - } - }, - { - "id": 85905503, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2707036, - 51.1791624 - ], - [ - 3.2914513, - 51.1791624 - ], - [ - 3.2914513, - 51.1878966 - ], - [ - 3.2707036, - 51.1878966 - ], - [ - 3.2707036, - 51.1791624 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 85905503 - } - }, - { - "id": 85905476, - "type": "Feature", - "geometry": null, - "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:11:01Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 85905476 - } - }, - { - "id": 85903433, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1410974, - 51.220467 - ], - [ - 3.1410974, - 51.220467 - ], - [ - 3.1410974, - 51.220467 - ], - [ - 3.1410974, - 51.220467 - ], - [ - 3.1410974, - 51.220467 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 85903433 - } - }, - { - "id": 85903409, - "type": "Feature", - "geometry": null, - "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:10:32Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 85903409 - } - }, - { - "id": 85903300, - "type": "Feature", - "geometry": null, - "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:06:58Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 85903300 - } - }, - { - "id": 85856178, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2197236, - 51.2157018 - ], - [ - 3.2197236, - 51.2157018 - ], - [ - 3.2197236, - 51.2157018 - ], - [ - 3.2197236, - 51.2157018 - ], - [ - 3.2197236, - 51.2157018 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 85856178 - } - }, - { - "id": 85856175, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 1, - "name": "suspect_word" - } - ], - "tags": [], - "features": [], - "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:37Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 85856175 - } - }, - { - "id": 85856166, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 1, - "name": "suspect_word" - } - ], - "tags": [], - "features": [], - "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:01Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 85856166 - } - }, - { - "id": 85856160, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 1, - "name": "suspect_word" - } - ], - "tags": [], - "features": [], - "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:47:30Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 85856160 - } - }, - { - "id": 85856151, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 1, - "name": "suspect_word" - } - ], - "tags": [], - "features": [], - "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:46:56Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 85856151 - } - }, - { - "id": 85856121, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 1, - "name": "suspect_word" - } - ], - "tags": [], - "features": [], - "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:44:46Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 85856121 - } - }, - { - "id": 85856110, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 1, - "name": "suspect_word" - } - ], - "tags": [], - "features": [], - "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:43:38Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 85856110 - } - }, - { - "id": 85856101, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 1, - "name": "suspect_word" - } - ], - "tags": [], - "features": [], - "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:42:51Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 85856101 - } - }, - { - "id": 85856094, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 1, - "name": "suspect_word" - } - ], - "tags": [], - "features": [], - "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:42:20Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 85856094 - } - }, - { - "id": 85856093, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 1, - "name": "suspect_word" - } - ], - "tags": [], - "features": [], - "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:42:10Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 85856093 - } - }, - { - "id": 85856075, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 1, - "name": "suspect_word" - } - ], - "tags": [], - "features": [], - "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:40:55Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 85856075 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2020-6.json b/Docs/Tools/stats/stats.2020-6.json deleted file mode 100644 index 6a498b6391..0000000000 --- a/Docs/Tools/stats/stats.2020-6.json +++ /dev/null @@ -1,4806 +0,0 @@ -{ - "features": [ - { - "id": 87286866, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2221567, - 51.2098379 - ], - [ - 3.2224409, - 51.2098379 - ], - [ - 3.2224409, - 51.2100533 - ], - [ - 3.2221567, - 51.2100533 - ], - [ - 3.2221567, - 51.2098379 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87286866 - } - }, - { - "id": 87264737, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1306631, - 51.2878204 - ], - [ - 3.132538, - 51.2878204 - ], - [ - 3.132538, - 51.288698 - ], - [ - 3.1306631, - 51.288698 - ], - [ - 3.1306631, - 51.2878204 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87264737 - } - }, - { - "id": 87264569, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198042, - 51.2156981 - ], - [ - 3.2198042, - 51.2156981 - ], - [ - 3.2198042, - 51.2156981 - ], - [ - 3.2198042, - 51.2156981 - ], - [ - 3.2198042, - 51.2156981 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87264569 - } - }, - { - "id": 87264563, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198042, - 51.2156981 - ], - [ - 3.2198042, - 51.2156981 - ], - [ - 3.2198042, - 51.2156981 - ], - [ - 3.2198042, - 51.2156981 - ], - [ - 3.2198042, - 51.2156981 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87264563 - } - }, - { - "id": 87253999, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2559292, - 51.1583428 - ], - [ - 3.2597849, - 51.1583428 - ], - [ - 3.2597849, - 51.1610842 - ], - [ - 3.2559292, - 51.1610842 - ], - [ - 3.2559292, - 51.1583428 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87253999 - } - }, - { - "id": 87253996, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2559292, - 51.1583428 - ], - [ - 3.2597849, - 51.1583428 - ], - [ - 3.2597849, - 51.1610842 - ], - [ - 3.2559292, - 51.1610842 - ], - [ - 3.2559292, - 51.1583428 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87253996 - } - }, - { - "id": 87253990, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2559292, - 51.1583428 - ], - [ - 3.2597849, - 51.1583428 - ], - [ - 3.2597849, - 51.1610842 - ], - [ - 3.2559292, - 51.1610842 - ], - [ - 3.2559292, - 51.1583428 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87253990 - } - }, - { - "id": 87253944, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2169645, - 51.2003021 - ], - [ - 3.2177611, - 51.2003021 - ], - [ - 3.2177611, - 51.2033057 - ], - [ - 3.2169645, - 51.2033057 - ], - [ - 3.2169645, - 51.2003021 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87253944 - } - }, - { - "id": 87235839, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2162699, - 51.2135767 - ], - [ - 3.2169645, - 51.2135767 - ], - [ - 3.2169645, - 51.214016 - ], - [ - 3.2162699, - 51.214016 - ], - [ - 3.2162699, - 51.2135767 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87235839 - } - }, - { - "id": 87230232, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2162699, - 51.2135767 - ], - [ - 3.2169645, - 51.2135767 - ], - [ - 3.2169645, - 51.214016 - ], - [ - 3.2162699, - 51.214016 - ], - [ - 3.2162699, - 51.2135767 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87230232 - } - }, - { - "id": 87230226, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2162699, - 51.2135767 - ], - [ - 3.2169645, - 51.2135767 - ], - [ - 3.2169645, - 51.214016 - ], - [ - 3.2162699, - 51.214016 - ], - [ - 3.2162699, - 51.2135767 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87230226 - } - }, - { - "id": 87230201, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2162699, - 51.2135767 - ], - [ - 3.2169645, - 51.2135767 - ], - [ - 3.2169645, - 51.214016 - ], - [ - 3.2162699, - 51.214016 - ], - [ - 3.2162699, - 51.2135767 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87230201 - } - }, - { - "id": 87108706, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2162699, - 51.2135767 - ], - [ - 3.2169645, - 51.2135767 - ], - [ - 3.2169645, - 51.214016 - ], - [ - 3.2162699, - 51.214016 - ], - [ - 3.2162699, - 51.2135767 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87108706 - } - }, - { - "id": 87108693, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2162699, - 51.2135767 - ], - [ - 3.2169645, - 51.2135767 - ], - [ - 3.2169645, - 51.214016 - ], - [ - 3.2162699, - 51.214016 - ], - [ - 3.2162699, - 51.2135767 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87108693 - } - }, - { - "id": 87108359, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2162699, - 51.2135767 - ], - [ - 3.2169645, - 51.2135767 - ], - [ - 3.2169645, - 51.214016 - ], - [ - 3.2162699, - 51.214016 - ], - [ - 3.2162699, - 51.2135767 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87108359 - } - }, - { - "id": 87079924, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2116523, - 51.202596 - ], - [ - 3.2130013, - 51.202596 - ], - [ - 3.2130013, - 51.2044146 - ], - [ - 3.2116523, - 51.2044146 - ], - [ - 3.2116523, - 51.202596 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87079924 - } - }, - { - "id": 87052122, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.3470831, - 48.8868433 - ], - [ - 2.3470831, - 48.8868433 - ], - [ - 2.3470831, - 48.8868433 - ], - [ - 2.3470831, - 48.8868433 - ], - [ - 2.3470831, - 48.8868433 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87052122 - } - }, - { - "id": 87052051, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1863125, - 51.1889399 - ], - [ - 3.1935241, - 51.1889399 - ], - [ - 3.1935241, - 51.1933781 - ], - [ - 3.1863125, - 51.1933781 - ], - [ - 3.1863125, - 51.1889399 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87052051 - } - }, - { - "id": 87051299, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2223819, - 51.2095135 - ], - [ - 3.2228215, - 51.2095135 - ], - [ - 3.2228215, - 51.2097704 - ], - [ - 3.2223819, - 51.2097704 - ], - [ - 3.2223819, - 51.2095135 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87051299 - } - }, - { - "id": 87051253, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1930218, - 51.2174263 - ], - [ - 3.194392, - 51.2174263 - ], - [ - 3.194392, - 51.2179944 - ], - [ - 3.1930218, - 51.2179944 - ], - [ - 3.1930218, - 51.2174263 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87051253 - } - }, - { - "id": 87051238, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1930218, - 51.2174263 - ], - [ - 3.194392, - 51.2174263 - ], - [ - 3.194392, - 51.2179944 - ], - [ - 3.1930218, - 51.2179944 - ], - [ - 3.1930218, - 51.2174263 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87051238 - } - }, - { - "id": 86882190, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198498, - 51.2157031 - ], - [ - 3.2198498, - 51.2157031 - ], - [ - 3.2198498, - 51.2157031 - ], - [ - 3.2198498, - 51.2157031 - ], - [ - 3.2198498, - 51.2157031 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86882190 - } - }, - { - "id": 86831904, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.218716, - 51.2184302 - ], - [ - 3.218716, - 51.2184302 - ], - [ - 3.218716, - 51.2184302 - ], - [ - 3.218716, - 51.2184302 - ], - [ - 3.218716, - 51.2184302 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86831904 - } - }, - { - "id": 86515326, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.257214, - 50.7432271 - ], - [ - 4.257214, - 50.7432271 - ], - [ - 4.257214, - 50.7432271 - ], - [ - 4.257214, - 50.7432271 - ], - [ - 4.257214, - 50.7432271 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86515326 - } - }, - { - "id": 86514904, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7010949, - 51.0390544 - ], - [ - 3.7010949, - 51.0390544 - ], - [ - 3.7010949, - 51.0390544 - ], - [ - 3.7010949, - 51.0390544 - ], - [ - 3.7010949, - 51.0390544 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86514904 - } - }, - { - "id": 86486597, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198605, - 51.2157132 - ], - [ - 3.2198605, - 51.2157132 - ], - [ - 3.2198605, - 51.2157132 - ], - [ - 3.2198605, - 51.2157132 - ], - [ - 3.2198605, - 51.2157132 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86486597 - } - }, - { - "id": 86481535, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198524, - 51.2157267 - ], - [ - 3.2198524, - 51.2157267 - ], - [ - 3.2198524, - 51.2157267 - ], - [ - 3.2198524, - 51.2157267 - ], - [ - 3.2198524, - 51.2157267 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86481535 - } - }, - { - "id": 86481488, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198471, - 51.2157199 - ], - [ - 3.2198471, - 51.2157199 - ], - [ - 3.2198471, - 51.2157199 - ], - [ - 3.2198471, - 51.2157199 - ], - [ - 3.2198471, - 51.2157199 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86481488 - } - }, - { - "id": 86480505, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198404, - 51.2157078 - ], - [ - 3.2198404, - 51.2157078 - ], - [ - 3.2198404, - 51.2157078 - ], - [ - 3.2198404, - 51.2157078 - ], - [ - 3.2198404, - 51.2157078 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86480505 - } - }, - { - "id": 86479916, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2197787, - 51.2156985 - ], - [ - 3.2197787, - 51.2156985 - ], - [ - 3.2197787, - 51.2156985 - ], - [ - 3.2197787, - 51.2156985 - ], - [ - 3.2197787, - 51.2156985 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86479916 - } - }, - { - "id": 86266570, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266570 - } - }, - { - "id": 86266568, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266568 - } - }, - { - "id": 86266565, - "type": "Feature", - "geometry": null, - "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:26Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 86266565 - } - }, - { - "id": 86266562, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266562 - } - }, - { - "id": 86266554, - "type": "Feature", - "geometry": null, - "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:21Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 86266554 - } - }, - { - "id": 86266553, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266553 - } - }, - { - "id": 86266546, - "type": "Feature", - "geometry": null, - "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:19Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 86266546 - } - }, - { - "id": 86266545, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266545 - } - }, - { - "id": 86266534, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266534 - } - }, - { - "id": 86266520, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266520 - } - }, - { - "id": 86266517, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266517 - } - }, - { - "id": 86266513, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266513 - } - }, - { - "id": 86266494, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266494 - } - }, - { - "id": 86266488, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266488 - } - }, - { - "id": 86266479, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266479 - } - }, - { - "id": 86266464, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266464 - } - }, - { - "id": 86266458, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266458 - } - }, - { - "id": 86266456, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266456 - } - }, - { - "id": 86266446, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266446 - } - }, - { - "id": 86266445, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266445 - } - }, - { - "id": 86266428, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266428 - } - }, - { - "id": 86266403, - "type": "Feature", - "geometry": null, - "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:35Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 86266403 - } - }, - { - "id": 86266402, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266402 - } - }, - { - "id": 86266386, - "type": "Feature", - "geometry": null, - "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:30:01Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 86266386 - } - }, - { - "id": 86266383, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266383 - } - }, - { - "id": 86266377, - "type": "Feature", - "geometry": null, - "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:05Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 86266377 - } - }, - { - "id": 86266376, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266376 - } - }, - { - "id": 86266364, - "type": "Feature", - "geometry": null, - "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:06Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 86266364 - } - }, - { - "id": 86266356, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266356 - } - }, - { - "id": 86266349, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266349 - } - }, - { - "id": 86266343, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266343 - } - }, - { - "id": 86266341, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266341 - } - }, - { - "id": 86266340, - "type": "Feature", - "geometry": null, - "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:47Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 86266340 - } - }, - { - "id": 86266332, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266332 - } - }, - { - "id": 86266321, - "type": "Feature", - "geometry": null, - "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:05Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 86266321 - } - }, - { - "id": 86266243, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266243 - } - }, - { - "id": 86266219, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266219 - } - }, - { - "id": 86266213, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266213 - } - }, - { - "id": 86266204, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266204 - } - }, - { - "id": 86266170, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266170 - } - }, - { - "id": 86266147, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86266147 - } - }, - { - "id": 86265999, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86265999 - } - }, - { - "id": 86265929, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86265929 - } - }, - { - "id": 86265868, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86265868 - } - }, - { - "id": 86265830, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86265830 - } - }, - { - "id": 86265829, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86265829 - } - }, - { - "id": 86265824, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86265824 - } - }, - { - "id": 86265819, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86265819 - } - }, - { - "id": 86265813, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86265813 - } - }, - { - "id": 86265807, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ], - [ - 3.21972, - 51.21572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86265807 - } - }, - { - "id": 86265797, - "type": "Feature", - "geometry": null, - "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:31:20Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 86265797 - } - }, - { - "id": 86265796, - "type": "Feature", - "geometry": null, - "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:31:19Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 86265796 - } - }, - { - "id": 86265792, - "type": "Feature", - "geometry": null, - "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:30:54Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 86265792 - } - }, - { - "id": 86265790, - "type": "Feature", - "geometry": null, - "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:30:33Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 86265790 - } - }, - { - "id": 86265787, - "type": "Feature", - "geometry": null, - "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:30:10Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 86265787 - } - }, - { - "id": 86265781, - "type": "Feature", - "geometry": null, - "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:29:46Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 86265781 - } - }, - { - "id": 86265776, - "type": "Feature", - "geometry": null, - "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:29:23Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 86265776 - } - }, - { - "id": 86265769, - "type": "Feature", - "geometry": null, - "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:29:01Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 86265769 - } - }, - { - "id": 86265765, - "type": "Feature", - "geometry": null, - "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:28:38Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 86265765 - } - }, - { - "id": 86265760, - "type": "Feature", - "geometry": null, - "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:28:15Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 86265760 - } - }, - { - "id": 86265753, - "type": "Feature", - "geometry": null, - "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:27:53Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 86265753 - } - }, - { - "id": 86265750, - "type": "Feature", - "geometry": null, - "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:27:31Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 86265750 - } - }, - { - "id": 86265748, - "type": "Feature", - "geometry": null, - "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:27:09Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 86265748 - } - }, - { - "id": 86265742, - "type": "Feature", - "geometry": null, - "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:26:47Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 86265742 - } - }, - { - "id": 86265738, - "type": "Feature", - "geometry": null, - "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:26:24Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 86265738 - } - }, - { - "id": 86265734, - "type": "Feature", - "geometry": null, - "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:26:02Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 86265734 - } - }, - { - "id": 86064773, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1514446, - 51.0872652 - ], - [ - 3.1823562, - 51.0872652 - ], - [ - 3.1823562, - 51.1114129 - ], - [ - 3.1514446, - 51.1114129 - ], - [ - 3.1514446, - 51.0872652 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 86064773 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2020-7.json b/Docs/Tools/stats/stats.2020-7.json deleted file mode 100644 index d97e21429c..0000000000 --- a/Docs/Tools/stats/stats.2020-7.json +++ /dev/null @@ -1,79070 +0,0 @@ -{ - "features": [ - { - "id": 88794518, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2345337, - 50.7325505 - ], - [ - 4.2345337, - 50.7325505 - ], - [ - 4.2345337, - 50.7325505 - ], - [ - 4.2345337, - 50.7325505 - ], - [ - 4.2345337, - 50.7325505 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88794518 - } - }, - { - "id": 88754271, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3997831, - 51.0410144 - ], - [ - 3.3997831, - 51.0410144 - ], - [ - 3.3997831, - 51.0410144 - ], - [ - 3.3997831, - 51.0410144 - ], - [ - 3.3997831, - 51.0410144 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88754271 - } - }, - { - "id": 88754234, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3944187, - 51.0399165 - ], - [ - 3.3944187, - 51.0399165 - ], - [ - 3.3944187, - 51.0399165 - ], - [ - 3.3944187, - 51.0399165 - ], - [ - 3.3944187, - 51.0399165 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88754234 - } - }, - { - "id": 88754207, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3996981, - 51.0422216 - ], - [ - 3.3996981, - 51.0422216 - ], - [ - 3.3996981, - 51.0422216 - ], - [ - 3.3996981, - 51.0422216 - ], - [ - 3.3996981, - 51.0422216 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88754207 - } - }, - { - "id": 88750460, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2238434, - 51.2191897 - ], - [ - 3.2258624, - 51.2191897 - ], - [ - 3.2258624, - 51.2201436 - ], - [ - 3.2238434, - 51.2201436 - ], - [ - 3.2238434, - 51.2191897 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88750460 - } - }, - { - "id": 88750381, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2246267, - 51.2185636 - ], - [ - 3.2246267, - 51.2185636 - ], - [ - 3.2246267, - 51.2185636 - ], - [ - 3.2246267, - 51.2185636 - ], - [ - 3.2246267, - 51.2185636 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.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, - "metadata": {}, - "id": 88750381 - } - }, - { - "id": 88750366, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2246267, - 51.2185636 - ], - [ - 3.2246267, - 51.2185636 - ], - [ - 3.2246267, - 51.2185636 - ], - [ - 3.2246267, - 51.2185636 - ], - [ - 3.2246267, - 51.2185636 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.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, - "metadata": {}, - "id": 88750366 - } - }, - { - "id": 88750361, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2246267, - 51.2185636 - ], - [ - 3.2246267, - 51.2185636 - ], - [ - 3.2246267, - 51.2185636 - ], - [ - 3.2246267, - 51.2185636 - ], - [ - 3.2246267, - 51.2185636 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.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, - "metadata": {}, - "id": 88750361 - } - }, - { - "id": 88748527, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3600702, - 50.8502689 - ], - [ - 4.3600702, - 50.8502689 - ], - [ - 4.3600702, - 50.8502689 - ], - [ - 4.3600702, - 50.8502689 - ], - [ - 4.3600702, - 50.8502689 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88748527 - } - }, - { - "id": 88748056, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2201207, - 51.2040068 - ], - [ - 3.2201207, - 51.2040068 - ], - [ - 3.2201207, - 51.2040068 - ], - [ - 3.2201207, - 51.2040068 - ], - [ - 3.2201207, - 51.2040068 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88748056 - } - }, - { - "id": 88748030, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2201207, - 51.2040068 - ], - [ - 3.2201207, - 51.2040068 - ], - [ - 3.2201207, - 51.2040068 - ], - [ - 3.2201207, - 51.2040068 - ], - [ - 3.2201207, - 51.2040068 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88748030 - } - }, - { - "id": 88748016, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2201207, - 51.2040068 - ], - [ - 3.2201207, - 51.2040068 - ], - [ - 3.2201207, - 51.2040068 - ], - [ - 3.2201207, - 51.2040068 - ], - [ - 3.2201207, - 51.2040068 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88748016 - } - }, - { - "id": 88747974, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2196379, - 51.2039223 - ], - [ - 3.2196379, - 51.2039223 - ], - [ - 3.2196379, - 51.2039223 - ], - [ - 3.2196379, - 51.2039223 - ], - [ - 3.2196379, - 51.2039223 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88747974 - } - }, - { - "id": 88747969, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2196379, - 51.2039223 - ], - [ - 3.2196379, - 51.2039223 - ], - [ - 3.2196379, - 51.2039223 - ], - [ - 3.2196379, - 51.2039223 - ], - [ - 3.2196379, - 51.2039223 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88747969 - } - }, - { - "id": 88747965, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2196379, - 51.2039223 - ], - [ - 3.2196379, - 51.2039223 - ], - [ - 3.2196379, - 51.2039223 - ], - [ - 3.2196379, - 51.2039223 - ], - [ - 3.2196379, - 51.2039223 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88747965 - } - }, - { - "id": 88747945, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2196379, - 51.2039223 - ], - [ - 3.2196379, - 51.2039223 - ], - [ - 3.2196379, - 51.2039223 - ], - [ - 3.2196379, - 51.2039223 - ], - [ - 3.2196379, - 51.2039223 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88747945 - } - }, - { - "id": 88744974, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.121078, - 50.7995973 - ], - [ - 3.121078, - 50.7995973 - ], - [ - 3.121078, - 50.7995973 - ], - [ - 3.121078, - 50.7995973 - ], - [ - 3.121078, - 50.7995973 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88744974 - } - }, - { - "id": 88744357, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2136612, - 51.2178554 - ], - [ - 3.2154767, - 51.2178554 - ], - [ - 3.2154767, - 51.2193696 - ], - [ - 3.2136612, - 51.2193696 - ], - [ - 3.2136612, - 51.2178554 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88744357 - } - }, - { - "id": 88744261, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2075821, - 51.2188863 - ], - [ - 3.2096902, - 51.2188863 - ], - [ - 3.2096902, - 51.2205382 - ], - [ - 3.2075821, - 51.2205382 - ], - [ - 3.2075821, - 51.2188863 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88744261 - } - }, - { - "id": 88744181, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2022257, - 51.2205382 - ], - [ - 3.2075821, - 51.2205382 - ], - [ - 3.2075821, - 51.2233784 - ], - [ - 3.2022257, - 51.2233784 - ], - [ - 3.2022257, - 51.2205382 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88744181 - } - }, - { - "id": 88744059, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2023263, - 51.2232035 - ], - [ - 3.2023263, - 51.2232035 - ], - [ - 3.2023263, - 51.2232035 - ], - [ - 3.2023263, - 51.2232035 - ], - [ - 3.2023263, - 51.2232035 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88744059 - } - }, - { - "id": 88744048, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2023263, - 51.2232035 - ], - [ - 3.2023263, - 51.2232035 - ], - [ - 3.2023263, - 51.2232035 - ], - [ - 3.2023263, - 51.2232035 - ], - [ - 3.2023263, - 51.2232035 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88744048 - } - }, - { - "id": 88743999, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1999588, - 51.2233784 - ], - [ - 3.2022257, - 51.2233784 - ], - [ - 3.2022257, - 51.2239967 - ], - [ - 3.1999588, - 51.2239967 - ], - [ - 3.1999588, - 51.2233784 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88743999 - } - }, - { - "id": 88743938, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2023263, - 51.2232035 - ], - [ - 3.2023263, - 51.2232035 - ], - [ - 3.2023263, - 51.2232035 - ], - [ - 3.2023263, - 51.2232035 - ], - [ - 3.2023263, - 51.2232035 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88743938 - } - }, - { - "id": 88743917, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2023263, - 51.2232035 - ], - [ - 3.2023263, - 51.2232035 - ], - [ - 3.2023263, - 51.2232035 - ], - [ - 3.2023263, - 51.2232035 - ], - [ - 3.2023263, - 51.2232035 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88743917 - } - }, - { - "id": 88743597, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.195616, - 51.2264428 - ], - [ - 3.19689, - 51.2264428 - ], - [ - 3.19689, - 51.2280801 - ], - [ - 3.195616, - 51.2280801 - ], - [ - 3.195616, - 51.2264428 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88743597 - } - }, - { - "id": 88743578, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1965253, - 51.2254844 - ], - [ - 3.1979874, - 51.2254844 - ], - [ - 3.1979874, - 51.2273393 - ], - [ - 3.1965253, - 51.2273393 - ], - [ - 3.1965253, - 51.2254844 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88743578 - } - }, - { - "id": 88743502, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1974935, - 51.2260213 - ], - [ - 3.1977236, - 51.2260213 - ], - [ - 3.1977236, - 51.2264389 - ], - [ - 3.1974935, - 51.2264389 - ], - [ - 3.1974935, - 51.2260213 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88743502 - } - }, - { - "id": 88743466, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1962296, - 51.226394 - ], - [ - 3.1983197, - 51.226394 - ], - [ - 3.1983197, - 51.2289078 - ], - [ - 3.1962296, - 51.2289078 - ], - [ - 3.1962296, - 51.226394 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88743466 - } - }, - { - "id": 88743312, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1899146, - 51.2279792 - ], - [ - 3.1921747, - 51.2279792 - ], - [ - 3.1921747, - 51.2294335 - ], - [ - 3.1899146, - 51.2294335 - ], - [ - 3.1899146, - 51.2279792 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88743312 - } - }, - { - "id": 88743268, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1959164, - 51.228057 - ], - [ - 3.196308, - 51.228057 - ], - [ - 3.196308, - 51.2287742 - ], - [ - 3.1959164, - 51.2287742 - ], - [ - 3.1959164, - 51.228057 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88743268 - } - }, - { - "id": 88743199, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1952171, - 51.2289657 - ], - [ - 3.1959469, - 51.2289657 - ], - [ - 3.1959469, - 51.229426 - ], - [ - 3.1952171, - 51.229426 - ], - [ - 3.1952171, - 51.2289657 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88743199 - } - }, - { - "id": 88743164, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1945798, - 51.2287978 - ], - [ - 3.19551, - 51.2287978 - ], - [ - 3.19551, - 51.2293801 - ], - [ - 3.1945798, - 51.2293801 - ], - [ - 3.1945798, - 51.2287978 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88743164 - } - }, - { - "id": 88743115, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1953333, - 51.2284532 - ], - [ - 3.1975994, - 51.2284532 - ], - [ - 3.1975994, - 51.2297556 - ], - [ - 3.1953333, - 51.2297556 - ], - [ - 3.1953333, - 51.2284532 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88743115 - } - }, - { - "id": 88743111, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1953333, - 51.2284532 - ], - [ - 3.1975994, - 51.2284532 - ], - [ - 3.1975994, - 51.2297556 - ], - [ - 3.1953333, - 51.2297556 - ], - [ - 3.1953333, - 51.2284532 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88743111 - } - }, - { - "id": 88742929, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1833627, - 51.2296258 - ], - [ - 3.1896279, - 51.2296258 - ], - [ - 3.1896279, - 51.2339255 - ], - [ - 3.1833627, - 51.2339255 - ], - [ - 3.1833627, - 51.2296258 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88742929 - } - }, - { - "id": 88742716, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.3412281, - 48.7509169 - ], - [ - 2.3451972, - 48.7509169 - ], - [ - 2.3451972, - 48.7533382 - ], - [ - 2.3412281, - 48.7533382 - ], - [ - 2.3412281, - 48.7509169 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88742716 - } - }, - { - "id": 88742504, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1877361, - 51.2175326 - ], - [ - 3.1882147, - 51.2175326 - ], - [ - 3.1882147, - 51.2190025 - ], - [ - 3.1877361, - 51.2190025 - ], - [ - 3.1877361, - 51.2175326 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88742504 - } - }, - { - "id": 88742207, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.188256, - 51.2176305 - ], - [ - 3.188256, - 51.2176305 - ], - [ - 3.188256, - 51.2176305 - ], - [ - 3.188256, - 51.2176305 - ], - [ - 3.188256, - 51.2176305 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88742207 - } - }, - { - "id": 88742202, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.188256, - 51.2176305 - ], - [ - 3.188256, - 51.2176305 - ], - [ - 3.188256, - 51.2176305 - ], - [ - 3.188256, - 51.2176305 - ], - [ - 3.188256, - 51.2176305 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88742202 - } - }, - { - "id": 88742179, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1883097, - 51.2170257 - ], - [ - 3.1883097, - 51.2170257 - ], - [ - 3.1883097, - 51.2170257 - ], - [ - 3.1883097, - 51.2170257 - ], - [ - 3.1883097, - 51.2170257 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88742179 - } - }, - { - "id": 88742167, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1883097, - 51.2170257 - ], - [ - 3.1883097, - 51.2170257 - ], - [ - 3.1883097, - 51.2170257 - ], - [ - 3.1883097, - 51.2170257 - ], - [ - 3.1883097, - 51.2170257 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88742167 - } - }, - { - "id": 88742123, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1890159, - 51.2161975 - ], - [ - 3.2003205, - 51.2161975 - ], - [ - 3.2003205, - 51.2175463 - ], - [ - 3.1890159, - 51.2175463 - ], - [ - 3.1890159, - 51.2161975 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88742123 - } - }, - { - "id": 88741393, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2137117, - 51.2164612 - ], - [ - 3.2186611, - 51.2164612 - ], - [ - 3.2186611, - 51.2191653 - ], - [ - 3.2137117, - 51.2191653 - ], - [ - 3.2137117, - 51.2164612 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88741393 - } - }, - { - "id": 88739524, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2023577, - 51.2115897 - ], - [ - 3.2113483, - 51.2115897 - ], - [ - 3.2113483, - 51.2185068 - ], - [ - 3.2023577, - 51.2185068 - ], - [ - 3.2023577, - 51.2115897 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88739524 - } - }, - { - "id": 88739490, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2061917, - 51.2142128 - ], - [ - 3.2081708, - 51.2142128 - ], - [ - 3.2081708, - 51.2176162 - ], - [ - 3.2061917, - 51.2176162 - ], - [ - 3.2061917, - 51.2142128 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88739490 - } - }, - { - "id": 88739123, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3460313, - 50.8525107 - ], - [ - 4.3460313, - 50.8525107 - ], - [ - 4.3460313, - 50.8525107 - ], - [ - 4.3460313, - 50.8525107 - ], - [ - 4.3460313, - 50.8525107 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88739123 - } - }, - { - "id": 88738090, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3217228, - 50.8813375 - ], - [ - 4.3217228, - 50.8813375 - ], - [ - 4.3217228, - 50.8813375 - ], - [ - 4.3217228, - 50.8813375 - ], - [ - 4.3217228, - 50.8813375 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88738090 - } - }, - { - "id": 88737432, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3217228, - 50.8813375 - ], - [ - 4.3217228, - 50.8813375 - ], - [ - 4.3217228, - 50.8813375 - ], - [ - 4.3217228, - 50.8813375 - ], - [ - 4.3217228, - 50.8813375 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88737432 - } - }, - { - "id": 88737401, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3217228, - 50.8813375 - ], - [ - 4.3217228, - 50.8813375 - ], - [ - 4.3217228, - 50.8813375 - ], - [ - 4.3217228, - 50.8813375 - ], - [ - 4.3217228, - 50.8813375 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88737401 - } - }, - { - "id": 88737279, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3217097, - 50.8813368 - ], - [ - 4.3217097, - 50.8813368 - ], - [ - 4.3217097, - 50.8813368 - ], - [ - 4.3217097, - 50.8813368 - ], - [ - 4.3217097, - 50.8813368 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88737279 - } - }, - { - "id": 88723923, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2806737, - 48.7715652 - ], - [ - 2.2806737, - 48.7715652 - ], - [ - 2.2806737, - 48.7715652 - ], - [ - 2.2806737, - 48.7715652 - ], - [ - 2.2806737, - 48.7715652 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88723923 - } - }, - { - "id": 88723523, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3707293, - 50.8536455 - ], - [ - 4.3707293, - 50.8536455 - ], - [ - 4.3707293, - 50.8536455 - ], - [ - 4.3707293, - 50.8536455 - ], - [ - 4.3707293, - 50.8536455 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88723523 - } - }, - { - "id": 88723393, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3636188, - 50.8504721 - ], - [ - 4.3636188, - 50.8504721 - ], - [ - 4.3636188, - 50.8504721 - ], - [ - 4.3636188, - 50.8504721 - ], - [ - 4.3636188, - 50.8504721 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88723393 - } - }, - { - "id": 88715990, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.453523, - 51.1751904 - ], - [ - 4.4647489, - 51.1751904 - ], - [ - 4.4647489, - 51.1808812 - ], - [ - 4.453523, - 51.1808812 - ], - [ - 4.453523, - 51.1751904 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88715990 - } - }, - { - "id": 88692073, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2270548, - 51.2096997 - ], - [ - 3.2271969, - 51.2096997 - ], - [ - 3.2271969, - 51.2098075 - ], - [ - 3.2270548, - 51.2098075 - ], - [ - 3.2270548, - 51.2096997 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88692073 - } - }, - { - "id": 88690311, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2270548, - 51.2096997 - ], - [ - 3.2271969, - 51.2096997 - ], - [ - 3.2271969, - 51.2098075 - ], - [ - 3.2270548, - 51.2098075 - ], - [ - 3.2270548, - 51.2096997 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88690311 - } - }, - { - "id": 88690277, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2270548, - 51.2096997 - ], - [ - 3.2271969, - 51.2096997 - ], - [ - 3.2271969, - 51.2098075 - ], - [ - 3.2270548, - 51.2098075 - ], - [ - 3.2270548, - 51.2096997 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88690277 - } - }, - { - "id": 88690274, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2270548, - 51.2096997 - ], - [ - 3.2271969, - 51.2096997 - ], - [ - 3.2271969, - 51.2098075 - ], - [ - 3.2270548, - 51.2098075 - ], - [ - 3.2270548, - 51.2096997 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88690274 - } - }, - { - "id": 88682537, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3544537, - 50.8426547 - ], - [ - 4.3544537, - 50.8426547 - ], - [ - 4.3544537, - 50.8426547 - ], - [ - 4.3544537, - 50.8426547 - ], - [ - 4.3544537, - 50.8426547 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88682537 - } - }, - { - "id": 88665312, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3387949, - 50.8517659 - ], - [ - 4.3387949, - 50.8517659 - ], - [ - 4.3387949, - 50.8517659 - ], - [ - 4.3387949, - 50.8517659 - ], - [ - 4.3387949, - 50.8517659 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88665312 - } - }, - { - "id": 88662734, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9604265, - 51.0238557 - ], - [ - 3.9665531, - 51.0238557 - ], - [ - 3.9665531, - 51.0295807 - ], - [ - 3.9604265, - 51.0295807 - ], - [ - 3.9604265, - 51.0238557 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88662734 - } - }, - { - "id": 88662651, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.888737, - 51.0051498 - ], - [ - 3.9604557, - 51.0051498 - ], - [ - 3.9604557, - 51.0365414 - ], - [ - 3.888737, - 51.0365414 - ], - [ - 3.888737, - 51.0051498 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88662651 - } - }, - { - "id": 88659808, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4563692, - 51.1807915 - ], - [ - 4.4610865, - 51.1807915 - ], - [ - 4.4610865, - 51.1842925 - ], - [ - 4.4563692, - 51.1842925 - ], - [ - 4.4563692, - 51.1807915 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88659808 - } - }, - { - "id": 88642425, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2321179, - 51.2102882 - ], - [ - 3.2326898, - 51.2102882 - ], - [ - 3.2326898, - 51.2103158 - ], - [ - 3.2321179, - 51.2103158 - ], - [ - 3.2321179, - 51.2102882 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88642425 - } - }, - { - "id": 88638766, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4810952, - 51.0990947 - ], - [ - 3.4825462, - 51.0990947 - ], - [ - 3.4825462, - 51.1001885 - ], - [ - 3.4810952, - 51.1001885 - ], - [ - 3.4810952, - 51.0990947 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88638766 - } - }, - { - "id": 88638714, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4639447, - 51.0624042 - ], - [ - 3.4967641, - 51.0624042 - ], - [ - 3.4967641, - 51.0787507 - ], - [ - 3.4639447, - 51.0787507 - ], - [ - 3.4639447, - 51.0624042 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88638714 - } - }, - { - "id": 88638606, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4783962, - 51.0859046 - ], - [ - 3.4833396, - 51.0859046 - ], - [ - 3.4833396, - 51.0885114 - ], - [ - 3.4783962, - 51.0885114 - ], - [ - 3.4783962, - 51.0859046 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88638606 - } - }, - { - "id": 88638535, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4867509, - 51.102183 - ], - [ - 3.4893464, - 51.102183 - ], - [ - 3.4893464, - 51.1034929 - ], - [ - 3.4867509, - 51.1034929 - ], - [ - 3.4867509, - 51.102183 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88638535 - } - }, - { - "id": 88638498, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4867509, - 51.102183 - ], - [ - 3.4893464, - 51.102183 - ], - [ - 3.4893464, - 51.1034929 - ], - [ - 3.4867509, - 51.1034929 - ], - [ - 3.4867509, - 51.102183 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88638498 - } - }, - { - "id": 88638472, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4927069, - 51.0980369 - ], - [ - 3.4939021, - 51.0980369 - ], - [ - 3.4939021, - 51.0987532 - ], - [ - 3.4927069, - 51.0987532 - ], - [ - 3.4927069, - 51.0980369 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88638472 - } - }, - { - "id": 88638316, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5161066, - 51.085731 - ], - [ - 3.5246488, - 51.085731 - ], - [ - 3.5246488, - 51.0901371 - ], - [ - 3.5161066, - 51.0901371 - ], - [ - 3.5161066, - 51.085731 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88638316 - } - }, - { - "id": 88638297, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4868184, - 51.0777936 - ], - [ - 3.496156, - 51.0777936 - ], - [ - 3.496156, - 51.0830411 - ], - [ - 3.4868184, - 51.0830411 - ], - [ - 3.4868184, - 51.0777936 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88638297 - } - }, - { - "id": 88638230, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4819602, - 51.0942356 - ], - [ - 3.4891109, - 51.0942356 - ], - [ - 3.4891109, - 51.0994274 - ], - [ - 3.4819602, - 51.0994274 - ], - [ - 3.4819602, - 51.0942356 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88638230 - } - }, - { - "id": 88637985, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4883087, - 51.0991987 - ], - [ - 3.4892005, - 51.0991987 - ], - [ - 3.4892005, - 51.0997598 - ], - [ - 3.4883087, - 51.0997598 - ], - [ - 3.4883087, - 51.0991987 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88637985 - } - }, - { - "id": 88637922, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4819602, - 51.0942356 - ], - [ - 3.4892005, - 51.0942356 - ], - [ - 3.4892005, - 51.0997598 - ], - [ - 3.4819602, - 51.0997598 - ], - [ - 3.4819602, - 51.0942356 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88637922 - } - }, - { - "id": 88637773, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4846902, - 51.0987996 - ], - [ - 3.4864885, - 51.0987996 - ], - [ - 3.4864885, - 51.0999889 - ], - [ - 3.4846902, - 51.0999889 - ], - [ - 3.4846902, - 51.0987996 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88637773 - } - }, - { - "id": 88637746, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4810952, - 51.0990947 - ], - [ - 3.4899185, - 51.0990947 - ], - [ - 3.4899185, - 51.1015789 - ], - [ - 3.4810952, - 51.1015789 - ], - [ - 3.4810952, - 51.0990947 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88637746 - } - }, - { - "id": 88637712, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4789134, - 51.1010512 - ], - [ - 3.4840042, - 51.1010512 - ], - [ - 3.4840042, - 51.1040429 - ], - [ - 3.4789134, - 51.1040429 - ], - [ - 3.4789134, - 51.1010512 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88637712 - } - }, - { - "id": 88637651, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4789134, - 51.1010512 - ], - [ - 3.4840042, - 51.1010512 - ], - [ - 3.4840042, - 51.1040429 - ], - [ - 3.4789134, - 51.1040429 - ], - [ - 3.4789134, - 51.1010512 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88637651 - } - }, - { - "id": 88608906, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.858179, - 51.0016692 - ], - [ - 3.8731249, - 51.0016692 - ], - [ - 3.8731249, - 51.0057452 - ], - [ - 3.858179, - 51.0057452 - ], - [ - 3.858179, - 51.0016692 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88608906 - } - }, - { - "id": 88608855, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8682446, - 51.0018028 - ], - [ - 3.8892921, - 51.0018028 - ], - [ - 3.8892921, - 51.012496 - ], - [ - 3.8682446, - 51.012496 - ], - [ - 3.8682446, - 51.0018028 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88608855 - } - }, - { - "id": 88608824, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8876332, - 51.003966 - ], - [ - 3.908914, - 51.003966 - ], - [ - 3.908914, - 51.0098355 - ], - [ - 3.8876332, - 51.0098355 - ], - [ - 3.8876332, - 51.003966 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88608824 - } - }, - { - "id": 88608738, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8915864, - 51.0049662 - ], - [ - 3.9022092, - 51.0049662 - ], - [ - 3.9022092, - 51.0128909 - ], - [ - 3.8915864, - 51.0128909 - ], - [ - 3.8915864, - 51.0049662 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88608738 - } - }, - { - "id": 88608683, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7946387, - 51.0061784 - ], - [ - 3.805464, - 51.0061784 - ], - [ - 3.805464, - 51.0142069 - ], - [ - 3.7946387, - 51.0142069 - ], - [ - 3.7946387, - 51.0061784 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88608683 - } - }, - { - "id": 88559889, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7094668, - 50.8627092 - ], - [ - 4.7094668, - 50.8627092 - ], - [ - 4.7094668, - 50.8627092 - ], - [ - 4.7094668, - 50.8627092 - ], - [ - 4.7094668, - 50.8627092 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88559889 - } - }, - { - "id": 88559843, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7094668, - 50.8627092 - ], - [ - 4.7094668, - 50.8627092 - ], - [ - 4.7094668, - 50.8627092 - ], - [ - 4.7094668, - 50.8627092 - ], - [ - 4.7094668, - 50.8627092 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88559843 - } - }, - { - "id": 88548536, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.340039, - 50.8526182 - ], - [ - 4.340039, - 50.8526182 - ], - [ - 4.340039, - 50.8526182 - ], - [ - 4.340039, - 50.8526182 - ], - [ - 4.340039, - 50.8526182 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88548536 - } - }, - { - "id": 88544628, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6052517, - 50.8980261 - ], - [ - 3.6107557, - 50.8980261 - ], - [ - 3.6107557, - 50.9002567 - ], - [ - 3.6052517, - 50.9002567 - ], - [ - 3.6052517, - 50.8980261 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88544628 - } - }, - { - "id": 88544526, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6349087, - 50.9049617 - ], - [ - 3.6415479, - 50.9049617 - ], - [ - 3.6415479, - 50.9086061 - ], - [ - 3.6349087, - 50.9086061 - ], - [ - 3.6349087, - 50.9049617 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88544526 - } - }, - { - "id": 88544416, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6374583, - 50.9059831 - ], - [ - 3.6393237, - 50.9059831 - ], - [ - 3.6393237, - 50.9068071 - ], - [ - 3.6374583, - 50.9068071 - ], - [ - 3.6374583, - 50.9059831 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88544416 - } - }, - { - "id": 88544285, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6374583, - 50.9059831 - ], - [ - 3.6393237, - 50.9059831 - ], - [ - 3.6393237, - 50.9068071 - ], - [ - 3.6374583, - 50.9068071 - ], - [ - 3.6374583, - 50.9059831 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88544285 - } - }, - { - "id": 88530703, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.372521, - 50.9366438 - ], - [ - 4.372521, - 50.9366438 - ], - [ - 4.372521, - 50.9366438 - ], - [ - 4.372521, - 50.9366438 - ], - [ - 4.372521, - 50.9366438 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88530703 - } - }, - { - "id": 88493841, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4577222, - 50.9610357 - ], - [ - 4.4577222, - 50.9610357 - ], - [ - 4.4577222, - 50.9610357 - ], - [ - 4.4577222, - 50.9610357 - ], - [ - 4.4577222, - 50.9610357 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88493841 - } - }, - { - "id": 88493811, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4577222, - 50.9610357 - ], - [ - 4.4577222, - 50.9610357 - ], - [ - 4.4577222, - 50.9610357 - ], - [ - 4.4577222, - 50.9610357 - ], - [ - 4.4577222, - 50.9610357 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88493811 - } - }, - { - "id": 88492559, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4458526, - 50.8125126 - ], - [ - 4.4458526, - 50.8125126 - ], - [ - 4.4458526, - 50.8125126 - ], - [ - 4.4458526, - 50.8125126 - ], - [ - 4.4458526, - 50.8125126 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88492559 - } - }, - { - "id": 88492531, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4462335, - 50.8127957 - ], - [ - 4.4462335, - 50.8127957 - ], - [ - 4.4462335, - 50.8127957 - ], - [ - 4.4462335, - 50.8127957 - ], - [ - 4.4462335, - 50.8127957 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88492531 - } - }, - { - "id": 88492520, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4462335, - 50.8127957 - ], - [ - 4.4462335, - 50.8127957 - ], - [ - 4.4462335, - 50.8127957 - ], - [ - 4.4462335, - 50.8127957 - ], - [ - 4.4462335, - 50.8127957 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88492520 - } - }, - { - "id": 88488537, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.990618, - 51.083303 - ], - [ - 3.9949839, - 51.083303 - ], - [ - 3.9949839, - 51.0884801 - ], - [ - 3.990618, - 51.0884801 - ], - [ - 3.990618, - 51.083303 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88488537 - } - }, - { - "id": 88474036, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2398742, - 51.2127761 - ], - [ - 3.2398742, - 51.2127761 - ], - [ - 3.2398742, - 51.2127761 - ], - [ - 3.2398742, - 51.2127761 - ], - [ - 3.2398742, - 51.2127761 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88474036 - } - }, - { - "id": 88474011, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2398742, - 51.2127761 - ], - [ - 3.2398742, - 51.2127761 - ], - [ - 3.2398742, - 51.2127761 - ], - [ - 3.2398742, - 51.2127761 - ], - [ - 3.2398742, - 51.2127761 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88474011 - } - }, - { - "id": 88473981, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2398742, - 51.2127761 - ], - [ - 3.2398742, - 51.2127761 - ], - [ - 3.2398742, - 51.2127761 - ], - [ - 3.2398742, - 51.2127761 - ], - [ - 3.2398742, - 51.2127761 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88473981 - } - }, - { - "id": 88473952, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2398742, - 51.2127761 - ], - [ - 3.2398742, - 51.2127761 - ], - [ - 3.2398742, - 51.2127761 - ], - [ - 3.2398742, - 51.2127761 - ], - [ - 3.2398742, - 51.2127761 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88473952 - } - }, - { - "id": 88473927, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2398742, - 51.2127761 - ], - [ - 3.2398742, - 51.2127761 - ], - [ - 3.2398742, - 51.2127761 - ], - [ - 3.2398742, - 51.2127761 - ], - [ - 3.2398742, - 51.2127761 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88473927 - } - }, - { - "id": 88472115, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2358798, - 50.7363008 - ], - [ - 4.2358798, - 50.7363008 - ], - [ - 4.2358798, - 50.7363008 - ], - [ - 4.2358798, - 50.7363008 - ], - [ - 4.2358798, - 50.7363008 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88472115 - } - }, - { - "id": 88471946, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2359975, - 50.7360865 - ], - [ - 4.2359975, - 50.7360865 - ], - [ - 4.2359975, - 50.7360865 - ], - [ - 4.2359975, - 50.7360865 - ], - [ - 4.2359975, - 50.7360865 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88471946 - } - }, - { - "id": 88471917, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2358798, - 50.7360865 - ], - [ - 4.2359975, - 50.7360865 - ], - [ - 4.2359975, - 50.7363008 - ], - [ - 4.2358798, - 50.7363008 - ], - [ - 4.2358798, - 50.7360865 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88471917 - } - }, - { - "id": 88471866, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2358798, - 50.7360865 - ], - [ - 4.2359975, - 50.7360865 - ], - [ - 4.2359975, - 50.7363008 - ], - [ - 4.2358798, - 50.7363008 - ], - [ - 4.2358798, - 50.7360865 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88471866 - } - }, - { - "id": 88471799, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2358798, - 50.7360865 - ], - [ - 4.2359975, - 50.7360865 - ], - [ - 4.2359975, - 50.7363008 - ], - [ - 4.2358798, - 50.7363008 - ], - [ - 4.2358798, - 50.7360865 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88471799 - } - }, - { - "id": 88469758, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2153406, - 51.2156501 - ], - [ - 3.2153406, - 51.2156501 - ], - [ - 3.2153406, - 51.2156501 - ], - [ - 3.2153406, - 51.2156501 - ], - [ - 3.2153406, - 51.2156501 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88469758 - } - }, - { - "id": 88463397, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3469744, - 50.8460372 - ], - [ - 4.3469744, - 50.8460372 - ], - [ - 4.3469744, - 50.8460372 - ], - [ - 4.3469744, - 50.8460372 - ], - [ - 4.3469744, - 50.8460372 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88463397 - } - }, - { - "id": 88463396, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3469744, - 50.8460372 - ], - [ - 4.3469744, - 50.8460372 - ], - [ - 4.3469744, - 50.8460372 - ], - [ - 4.3469744, - 50.8460372 - ], - [ - 4.3469744, - 50.8460372 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88463396 - } - }, - { - "id": 88463392, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3469744, - 50.8460372 - ], - [ - 4.3469744, - 50.8460372 - ], - [ - 4.3469744, - 50.8460372 - ], - [ - 4.3469744, - 50.8460372 - ], - [ - 4.3469744, - 50.8460372 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88463392 - } - }, - { - "id": 88463389, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3469744, - 50.8460372 - ], - [ - 4.3469744, - 50.8460372 - ], - [ - 4.3469744, - 50.8460372 - ], - [ - 4.3469744, - 50.8460372 - ], - [ - 4.3469744, - 50.8460372 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88463389 - } - }, - { - "id": 88463374, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3469744, - 50.8460372 - ], - [ - 4.3469744, - 50.8460372 - ], - [ - 4.3469744, - 50.8460372 - ], - [ - 4.3469744, - 50.8460372 - ], - [ - 4.3469744, - 50.8460372 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88463374 - } - }, - { - "id": 88463360, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3469744, - 50.8460372 - ], - [ - 4.3469744, - 50.8460372 - ], - [ - 4.3469744, - 50.8460372 - ], - [ - 4.3469744, - 50.8460372 - ], - [ - 4.3469744, - 50.8460372 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88463360 - } - }, - { - "id": 88463342, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3469744, - 50.8460372 - ], - [ - 4.3469744, - 50.8460372 - ], - [ - 4.3469744, - 50.8460372 - ], - [ - 4.3469744, - 50.8460372 - ], - [ - 4.3469744, - 50.8460372 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88463342 - } - }, - { - "id": 88454525, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2012467, - 51.195938 - ], - [ - 3.2398742, - 51.195938 - ], - [ - 3.2398742, - 51.2156501 - ], - [ - 3.2012467, - 51.2156501 - ], - [ - 3.2012467, - 51.195938 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88454525 - } - }, - { - "id": 88454371, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2403066, - 51.2249427 - ], - [ - 3.2403066, - 51.2249427 - ], - [ - 3.2403066, - 51.2249427 - ], - [ - 3.2403066, - 51.2249427 - ], - [ - 3.2403066, - 51.2249427 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88454371 - } - }, - { - "id": 88427583, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0545792, - 50.8074741 - ], - [ - 4.0753777, - 50.8074741 - ], - [ - 4.0753777, - 50.8191327 - ], - [ - 4.0545792, - 50.8191327 - ], - [ - 4.0545792, - 50.8074741 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88427583 - } - }, - { - "id": 88427564, - "type": "Feature", - "geometry": null, - "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:43:36Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88427564 - } - }, - { - "id": 88427525, - "type": "Feature", - "geometry": null, - "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:40:38Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88427525 - } - }, - { - "id": 88427490, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0545792, - 50.8074741 - ], - [ - 4.0753777, - 50.8074741 - ], - [ - 4.0753777, - 50.8191327 - ], - [ - 4.0545792, - 50.8191327 - ], - [ - 4.0545792, - 50.8074741 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88427490 - } - }, - { - "id": 88427471, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0545792, - 50.8074741 - ], - [ - 4.0753777, - 50.8074741 - ], - [ - 4.0753777, - 50.8191327 - ], - [ - 4.0545792, - 50.8191327 - ], - [ - 4.0545792, - 50.8074741 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88427471 - } - }, - { - "id": 88410084, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7973291, - 51.268795 - ], - [ - 4.8388452, - 51.268795 - ], - [ - 4.8388452, - 51.2938476 - ], - [ - 4.7973291, - 51.2938476 - ], - [ - 4.7973291, - 51.268795 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88410084 - } - }, - { - "id": 88410045, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7973291, - 51.268795 - ], - [ - 4.8388452, - 51.268795 - ], - [ - 4.8388452, - 51.2938476 - ], - [ - 4.7973291, - 51.2938476 - ], - [ - 4.7973291, - 51.268795 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88410045 - } - }, - { - "id": 88409955, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7973291, - 51.268795 - ], - [ - 4.8388452, - 51.268795 - ], - [ - 4.8388452, - 51.2938476 - ], - [ - 4.7973291, - 51.2938476 - ], - [ - 4.7973291, - 51.268795 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88409955 - } - }, - { - "id": 88409912, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8654686, - 51.2811191 - ], - [ - 4.9075704, - 51.2811191 - ], - [ - 4.9075704, - 51.2964713 - ], - [ - 4.8654686, - 51.2964713 - ], - [ - 4.8654686, - 51.2811191 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88409912 - } - }, - { - "id": 88407127, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2650373, - 51.2441053 - ], - [ - 3.2662627, - 51.2441053 - ], - [ - 3.2662627, - 51.2447607 - ], - [ - 3.2650373, - 51.2447607 - ], - [ - 3.2650373, - 51.2441053 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88407127 - } - }, - { - "id": 88407088, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2650373, - 51.2441053 - ], - [ - 3.2662627, - 51.2441053 - ], - [ - 3.2662627, - 51.2447607 - ], - [ - 3.2650373, - 51.2447607 - ], - [ - 3.2650373, - 51.2441053 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88407088 - } - }, - { - "id": 88400271, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9862728, - 50.7491265 - ], - [ - 3.9909036, - 50.7491265 - ], - [ - 3.9909036, - 50.7513808 - ], - [ - 3.9862728, - 50.7513808 - ], - [ - 3.9862728, - 50.7491265 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88400271 - } - }, - { - "id": 88397910, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3463936, - 50.8499268 - ], - [ - 4.3463936, - 50.8499268 - ], - [ - 4.3463936, - 50.8499268 - ], - [ - 4.3463936, - 50.8499268 - ], - [ - 4.3463936, - 50.8499268 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "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, - "metadata": {}, - "id": 88397910 - } - }, - { - "id": 88397901, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3463936, - 50.8499268 - ], - [ - 4.3463936, - 50.8499268 - ], - [ - 4.3463936, - 50.8499268 - ], - [ - 4.3463936, - 50.8499268 - ], - [ - 4.3463936, - 50.8499268 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "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, - "metadata": {}, - "id": 88397901 - } - }, - { - "id": 88397894, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3463936, - 50.8499268 - ], - [ - 4.3463936, - 50.8499268 - ], - [ - 4.3463936, - 50.8499268 - ], - [ - 4.3463936, - 50.8499268 - ], - [ - 4.3463936, - 50.8499268 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "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, - "metadata": {}, - "id": 88397894 - } - }, - { - "id": 88394725, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2271059, - 51.1784193 - ], - [ - 3.2271059, - 51.1784193 - ], - [ - 3.2271059, - 51.1784193 - ], - [ - 3.2271059, - 51.1784193 - ], - [ - 3.2271059, - 51.1784193 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88394725 - } - }, - { - "id": 88391388, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3391141, - 50.855486 - ], - [ - 4.3391141, - 50.855486 - ], - [ - 4.3391141, - 50.855486 - ], - [ - 4.3391141, - 50.855486 - ], - [ - 4.3391141, - 50.855486 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88391388 - } - }, - { - "id": 88389632, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3788755, - 50.8563481 - ], - [ - 4.3788755, - 50.8563481 - ], - [ - 4.3788755, - 50.8563481 - ], - [ - 4.3788755, - 50.8563481 - ], - [ - 4.3788755, - 50.8563481 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88389632 - } - }, - { - "id": 88389604, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7487251, - 51.0291757 - ], - [ - 3.7560624, - 51.0291757 - ], - [ - 3.7560624, - 51.033538 - ], - [ - 3.7487251, - 51.033538 - ], - [ - 3.7487251, - 51.0291757 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88389604 - } - }, - { - "id": 88389573, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3788755, - 50.8563481 - ], - [ - 4.3788755, - 50.8563481 - ], - [ - 4.3788755, - 50.8563481 - ], - [ - 4.3788755, - 50.8563481 - ], - [ - 4.3788755, - 50.8563481 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88389573 - } - }, - { - "id": 88389541, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3782784, - 50.8564657 - ], - [ - 4.3782784, - 50.8564657 - ], - [ - 4.3782784, - 50.8564657 - ], - [ - 4.3782784, - 50.8564657 - ], - [ - 4.3782784, - 50.8564657 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88389541 - } - }, - { - "id": 88389537, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.749299, - 51.0281482 - ], - [ - 3.7520751, - 51.0281482 - ], - [ - 3.7520751, - 51.0302117 - ], - [ - 3.749299, - 51.0302117 - ], - [ - 3.749299, - 51.0281482 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88389537 - } - }, - { - "id": 88387523, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7495669, - 51.0257815 - ], - [ - 3.752791, - 51.0257815 - ], - [ - 3.752791, - 51.0275624 - ], - [ - 3.7495669, - 51.0275624 - ], - [ - 3.7495669, - 51.0257815 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88387523 - } - }, - { - "id": 88387475, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7529174, - 51.0285781 - ], - [ - 3.7532176, - 51.0285781 - ], - [ - 3.7532176, - 51.028796 - ], - [ - 3.7529174, - 51.028796 - ], - [ - 3.7529174, - 51.0285781 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88387475 - } - }, - { - "id": 88368192, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3366036, - 50.8564105 - ], - [ - 4.3366036, - 50.8564105 - ], - [ - 4.3366036, - 50.8564105 - ], - [ - 4.3366036, - 50.8564105 - ], - [ - 4.3366036, - 50.8564105 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88368192 - } - }, - { - "id": 88367965, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3355967, - 50.8675211 - ], - [ - 4.3355967, - 50.8675211 - ], - [ - 4.3355967, - 50.8675211 - ], - [ - 4.3355967, - 50.8675211 - ], - [ - 4.3355967, - 50.8675211 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88367965 - } - }, - { - "id": 88367957, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3355967, - 50.8675211 - ], - [ - 4.3355967, - 50.8675211 - ], - [ - 4.3355967, - 50.8675211 - ], - [ - 4.3355967, - 50.8675211 - ], - [ - 4.3355967, - 50.8675211 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88367957 - } - }, - { - "id": 88365796, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4970965, - 50.8270267 - ], - [ - 5.5061893, - 50.8270267 - ], - [ - 5.5061893, - 50.8291374 - ], - [ - 5.4970965, - 50.8291374 - ], - [ - 5.4970965, - 50.8270267 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88365796 - } - }, - { - "id": 88365747, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4913039, - 50.8269024 - ], - [ - 5.4924531, - 50.8269024 - ], - [ - 5.4924531, - 50.8276715 - ], - [ - 5.4913039, - 50.8276715 - ], - [ - 5.4913039, - 50.8269024 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88365747 - } - }, - { - "id": 88365676, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4870897, - 50.8256401 - ], - [ - 5.4921616, - 50.8256401 - ], - [ - 5.4921616, - 50.8302002 - ], - [ - 5.4870897, - 50.8302002 - ], - [ - 5.4870897, - 50.8256401 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88365676 - } - }, - { - "id": 88365588, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4879249, - 50.8266157 - ], - [ - 5.4885419, - 50.8266157 - ], - [ - 5.4885419, - 50.826994 - ], - [ - 5.4879249, - 50.826994 - ], - [ - 5.4879249, - 50.8266157 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88365588 - } - }, - { - "id": 88365551, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4895005, - 50.8267046 - ], - [ - 5.4900422, - 50.8267046 - ], - [ - 5.4900422, - 50.8270619 - ], - [ - 5.4895005, - 50.8270619 - ], - [ - 5.4895005, - 50.8267046 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88365551 - } - }, - { - "id": 88365530, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4859577, - 50.8267046 - ], - [ - 5.4900422, - 50.8267046 - ], - [ - 5.4900422, - 50.8284271 - ], - [ - 5.4859577, - 50.8284271 - ], - [ - 5.4859577, - 50.8267046 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88365530 - } - }, - { - "id": 88365468, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4844791, - 50.8236357 - ], - [ - 5.4853195, - 50.8236357 - ], - [ - 5.4853195, - 50.8240959 - ], - [ - 5.4844791, - 50.8240959 - ], - [ - 5.4844791, - 50.8236357 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88365468 - } - }, - { - "id": 88365406, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4741501, - 50.8229206 - ], - [ - 5.4903209, - 50.8229206 - ], - [ - 5.4903209, - 50.8397017 - ], - [ - 5.4741501, - 50.8397017 - ], - [ - 5.4741501, - 50.8229206 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88365406 - } - }, - { - "id": 88365363, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4983854, - 50.8105713 - ], - [ - 5.5135414, - 50.8105713 - ], - [ - 5.5135414, - 50.8413375 - ], - [ - 5.4983854, - 50.8413375 - ], - [ - 5.4983854, - 50.8105713 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88365363 - } - }, - { - "id": 88365327, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4983854, - 50.8105713 - ], - [ - 5.5135414, - 50.8105713 - ], - [ - 5.5135414, - 50.8413375 - ], - [ - 5.4983854, - 50.8413375 - ], - [ - 5.4983854, - 50.8105713 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88365327 - } - }, - { - "id": 88365269, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4719012, - 50.8098577 - ], - [ - 5.5010989, - 50.8098577 - ], - [ - 5.5010989, - 50.8197172 - ], - [ - 5.4719012, - 50.8197172 - ], - [ - 5.4719012, - 50.8098577 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88365269 - } - }, - { - "id": 88360957, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3376121, - 50.8554947 - ], - [ - 4.3376121, - 50.8554947 - ], - [ - 4.3376121, - 50.8554947 - ], - [ - 4.3376121, - 50.8554947 - ], - [ - 4.3376121, - 50.8554947 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88360957 - } - }, - { - "id": 88350361, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6926421, - 51.0366506 - ], - [ - 3.6932703, - 51.0366506 - ], - [ - 3.6932703, - 51.0370874 - ], - [ - 3.6926421, - 51.0370874 - ], - [ - 3.6926421, - 51.0366506 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88350361 - } - }, - { - "id": 88345106, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7656638, - 51.02681 - ], - [ - 3.7674949, - 51.02681 - ], - [ - 3.7674949, - 51.0277386 - ], - [ - 3.7656638, - 51.0277386 - ], - [ - 3.7656638, - 51.02681 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88345106 - } - }, - { - "id": 88345038, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7427048, - 51.0133926 - ], - [ - 3.7674949, - 51.0133926 - ], - [ - 3.7674949, - 51.028796 - ], - [ - 3.7427048, - 51.028796 - ], - [ - 3.7427048, - 51.0133926 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88345038 - } - }, - { - "id": 88342567, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7489712, - 51.0246518 - ], - [ - 3.7553099, - 51.0246518 - ], - [ - 3.7553099, - 51.0307031 - ], - [ - 3.7489712, - 51.0307031 - ], - [ - 3.7489712, - 51.0246518 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88342567 - } - }, - { - "id": 88342446, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7569474, - 51.0272837 - ], - [ - 3.7594869, - 51.0272837 - ], - [ - 3.7594869, - 51.0285837 - ], - [ - 3.7569474, - 51.0285837 - ], - [ - 3.7569474, - 51.0272837 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88342446 - } - }, - { - "id": 88339968, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0611928, - 51.2592104 - ], - [ - 3.0679074, - 51.2592104 - ], - [ - 3.0679074, - 51.2625939 - ], - [ - 3.0611928, - 51.2625939 - ], - [ - 3.0611928, - 51.2592104 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88339968 - } - }, - { - "id": 88339958, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0611928, - 51.2592104 - ], - [ - 3.0679074, - 51.2592104 - ], - [ - 3.0679074, - 51.2625939 - ], - [ - 3.0611928, - 51.2625939 - ], - [ - 3.0611928, - 51.2592104 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88339958 - } - }, - { - "id": 88339919, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0611928, - 51.2592104 - ], - [ - 3.0679074, - 51.2592104 - ], - [ - 3.0679074, - 51.2625939 - ], - [ - 3.0611928, - 51.2625939 - ], - [ - 3.0611928, - 51.2592104 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88339919 - } - }, - { - "id": 88339889, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0611928, - 51.2592104 - ], - [ - 3.0679074, - 51.2592104 - ], - [ - 3.0679074, - 51.2625939 - ], - [ - 3.0611928, - 51.2625939 - ], - [ - 3.0611928, - 51.2592104 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88339889 - } - }, - { - "id": 88338703, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0611928, - 51.2592104 - ], - [ - 3.0679074, - 51.2592104 - ], - [ - 3.0679074, - 51.2625939 - ], - [ - 3.0611928, - 51.2625939 - ], - [ - 3.0611928, - 51.2592104 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88338703 - } - }, - { - "id": 88335541, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3764532, - 50.8558416 - ], - [ - 4.3778157, - 50.8558416 - ], - [ - 4.3778157, - 50.8572791 - ], - [ - 4.3764532, - 50.8572791 - ], - [ - 4.3764532, - 50.8558416 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88335541 - } - }, - { - "id": 88313973, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3960494, - 50.8734257 - ], - [ - 4.3960494, - 50.8734257 - ], - [ - 4.3960494, - 50.8734257 - ], - [ - 4.3960494, - 50.8734257 - ], - [ - 4.3960494, - 50.8734257 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88313973 - } - }, - { - "id": 88313944, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3960494, - 50.8734257 - ], - [ - 4.3960494, - 50.8734257 - ], - [ - 4.3960494, - 50.8734257 - ], - [ - 4.3960494, - 50.8734257 - ], - [ - 4.3960494, - 50.8734257 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88313944 - } - }, - { - "id": 88303789, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3894862, - 51.0797748 - ], - [ - 3.4120133, - 51.0797748 - ], - [ - 3.4120133, - 51.094725 - ], - [ - 3.3894862, - 51.094725 - ], - [ - 3.3894862, - 51.0797748 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88303789 - } - }, - { - "id": 88303738, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3894862, - 51.0797748 - ], - [ - 3.4120133, - 51.0797748 - ], - [ - 3.4120133, - 51.094725 - ], - [ - 3.3894862, - 51.094725 - ], - [ - 3.3894862, - 51.0797748 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88303738 - } - }, - { - "id": 88302519, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3658021, - 50.8460488 - ], - [ - 4.3658021, - 50.8460488 - ], - [ - 4.3658021, - 50.8460488 - ], - [ - 4.3658021, - 50.8460488 - ], - [ - 4.3658021, - 50.8460488 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88302519 - } - }, - { - "id": 88302462, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3688035, - 50.8457151 - ], - [ - 4.3688035, - 50.8457151 - ], - [ - 4.3688035, - 50.8457151 - ], - [ - 4.3688035, - 50.8457151 - ], - [ - 4.3688035, - 50.8457151 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88302462 - } - }, - { - "id": 88302417, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3725157, - 50.8461301 - ], - [ - 4.3725157, - 50.8461301 - ], - [ - 4.3725157, - 50.8461301 - ], - [ - 4.3725157, - 50.8461301 - ], - [ - 4.3725157, - 50.8461301 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88302417 - } - }, - { - "id": 88302159, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3855244, - 50.8398804 - ], - [ - 4.3855244, - 50.8398804 - ], - [ - 4.3855244, - 50.8398804 - ], - [ - 4.3855244, - 50.8398804 - ], - [ - 4.3855244, - 50.8398804 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88302159 - } - }, - { - "id": 88302139, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3855244, - 50.8398804 - ], - [ - 4.3855244, - 50.8398804 - ], - [ - 4.3855244, - 50.8398804 - ], - [ - 4.3855244, - 50.8398804 - ], - [ - 4.3855244, - 50.8398804 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88302139 - } - }, - { - "id": 88302052, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.391436, - 50.8382323 - ], - [ - 4.391436, - 50.8382323 - ], - [ - 4.391436, - 50.8382323 - ], - [ - 4.391436, - 50.8382323 - ], - [ - 4.391436, - 50.8382323 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88302052 - } - }, - { - "id": 88301987, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3971008, - 50.8395383 - ], - [ - 4.3971008, - 50.8395383 - ], - [ - 4.3971008, - 50.8395383 - ], - [ - 4.3971008, - 50.8395383 - ], - [ - 4.3971008, - 50.8395383 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88301987 - } - }, - { - "id": 88301968, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3971008, - 50.8395383 - ], - [ - 4.3971008, - 50.8395383 - ], - [ - 4.3971008, - 50.8395383 - ], - [ - 4.3971008, - 50.8395383 - ], - [ - 4.3971008, - 50.8395383 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88301968 - } - }, - { - "id": 88301869, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4002283, - 50.8387286 - ], - [ - 4.4002283, - 50.8387286 - ], - [ - 4.4002283, - 50.8387286 - ], - [ - 4.4002283, - 50.8387286 - ], - [ - 4.4002283, - 50.8387286 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88301869 - } - }, - { - "id": 88301822, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4016284, - 50.8359405 - ], - [ - 4.4016767, - 50.8359405 - ], - [ - 4.4016767, - 50.8360438 - ], - [ - 4.4016284, - 50.8360438 - ], - [ - 4.4016284, - 50.8359405 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88301822 - } - }, - { - "id": 88301752, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4020978, - 50.8346904 - ], - [ - 4.4020978, - 50.8346904 - ], - [ - 4.4020978, - 50.8346904 - ], - [ - 4.4020978, - 50.8346904 - ], - [ - 4.4020978, - 50.8346904 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88301752 - } - }, - { - "id": 88301726, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4025698, - 50.8326321 - ], - [ - 4.4035167, - 50.8326321 - ], - [ - 4.4035167, - 50.8335452 - ], - [ - 4.4025698, - 50.8335452 - ], - [ - 4.4025698, - 50.8326321 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88301726 - } - }, - { - "id": 88301712, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.37004, - 50.8582239 - ], - [ - 4.37004, - 50.8582239 - ], - [ - 4.37004, - 50.8582239 - ], - [ - 4.37004, - 50.8582239 - ], - [ - 4.37004, - 50.8582239 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88301712 - } - }, - { - "id": 88301709, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4044554, - 50.8319664 - ], - [ - 4.4044554, - 50.8319664 - ], - [ - 4.4044554, - 50.8319664 - ], - [ - 4.4044554, - 50.8319664 - ], - [ - 4.4044554, - 50.8319664 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88301709 - } - }, - { - "id": 88301686, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4044554, - 50.8319664 - ], - [ - 4.4044554, - 50.8319664 - ], - [ - 4.4044554, - 50.8319664 - ], - [ - 4.4044554, - 50.8319664 - ], - [ - 4.4044554, - 50.8319664 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88301686 - } - }, - { - "id": 88301656, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4045869, - 50.8315462 - ], - [ - 4.4045869, - 50.8315462 - ], - [ - 4.4045869, - 50.8315462 - ], - [ - 4.4045869, - 50.8315462 - ], - [ - 4.4045869, - 50.8315462 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88301656 - } - }, - { - "id": 88301640, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3695009, - 50.8603064 - ], - [ - 4.3695009, - 50.8603064 - ], - [ - 4.3695009, - 50.8603064 - ], - [ - 4.3695009, - 50.8603064 - ], - [ - 4.3695009, - 50.8603064 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88301640 - } - }, - { - "id": 88301617, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3689939, - 50.8613645 - ], - [ - 4.3689939, - 50.8613645 - ], - [ - 4.3689939, - 50.8613645 - ], - [ - 4.3689939, - 50.8613645 - ], - [ - 4.3689939, - 50.8613645 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88301617 - } - }, - { - "id": 88301583, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.367449, - 50.8621975 - ], - [ - 4.367449, - 50.8621975 - ], - [ - 4.367449, - 50.8621975 - ], - [ - 4.367449, - 50.8621975 - ], - [ - 4.367449, - 50.8621975 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88301583 - } - }, - { - "id": 88301552, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3711048, - 50.862834 - ], - [ - 4.3729582, - 50.862834 - ], - [ - 4.3729582, - 50.863689 - ], - [ - 4.3711048, - 50.863689 - ], - [ - 4.3711048, - 50.862834 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88301552 - } - }, - { - "id": 88301524, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4052467, - 50.8274701 - ], - [ - 4.4052467, - 50.8274701 - ], - [ - 4.4052467, - 50.8274701 - ], - [ - 4.4052467, - 50.8274701 - ], - [ - 4.4052467, - 50.8274701 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88301524 - } - }, - { - "id": 88301396, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4087079, - 50.8234003 - ], - [ - 4.4088167, - 50.8234003 - ], - [ - 4.4088167, - 50.8235171 - ], - [ - 4.4087079, - 50.8235171 - ], - [ - 4.4087079, - 50.8234003 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88301396 - } - }, - { - "id": 88301372, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4088167, - 50.8234003 - ], - [ - 4.4088167, - 50.8234003 - ], - [ - 4.4088167, - 50.8234003 - ], - [ - 4.4088167, - 50.8234003 - ], - [ - 4.4088167, - 50.8234003 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88301372 - } - }, - { - "id": 88301199, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3724674, - 50.8700252 - ], - [ - 4.3724674, - 50.8700252 - ], - [ - 4.3724674, - 50.8700252 - ], - [ - 4.3724674, - 50.8700252 - ], - [ - 4.3724674, - 50.8700252 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88301199 - } - }, - { - "id": 88301166, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3737924, - 50.872923 - ], - [ - 4.3737924, - 50.872923 - ], - [ - 4.3737924, - 50.872923 - ], - [ - 4.3737924, - 50.872923 - ], - [ - 4.3737924, - 50.872923 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88301166 - } - }, - { - "id": 88300566, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3247565, - 50.8452762 - ], - [ - 4.3247565, - 50.8452762 - ], - [ - 4.3247565, - 50.8452762 - ], - [ - 4.3247565, - 50.8452762 - ], - [ - 4.3247565, - 50.8452762 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88300566 - } - }, - { - "id": 88300471, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3507791, - 50.8521774 - ], - [ - 4.3507791, - 50.8521774 - ], - [ - 4.3507791, - 50.8521774 - ], - [ - 4.3507791, - 50.8521774 - ], - [ - 4.3507791, - 50.8521774 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88300471 - } - }, - { - "id": 88300406, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3496579, - 50.8528022 - ], - [ - 4.3500066, - 50.8528022 - ], - [ - 4.3500066, - 50.8528564 - ], - [ - 4.3496579, - 50.8528564 - ], - [ - 4.3496579, - 50.8528022 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88300406 - } - }, - { - "id": 88300402, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4090586, - 50.8478244 - ], - [ - 4.4090586, - 50.8478244 - ], - [ - 4.4090586, - 50.8478244 - ], - [ - 4.4090586, - 50.8478244 - ], - [ - 4.4090586, - 50.8478244 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88300402 - } - }, - { - "id": 88300392, - "type": "Feature", - "geometry": null, - "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:54:59Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88300392 - } - }, - { - "id": 88300349, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3496042, - 50.8523603 - ], - [ - 4.3496338, - 50.8523603 - ], - [ - 4.3496338, - 50.8526498 - ], - [ - 4.3496042, - 50.8526498 - ], - [ - 4.3496042, - 50.8523603 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88300349 - } - }, - { - "id": 88300278, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3496928, - 50.8523636 - ], - [ - 4.3496928, - 50.8523636 - ], - [ - 4.3496928, - 50.8523636 - ], - [ - 4.3496928, - 50.8523636 - ], - [ - 4.3496928, - 50.8523636 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88300278 - } - }, - { - "id": 88300258, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4025274, - 50.8173789 - ], - [ - 4.4025274, - 50.8173789 - ], - [ - 4.4025274, - 50.8173789 - ], - [ - 4.4025274, - 50.8173789 - ], - [ - 4.4025274, - 50.8173789 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88300258 - } - }, - { - "id": 88300240, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3489471, - 50.8521317 - ], - [ - 4.3489471, - 50.8521317 - ], - [ - 4.3489471, - 50.8521317 - ], - [ - 4.3489471, - 50.8521317 - ], - [ - 4.3489471, - 50.8521317 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88300240 - } - }, - { - "id": 88300158, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3504545, - 50.8573248 - ], - [ - 4.3504545, - 50.8573248 - ], - [ - 4.3504545, - 50.8573248 - ], - [ - 4.3504545, - 50.8573248 - ], - [ - 4.3504545, - 50.8573248 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88300158 - } - }, - { - "id": 88300151, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3525815, - 50.8564754 - ], - [ - 4.3525815, - 50.8564754 - ], - [ - 4.3525815, - 50.8564754 - ], - [ - 4.3525815, - 50.8564754 - ], - [ - 4.3525815, - 50.8564754 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88300151 - } - }, - { - "id": 88300150, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.347783, - 50.8526634 - ], - [ - 4.347783, - 50.8526634 - ], - [ - 4.347783, - 50.8526634 - ], - [ - 4.347783, - 50.8526634 - ], - [ - 4.347783, - 50.8526634 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88300150 - } - }, - { - "id": 88300135, - "type": "Feature", - "geometry": null, - "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:48:19Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88300135 - } - }, - { - "id": 88300098, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3500978, - 50.8574304 - ], - [ - 4.3501756, - 50.8574304 - ], - [ - 4.3501756, - 50.8574677 - ], - [ - 4.3500978, - 50.8574677 - ], - [ - 4.3500978, - 50.8574304 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88300098 - } - }, - { - "id": 88300085, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3452135, - 50.8585913 - ], - [ - 4.3452135, - 50.8585913 - ], - [ - 4.3452135, - 50.8585913 - ], - [ - 4.3452135, - 50.8585913 - ], - [ - 4.3452135, - 50.8585913 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88300085 - } - }, - { - "id": 88300073, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3774751, - 50.8665262 - ], - [ - 4.3774751, - 50.8665262 - ], - [ - 4.3774751, - 50.8665262 - ], - [ - 4.3774751, - 50.8665262 - ], - [ - 4.3774751, - 50.8665262 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88300073 - } - }, - { - "id": 88300062, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3810263, - 50.8671864 - ], - [ - 4.3810263, - 50.8671864 - ], - [ - 4.3810263, - 50.8671864 - ], - [ - 4.3810263, - 50.8671864 - ], - [ - 4.3810263, - 50.8671864 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88300062 - } - }, - { - "id": 88300049, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3809235, - 50.8670815 - ], - [ - 4.3809235, - 50.8670815 - ], - [ - 4.3809235, - 50.8670815 - ], - [ - 4.3809235, - 50.8670815 - ], - [ - 4.3809235, - 50.8670815 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88300049 - } - }, - { - "id": 88300040, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3802941, - 50.8669968 - ], - [ - 4.3802941, - 50.8669968 - ], - [ - 4.3802941, - 50.8669968 - ], - [ - 4.3802941, - 50.8669968 - ], - [ - 4.3802941, - 50.8669968 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88300040 - } - }, - { - "id": 88300007, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.381198, - 50.8646996 - ], - [ - 4.381198, - 50.8646996 - ], - [ - 4.381198, - 50.8646996 - ], - [ - 4.381198, - 50.8646996 - ], - [ - 4.381198, - 50.8646996 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88300007 - } - }, - { - "id": 88299980, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3793553, - 50.8641765 - ], - [ - 4.3793553, - 50.8641765 - ], - [ - 4.3793553, - 50.8641765 - ], - [ - 4.3793553, - 50.8641765 - ], - [ - 4.3793553, - 50.8641765 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88299980 - } - }, - { - "id": 88299961, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3429711, - 50.8606678 - ], - [ - 4.3429711, - 50.8606678 - ], - [ - 4.3429711, - 50.8606678 - ], - [ - 4.3429711, - 50.8606678 - ], - [ - 4.3429711, - 50.8606678 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299961 - } - }, - { - "id": 88299960, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3780109, - 50.8656585 - ], - [ - 4.3780109, - 50.8656585 - ], - [ - 4.3780109, - 50.8656585 - ], - [ - 4.3780109, - 50.8656585 - ], - [ - 4.3780109, - 50.8656585 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299960 - } - }, - { - "id": 88299932, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.377536, - 50.8636299 - ], - [ - 4.377536, - 50.8636299 - ], - [ - 4.377536, - 50.8636299 - ], - [ - 4.377536, - 50.8636299 - ], - [ - 4.377536, - 50.8636299 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299932 - } - }, - { - "id": 88299869, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3770865, - 50.8634901 - ], - [ - 4.3770865, - 50.8634901 - ], - [ - 4.3770865, - 50.8634901 - ], - [ - 4.3770865, - 50.8634901 - ], - [ - 4.3770865, - 50.8634901 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299869 - } - }, - { - "id": 88299856, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3767719, - 50.86371 - ], - [ - 4.3767719, - 50.86371 - ], - [ - 4.3767719, - 50.86371 - ], - [ - 4.3767719, - 50.86371 - ], - [ - 4.3767719, - 50.86371 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299856 - } - }, - { - "id": 88299838, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3763727, - 50.8629043 - ], - [ - 4.3763727, - 50.8629043 - ], - [ - 4.3763727, - 50.8629043 - ], - [ - 4.3763727, - 50.8629043 - ], - [ - 4.3763727, - 50.8629043 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299838 - } - }, - { - "id": 88299816, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3760169, - 50.8611902 - ], - [ - 4.3760169, - 50.8611902 - ], - [ - 4.3760169, - 50.8611902 - ], - [ - 4.3760169, - 50.8611902 - ], - [ - 4.3760169, - 50.8611902 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299816 - } - }, - { - "id": 88299810, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3357185, - 50.8674325 - ], - [ - 4.3357185, - 50.8674325 - ], - [ - 4.3357185, - 50.8674325 - ], - [ - 4.3357185, - 50.8674325 - ], - [ - 4.3357185, - 50.8674325 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299810 - } - }, - { - "id": 88299797, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3748581, - 50.8591647 - ], - [ - 4.3748581, - 50.8591647 - ], - [ - 4.3748581, - 50.8591647 - ], - [ - 4.3748581, - 50.8591647 - ], - [ - 4.3748581, - 50.8591647 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299797 - } - }, - { - "id": 88299775, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3739918, - 50.8579846 - ], - [ - 4.3739918, - 50.8579846 - ], - [ - 4.3739918, - 50.8579846 - ], - [ - 4.3739918, - 50.8579846 - ], - [ - 4.3739918, - 50.8579846 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299775 - } - }, - { - "id": 88299756, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3355066, - 50.8675211 - ], - [ - 4.3355967, - 50.8675211 - ], - [ - 4.3355967, - 50.8675597 - ], - [ - 4.3355066, - 50.8675597 - ], - [ - 4.3355066, - 50.8675211 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299756 - } - }, - { - "id": 88299755, - "type": "Feature", - "geometry": null, - "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:38:35Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88299755 - } - }, - { - "id": 88299753, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3730628, - 50.8568965 - ], - [ - 4.3730628, - 50.8568965 - ], - [ - 4.3730628, - 50.8568965 - ], - [ - 4.3730628, - 50.8568965 - ], - [ - 4.3730628, - 50.8568965 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299753 - } - }, - { - "id": 88299749, - "type": "Feature", - "geometry": null, - "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:38:19Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88299749 - } - }, - { - "id": 88299742, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3723431, - 50.856511 - ], - [ - 4.3723431, - 50.856511 - ], - [ - 4.3723431, - 50.856511 - ], - [ - 4.3723431, - 50.856511 - ], - [ - 4.3723431, - 50.856511 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299742 - } - }, - { - "id": 88299733, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3715975, - 50.8550379 - ], - [ - 4.3715975, - 50.8550379 - ], - [ - 4.3715975, - 50.8550379 - ], - [ - 4.3715975, - 50.8550379 - ], - [ - 4.3715975, - 50.8550379 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299733 - } - }, - { - "id": 88299710, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3713355, - 50.8547681 - ], - [ - 4.3713355, - 50.8547681 - ], - [ - 4.3713355, - 50.8547681 - ], - [ - 4.3713355, - 50.8547681 - ], - [ - 4.3713355, - 50.8547681 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299710 - } - }, - { - "id": 88299707, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3714267, - 50.8547427 - ], - [ - 4.3714267, - 50.8547427 - ], - [ - 4.3714267, - 50.8547427 - ], - [ - 4.3714267, - 50.8547427 - ], - [ - 4.3714267, - 50.8547427 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299707 - } - }, - { - "id": 88299703, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3345007, - 50.8677983 - ], - [ - 4.3345007, - 50.8677983 - ], - [ - 4.3345007, - 50.8677983 - ], - [ - 4.3345007, - 50.8677983 - ], - [ - 4.3345007, - 50.8677983 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299703 - } - }, - { - "id": 88299677, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3707293, - 50.8536455 - ], - [ - 4.3707293, - 50.8536455 - ], - [ - 4.3707293, - 50.8536455 - ], - [ - 4.3707293, - 50.8536455 - ], - [ - 4.3707293, - 50.8536455 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299677 - } - }, - { - "id": 88299663, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3705273, - 50.8539395 - ], - [ - 4.3705273, - 50.8539395 - ], - [ - 4.3705273, - 50.8539395 - ], - [ - 4.3705273, - 50.8539395 - ], - [ - 4.3705273, - 50.8539395 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299663 - } - }, - { - "id": 88299657, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3347099, - 50.8682266 - ], - [ - 4.3347099, - 50.8682266 - ], - [ - 4.3347099, - 50.8682266 - ], - [ - 4.3347099, - 50.8682266 - ], - [ - 4.3347099, - 50.8682266 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299657 - } - }, - { - "id": 88299619, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3698978, - 50.852367 - ], - [ - 4.3698978, - 50.852367 - ], - [ - 4.3698978, - 50.852367 - ], - [ - 4.3698978, - 50.852367 - ], - [ - 4.3698978, - 50.852367 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299619 - } - }, - { - "id": 88299615, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.417676, - 50.8267178 - ], - [ - 4.417676, - 50.8267178 - ], - [ - 4.417676, - 50.8267178 - ], - [ - 4.417676, - 50.8267178 - ], - [ - 4.417676, - 50.8267178 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88299615 - } - }, - { - "id": 88299612, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3688569, - 50.8528166 - ], - [ - 4.3688569, - 50.8528166 - ], - [ - 4.3688569, - 50.8528166 - ], - [ - 4.3688569, - 50.8528166 - ], - [ - 4.3688569, - 50.8528166 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299612 - } - }, - { - "id": 88299583, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3428612, - 50.8595615 - ], - [ - 4.3428612, - 50.8595615 - ], - [ - 4.3428612, - 50.8595615 - ], - [ - 4.3428612, - 50.8595615 - ], - [ - 4.3428612, - 50.8595615 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299583 - } - }, - { - "id": 88299576, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3411633, - 50.8367377 - ], - [ - 4.3411633, - 50.8367377 - ], - [ - 4.3411633, - 50.8367377 - ], - [ - 4.3411633, - 50.8367377 - ], - [ - 4.3411633, - 50.8367377 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88299576 - } - }, - { - "id": 88299571, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3630689, - 50.8483497 - ], - [ - 4.3630689, - 50.8483497 - ], - [ - 4.3630689, - 50.8483497 - ], - [ - 4.3630689, - 50.8483497 - ], - [ - 4.3630689, - 50.8483497 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299571 - } - }, - { - "id": 88299547, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3656868, - 50.8522857 - ], - [ - 4.3656868, - 50.8522857 - ], - [ - 4.3656868, - 50.8522857 - ], - [ - 4.3656868, - 50.8522857 - ], - [ - 4.3656868, - 50.8522857 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299547 - } - }, - { - "id": 88299545, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3345302, - 50.8702039 - ], - [ - 4.3345302, - 50.8702039 - ], - [ - 4.3345302, - 50.8702039 - ], - [ - 4.3345302, - 50.8702039 - ], - [ - 4.3345302, - 50.8702039 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299545 - } - }, - { - "id": 88299540, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4178075, - 50.8267619 - ], - [ - 4.418081, - 50.8267619 - ], - [ - 4.418081, - 50.8268635 - ], - [ - 4.4178075, - 50.8268635 - ], - [ - 4.4178075, - 50.8267619 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299540 - } - }, - { - "id": 88299530, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3427405, - 50.8595801 - ], - [ - 4.3427405, - 50.8595801 - ], - [ - 4.3427405, - 50.8595801 - ], - [ - 4.3427405, - 50.8595801 - ], - [ - 4.3427405, - 50.8595801 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299530 - } - }, - { - "id": 88299529, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4050117, - 50.8462401 - ], - [ - 4.4050117, - 50.8462401 - ], - [ - 4.4050117, - 50.8462401 - ], - [ - 4.4050117, - 50.8462401 - ], - [ - 4.4050117, - 50.8462401 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299529 - } - }, - { - "id": 88299514, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.418081, - 50.8268635 - ], - [ - 4.418081, - 50.8268635 - ], - [ - 4.418081, - 50.8268635 - ], - [ - 4.418081, - 50.8268635 - ], - [ - 4.418081, - 50.8268635 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299514 - } - }, - { - "id": 88299511, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3348628, - 50.8710452 - ], - [ - 4.3348628, - 50.8710452 - ], - [ - 4.3348628, - 50.8710452 - ], - [ - 4.3348628, - 50.8710452 - ], - [ - 4.3348628, - 50.8710452 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299511 - } - }, - { - "id": 88299466, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4053008, - 50.8438174 - ], - [ - 4.4058373, - 50.8438174 - ], - [ - 4.4058373, - 50.8445762 - ], - [ - 4.4053008, - 50.8445762 - ], - [ - 4.4053008, - 50.8438174 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299466 - } - }, - { - "id": 88299438, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3376765, - 50.8719475 - ], - [ - 4.3376765, - 50.8719475 - ], - [ - 4.3376765, - 50.8719475 - ], - [ - 4.3376765, - 50.8719475 - ], - [ - 4.3376765, - 50.8719475 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299438 - } - }, - { - "id": 88299391, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4061672, - 50.8423423 - ], - [ - 4.4061672, - 50.8423423 - ], - [ - 4.4061672, - 50.8423423 - ], - [ - 4.4061672, - 50.8423423 - ], - [ - 4.4061672, - 50.8423423 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299391 - } - }, - { - "id": 88299389, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3382075, - 50.8722319 - ], - [ - 4.3387949, - 50.8722319 - ], - [ - 4.3387949, - 50.8723064 - ], - [ - 4.3382075, - 50.8723064 - ], - [ - 4.3382075, - 50.8722319 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299389 - } - }, - { - "id": 88299375, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4184619, - 50.827487 - ], - [ - 4.4186443, - 50.827487 - ], - [ - 4.4186443, - 50.8278513 - ], - [ - 4.4184619, - 50.8278513 - ], - [ - 4.4184619, - 50.827487 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299375 - } - }, - { - "id": 88299327, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3409568, - 50.8727819 - ], - [ - 4.3409568, - 50.8727819 - ], - [ - 4.3409568, - 50.8727819 - ], - [ - 4.3409568, - 50.8727819 - ], - [ - 4.3409568, - 50.8727819 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299327 - } - }, - { - "id": 88299323, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4024888, - 50.8415413 - ], - [ - 4.4028638, - 50.8415413 - ], - [ - 4.4028638, - 50.842013 - ], - [ - 4.4024888, - 50.842013 - ], - [ - 4.4024888, - 50.8415413 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299323 - } - }, - { - "id": 88299322, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4184619, - 50.8278513 - ], - [ - 4.4184619, - 50.8278513 - ], - [ - 4.4184619, - 50.8278513 - ], - [ - 4.4184619, - 50.8278513 - ], - [ - 4.4184619, - 50.8278513 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299322 - } - }, - { - "id": 88299307, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3248099, - 50.8453104 - ], - [ - 4.3248099, - 50.8453104 - ], - [ - 4.3248099, - 50.8453104 - ], - [ - 4.3248099, - 50.8453104 - ], - [ - 4.3248099, - 50.8453104 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88299307 - } - }, - { - "id": 88299298, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3417212, - 50.8729988 - ], - [ - 4.3417212, - 50.8729988 - ], - [ - 4.3417212, - 50.8729988 - ], - [ - 4.3417212, - 50.8729988 - ], - [ - 4.3417212, - 50.8729988 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299298 - } - }, - { - "id": 88299256, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3411767, - 50.8729666 - ], - [ - 4.3411767, - 50.8729666 - ], - [ - 4.3411767, - 50.8729666 - ], - [ - 4.3411767, - 50.8729666 - ], - [ - 4.3411767, - 50.8729666 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299256 - } - }, - { - "id": 88299231, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3415791, - 50.8590959 - ], - [ - 4.3415791, - 50.8590959 - ], - [ - 4.3415791, - 50.8590959 - ], - [ - 4.3415791, - 50.8590959 - ], - [ - 4.3415791, - 50.8590959 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299231 - } - }, - { - "id": 88299187, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3439341, - 50.8585659 - ], - [ - 4.3439341, - 50.8585659 - ], - [ - 4.3439341, - 50.8585659 - ], - [ - 4.3439341, - 50.8585659 - ], - [ - 4.3439341, - 50.8585659 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88299187 - } - }, - { - "id": 88299166, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3447199, - 50.8585507 - ], - [ - 4.3447199, - 50.8585507 - ], - [ - 4.3447199, - 50.8585507 - ], - [ - 4.3447199, - 50.8585507 - ], - [ - 4.3447199, - 50.8585507 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88299166 - } - }, - { - "id": 88299143, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3983973, - 50.8427953 - ], - [ - 4.3983973, - 50.8427953 - ], - [ - 4.3983973, - 50.8427953 - ], - [ - 4.3983973, - 50.8427953 - ], - [ - 4.3983973, - 50.8427953 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299143 - } - }, - { - "id": 88299142, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3452135, - 50.8585913 - ], - [ - 4.3452135, - 50.8585913 - ], - [ - 4.3452135, - 50.8585913 - ], - [ - 4.3452135, - 50.8585913 - ], - [ - 4.3452135, - 50.8585913 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88299142 - } - }, - { - "id": 88299083, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3970611, - 50.8424608 - ], - [ - 4.3975922, - 50.8424608 - ], - [ - 4.3975922, - 50.8426556 - ], - [ - 4.3970611, - 50.8426556 - ], - [ - 4.3970611, - 50.8424608 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299083 - } - }, - { - "id": 88299065, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3426037, - 50.8328117 - ], - [ - 4.3426037, - 50.8328117 - ], - [ - 4.3426037, - 50.8328117 - ], - [ - 4.3426037, - 50.8328117 - ], - [ - 4.3426037, - 50.8328117 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88299065 - } - }, - { - "id": 88299062, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3435264, - 50.8577515 - ], - [ - 4.3435264, - 50.8577515 - ], - [ - 4.3435264, - 50.8577515 - ], - [ - 4.3435264, - 50.8577515 - ], - [ - 4.3435264, - 50.8577515 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299062 - } - }, - { - "id": 88299057, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3454415, - 50.8703209 - ], - [ - 4.3454415, - 50.8703209 - ], - [ - 4.3454415, - 50.8703209 - ], - [ - 4.3454415, - 50.8703209 - ], - [ - 4.3454415, - 50.8703209 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299057 - } - }, - { - "id": 88299036, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3636188, - 50.8504721 - ], - [ - 4.3636188, - 50.8504721 - ], - [ - 4.3636188, - 50.8504721 - ], - [ - 4.3636188, - 50.8504721 - ], - [ - 4.3636188, - 50.8504721 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299036 - } - }, - { - "id": 88299018, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3433198, - 50.8699587 - ], - [ - 4.3433788, - 50.8699587 - ], - [ - 4.3433788, - 50.8700467 - ], - [ - 4.3433198, - 50.8700467 - ], - [ - 4.3433198, - 50.8699587 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299018 - } - }, - { - "id": 88299013, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3629348, - 50.8480545 - ], - [ - 4.3629348, - 50.8480545 - ], - [ - 4.3629348, - 50.8480545 - ], - [ - 4.3629348, - 50.8480545 - ], - [ - 4.3629348, - 50.8480545 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88299013 - } - }, - { - "id": 88298994, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3953726, - 50.8449556 - ], - [ - 4.3954303, - 50.8449556 - ], - [ - 4.3954303, - 50.8450216 - ], - [ - 4.3953726, - 50.8450216 - ], - [ - 4.3953726, - 50.8449556 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298994 - } - }, - { - "id": 88298989, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3416703, - 50.8686069 - ], - [ - 4.3416703, - 50.8686069 - ], - [ - 4.3416703, - 50.8686069 - ], - [ - 4.3416703, - 50.8686069 - ], - [ - 4.3416703, - 50.8686069 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298989 - } - }, - { - "id": 88298981, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3636224, - 50.8496825 - ], - [ - 4.3636224, - 50.8496825 - ], - [ - 4.3636224, - 50.8496825 - ], - [ - 4.3636224, - 50.8496825 - ], - [ - 4.3636224, - 50.8496825 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298981 - } - }, - { - "id": 88298978, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4124216, - 50.8259927 - ], - [ - 4.4124216, - 50.8259927 - ], - [ - 4.4124216, - 50.8259927 - ], - [ - 4.4124216, - 50.8259927 - ], - [ - 4.4124216, - 50.8259927 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298978 - } - }, - { - "id": 88298964, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4120166, - 50.8261773 - ], - [ - 4.4120166, - 50.8261773 - ], - [ - 4.4120166, - 50.8261773 - ], - [ - 4.4120166, - 50.8261773 - ], - [ - 4.4120166, - 50.8261773 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298964 - } - }, - { - "id": 88298949, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3433018, - 50.8325133 - ], - [ - 4.3433018, - 50.8325133 - ], - [ - 4.3433018, - 50.8325133 - ], - [ - 4.3433018, - 50.8325133 - ], - [ - 4.3433018, - 50.8325133 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88298949 - } - }, - { - "id": 88298947, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3932376, - 50.8471555 - ], - [ - 4.3932376, - 50.8471555 - ], - [ - 4.3932376, - 50.8471555 - ], - [ - 4.3932376, - 50.8471555 - ], - [ - 4.3932376, - 50.8471555 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298947 - } - }, - { - "id": 88298943, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3433018, - 50.8325133 - ], - [ - 4.3433018, - 50.8325133 - ], - [ - 4.3433018, - 50.8325133 - ], - [ - 4.3433018, - 50.8325133 - ], - [ - 4.3433018, - 50.8325133 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88298943 - } - }, - { - "id": 88298934, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3433018, - 50.8325133 - ], - [ - 4.3433018, - 50.8325133 - ], - [ - 4.3433018, - 50.8325133 - ], - [ - 4.3433018, - 50.8325133 - ], - [ - 4.3433018, - 50.8325133 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298934 - } - }, - { - "id": 88298923, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3948523, - 50.8473011 - ], - [ - 4.3948523, - 50.8473011 - ], - [ - 4.3948523, - 50.8473011 - ], - [ - 4.3948523, - 50.8473011 - ], - [ - 4.3948523, - 50.8473011 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298923 - } - }, - { - "id": 88298901, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3433574, - 50.8327626 - ], - [ - 4.3433574, - 50.8327626 - ], - [ - 4.3433574, - 50.8327626 - ], - [ - 4.3433574, - 50.8327626 - ], - [ - 4.3433574, - 50.8327626 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298901 - } - }, - { - "id": 88298897, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4148329, - 50.8247355 - ], - [ - 4.4148329, - 50.8247355 - ], - [ - 4.4148329, - 50.8247355 - ], - [ - 4.4148329, - 50.8247355 - ], - [ - 4.4148329, - 50.8247355 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298897 - } - }, - { - "id": 88298887, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3571587, - 50.8068178 - ], - [ - 4.3571587, - 50.8068178 - ], - [ - 4.3571587, - 50.8068178 - ], - [ - 4.3571587, - 50.8068178 - ], - [ - 4.3571587, - 50.8068178 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298887 - } - }, - { - "id": 88298868, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3973333, - 50.8476805 - ], - [ - 4.3977893, - 50.8476805 - ], - [ - 4.3977893, - 50.8477973 - ], - [ - 4.3973333, - 50.8477973 - ], - [ - 4.3973333, - 50.8476805 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298868 - } - }, - { - "id": 88298858, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3426493, - 50.8558823 - ], - [ - 4.3426493, - 50.8558823 - ], - [ - 4.3426493, - 50.8558823 - ], - [ - 4.3426493, - 50.8558823 - ], - [ - 4.3426493, - 50.8558823 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298858 - } - }, - { - "id": 88298836, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3572754, - 50.8075263 - ], - [ - 4.3572754, - 50.8075263 - ], - [ - 4.3572754, - 50.8075263 - ], - [ - 4.3572754, - 50.8075263 - ], - [ - 4.3572754, - 50.8075263 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88298836 - } - }, - { - "id": 88298835, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3423408, - 50.8554945 - ], - [ - 4.342652, - 50.8554945 - ], - [ - 4.342652, - 50.8557096 - ], - [ - 4.3423408, - 50.8557096 - ], - [ - 4.3423408, - 50.8554945 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298835 - } - }, - { - "id": 88298789, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3997862, - 50.848258 - ], - [ - 4.3998345, - 50.848258 - ], - [ - 4.3998345, - 50.8483867 - ], - [ - 4.3997862, - 50.8483867 - ], - [ - 4.3997862, - 50.848258 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298789 - } - }, - { - "id": 88298757, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.34196, - 50.8557096 - ], - [ - 4.34196, - 50.8557096 - ], - [ - 4.34196, - 50.8557096 - ], - [ - 4.34196, - 50.8557096 - ], - [ - 4.34196, - 50.8557096 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298757 - } - }, - { - "id": 88298756, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4127917, - 50.820469 - ], - [ - 4.4127917, - 50.820469 - ], - [ - 4.4127917, - 50.820469 - ], - [ - 4.4127917, - 50.820469 - ], - [ - 4.4127917, - 50.820469 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298756 - } - }, - { - "id": 88298754, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.356012, - 50.8075687 - ], - [ - 4.356012, - 50.8075687 - ], - [ - 4.356012, - 50.8075687 - ], - [ - 4.356012, - 50.8075687 - ], - [ - 4.356012, - 50.8075687 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298754 - } - }, - { - "id": 88298740, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4127917, - 50.820469 - ], - [ - 4.4127917, - 50.820469 - ], - [ - 4.4127917, - 50.820469 - ], - [ - 4.4127917, - 50.820469 - ], - [ - 4.4127917, - 50.820469 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298740 - } - }, - { - "id": 88298735, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3415549, - 50.8559077 - ], - [ - 4.3415549, - 50.8559077 - ], - [ - 4.3415549, - 50.8559077 - ], - [ - 4.3415549, - 50.8559077 - ], - [ - 4.3415549, - 50.8559077 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298735 - } - }, - { - "id": 88298695, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3394145, - 50.8628778 - ], - [ - 4.3394145, - 50.8628778 - ], - [ - 4.3394145, - 50.8628778 - ], - [ - 4.3394145, - 50.8628778 - ], - [ - 4.3394145, - 50.8628778 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298695 - } - }, - { - "id": 88298633, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4080613, - 50.8501826 - ], - [ - 4.4080613, - 50.8501826 - ], - [ - 4.4080613, - 50.8501826 - ], - [ - 4.4080613, - 50.8501826 - ], - [ - 4.4080613, - 50.8501826 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298633 - } - }, - { - "id": 88298584, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4081145, - 50.8491945 - ], - [ - 4.4082767, - 50.8491945 - ], - [ - 4.4082767, - 50.8493333 - ], - [ - 4.4081145, - 50.8493333 - ], - [ - 4.4081145, - 50.8491945 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298584 - } - }, - { - "id": 88298521, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3102831, - 50.8574603 - ], - [ - 4.3102831, - 50.8574603 - ], - [ - 4.3102831, - 50.8574603 - ], - [ - 4.3102831, - 50.8574603 - ], - [ - 4.3102831, - 50.8574603 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88298521 - } - }, - { - "id": 88298515, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4303558, - 50.8476864 - ], - [ - 4.4303558, - 50.8476864 - ], - [ - 4.4303558, - 50.8476864 - ], - [ - 4.4303558, - 50.8476864 - ], - [ - 4.4303558, - 50.8476864 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298515 - } - }, - { - "id": 88298484, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3421772, - 50.8610461 - ], - [ - 4.3421772, - 50.8610461 - ], - [ - 4.3421772, - 50.8610461 - ], - [ - 4.3421772, - 50.8610461 - ], - [ - 4.3421772, - 50.8610461 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298484 - } - }, - { - "id": 88298467, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.344732, - 50.8325957 - ], - [ - 4.344732, - 50.8325957 - ], - [ - 4.344732, - 50.8325957 - ], - [ - 4.344732, - 50.8325957 - ], - [ - 4.344732, - 50.8325957 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88298467 - } - }, - { - "id": 88298466, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4084144, - 50.8482351 - ], - [ - 4.4084144, - 50.8482351 - ], - [ - 4.4084144, - 50.8482351 - ], - [ - 4.4084144, - 50.8482351 - ], - [ - 4.4084144, - 50.8482351 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298466 - } - }, - { - "id": 88298465, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.344732, - 50.8325957 - ], - [ - 4.344732, - 50.8325957 - ], - [ - 4.344732, - 50.8325957 - ], - [ - 4.344732, - 50.8325957 - ], - [ - 4.344732, - 50.8325957 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298465 - } - }, - { - "id": 88298444, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.353818, - 50.8115585 - ], - [ - 4.353818, - 50.8115585 - ], - [ - 4.353818, - 50.8115585 - ], - [ - 4.353818, - 50.8115585 - ], - [ - 4.353818, - 50.8115585 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88298444 - } - }, - { - "id": 88298438, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3387949, - 50.8554911 - ], - [ - 4.3391168, - 50.8554911 - ], - [ - 4.3391168, - 50.8555318 - ], - [ - 4.3387949, - 50.8555318 - ], - [ - 4.3387949, - 50.8554911 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298438 - } - }, - { - "id": 88298431, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3421772, - 50.8610461 - ], - [ - 4.3421772, - 50.8610461 - ], - [ - 4.3421772, - 50.8610461 - ], - [ - 4.3421772, - 50.8610461 - ], - [ - 4.3421772, - 50.8610461 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298431 - } - }, - { - "id": 88298426, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3533701, - 50.8118262 - ], - [ - 4.3533701, - 50.8118262 - ], - [ - 4.3533701, - 50.8118262 - ], - [ - 4.3533701, - 50.8118262 - ], - [ - 4.3533701, - 50.8118262 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298426 - } - }, - { - "id": 88298402, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3533701, - 50.8115585 - ], - [ - 4.353818, - 50.8115585 - ], - [ - 4.353818, - 50.8118262 - ], - [ - 4.3533701, - 50.8118262 - ], - [ - 4.3533701, - 50.8115585 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298402 - } - }, - { - "id": 88298373, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.341799, - 50.8591008 - ], - [ - 4.341799, - 50.8591008 - ], - [ - 4.341799, - 50.8591008 - ], - [ - 4.341799, - 50.8591008 - ], - [ - 4.341799, - 50.8591008 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298373 - } - }, - { - "id": 88298362, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.37832, - 50.8667361 - ], - [ - 4.37832, - 50.8667361 - ], - [ - 4.37832, - 50.8667361 - ], - [ - 4.37832, - 50.8667361 - ], - [ - 4.37832, - 50.8667361 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88298362 - } - }, - { - "id": 88298359, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3774751, - 50.8665262 - ], - [ - 4.3774751, - 50.8665262 - ], - [ - 4.3774751, - 50.8665262 - ], - [ - 4.3774751, - 50.8665262 - ], - [ - 4.3774751, - 50.8665262 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298359 - } - }, - { - "id": 88298353, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3535095, - 50.8116873 - ], - [ - 4.3535095, - 50.8116873 - ], - [ - 4.3535095, - 50.8116873 - ], - [ - 4.3535095, - 50.8116873 - ], - [ - 4.3535095, - 50.8116873 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298353 - } - }, - { - "id": 88298348, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4119526, - 50.8198782 - ], - [ - 4.4119526, - 50.8198782 - ], - [ - 4.4119526, - 50.8198782 - ], - [ - 4.4119526, - 50.8198782 - ], - [ - 4.4119526, - 50.8198782 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298348 - } - }, - { - "id": 88298327, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3420431, - 50.8589349 - ], - [ - 4.3420431, - 50.8589349 - ], - [ - 4.3420431, - 50.8589349 - ], - [ - 4.3420431, - 50.8589349 - ], - [ - 4.3420431, - 50.8589349 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298327 - } - }, - { - "id": 88298306, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3398651, - 50.8563174 - ], - [ - 4.3398651, - 50.8563174 - ], - [ - 4.3398651, - 50.8563174 - ], - [ - 4.3398651, - 50.8563174 - ], - [ - 4.3398651, - 50.8563174 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88298306 - } - }, - { - "id": 88298295, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4192344, - 50.8484603 - ], - [ - 4.4192344, - 50.8484603 - ], - [ - 4.4192344, - 50.8484603 - ], - [ - 4.4192344, - 50.8484603 - ], - [ - 4.4192344, - 50.8484603 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298295 - } - }, - { - "id": 88298263, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3493682, - 50.871023 - ], - [ - 4.3494111, - 50.871023 - ], - [ - 4.3494111, - 50.871128 - ], - [ - 4.3493682, - 50.871128 - ], - [ - 4.3493682, - 50.871023 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298263 - } - }, - { - "id": 88298258, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.37832, - 50.8667361 - ], - [ - 4.37832, - 50.8667361 - ], - [ - 4.37832, - 50.8667361 - ], - [ - 4.37832, - 50.8667361 - ], - [ - 4.37832, - 50.8667361 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88298258 - } - }, - { - "id": 88298226, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3512243, - 50.8113771 - ], - [ - 4.3512243, - 50.8113771 - ], - [ - 4.3512243, - 50.8113771 - ], - [ - 4.3512243, - 50.8113771 - ], - [ - 4.3512243, - 50.8113771 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298226 - } - }, - { - "id": 88298224, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3786418, - 50.866792 - ], - [ - 4.3786418, - 50.866792 - ], - [ - 4.3786418, - 50.866792 - ], - [ - 4.3786418, - 50.866792 - ], - [ - 4.3786418, - 50.866792 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88298224 - } - }, - { - "id": 88298190, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3809235, - 50.8670815 - ], - [ - 4.3810263, - 50.8670815 - ], - [ - 4.3810263, - 50.8671864 - ], - [ - 4.3809235, - 50.8671864 - ], - [ - 4.3809235, - 50.8670815 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298190 - } - }, - { - "id": 88298180, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4167507, - 50.8184864 - ], - [ - 4.4167507, - 50.8184864 - ], - [ - 4.4167507, - 50.8184864 - ], - [ - 4.4167507, - 50.8184864 - ], - [ - 4.4167507, - 50.8184864 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298180 - } - }, - { - "id": 88298175, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.415144, - 50.8443907 - ], - [ - 4.415144, - 50.8443907 - ], - [ - 4.415144, - 50.8443907 - ], - [ - 4.415144, - 50.8443907 - ], - [ - 4.415144, - 50.8443907 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298175 - } - }, - { - "id": 88298172, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3788055, - 50.8668259 - ], - [ - 4.3790469, - 50.8668259 - ], - [ - 4.3790469, - 50.8668766 - ], - [ - 4.3788055, - 50.8668766 - ], - [ - 4.3788055, - 50.8668259 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88298172 - } - }, - { - "id": 88298169, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3402621, - 50.8563443 - ], - [ - 4.3402621, - 50.8563443 - ], - [ - 4.3402621, - 50.8563443 - ], - [ - 4.3402621, - 50.8563443 - ], - [ - 4.3402621, - 50.8563443 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298169 - } - }, - { - "id": 88298165, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3386555, - 50.855486 - ], - [ - 4.3391141, - 50.855486 - ], - [ - 4.3391141, - 50.8555622 - ], - [ - 4.3386555, - 50.8555622 - ], - [ - 4.3386555, - 50.855486 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88298165 - } - }, - { - "id": 88298153, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.35094, - 50.8111805 - ], - [ - 4.35094, - 50.8111805 - ], - [ - 4.35094, - 50.8111805 - ], - [ - 4.35094, - 50.8111805 - ], - [ - 4.35094, - 50.8111805 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298153 - } - }, - { - "id": 88298138, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3790469, - 50.8668766 - ], - [ - 4.3798032, - 50.8668766 - ], - [ - 4.3798032, - 50.8668953 - ], - [ - 4.3790469, - 50.8668953 - ], - [ - 4.3790469, - 50.8668766 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88298138 - } - }, - { - "id": 88298116, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4140148, - 50.8440774 - ], - [ - 4.4140148, - 50.8440774 - ], - [ - 4.4140148, - 50.8440774 - ], - [ - 4.4140148, - 50.8440774 - ], - [ - 4.4140148, - 50.8440774 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298116 - } - }, - { - "id": 88298094, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3802941, - 50.8669968 - ], - [ - 4.3802941, - 50.8669968 - ], - [ - 4.3802941, - 50.8669968 - ], - [ - 4.3802941, - 50.8669968 - ], - [ - 4.3802941, - 50.8669968 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298094 - } - }, - { - "id": 88298086, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3798032, - 50.8668953 - ], - [ - 4.3798032, - 50.8668953 - ], - [ - 4.3798032, - 50.8668953 - ], - [ - 4.3798032, - 50.8668953 - ], - [ - 4.3798032, - 50.8668953 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298086 - } - }, - { - "id": 88298063, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3811738, - 50.8648672 - ], - [ - 4.3811738, - 50.8648672 - ], - [ - 4.3811738, - 50.8648672 - ], - [ - 4.3811738, - 50.8648672 - ], - [ - 4.3811738, - 50.8648672 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298063 - } - }, - { - "id": 88298054, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3385831, - 50.8558653 - ], - [ - 4.3385831, - 50.8558653 - ], - [ - 4.3385831, - 50.8558653 - ], - [ - 4.3385831, - 50.8558653 - ], - [ - 4.3385831, - 50.8558653 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298054 - } - }, - { - "id": 88298052, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3378025, - 50.85621 - ], - [ - 4.3378025, - 50.85621 - ], - [ - 4.3378025, - 50.85621 - ], - [ - 4.3378025, - 50.85621 - ], - [ - 4.3378025, - 50.85621 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298052 - } - }, - { - "id": 88298037, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2964818, - 50.8612672 - ], - [ - 4.2964818, - 50.8612672 - ], - [ - 4.2964818, - 50.8612672 - ], - [ - 4.2964818, - 50.8612672 - ], - [ - 4.2964818, - 50.8612672 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88298037 - } - }, - { - "id": 88298036, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4105279, - 50.8432594 - ], - [ - 4.4105279, - 50.8432594 - ], - [ - 4.4105279, - 50.8432594 - ], - [ - 4.4105279, - 50.8432594 - ], - [ - 4.4105279, - 50.8432594 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298036 - } - }, - { - "id": 88298021, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3369094, - 50.8549391 - ], - [ - 4.3369094, - 50.8549391 - ], - [ - 4.3369094, - 50.8549391 - ], - [ - 4.3369094, - 50.8549391 - ], - [ - 4.3369094, - 50.8549391 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88298021 - } - }, - { - "id": 88298013, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2964818, - 50.8612672 - ], - [ - 4.2964818, - 50.8612672 - ], - [ - 4.2964818, - 50.8612672 - ], - [ - 4.2964818, - 50.8612672 - ], - [ - 4.2964818, - 50.8612672 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88298013 - } - }, - { - "id": 88297993, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2964818, - 50.8612672 - ], - [ - 4.2964818, - 50.8612672 - ], - [ - 4.2964818, - 50.8612672 - ], - [ - 4.2964818, - 50.8612672 - ], - [ - 4.2964818, - 50.8612672 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88297993 - } - }, - { - "id": 88297982, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2964818, - 50.8612672 - ], - [ - 4.2964818, - 50.8612672 - ], - [ - 4.2964818, - 50.8612672 - ], - [ - 4.2964818, - 50.8612672 - ], - [ - 4.2964818, - 50.8612672 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88297982 - } - }, - { - "id": 88297979, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3372178, - 50.8558167 - ], - [ - 4.3372178, - 50.8558167 - ], - [ - 4.3372178, - 50.8558167 - ], - [ - 4.3372178, - 50.8558167 - ], - [ - 4.3372178, - 50.8558167 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88297979 - } - }, - { - "id": 88297964, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4086048, - 50.8428444 - ], - [ - 4.4088475, - 50.8428444 - ], - [ - 4.4088475, - 50.8429765 - ], - [ - 4.4086048, - 50.8429765 - ], - [ - 4.4086048, - 50.8428444 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88297964 - } - }, - { - "id": 88297936, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3806535, - 50.864527 - ], - [ - 4.3811738, - 50.864527 - ], - [ - 4.3811738, - 50.8648672 - ], - [ - 4.3806535, - 50.8648672 - ], - [ - 4.3806535, - 50.864527 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88297936 - } - }, - { - "id": 88297927, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2964818, - 50.8612672 - ], - [ - 4.2964818, - 50.8612672 - ], - [ - 4.2964818, - 50.8612672 - ], - [ - 4.2964818, - 50.8612672 - ], - [ - 4.2964818, - 50.8612672 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88297927 - } - }, - { - "id": 88297914, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3376121, - 50.8554947 - ], - [ - 4.3376121, - 50.8554947 - ], - [ - 4.3376121, - 50.8554947 - ], - [ - 4.3376121, - 50.8554947 - ], - [ - 4.3376121, - 50.8554947 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88297914 - } - }, - { - "id": 88297907, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.342947, - 50.8345176 - ], - [ - 4.342947, - 50.8345176 - ], - [ - 4.342947, - 50.8345176 - ], - [ - 4.342947, - 50.8345176 - ], - [ - 4.342947, - 50.8345176 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297907 - } - }, - { - "id": 88297905, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.342947, - 50.8345176 - ], - [ - 4.342947, - 50.8345176 - ], - [ - 4.342947, - 50.8345176 - ], - [ - 4.342947, - 50.8345176 - ], - [ - 4.342947, - 50.8345176 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297905 - } - }, - { - "id": 88297902, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4091345, - 50.8425277 - ], - [ - 4.4091345, - 50.8425277 - ], - [ - 4.4091345, - 50.8425277 - ], - [ - 4.4091345, - 50.8425277 - ], - [ - 4.4091345, - 50.8425277 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297902 - } - }, - { - "id": 88297884, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3397686, - 50.8533729 - ], - [ - 4.3397686, - 50.8533729 - ], - [ - 4.3397686, - 50.8533729 - ], - [ - 4.3397686, - 50.8533729 - ], - [ - 4.3397686, - 50.8533729 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297884 - } - }, - { - "id": 88297877, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3497491, - 50.8712157 - ], - [ - 4.3497491, - 50.8712157 - ], - [ - 4.3497491, - 50.8712157 - ], - [ - 4.3497491, - 50.8712157 - ], - [ - 4.3497491, - 50.8712157 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297877 - } - }, - { - "id": 88297868, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3806535, - 50.864527 - ], - [ - 4.3806535, - 50.864527 - ], - [ - 4.3806535, - 50.864527 - ], - [ - 4.3806535, - 50.864527 - ], - [ - 4.3806535, - 50.864527 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297868 - } - }, - { - "id": 88297857, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4089481, - 50.8416334 - ], - [ - 4.409498, - 50.8416334 - ], - [ - 4.409498, - 50.8421229 - ], - [ - 4.4089481, - 50.8421229 - ], - [ - 4.4089481, - 50.8416334 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297857 - } - }, - { - "id": 88297850, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3363595, - 50.8546935 - ], - [ - 4.3363595, - 50.8546935 - ], - [ - 4.3363595, - 50.8546935 - ], - [ - 4.3363595, - 50.8546935 - ], - [ - 4.3363595, - 50.8546935 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297850 - } - }, - { - "id": 88297831, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3793553, - 50.8641765 - ], - [ - 4.3793553, - 50.8641765 - ], - [ - 4.3793553, - 50.8641765 - ], - [ - 4.3793553, - 50.8641765 - ], - [ - 4.3793553, - 50.8641765 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297831 - } - }, - { - "id": 88297825, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3429953, - 50.83446 - ], - [ - 4.3429953, - 50.83446 - ], - [ - 4.3429953, - 50.83446 - ], - [ - 4.3429953, - 50.83446 - ], - [ - 4.3429953, - 50.83446 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297825 - } - }, - { - "id": 88297810, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3786258, - 50.864874 - ], - [ - 4.3786258, - 50.864874 - ], - [ - 4.3786258, - 50.864874 - ], - [ - 4.3786258, - 50.864874 - ], - [ - 4.3786258, - 50.864874 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297810 - } - }, - { - "id": 88297804, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4088596, - 50.8146141 - ], - [ - 4.4088596, - 50.8146141 - ], - [ - 4.4088596, - 50.8146141 - ], - [ - 4.4088596, - 50.8146141 - ], - [ - 4.4088596, - 50.8146141 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297804 - } - }, - { - "id": 88297769, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3383014, - 50.8534929 - ], - [ - 4.3383014, - 50.8534929 - ], - [ - 4.3383014, - 50.8534929 - ], - [ - 4.3383014, - 50.8534929 - ], - [ - 4.3383014, - 50.8534929 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297769 - } - }, - { - "id": 88297765, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4088596, - 50.8146141 - ], - [ - 4.4088596, - 50.8146141 - ], - [ - 4.4088596, - 50.8146141 - ], - [ - 4.4088596, - 50.8146141 - ], - [ - 4.4088596, - 50.8146141 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297765 - } - }, - { - "id": 88297761, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4088596, - 50.8146141 - ], - [ - 4.4088596, - 50.8146141 - ], - [ - 4.4088596, - 50.8146141 - ], - [ - 4.4088596, - 50.8146141 - ], - [ - 4.4088596, - 50.8146141 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297761 - } - }, - { - "id": 88297716, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3435585, - 50.8101178 - ], - [ - 4.3435585, - 50.8101178 - ], - [ - 4.3435585, - 50.8101178 - ], - [ - 4.3435585, - 50.8101178 - ], - [ - 4.3435585, - 50.8101178 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297716 - } - }, - { - "id": 88297691, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4107452, - 50.8421898 - ], - [ - 4.4107774, - 50.8421898 - ], - [ - 4.4107774, - 50.8422677 - ], - [ - 4.4107452, - 50.8422677 - ], - [ - 4.4107452, - 50.8421898 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297691 - } - }, - { - "id": 88297690, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3780109, - 50.8656585 - ], - [ - 4.3780109, - 50.8656585 - ], - [ - 4.3780109, - 50.8656585 - ], - [ - 4.3780109, - 50.8656585 - ], - [ - 4.3780109, - 50.8656585 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297690 - } - }, - { - "id": 88297688, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3786258, - 50.864874 - ], - [ - 4.3786258, - 50.864874 - ], - [ - 4.3786258, - 50.864874 - ], - [ - 4.3786258, - 50.864874 - ], - [ - 4.3786258, - 50.864874 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297688 - } - }, - { - "id": 88297685, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3361315, - 50.8547901 - ], - [ - 4.3361315, - 50.8547901 - ], - [ - 4.3361315, - 50.8547901 - ], - [ - 4.3361315, - 50.8547901 - ], - [ - 4.3361315, - 50.8547901 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297685 - } - }, - { - "id": 88297684, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4102114, - 50.8144057 - ], - [ - 4.4102114, - 50.8144057 - ], - [ - 4.4102114, - 50.8144057 - ], - [ - 4.4102114, - 50.8144057 - ], - [ - 4.4102114, - 50.8144057 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297684 - } - }, - { - "id": 88297651, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3779981, - 50.8652143 - ], - [ - 4.3779981, - 50.8652143 - ], - [ - 4.3779981, - 50.8652143 - ], - [ - 4.3779981, - 50.8652143 - ], - [ - 4.3779981, - 50.8652143 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297651 - } - }, - { - "id": 88297619, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4104019, - 50.8141345 - ], - [ - 4.4104019, - 50.8141345 - ], - [ - 4.4104019, - 50.8141345 - ], - [ - 4.4104019, - 50.8141345 - ], - [ - 4.4104019, - 50.8141345 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297619 - } - }, - { - "id": 88297617, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3779981, - 50.8652143 - ], - [ - 4.3779981, - 50.8652143 - ], - [ - 4.3779981, - 50.8652143 - ], - [ - 4.3779981, - 50.8652143 - ], - [ - 4.3779981, - 50.8652143 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297617 - } - }, - { - "id": 88297582, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4138217, - 50.8428046 - ], - [ - 4.4145378, - 50.8428046 - ], - [ - 4.4145378, - 50.8429249 - ], - [ - 4.4138217, - 50.8429249 - ], - [ - 4.4138217, - 50.8428046 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297582 - } - }, - { - "id": 88297546, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4110376, - 50.8141243 - ], - [ - 4.4110376, - 50.8141243 - ], - [ - 4.4110376, - 50.8141243 - ], - [ - 4.4110376, - 50.8141243 - ], - [ - 4.4110376, - 50.8141243 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88297546 - } - }, - { - "id": 88297501, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4118342, - 50.8140311 - ], - [ - 4.4118342, - 50.8140311 - ], - [ - 4.4118342, - 50.8140311 - ], - [ - 4.4118342, - 50.8140311 - ], - [ - 4.4118342, - 50.8140311 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88297501 - } - }, - { - "id": 88297472, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3775433, - 50.863739 - ], - [ - 4.3775433, - 50.863739 - ], - [ - 4.3775433, - 50.863739 - ], - [ - 4.3775433, - 50.863739 - ], - [ - 4.3775433, - 50.863739 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88297472 - } - }, - { - "id": 88297470, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4120273, - 50.8141515 - ], - [ - 4.4120273, - 50.8141515 - ], - [ - 4.4120273, - 50.8141515 - ], - [ - 4.4120273, - 50.8141515 - ], - [ - 4.4120273, - 50.8141515 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88297470 - } - }, - { - "id": 88297467, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4120273, - 50.8141515 - ], - [ - 4.4120273, - 50.8141515 - ], - [ - 4.4120273, - 50.8141515 - ], - [ - 4.4120273, - 50.8141515 - ], - [ - 4.4120273, - 50.8141515 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88297467 - } - }, - { - "id": 88297461, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3373251, - 50.8102755 - ], - [ - 4.3373251, - 50.8102755 - ], - [ - 4.3373251, - 50.8102755 - ], - [ - 4.3373251, - 50.8102755 - ], - [ - 4.3373251, - 50.8102755 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88297461 - } - }, - { - "id": 88297449, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3455273, - 50.8364521 - ], - [ - 4.3455273, - 50.8364521 - ], - [ - 4.3455273, - 50.8364521 - ], - [ - 4.3455273, - 50.8364521 - ], - [ - 4.3455273, - 50.8364521 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297449 - } - }, - { - "id": 88297448, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4153868, - 50.8429892 - ], - [ - 4.4155665, - 50.8429892 - ], - [ - 4.4155665, - 50.8430943 - ], - [ - 4.4153868, - 50.8430943 - ], - [ - 4.4153868, - 50.8429892 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297448 - } - }, - { - "id": 88297437, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3774585, - 50.8635053 - ], - [ - 4.3774585, - 50.8635053 - ], - [ - 4.3774585, - 50.8635053 - ], - [ - 4.3774585, - 50.8635053 - ], - [ - 4.3774585, - 50.8635053 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297437 - } - }, - { - "id": 88297424, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3451196, - 50.8509104 - ], - [ - 4.3451196, - 50.8509104 - ], - [ - 4.3451196, - 50.8509104 - ], - [ - 4.3451196, - 50.8509104 - ], - [ - 4.3451196, - 50.8509104 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297424 - } - }, - { - "id": 88297418, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3398947, - 50.8533779 - ], - [ - 4.3398947, - 50.8533779 - ], - [ - 4.3398947, - 50.8533779 - ], - [ - 4.3398947, - 50.8533779 - ], - [ - 4.3398947, - 50.8533779 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297418 - } - }, - { - "id": 88297371, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4171382, - 50.8440639 - ], - [ - 4.4171382, - 50.8440639 - ], - [ - 4.4171382, - 50.8440639 - ], - [ - 4.4171382, - 50.8440639 - ], - [ - 4.4171382, - 50.8440639 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297371 - } - }, - { - "id": 88297370, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3567175, - 50.8489193 - ], - [ - 4.3567175, - 50.8489193 - ], - [ - 4.3567175, - 50.8489193 - ], - [ - 4.3567175, - 50.8489193 - ], - [ - 4.3567175, - 50.8489193 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88297370 - } - }, - { - "id": 88297356, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4150823, - 50.8139871 - ], - [ - 4.4150823, - 50.8139871 - ], - [ - 4.4150823, - 50.8139871 - ], - [ - 4.4150823, - 50.8139871 - ], - [ - 4.4150823, - 50.8139871 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297356 - } - }, - { - "id": 88297346, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.340643, - 50.8532222 - ], - [ - 4.340643, - 50.8532222 - ], - [ - 4.340643, - 50.8532222 - ], - [ - 4.340643, - 50.8532222 - ], - [ - 4.340643, - 50.8532222 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297346 - } - }, - { - "id": 88297332, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3452269, - 50.8364385 - ], - [ - 4.3452269, - 50.8364385 - ], - [ - 4.3452269, - 50.8364385 - ], - [ - 4.3452269, - 50.8364385 - ], - [ - 4.3452269, - 50.8364385 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297332 - } - }, - { - "id": 88297330, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4150823, - 50.8139871 - ], - [ - 4.4150823, - 50.8139871 - ], - [ - 4.4150823, - 50.8139871 - ], - [ - 4.4150823, - 50.8139871 - ], - [ - 4.4150823, - 50.8139871 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297330 - } - }, - { - "id": 88297323, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3762767, - 50.8635623 - ], - [ - 4.3762767, - 50.8635623 - ], - [ - 4.3762767, - 50.8635623 - ], - [ - 4.3762767, - 50.8635623 - ], - [ - 4.3762767, - 50.8635623 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297323 - } - }, - { - "id": 88297314, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3763323, - 50.8634976 - ], - [ - 4.3763323, - 50.8634976 - ], - [ - 4.3763323, - 50.8634976 - ], - [ - 4.3763323, - 50.8634976 - ], - [ - 4.3763323, - 50.8634976 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297314 - } - }, - { - "id": 88297301, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3537107, - 50.8725521 - ], - [ - 4.3537107, - 50.8725521 - ], - [ - 4.3537107, - 50.8725521 - ], - [ - 4.3537107, - 50.8725521 - ], - [ - 4.3537107, - 50.8725521 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88297301 - } - }, - { - "id": 88297298, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3063536, - 50.8552321 - ], - [ - 4.3063536, - 50.8552321 - ], - [ - 4.3063536, - 50.8552321 - ], - [ - 4.3063536, - 50.8552321 - ], - [ - 4.3063536, - 50.8552321 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88297298 - } - }, - { - "id": 88297297, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4097823, - 50.8001662 - ], - [ - 4.4097823, - 50.8001662 - ], - [ - 4.4097823, - 50.8001662 - ], - [ - 4.4097823, - 50.8001662 - ], - [ - 4.4097823, - 50.8001662 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88297297 - } - }, - { - "id": 88297294, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4097823, - 50.8001662 - ], - [ - 4.4097823, - 50.8001662 - ], - [ - 4.4097823, - 50.8001662 - ], - [ - 4.4097823, - 50.8001662 - ], - [ - 4.4097823, - 50.8001662 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88297294 - } - }, - { - "id": 88297239, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4177002, - 50.8423075 - ], - [ - 4.4180122, - 50.8423075 - ], - [ - 4.4180122, - 50.8426971 - ], - [ - 4.4177002, - 50.8426971 - ], - [ - 4.4177002, - 50.8423075 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297239 - } - }, - { - "id": 88297232, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3552423, - 50.8713569 - ], - [ - 4.3552423, - 50.8713569 - ], - [ - 4.3552423, - 50.8713569 - ], - [ - 4.3552423, - 50.8713569 - ], - [ - 4.3552423, - 50.8713569 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297232 - } - }, - { - "id": 88297194, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4171745, - 50.8144463 - ], - [ - 4.4171745, - 50.8144463 - ], - [ - 4.4171745, - 50.8144463 - ], - [ - 4.4171745, - 50.8144463 - ], - [ - 4.4171745, - 50.8144463 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297194 - } - }, - { - "id": 88297184, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.337545, - 50.8066992 - ], - [ - 4.337545, - 50.8066992 - ], - [ - 4.337545, - 50.8066992 - ], - [ - 4.337545, - 50.8066992 - ], - [ - 4.337545, - 50.8066992 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297184 - } - }, - { - "id": 88297167, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4171745, - 50.8144463 - ], - [ - 4.4171745, - 50.8144463 - ], - [ - 4.4171745, - 50.8144463 - ], - [ - 4.4171745, - 50.8144463 - ], - [ - 4.4171745, - 50.8144463 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297167 - } - }, - { - "id": 88297153, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3760169, - 50.8611902 - ], - [ - 4.3760169, - 50.8611902 - ], - [ - 4.3760169, - 50.8611902 - ], - [ - 4.3760169, - 50.8611902 - ], - [ - 4.3760169, - 50.8611902 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297153 - } - }, - { - "id": 88297150, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4169948, - 50.814587 - ], - [ - 4.4169948, - 50.814587 - ], - [ - 4.4169948, - 50.814587 - ], - [ - 4.4169948, - 50.814587 - ], - [ - 4.4169948, - 50.814587 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297150 - } - }, - { - "id": 88297148, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3567175, - 50.8489193 - ], - [ - 4.3567175, - 50.8489193 - ], - [ - 4.3567175, - 50.8489193 - ], - [ - 4.3567175, - 50.8489193 - ], - [ - 4.3567175, - 50.8489193 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297148 - } - }, - { - "id": 88297139, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3384328, - 50.8055618 - ], - [ - 4.3384328, - 50.8055618 - ], - [ - 4.3384328, - 50.8055618 - ], - [ - 4.3384328, - 50.8055618 - ], - [ - 4.3384328, - 50.8055618 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297139 - } - }, - { - "id": 88297136, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3761167, - 50.8616121 - ], - [ - 4.3761167, - 50.8616121 - ], - [ - 4.3761167, - 50.8616121 - ], - [ - 4.3761167, - 50.8616121 - ], - [ - 4.3761167, - 50.8616121 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297136 - } - }, - { - "id": 88297115, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4169948, - 50.814587 - ], - [ - 4.4169948, - 50.814587 - ], - [ - 4.4169948, - 50.814587 - ], - [ - 4.4169948, - 50.814587 - ], - [ - 4.4169948, - 50.814587 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297115 - } - }, - { - "id": 88297105, - "type": "Feature", - "geometry": null, - "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:25:20Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88297105 - } - }, - { - "id": 88297104, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4112977, - 50.7990626 - ], - [ - 4.4112977, - 50.7990626 - ], - [ - 4.4112977, - 50.7990626 - ], - [ - 4.4112977, - 50.7990626 - ], - [ - 4.4112977, - 50.7990626 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88297104 - } - }, - { - "id": 88297088, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4202241, - 50.8436227 - ], - [ - 4.4213212, - 50.8436227 - ], - [ - 4.4213212, - 50.8443255 - ], - [ - 4.4202241, - 50.8443255 - ], - [ - 4.4202241, - 50.8436227 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297088 - } - }, - { - "id": 88297072, - "type": "Feature", - "geometry": null, - "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:24:34Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88297072 - } - }, - { - "id": 88297061, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3384328, - 50.8055618 - ], - [ - 4.3384328, - 50.8055618 - ], - [ - 4.3384328, - 50.8055618 - ], - [ - 4.3384328, - 50.8055618 - ], - [ - 4.3384328, - 50.8055618 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297061 - } - }, - { - "id": 88297053, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3759409, - 50.8606027 - ], - [ - 4.3759409, - 50.8606027 - ], - [ - 4.3759409, - 50.8606027 - ], - [ - 4.3759409, - 50.8606027 - ], - [ - 4.3759409, - 50.8606027 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297053 - } - }, - { - "id": 88297045, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3435156, - 50.8525025 - ], - [ - 4.3435156, - 50.8525025 - ], - [ - 4.3435156, - 50.8525025 - ], - [ - 4.3435156, - 50.8525025 - ], - [ - 4.3435156, - 50.8525025 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88297045 - } - }, - { - "id": 88297042, - "type": "Feature", - "geometry": null, - "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:23:49Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88297042 - } - }, - { - "id": 88296996, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3383953, - 50.8054042 - ], - [ - 4.3383953, - 50.8054042 - ], - [ - 4.3383953, - 50.8054042 - ], - [ - 4.3383953, - 50.8054042 - ], - [ - 4.3383953, - 50.8054042 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296996 - } - }, - { - "id": 88296988, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3573107, - 50.8473322 - ], - [ - 4.3573107, - 50.8473322 - ], - [ - 4.3573107, - 50.8473322 - ], - [ - 4.3573107, - 50.8473322 - ], - [ - 4.3573107, - 50.8473322 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296988 - } - }, - { - "id": 88296985, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3573107, - 50.8473322 - ], - [ - 4.3573107, - 50.8473322 - ], - [ - 4.3573107, - 50.8473322 - ], - [ - 4.3573107, - 50.8473322 - ], - [ - 4.3573107, - 50.8473322 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296985 - } - }, - { - "id": 88296965, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3383953, - 50.8054042 - ], - [ - 4.3383953, - 50.8054042 - ], - [ - 4.3383953, - 50.8054042 - ], - [ - 4.3383953, - 50.8054042 - ], - [ - 4.3383953, - 50.8054042 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296965 - } - }, - { - "id": 88296961, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4241858, - 50.8441265 - ], - [ - 4.4241858, - 50.8441265 - ], - [ - 4.4241858, - 50.8441265 - ], - [ - 4.4241858, - 50.8441265 - ], - [ - 4.4241858, - 50.8441265 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296961 - } - }, - { - "id": 88296958, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3556929, - 50.8720276 - ], - [ - 4.3558887, - 50.8720276 - ], - [ - 4.3558887, - 50.8721687 - ], - [ - 4.3556929, - 50.8721687 - ], - [ - 4.3556929, - 50.8720276 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296958 - } - }, - { - "id": 88296951, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4110966, - 50.7976318 - ], - [ - 4.4110966, - 50.7976318 - ], - [ - 4.4110966, - 50.7976318 - ], - [ - 4.4110966, - 50.7976318 - ], - [ - 4.4110966, - 50.7976318 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88296951 - } - }, - { - "id": 88296944, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3748581, - 50.8591647 - ], - [ - 4.3748581, - 50.8591647 - ], - [ - 4.3748581, - 50.8591647 - ], - [ - 4.3748581, - 50.8591647 - ], - [ - 4.3748581, - 50.8591647 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296944 - } - }, - { - "id": 88296933, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3442693, - 50.8517862 - ], - [ - 4.3442693, - 50.8517862 - ], - [ - 4.3442693, - 50.8517862 - ], - [ - 4.3442693, - 50.8517862 - ], - [ - 4.3442693, - 50.8517862 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296933 - } - }, - { - "id": 88296920, - "type": "Feature", - "geometry": null, - "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:21:33Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88296920 - } - }, - { - "id": 88296892, - "type": "Feature", - "geometry": null, - "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:20:51Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88296892 - } - }, - { - "id": 88296888, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4259453, - 50.8447261 - ], - [ - 4.4259453, - 50.8447261 - ], - [ - 4.4259453, - 50.8447261 - ], - [ - 4.4259453, - 50.8447261 - ], - [ - 4.4259453, - 50.8447261 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296888 - } - }, - { - "id": 88296870, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3448755, - 50.8515068 - ], - [ - 4.3448755, - 50.8515068 - ], - [ - 4.3448755, - 50.8515068 - ], - [ - 4.3448755, - 50.8515068 - ], - [ - 4.3448755, - 50.8515068 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296870 - } - }, - { - "id": 88296833, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4263154, - 50.8442231 - ], - [ - 4.4263154, - 50.8442231 - ], - [ - 4.4263154, - 50.8442231 - ], - [ - 4.4263154, - 50.8442231 - ], - [ - 4.4263154, - 50.8442231 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296833 - } - }, - { - "id": 88296820, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3446904, - 50.8512545 - ], - [ - 4.3446904, - 50.8512545 - ], - [ - 4.3446904, - 50.8512545 - ], - [ - 4.3446904, - 50.8512545 - ], - [ - 4.3446904, - 50.8512545 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296820 - } - }, - { - "id": 88296778, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3741599, - 50.8585981 - ], - [ - 4.3741599, - 50.8585981 - ], - [ - 4.3741599, - 50.8585981 - ], - [ - 4.3741599, - 50.8585981 - ], - [ - 4.3741599, - 50.8585981 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88296778 - } - }, - { - "id": 88296771, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4269001, - 50.8436201 - ], - [ - 4.428193, - 50.8436201 - ], - [ - 4.428193, - 50.8439733 - ], - [ - 4.4269001, - 50.8439733 - ], - [ - 4.4269001, - 50.8436201 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296771 - } - }, - { - "id": 88296738, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3739918, - 50.8579846 - ], - [ - 4.3739918, - 50.8579846 - ], - [ - 4.3739918, - 50.8579846 - ], - [ - 4.3739918, - 50.8579846 - ], - [ - 4.3739918, - 50.8579846 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296738 - } - }, - { - "id": 88296732, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3451384, - 50.8509632 - ], - [ - 4.3451384, - 50.8509632 - ], - [ - 4.3451384, - 50.8509632 - ], - [ - 4.3451384, - 50.8509632 - ], - [ - 4.3451384, - 50.8509632 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296732 - } - }, - { - "id": 88296729, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3727356, - 50.8568897 - ], - [ - 4.3727356, - 50.8568897 - ], - [ - 4.3727356, - 50.8568897 - ], - [ - 4.3727356, - 50.8568897 - ], - [ - 4.3727356, - 50.8568897 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296729 - } - }, - { - "id": 88296716, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.395779, - 50.8660741 - ], - [ - 4.395779, - 50.8660741 - ], - [ - 4.395779, - 50.8660741 - ], - [ - 4.395779, - 50.8660741 - ], - [ - 4.395779, - 50.8660741 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296716 - } - }, - { - "id": 88296690, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3738282, - 50.8566758 - ], - [ - 4.3738282, - 50.8566758 - ], - [ - 4.3738282, - 50.8566758 - ], - [ - 4.3738282, - 50.8566758 - ], - [ - 4.3738282, - 50.8566758 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296690 - } - }, - { - "id": 88296677, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.309237, - 50.851031 - ], - [ - 4.309237, - 50.851031 - ], - [ - 4.309237, - 50.851031 - ], - [ - 4.309237, - 50.851031 - ], - [ - 4.309237, - 50.851031 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88296677 - } - }, - { - "id": 88296651, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3954073, - 50.8671381 - ], - [ - 4.3954958, - 50.8671381 - ], - [ - 4.3954958, - 50.8672634 - ], - [ - 4.3954073, - 50.8672634 - ], - [ - 4.3954073, - 50.8671381 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88296651 - } - }, - { - "id": 88296650, - "type": "Feature", - "geometry": null, - "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:15:30Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88296650 - } - }, - { - "id": 88296631, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3097922, - 50.8511173 - ], - [ - 4.3097922, - 50.8511173 - ], - [ - 4.3097922, - 50.8511173 - ], - [ - 4.3097922, - 50.8511173 - ], - [ - 4.3097922, - 50.8511173 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88296631 - } - }, - { - "id": 88296626, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4253311, - 50.8434516 - ], - [ - 4.4256234, - 50.8434516 - ], - [ - 4.4256234, - 50.8435228 - ], - [ - 4.4253311, - 50.8435228 - ], - [ - 4.4253311, - 50.8434516 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296626 - } - }, - { - "id": 88296620, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3483624, - 50.8388065 - ], - [ - 4.3483624, - 50.8388065 - ], - [ - 4.3483624, - 50.8388065 - ], - [ - 4.3483624, - 50.8388065 - ], - [ - 4.3483624, - 50.8388065 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296620 - } - }, - { - "id": 88296609, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3730628, - 50.8568965 - ], - [ - 4.3730628, - 50.8568965 - ], - [ - 4.3730628, - 50.8568965 - ], - [ - 4.3730628, - 50.8568965 - ], - [ - 4.3730628, - 50.8568965 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296609 - } - }, - { - "id": 88296608, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3727356, - 50.8568897 - ], - [ - 4.3727356, - 50.8568897 - ], - [ - 4.3727356, - 50.8568897 - ], - [ - 4.3727356, - 50.8568897 - ], - [ - 4.3727356, - 50.8568897 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296608 - } - }, - { - "id": 88296594, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3529463, - 50.8710276 - ], - [ - 4.3529463, - 50.8710276 - ], - [ - 4.3529463, - 50.8710276 - ], - [ - 4.3529463, - 50.8710276 - ], - [ - 4.3529463, - 50.8710276 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88296594 - } - }, - { - "id": 88296590, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3951313, - 50.8678769 - ], - [ - 4.3951313, - 50.8678769 - ], - [ - 4.3951313, - 50.8678769 - ], - [ - 4.3951313, - 50.8678769 - ], - [ - 4.3951313, - 50.8678769 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88296590 - } - }, - { - "id": 88296584, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3108812, - 50.8512443 - ], - [ - 4.3108812, - 50.8512443 - ], - [ - 4.3108812, - 50.8512443 - ], - [ - 4.3108812, - 50.8512443 - ], - [ - 4.3108812, - 50.8512443 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88296584 - } - }, - { - "id": 88296554, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4195831, - 50.7984455 - ], - [ - 4.4195831, - 50.7984455 - ], - [ - 4.4195831, - 50.7984455 - ], - [ - 4.4195831, - 50.7984455 - ], - [ - 4.4195831, - 50.7984455 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "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, - "metadata": {}, - "id": 88296554 - } - }, - { - "id": 88296550, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3959068, - 50.8683526 - ], - [ - 4.3959068, - 50.8683526 - ], - [ - 4.3959068, - 50.8683526 - ], - [ - 4.3959068, - 50.8683526 - ], - [ - 4.3959068, - 50.8683526 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88296550 - } - }, - { - "id": 88296533, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3477213, - 50.8390369 - ], - [ - 4.3477213, - 50.8390369 - ], - [ - 4.3477213, - 50.8390369 - ], - [ - 4.3477213, - 50.8390369 - ], - [ - 4.3477213, - 50.8390369 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88296533 - } - }, - { - "id": 88296531, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4179979, - 50.8162071 - ], - [ - 4.4179979, - 50.8162071 - ], - [ - 4.4179979, - 50.8162071 - ], - [ - 4.4179979, - 50.8162071 - ], - [ - 4.4179979, - 50.8162071 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296531 - } - }, - { - "id": 88296530, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4259748, - 50.841094 - ], - [ - 4.4259748, - 50.841094 - ], - [ - 4.4259748, - 50.841094 - ], - [ - 4.4259748, - 50.841094 - ], - [ - 4.4259748, - 50.841094 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296530 - } - }, - { - "id": 88296519, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3725157, - 50.8566374 - ], - [ - 4.3725157, - 50.8566374 - ], - [ - 4.3725157, - 50.8566374 - ], - [ - 4.3725157, - 50.8566374 - ], - [ - 4.3725157, - 50.8566374 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296519 - } - }, - { - "id": 88296511, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3110394, - 50.8515441 - ], - [ - 4.3110394, - 50.8515441 - ], - [ - 4.3110394, - 50.8515441 - ], - [ - 4.3110394, - 50.8515441 - ], - [ - 4.3110394, - 50.8515441 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296511 - } - }, - { - "id": 88296497, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3477213, - 50.8390369 - ], - [ - 4.3477213, - 50.8390369 - ], - [ - 4.3477213, - 50.8390369 - ], - [ - 4.3477213, - 50.8390369 - ], - [ - 4.3477213, - 50.8390369 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296497 - } - }, - { - "id": 88296486, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4179979, - 50.8162071 - ], - [ - 4.4179979, - 50.8162071 - ], - [ - 4.4179979, - 50.8162071 - ], - [ - 4.4179979, - 50.8162071 - ], - [ - 4.4179979, - 50.8162071 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296486 - } - }, - { - "id": 88296477, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3725157, - 50.8566374 - ], - [ - 4.3725157, - 50.8566374 - ], - [ - 4.3725157, - 50.8566374 - ], - [ - 4.3725157, - 50.8566374 - ], - [ - 4.3725157, - 50.8566374 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296477 - } - }, - { - "id": 88296474, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3723431, - 50.856511 - ], - [ - 4.3723431, - 50.856511 - ], - [ - 4.3723431, - 50.856511 - ], - [ - 4.3723431, - 50.856511 - ], - [ - 4.3723431, - 50.856511 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296474 - } - }, - { - "id": 88296470, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3395138, - 50.8032752 - ], - [ - 4.3395138, - 50.8032752 - ], - [ - 4.3395138, - 50.8032752 - ], - [ - 4.3395138, - 50.8032752 - ], - [ - 4.3395138, - 50.8032752 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296470 - } - }, - { - "id": 88296459, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4195831, - 50.7984455 - ], - [ - 4.4195831, - 50.7984455 - ], - [ - 4.4195831, - 50.7984455 - ], - [ - 4.4195831, - 50.7984455 - ], - [ - 4.4195831, - 50.7984455 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "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, - "metadata": {}, - "id": 88296459 - } - }, - { - "id": 88296455, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3969636, - 50.8700031 - ], - [ - 4.3969636, - 50.8700031 - ], - [ - 4.3969636, - 50.8700031 - ], - [ - 4.3969636, - 50.8700031 - ], - [ - 4.3969636, - 50.8700031 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88296455 - } - }, - { - "id": 88296454, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3512833, - 50.8706871 - ], - [ - 4.3517339, - 50.8706871 - ], - [ - 4.3517339, - 50.8709327 - ], - [ - 4.3512833, - 50.8709327 - ], - [ - 4.3512833, - 50.8706871 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296454 - } - }, - { - "id": 88296441, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3395138, - 50.8032752 - ], - [ - 4.3395138, - 50.8032752 - ], - [ - 4.3395138, - 50.8032752 - ], - [ - 4.3395138, - 50.8032752 - ], - [ - 4.3395138, - 50.8032752 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296441 - } - }, - { - "id": 88296431, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4195831, - 50.7984455 - ], - [ - 4.4195831, - 50.7984455 - ], - [ - 4.4195831, - 50.7984455 - ], - [ - 4.4195831, - 50.7984455 - ], - [ - 4.4195831, - 50.7984455 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "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, - "metadata": {}, - "id": 88296431 - } - }, - { - "id": 88296425, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4195831, - 50.7984455 - ], - [ - 4.4195831, - 50.7984455 - ], - [ - 4.4195831, - 50.7984455 - ], - [ - 4.4195831, - 50.7984455 - ], - [ - 4.4195831, - 50.7984455 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "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, - "metadata": {}, - "id": 88296425 - } - }, - { - "id": 88296424, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3395138, - 50.8032752 - ], - [ - 4.3395138, - 50.8032752 - ], - [ - 4.3395138, - 50.8032752 - ], - [ - 4.3395138, - 50.8032752 - ], - [ - 4.3395138, - 50.8032752 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296424 - } - }, - { - "id": 88296413, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4200525, - 50.8176306 - ], - [ - 4.4200525, - 50.8176306 - ], - [ - 4.4200525, - 50.8176306 - ], - [ - 4.4200525, - 50.8176306 - ], - [ - 4.4200525, - 50.8176306 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296413 - } - }, - { - "id": 88296406, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3483034, - 50.8509971 - ], - [ - 4.3483034, - 50.8509971 - ], - [ - 4.3483034, - 50.8509971 - ], - [ - 4.3483034, - 50.8509971 - ], - [ - 4.3483034, - 50.8509971 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296406 - } - }, - { - "id": 88296391, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4256181, - 50.835113 - ], - [ - 4.4256181, - 50.835113 - ], - [ - 4.4256181, - 50.835113 - ], - [ - 4.4256181, - 50.835113 - ], - [ - 4.4256181, - 50.835113 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296391 - } - }, - { - "id": 88296390, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3715975, - 50.8550379 - ], - [ - 4.3715975, - 50.8550379 - ], - [ - 4.3715975, - 50.8550379 - ], - [ - 4.3715975, - 50.8550379 - ], - [ - 4.3715975, - 50.8550379 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296390 - } - }, - { - "id": 88296387, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4200525, - 50.8176306 - ], - [ - 4.4200525, - 50.8176306 - ], - [ - 4.4200525, - 50.8176306 - ], - [ - 4.4200525, - 50.8176306 - ], - [ - 4.4200525, - 50.8176306 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296387 - } - }, - { - "id": 88296385, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3393072, - 50.8035633 - ], - [ - 4.3393072, - 50.8035633 - ], - [ - 4.3393072, - 50.8035633 - ], - [ - 4.3393072, - 50.8035633 - ], - [ - 4.3393072, - 50.8035633 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296385 - } - }, - { - "id": 88296380, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3475497, - 50.8389624 - ], - [ - 4.3475497, - 50.8389624 - ], - [ - 4.3475497, - 50.8389624 - ], - [ - 4.3475497, - 50.8389624 - ], - [ - 4.3475497, - 50.8389624 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296380 - } - }, - { - "id": 88296379, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3393072, - 50.8035633 - ], - [ - 4.3393072, - 50.8035633 - ], - [ - 4.3393072, - 50.8035633 - ], - [ - 4.3393072, - 50.8035633 - ], - [ - 4.3393072, - 50.8035633 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296379 - } - }, - { - "id": 88296363, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4206452, - 50.8175069 - ], - [ - 4.4206452, - 50.8175069 - ], - [ - 4.4206452, - 50.8175069 - ], - [ - 4.4206452, - 50.8175069 - ], - [ - 4.4206452, - 50.8175069 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296363 - } - }, - { - "id": 88296347, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3469837, - 50.8391927 - ], - [ - 4.3469837, - 50.8391927 - ], - [ - 4.3469837, - 50.8391927 - ], - [ - 4.3469837, - 50.8391927 - ], - [ - 4.3469837, - 50.8391927 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296347 - } - }, - { - "id": 88296343, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4031884, - 50.8672947 - ], - [ - 4.4032447, - 50.8672947 - ], - [ - 4.4032447, - 50.8674166 - ], - [ - 4.4031884, - 50.8674166 - ], - [ - 4.4031884, - 50.8672947 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88296343 - } - }, - { - "id": 88296341, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3714267, - 50.8547427 - ], - [ - 4.3714267, - 50.8547427 - ], - [ - 4.3714267, - 50.8547427 - ], - [ - 4.3714267, - 50.8547427 - ], - [ - 4.3714267, - 50.8547427 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296341 - } - }, - { - "id": 88296332, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3713355, - 50.8547681 - ], - [ - 4.3713355, - 50.8547681 - ], - [ - 4.3713355, - 50.8547681 - ], - [ - 4.3713355, - 50.8547681 - ], - [ - 4.3713355, - 50.8547681 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296332 - } - }, - { - "id": 88296329, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3398196, - 50.8038362 - ], - [ - 4.3398196, - 50.8038362 - ], - [ - 4.3398196, - 50.8038362 - ], - [ - 4.3398196, - 50.8038362 - ], - [ - 4.3398196, - 50.8038362 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296329 - } - }, - { - "id": 88296324, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4206452, - 50.8175069 - ], - [ - 4.4206452, - 50.8175069 - ], - [ - 4.4206452, - 50.8175069 - ], - [ - 4.4206452, - 50.8175069 - ], - [ - 4.4206452, - 50.8175069 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296324 - } - }, - { - "id": 88296319, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4267258, - 50.8371728 - ], - [ - 4.4267258, - 50.8371728 - ], - [ - 4.4267258, - 50.8371728 - ], - [ - 4.4267258, - 50.8371728 - ], - [ - 4.4267258, - 50.8371728 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296319 - } - }, - { - "id": 88296298, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.346922, - 50.8392351 - ], - [ - 4.346922, - 50.8392351 - ], - [ - 4.346922, - 50.8392351 - ], - [ - 4.346922, - 50.8392351 - ], - [ - 4.346922, - 50.8392351 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88296298 - } - }, - { - "id": 88296282, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3398196, - 50.8038362 - ], - [ - 4.3398196, - 50.8038362 - ], - [ - 4.3398196, - 50.8038362 - ], - [ - 4.3398196, - 50.8038362 - ], - [ - 4.3398196, - 50.8038362 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296282 - } - }, - { - "id": 88296281, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4191888, - 50.7987507 - ], - [ - 4.4191888, - 50.7987507 - ], - [ - 4.4191888, - 50.7987507 - ], - [ - 4.4191888, - 50.7987507 - ], - [ - 4.4191888, - 50.7987507 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296281 - } - }, - { - "id": 88296258, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3705273, - 50.8539395 - ], - [ - 4.3705273, - 50.8539395 - ], - [ - 4.3705273, - 50.8539395 - ], - [ - 4.3705273, - 50.8539395 - ], - [ - 4.3705273, - 50.8539395 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296258 - } - }, - { - "id": 88296231, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3961808, - 50.8709155 - ], - [ - 4.3962801, - 50.8709155 - ], - [ - 4.3962801, - 50.8709443 - ], - [ - 4.3961808, - 50.8709443 - ], - [ - 4.3961808, - 50.8709155 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88296231 - } - }, - { - "id": 88296230, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4272448, - 50.8369619 - ], - [ - 4.4272448, - 50.8369619 - ], - [ - 4.4272448, - 50.8369619 - ], - [ - 4.4272448, - 50.8369619 - ], - [ - 4.4272448, - 50.8369619 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296230 - } - }, - { - "id": 88296203, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3707696, - 50.8537149 - ], - [ - 4.3707696, - 50.8537149 - ], - [ - 4.3707696, - 50.8537149 - ], - [ - 4.3707696, - 50.8537149 - ], - [ - 4.3707696, - 50.8537149 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296203 - } - }, - { - "id": 88296181, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3479869, - 50.8397906 - ], - [ - 4.3479869, - 50.8397906 - ], - [ - 4.3479869, - 50.8397906 - ], - [ - 4.3479869, - 50.8397906 - ], - [ - 4.3479869, - 50.8397906 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88296181 - } - }, - { - "id": 88296180, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3707293, - 50.8536455 - ], - [ - 4.3707293, - 50.8536455 - ], - [ - 4.3707293, - 50.8536455 - ], - [ - 4.3707293, - 50.8536455 - ], - [ - 4.3707293, - 50.8536455 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296180 - } - }, - { - "id": 88296178, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4190627, - 50.7984523 - ], - [ - 4.4190627, - 50.7984523 - ], - [ - 4.4190627, - 50.7984523 - ], - [ - 4.4190627, - 50.7984523 - ], - [ - 4.4190627, - 50.7984523 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296178 - } - }, - { - "id": 88296174, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4277357, - 50.8372143 - ], - [ - 4.42802, - 50.8372143 - ], - [ - 4.42802, - 50.8372363 - ], - [ - 4.4277357, - 50.8372363 - ], - [ - 4.4277357, - 50.8372143 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296174 - } - }, - { - "id": 88296172, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4190627, - 50.7984523 - ], - [ - 4.4190627, - 50.7984523 - ], - [ - 4.4190627, - 50.7984523 - ], - [ - 4.4190627, - 50.7984523 - ], - [ - 4.4190627, - 50.7984523 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296172 - } - }, - { - "id": 88296165, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4045189, - 50.866963 - ], - [ - 4.4048216, - 50.866963 - ], - [ - 4.4048216, - 50.8670036 - ], - [ - 4.4045189, - 50.8670036 - ], - [ - 4.4045189, - 50.866963 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88296165 - } - }, - { - "id": 88296156, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3419573, - 50.8029921 - ], - [ - 4.3419573, - 50.8029921 - ], - [ - 4.3419573, - 50.8029921 - ], - [ - 4.3419573, - 50.8029921 - ], - [ - 4.3419573, - 50.8029921 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296156 - } - }, - { - "id": 88296155, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3479332, - 50.8398872 - ], - [ - 4.3479332, - 50.8398872 - ], - [ - 4.3479332, - 50.8398872 - ], - [ - 4.3479332, - 50.8398872 - ], - [ - 4.3479332, - 50.8398872 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296155 - } - }, - { - "id": 88296143, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3514442, - 50.8717876 - ], - [ - 4.3519968, - 50.8717876 - ], - [ - 4.3519968, - 50.8721957 - ], - [ - 4.3514442, - 50.8721957 - ], - [ - 4.3514442, - 50.8717876 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88296143 - } - }, - { - "id": 88296126, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3479332, - 50.8398872 - ], - [ - 4.3479332, - 50.8398872 - ], - [ - 4.3479332, - 50.8398872 - ], - [ - 4.3479332, - 50.8398872 - ], - [ - 4.3479332, - 50.8398872 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296126 - } - }, - { - "id": 88296098, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3480727, - 50.8398855 - ], - [ - 4.3480727, - 50.8398855 - ], - [ - 4.3480727, - 50.8398855 - ], - [ - 4.3480727, - 50.8398855 - ], - [ - 4.3480727, - 50.8398855 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296098 - } - }, - { - "id": 88296094, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4186569, - 50.7983248 - ], - [ - 4.4186569, - 50.7983248 - ], - [ - 4.4186569, - 50.7983248 - ], - [ - 4.4186569, - 50.7983248 - ], - [ - 4.4186569, - 50.7983248 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296094 - } - }, - { - "id": 88296073, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4295596, - 50.8369196 - ], - [ - 4.4295596, - 50.8369196 - ], - [ - 4.4295596, - 50.8369196 - ], - [ - 4.4295596, - 50.8369196 - ], - [ - 4.4295596, - 50.8369196 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296073 - } - }, - { - "id": 88296050, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.369587, - 50.8525395 - ], - [ - 4.369587, - 50.8525395 - ], - [ - 4.369587, - 50.8525395 - ], - [ - 4.369587, - 50.8525395 - ], - [ - 4.369587, - 50.8525395 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296050 - } - }, - { - "id": 88296036, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4038954, - 50.8660834 - ], - [ - 4.4038954, - 50.8660834 - ], - [ - 4.4038954, - 50.8660834 - ], - [ - 4.4038954, - 50.8660834 - ], - [ - 4.4038954, - 50.8660834 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296036 - } - }, - { - "id": 88296008, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4303213, - 50.8369975 - ], - [ - 4.4309744, - 50.8369975 - ], - [ - 4.4309744, - 50.8371449 - ], - [ - 4.4303213, - 50.8371449 - ], - [ - 4.4303213, - 50.8369975 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296008 - } - }, - { - "id": 88296006, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4183077, - 50.7982302 - ], - [ - 4.4183077, - 50.7982302 - ], - [ - 4.4183077, - 50.7982302 - ], - [ - 4.4183077, - 50.7982302 - ], - [ - 4.4183077, - 50.7982302 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88296006 - } - }, - { - "id": 88295987, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.352847, - 50.8500183 - ], - [ - 4.352847, - 50.8500183 - ], - [ - 4.352847, - 50.8500183 - ], - [ - 4.352847, - 50.8500183 - ], - [ - 4.352847, - 50.8500183 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295987 - } - }, - { - "id": 88295944, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.352847, - 50.8500183 - ], - [ - 4.352847, - 50.8500183 - ], - [ - 4.352847, - 50.8500183 - ], - [ - 4.352847, - 50.8500183 - ], - [ - 4.352847, - 50.8500183 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295944 - } - }, - { - "id": 88295933, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3698978, - 50.852367 - ], - [ - 4.3698978, - 50.852367 - ], - [ - 4.3698978, - 50.852367 - ], - [ - 4.3698978, - 50.852367 - ], - [ - 4.3698978, - 50.852367 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295933 - } - }, - { - "id": 88295908, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4031173, - 50.8639462 - ], - [ - 4.4031173, - 50.8639462 - ], - [ - 4.4031173, - 50.8639462 - ], - [ - 4.4031173, - 50.8639462 - ], - [ - 4.4031173, - 50.8639462 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295908 - } - }, - { - "id": 88295895, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4031504, - 50.8637262 - ], - [ - 4.4031504, - 50.8637262 - ], - [ - 4.4031504, - 50.8637262 - ], - [ - 4.4031504, - 50.8637262 - ], - [ - 4.4031504, - 50.8637262 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295895 - } - }, - { - "id": 88295875, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4174749, - 50.7982879 - ], - [ - 4.4174749, - 50.7982879 - ], - [ - 4.4174749, - 50.7982879 - ], - [ - 4.4174749, - 50.7982879 - ], - [ - 4.4174749, - 50.7982879 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295875 - } - }, - { - "id": 88295863, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.354915, - 50.8044109 - ], - [ - 4.354915, - 50.8044109 - ], - [ - 4.354915, - 50.8044109 - ], - [ - 4.354915, - 50.8044109 - ], - [ - 4.354915, - 50.8044109 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295863 - } - }, - { - "id": 88295840, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4167158, - 50.7980624 - ], - [ - 4.4167158, - 50.7980624 - ], - [ - 4.4167158, - 50.7980624 - ], - [ - 4.4167158, - 50.7980624 - ], - [ - 4.4167158, - 50.7980624 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295840 - } - }, - { - "id": 88295839, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4029117, - 50.8635145 - ], - [ - 4.4031584, - 50.8635145 - ], - [ - 4.4031584, - 50.8635535 - ], - [ - 4.4029117, - 50.8635535 - ], - [ - 4.4029117, - 50.8635145 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295839 - } - }, - { - "id": 88295833, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3691173, - 50.8526329 - ], - [ - 4.3691173, - 50.8526329 - ], - [ - 4.3691173, - 50.8526329 - ], - [ - 4.3691173, - 50.8526329 - ], - [ - 4.3691173, - 50.8526329 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295833 - } - }, - { - "id": 88295825, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4335762, - 50.8372092 - ], - [ - 4.4335762, - 50.8372092 - ], - [ - 4.4335762, - 50.8372092 - ], - [ - 4.4335762, - 50.8372092 - ], - [ - 4.4335762, - 50.8372092 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295825 - } - }, - { - "id": 88295820, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.330126, - 50.852113 - ], - [ - 4.330126, - 50.852113 - ], - [ - 4.330126, - 50.852113 - ], - [ - 4.330126, - 50.852113 - ], - [ - 4.330126, - 50.852113 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295820 - } - }, - { - "id": 88295795, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3494326, - 50.8408086 - ], - [ - 4.3494326, - 50.8408086 - ], - [ - 4.3494326, - 50.8408086 - ], - [ - 4.3494326, - 50.8408086 - ], - [ - 4.3494326, - 50.8408086 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295795 - } - }, - { - "id": 88295765, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4032074, - 50.8632851 - ], - [ - 4.4032074, - 50.8632851 - ], - [ - 4.4032074, - 50.8632851 - ], - [ - 4.4032074, - 50.8632851 - ], - [ - 4.4032074, - 50.8632851 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295765 - } - }, - { - "id": 88295749, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4167158, - 50.7980624 - ], - [ - 4.4167158, - 50.7980624 - ], - [ - 4.4167158, - 50.7980624 - ], - [ - 4.4167158, - 50.7980624 - ], - [ - 4.4167158, - 50.7980624 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295749 - } - }, - { - "id": 88295743, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4034615, - 50.8630301 - ], - [ - 4.4034615, - 50.8630301 - ], - [ - 4.4034615, - 50.8630301 - ], - [ - 4.4034615, - 50.8630301 - ], - [ - 4.4034615, - 50.8630301 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295743 - } - }, - { - "id": 88295741, - "type": "Feature", - "geometry": null, - "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:55:34Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88295741 - } - }, - { - "id": 88295676, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4358239, - 50.8402607 - ], - [ - 4.4358239, - 50.8402607 - ], - [ - 4.4358239, - 50.8402607 - ], - [ - 4.4358239, - 50.8402607 - ], - [ - 4.4358239, - 50.8402607 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295676 - } - }, - { - "id": 88295646, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3482068, - 50.8723833 - ], - [ - 4.3482068, - 50.8723833 - ], - [ - 4.3482068, - 50.8723833 - ], - [ - 4.3482068, - 50.8723833 - ], - [ - 4.3482068, - 50.8723833 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295646 - } - }, - { - "id": 88295618, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.348121, - 50.872292 - ], - [ - 4.348121, - 50.872292 - ], - [ - 4.348121, - 50.872292 - ], - [ - 4.348121, - 50.872292 - ], - [ - 4.348121, - 50.872292 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295618 - } - }, - { - "id": 88295616, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4353062, - 50.8408941 - ], - [ - 4.435392, - 50.8408941 - ], - [ - 4.435392, - 50.8409128 - ], - [ - 4.4353062, - 50.8409128 - ], - [ - 4.4353062, - 50.8408941 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295616 - } - }, - { - "id": 88295615, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3961808, - 50.8709155 - ], - [ - 4.3961808, - 50.8709155 - ], - [ - 4.3961808, - 50.8709155 - ], - [ - 4.3961808, - 50.8709155 - ], - [ - 4.3961808, - 50.8709155 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295615 - } - }, - { - "id": 88295583, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4020621, - 50.8605864 - ], - [ - 4.4020621, - 50.8605864 - ], - [ - 4.4020621, - 50.8605864 - ], - [ - 4.4020621, - 50.8605864 - ], - [ - 4.4020621, - 50.8605864 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295583 - } - }, - { - "id": 88295580, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.348121, - 50.872292 - ], - [ - 4.348121, - 50.872292 - ], - [ - 4.348121, - 50.872292 - ], - [ - 4.348121, - 50.872292 - ], - [ - 4.348121, - 50.872292 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295580 - } - }, - { - "id": 88295578, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3961808, - 50.8709155 - ], - [ - 4.3961808, - 50.8709155 - ], - [ - 4.3961808, - 50.8709155 - ], - [ - 4.3961808, - 50.8709155 - ], - [ - 4.3961808, - 50.8709155 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295578 - } - }, - { - "id": 88295537, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4017757, - 50.8601498 - ], - [ - 4.4017757, - 50.8601498 - ], - [ - 4.4017757, - 50.8601498 - ], - [ - 4.4017757, - 50.8601498 - ], - [ - 4.4017757, - 50.8601498 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295537 - } - }, - { - "id": 88295526, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3656573, - 50.8523755 - ], - [ - 4.3656573, - 50.8523755 - ], - [ - 4.3656573, - 50.8523755 - ], - [ - 4.3656573, - 50.8523755 - ], - [ - 4.3656573, - 50.8523755 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295526 - } - }, - { - "id": 88295517, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3656868, - 50.8522857 - ], - [ - 4.3656868, - 50.8522857 - ], - [ - 4.3656868, - 50.8522857 - ], - [ - 4.3656868, - 50.8522857 - ], - [ - 4.3656868, - 50.8522857 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295517 - } - }, - { - "id": 88295496, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4351077, - 50.841398 - ], - [ - 4.4351801, - 50.841398 - ], - [ - 4.4351801, - 50.8415606 - ], - [ - 4.4351077, - 50.8415606 - ], - [ - 4.4351077, - 50.841398 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295496 - } - }, - { - "id": 88295487, - "type": "Feature", - "geometry": null, - "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:50:15Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88295487 - } - }, - { - "id": 88295473, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3359813, - 50.8496661 - ], - [ - 4.3359813, - 50.8496661 - ], - [ - 4.3359813, - 50.8496661 - ], - [ - 4.3359813, - 50.8496661 - ], - [ - 4.3359813, - 50.8496661 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295473 - } - }, - { - "id": 88295443, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3995083, - 50.8581958 - ], - [ - 4.3995083, - 50.8581958 - ], - [ - 4.3995083, - 50.8581958 - ], - [ - 4.3995083, - 50.8581958 - ], - [ - 4.3995083, - 50.8581958 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295443 - } - }, - { - "id": 88295435, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.364904, - 50.8518379 - ], - [ - 4.364904, - 50.8518379 - ], - [ - 4.364904, - 50.8518379 - ], - [ - 4.364904, - 50.8518379 - ], - [ - 4.364904, - 50.8518379 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295435 - } - }, - { - "id": 88295432, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4353947, - 50.8436032 - ], - [ - 4.4353947, - 50.8436032 - ], - [ - 4.4353947, - 50.8436032 - ], - [ - 4.4353947, - 50.8436032 - ], - [ - 4.4353947, - 50.8436032 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295432 - } - }, - { - "id": 88295402, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3479091, - 50.871076 - ], - [ - 4.3479091, - 50.871076 - ], - [ - 4.3479091, - 50.871076 - ], - [ - 4.3479091, - 50.871076 - ], - [ - 4.3479091, - 50.871076 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295402 - } - }, - { - "id": 88295388, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4355791, - 50.8440816 - ], - [ - 4.4356978, - 50.8440816 - ], - [ - 4.4356978, - 50.8440994 - ], - [ - 4.4355791, - 50.8440994 - ], - [ - 4.4355791, - 50.8440816 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295388 - } - }, - { - "id": 88295366, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3501823, - 50.8416436 - ], - [ - 4.3501823, - 50.8416436 - ], - [ - 4.3501823, - 50.8416436 - ], - [ - 4.3501823, - 50.8416436 - ], - [ - 4.3501823, - 50.8416436 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295366 - } - }, - { - "id": 88295364, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3980068, - 50.8572745 - ], - [ - 4.3980068, - 50.8572745 - ], - [ - 4.3980068, - 50.8572745 - ], - [ - 4.3980068, - 50.8572745 - ], - [ - 4.3980068, - 50.8572745 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295364 - } - }, - { - "id": 88295347, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3960145, - 50.8684696 - ], - [ - 4.3960145, - 50.8684696 - ], - [ - 4.3960145, - 50.8684696 - ], - [ - 4.3960145, - 50.8684696 - ], - [ - 4.3960145, - 50.8684696 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295347 - } - }, - { - "id": 88295294, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4359151, - 50.8444957 - ], - [ - 4.4359741, - 50.8444957 - ], - [ - 4.4359741, - 50.8446245 - ], - [ - 4.4359151, - 50.8446245 - ], - [ - 4.4359151, - 50.8444957 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295294 - } - }, - { - "id": 88295245, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3478179, - 50.8715415 - ], - [ - 4.3478179, - 50.8715415 - ], - [ - 4.3478179, - 50.8715415 - ], - [ - 4.3478179, - 50.8715415 - ], - [ - 4.3478179, - 50.8715415 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295245 - } - }, - { - "id": 88295235, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3942469, - 50.8687133 - ], - [ - 4.3942469, - 50.8687133 - ], - [ - 4.3942469, - 50.8687133 - ], - [ - 4.3942469, - 50.8687133 - ], - [ - 4.3942469, - 50.8687133 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295235 - } - }, - { - "id": 88295233, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.394479, - 50.8574708 - ], - [ - 4.3945838, - 50.8574708 - ], - [ - 4.3945838, - 50.8575409 - ], - [ - 4.394479, - 50.8575409 - ], - [ - 4.394479, - 50.8574708 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295233 - } - }, - { - "id": 88295190, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3644374, - 50.85094 - ], - [ - 4.3644374, - 50.85094 - ], - [ - 4.3644374, - 50.85094 - ], - [ - 4.3644374, - 50.85094 - ], - [ - 4.3644374, - 50.85094 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295190 - } - }, - { - "id": 88295174, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3636188, - 50.8504721 - ], - [ - 4.3636188, - 50.8504721 - ], - [ - 4.3636188, - 50.8504721 - ], - [ - 4.3636188, - 50.8504721 - ], - [ - 4.3636188, - 50.8504721 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295174 - } - }, - { - "id": 88295163, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.435439, - 50.8447684 - ], - [ - 4.4359942, - 50.8447684 - ], - [ - 4.4359942, - 50.8450191 - ], - [ - 4.435439, - 50.8450191 - ], - [ - 4.435439, - 50.8447684 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295163 - } - }, - { - "id": 88295135, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3389371, - 50.8501267 - ], - [ - 4.3389371, - 50.8501267 - ], - [ - 4.3389371, - 50.8501267 - ], - [ - 4.3389371, - 50.8501267 - ], - [ - 4.3389371, - 50.8501267 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295135 - } - }, - { - "id": 88295127, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3938038, - 50.8580383 - ], - [ - 4.3938038, - 50.8580383 - ], - [ - 4.3938038, - 50.8580383 - ], - [ - 4.3938038, - 50.8580383 - ], - [ - 4.3938038, - 50.8580383 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295127 - } - }, - { - "id": 88295122, - "type": "Feature", - "geometry": null, - "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:42:02Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88295122 - } - }, - { - "id": 88295121, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3587023, - 50.8019784 - ], - [ - 4.3587023, - 50.8019784 - ], - [ - 4.3587023, - 50.8019784 - ], - [ - 4.3587023, - 50.8019784 - ], - [ - 4.3587023, - 50.8019784 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295121 - } - }, - { - "id": 88295119, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3930185, - 50.8678906 - ], - [ - 4.3930185, - 50.8678906 - ], - [ - 4.3930185, - 50.8678906 - ], - [ - 4.3930185, - 50.8678906 - ], - [ - 4.3930185, - 50.8678906 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295119 - } - }, - { - "id": 88295113, - "type": "Feature", - "geometry": null, - "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:41:36Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88295113 - } - }, - { - "id": 88295093, - "type": "Feature", - "geometry": null, - "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:41:07Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88295093 - } - }, - { - "id": 88295078, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3925072, - 50.8573083 - ], - [ - 4.3929686, - 50.8573083 - ], - [ - 4.3929686, - 50.8582395 - ], - [ - 4.3925072, - 50.8582395 - ], - [ - 4.3925072, - 50.8573083 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295078 - } - }, - { - "id": 88295070, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3636224, - 50.8496825 - ], - [ - 4.3636224, - 50.8496825 - ], - [ - 4.3636224, - 50.8496825 - ], - [ - 4.3636224, - 50.8496825 - ], - [ - 4.3636224, - 50.8496825 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295070 - } - }, - { - "id": 88295046, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4366325, - 50.8468668 - ], - [ - 4.4366325, - 50.8468668 - ], - [ - 4.4366325, - 50.8468668 - ], - [ - 4.4366325, - 50.8468668 - ], - [ - 4.4366325, - 50.8468668 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295046 - } - }, - { - "id": 88295040, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3477669, - 50.8713689 - ], - [ - 4.3477669, - 50.8713689 - ], - [ - 4.3477669, - 50.8713689 - ], - [ - 4.3477669, - 50.8713689 - ], - [ - 4.3477669, - 50.8713689 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295040 - } - }, - { - "id": 88295035, - "type": "Feature", - "geometry": null, - "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:39:52Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88295035 - } - }, - { - "id": 88295010, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3636224, - 50.8496825 - ], - [ - 4.3636224, - 50.8496825 - ], - [ - 4.3636224, - 50.8496825 - ], - [ - 4.3636224, - 50.8496825 - ], - [ - 4.3636224, - 50.8496825 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88295010 - } - }, - { - "id": 88294999, - "type": "Feature", - "geometry": null, - "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:39:09Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88294999 - } - }, - { - "id": 88294985, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3477669, - 50.8713689 - ], - [ - 4.3477669, - 50.8713689 - ], - [ - 4.3477669, - 50.8713689 - ], - [ - 4.3477669, - 50.8713689 - ], - [ - 4.3477669, - 50.8713689 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294985 - } - }, - { - "id": 88294938, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3930212, - 50.8663028 - ], - [ - 4.3930936, - 50.8663028 - ], - [ - 4.3930936, - 50.8664602 - ], - [ - 4.3930212, - 50.8664602 - ], - [ - 4.3930212, - 50.8663028 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294938 - } - }, - { - "id": 88294923, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3386018, - 50.8496491 - ], - [ - 4.3386018, - 50.8496491 - ], - [ - 4.3386018, - 50.8496491 - ], - [ - 4.3386018, - 50.8496491 - ], - [ - 4.3386018, - 50.8496491 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294923 - } - }, - { - "id": 88294920, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3903194, - 50.8572304 - ], - [ - 4.3906966, - 50.8572304 - ], - [ - 4.3906966, - 50.8577078 - ], - [ - 4.3903194, - 50.8577078 - ], - [ - 4.3903194, - 50.8572304 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294920 - } - }, - { - "id": 88294914, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.363305, - 50.8483198 - ], - [ - 4.363305, - 50.8483198 - ], - [ - 4.363305, - 50.8483198 - ], - [ - 4.363305, - 50.8483198 - ], - [ - 4.363305, - 50.8483198 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294914 - } - }, - { - "id": 88294909, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3584784, - 50.8054322 - ], - [ - 4.3584784, - 50.8054322 - ], - [ - 4.3584784, - 50.8054322 - ], - [ - 4.3584784, - 50.8054322 - ], - [ - 4.3584784, - 50.8054322 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294909 - } - }, - { - "id": 88294895, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3386018, - 50.8496491 - ], - [ - 4.3386018, - 50.8496491 - ], - [ - 4.3386018, - 50.8496491 - ], - [ - 4.3386018, - 50.8496491 - ], - [ - 4.3386018, - 50.8496491 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294895 - } - }, - { - "id": 88294893, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.363305, - 50.8483198 - ], - [ - 4.363305, - 50.8483198 - ], - [ - 4.363305, - 50.8483198 - ], - [ - 4.363305, - 50.8483198 - ], - [ - 4.363305, - 50.8483198 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294893 - } - }, - { - "id": 88294847, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.357903, - 50.8060347 - ], - [ - 4.357903, - 50.8060347 - ], - [ - 4.357903, - 50.8060347 - ], - [ - 4.357903, - 50.8060347 - ], - [ - 4.357903, - 50.8060347 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294847 - } - }, - { - "id": 88294838, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4294778, - 50.8485916 - ], - [ - 4.4294778, - 50.8485916 - ], - [ - 4.4294778, - 50.8485916 - ], - [ - 4.4294778, - 50.8485916 - ], - [ - 4.4294778, - 50.8485916 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294838 - } - }, - { - "id": 88294795, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3630689, - 50.8483497 - ], - [ - 4.3630689, - 50.8483497 - ], - [ - 4.3630689, - 50.8483497 - ], - [ - 4.3630689, - 50.8483497 - ], - [ - 4.3630689, - 50.8483497 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294795 - } - }, - { - "id": 88294779, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4291076, - 50.8484062 - ], - [ - 4.4293168, - 50.8484062 - ], - [ - 4.4293168, - 50.848722 - ], - [ - 4.4291076, - 50.848722 - ], - [ - 4.4291076, - 50.8484062 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294779 - } - }, - { - "id": 88294774, - "type": "Feature", - "geometry": null, - "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:34:03Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88294774 - } - }, - { - "id": 88294707, - "type": "Feature", - "geometry": null, - "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:32:29Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88294707 - } - }, - { - "id": 88294704, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4254759, - 50.8482622 - ], - [ - 4.4254759, - 50.8482622 - ], - [ - 4.4254759, - 50.8482622 - ], - [ - 4.4254759, - 50.8482622 - ], - [ - 4.4254759, - 50.8482622 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294704 - } - }, - { - "id": 88294698, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3630189, - 50.8483378 - ], - [ - 4.3630189, - 50.8483378 - ], - [ - 4.3630189, - 50.8483378 - ], - [ - 4.3630189, - 50.8483378 - ], - [ - 4.3630189, - 50.8483378 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294698 - } - }, - { - "id": 88294695, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3837246, - 50.8657509 - ], - [ - 4.3837246, - 50.8657509 - ], - [ - 4.3837246, - 50.8657509 - ], - [ - 4.3837246, - 50.8657509 - ], - [ - 4.3837246, - 50.8657509 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294695 - } - }, - { - "id": 88294673, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3519843, - 50.8440983 - ], - [ - 4.3519843, - 50.8440983 - ], - [ - 4.3519843, - 50.8440983 - ], - [ - 4.3519843, - 50.8440983 - ], - [ - 4.3519843, - 50.8440983 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294673 - } - }, - { - "id": 88294664, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4163376, - 50.7981539 - ], - [ - 4.4163376, - 50.7981539 - ], - [ - 4.4163376, - 50.7981539 - ], - [ - 4.4163376, - 50.7981539 - ], - [ - 4.4163376, - 50.7981539 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294664 - } - }, - { - "id": 88294652, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.425154, - 50.8476441 - ], - [ - 4.425154, - 50.8476441 - ], - [ - 4.425154, - 50.8476441 - ], - [ - 4.425154, - 50.8476441 - ], - [ - 4.425154, - 50.8476441 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294652 - } - }, - { - "id": 88294650, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3519843, - 50.8440983 - ], - [ - 4.3519843, - 50.8440983 - ], - [ - 4.3519843, - 50.8440983 - ], - [ - 4.3519843, - 50.8440983 - ], - [ - 4.3519843, - 50.8440983 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294650 - } - }, - { - "id": 88294638, - "type": "Feature", - "geometry": null, - "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:30:51Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88294638 - } - }, - { - "id": 88294616, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4163376, - 50.7981539 - ], - [ - 4.4163376, - 50.7981539 - ], - [ - 4.4163376, - 50.7981539 - ], - [ - 4.4163376, - 50.7981539 - ], - [ - 4.4163376, - 50.7981539 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294616 - } - }, - { - "id": 88294597, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.382472, - 50.8661098 - ], - [ - 4.382472, - 50.8661098 - ], - [ - 4.382472, - 50.8661098 - ], - [ - 4.382472, - 50.8661098 - ], - [ - 4.382472, - 50.8661098 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294597 - } - }, - { - "id": 88294536, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4251259, - 50.8476458 - ], - [ - 4.4251259, - 50.8476458 - ], - [ - 4.4251259, - 50.8476458 - ], - [ - 4.4251259, - 50.8476458 - ], - [ - 4.4251259, - 50.8476458 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294536 - } - }, - { - "id": 88294510, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3830568, - 50.8686117 - ], - [ - 4.3830568, - 50.8686117 - ], - [ - 4.3830568, - 50.8686117 - ], - [ - 4.3830568, - 50.8686117 - ], - [ - 4.3830568, - 50.8686117 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294510 - } - }, - { - "id": 88294498, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4163537, - 50.7981472 - ], - [ - 4.4163537, - 50.7981472 - ], - [ - 4.4163537, - 50.7981472 - ], - [ - 4.4163537, - 50.7981472 - ], - [ - 4.4163537, - 50.7981472 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294498 - } - }, - { - "id": 88294449, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.388006, - 50.8595932 - ], - [ - 4.3881053, - 50.8595932 - ], - [ - 4.3881053, - 50.8596305 - ], - [ - 4.388006, - 50.8596305 - ], - [ - 4.388006, - 50.8595932 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294449 - } - }, - { - "id": 88294434, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4163537, - 50.7981472 - ], - [ - 4.4163537, - 50.7981472 - ], - [ - 4.4163537, - 50.7981472 - ], - [ - 4.4163537, - 50.7981472 - ], - [ - 4.4163537, - 50.7981472 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294434 - } - }, - { - "id": 88294416, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3630341, - 50.8097975 - ], - [ - 4.3630341, - 50.8097975 - ], - [ - 4.3630341, - 50.8097975 - ], - [ - 4.3630341, - 50.8097975 - ], - [ - 4.3630341, - 50.8097975 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294416 - } - }, - { - "id": 88294409, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3531743, - 50.8445076 - ], - [ - 4.3531743, - 50.8445076 - ], - [ - 4.3531743, - 50.8445076 - ], - [ - 4.3531743, - 50.8445076 - ], - [ - 4.3531743, - 50.8445076 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294409 - } - }, - { - "id": 88294377, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3531743, - 50.8445076 - ], - [ - 4.3531743, - 50.8445076 - ], - [ - 4.3531743, - 50.8445076 - ], - [ - 4.3531743, - 50.8445076 - ], - [ - 4.3531743, - 50.8445076 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294377 - } - }, - { - "id": 88294375, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3795002, - 50.8678415 - ], - [ - 4.3795002, - 50.8678415 - ], - [ - 4.3795002, - 50.8678415 - ], - [ - 4.3795002, - 50.8678415 - ], - [ - 4.3795002, - 50.8678415 - ] - ] - ] - }, - "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", - "metadata": {}, - "id": 88294375 - } - }, - { - "id": 88294371, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4192089, - 50.8000429 - ], - [ - 4.4192089, - 50.8000429 - ], - [ - 4.4192089, - 50.8000429 - ], - [ - 4.4192089, - 50.8000429 - ], - [ - 4.4192089, - 50.8000429 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294371 - } - }, - { - "id": 88294369, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4172643, - 50.8453019 - ], - [ - 4.4176814, - 50.8453019 - ], - [ - 4.4176814, - 50.8456067 - ], - [ - 4.4172643, - 50.8456067 - ], - [ - 4.4172643, - 50.8453019 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294369 - } - }, - { - "id": 88294357, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3574899, - 50.8100162 - ], - [ - 4.3574899, - 50.8100162 - ], - [ - 4.3574899, - 50.8100162 - ], - [ - 4.3574899, - 50.8100162 - ], - [ - 4.3574899, - 50.8100162 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294357 - } - }, - { - "id": 88294317, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3584609, - 50.8095602 - ], - [ - 4.3584609, - 50.8095602 - ], - [ - 4.3584609, - 50.8095602 - ], - [ - 4.3584609, - 50.8095602 - ], - [ - 4.3584609, - 50.8095602 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294317 - } - }, - { - "id": 88294294, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3833652, - 50.860705 - ], - [ - 4.3846272, - 50.860705 - ], - [ - 4.3846272, - 50.8610813 - ], - [ - 4.3833652, - 50.8610813 - ], - [ - 4.3833652, - 50.860705 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294294 - } - }, - { - "id": 88294275, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4173957, - 50.8462224 - ], - [ - 4.4173957, - 50.8462224 - ], - [ - 4.4173957, - 50.8462224 - ], - [ - 4.4173957, - 50.8462224 - ], - [ - 4.4173957, - 50.8462224 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294275 - } - }, - { - "id": 88294256, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3576133, - 50.808145 - ], - [ - 4.3576133, - 50.808145 - ], - [ - 4.3576133, - 50.808145 - ], - [ - 4.3576133, - 50.808145 - ], - [ - 4.3576133, - 50.808145 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294256 - } - }, - { - "id": 88294250, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3769896, - 50.8686574 - ], - [ - 4.379071, - 50.8686574 - ], - [ - 4.379071, - 50.8691517 - ], - [ - 4.3769896, - 50.8691517 - ], - [ - 4.3769896, - 50.8686574 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294250 - } - }, - { - "id": 88294237, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4174454, - 50.8460437 - ], - [ - 4.4175942, - 50.8460437 - ], - [ - 4.4175942, - 50.8461546 - ], - [ - 4.4174454, - 50.8461546 - ], - [ - 4.4174454, - 50.8460437 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294237 - } - }, - { - "id": 88294229, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4192089, - 50.8000429 - ], - [ - 4.4192089, - 50.8000429 - ], - [ - 4.4192089, - 50.8000429 - ], - [ - 4.4192089, - 50.8000429 - ], - [ - 4.4192089, - 50.8000429 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294229 - } - }, - { - "id": 88294188, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.383612, - 50.8595956 - ], - [ - 4.3848238, - 50.8595956 - ], - [ - 4.3848238, - 50.8607608 - ], - [ - 4.383612, - 50.8607608 - ], - [ - 4.383612, - 50.8595956 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294188 - } - }, - { - "id": 88294140, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4202295, - 50.8011579 - ], - [ - 4.4202295, - 50.8011579 - ], - [ - 4.4202295, - 50.8011579 - ], - [ - 4.4202295, - 50.8011579 - ], - [ - 4.4202295, - 50.8011579 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294140 - } - }, - { - "id": 88294113, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3739453, - 50.8677958 - ], - [ - 4.3744844, - 50.8677958 - ], - [ - 4.3744844, - 50.8682275 - ], - [ - 4.3739453, - 50.8682275 - ], - [ - 4.3739453, - 50.8677958 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294113 - } - }, - { - "id": 88294072, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3725714, - 50.8672439 - ], - [ - 4.3728217, - 50.8672439 - ], - [ - 4.3728217, - 50.8673736 - ], - [ - 4.3725714, - 50.8673736 - ], - [ - 4.3725714, - 50.8672439 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294072 - } - }, - { - "id": 88294054, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.383155, - 50.8592999 - ], - [ - 4.3832462, - 50.8592999 - ], - [ - 4.3832462, - 50.8594196 - ], - [ - 4.383155, - 50.8594196 - ], - [ - 4.383155, - 50.8592999 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294054 - } - }, - { - "id": 88294052, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4080979, - 50.8480251 - ], - [ - 4.4080979, - 50.8480251 - ], - [ - 4.4080979, - 50.8480251 - ], - [ - 4.4080979, - 50.8480251 - ], - [ - 4.4080979, - 50.8480251 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294052 - } - }, - { - "id": 88294000, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3722019, - 50.8670849 - ], - [ - 4.3728217, - 50.8670849 - ], - [ - 4.3728217, - 50.8673736 - ], - [ - 4.3722019, - 50.8673736 - ], - [ - 4.3722019, - 50.8670849 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88294000 - } - }, - { - "id": 88293988, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3838555, - 50.8585287 - ], - [ - 4.3838555, - 50.8585287 - ], - [ - 4.3838555, - 50.8585287 - ], - [ - 4.3838555, - 50.8585287 - ], - [ - 4.3838555, - 50.8585287 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88293988 - } - }, - { - "id": 88293861, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3850178, - 50.859431 - ], - [ - 4.3850178, - 50.859431 - ], - [ - 4.3850178, - 50.859431 - ], - [ - 4.3850178, - 50.859431 - ], - [ - 4.3850178, - 50.859431 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88293861 - } - }, - { - "id": 88293818, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.385824, - 50.8587364 - ], - [ - 4.385824, - 50.8587364 - ], - [ - 4.385824, - 50.8587364 - ], - [ - 4.385824, - 50.8587364 - ], - [ - 4.385824, - 50.8587364 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88293818 - } - }, - { - "id": 88293786, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.385824, - 50.8583618 - ], - [ - 4.3873103, - 50.8583618 - ], - [ - 4.3873103, - 50.8587364 - ], - [ - 4.385824, - 50.8587364 - ], - [ - 4.385824, - 50.8583618 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88293786 - } - }, - { - "id": 88293643, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3874128, - 50.8586755 - ], - [ - 4.3875684, - 50.8586755 - ], - [ - 4.3875684, - 50.8587162 - ], - [ - 4.3874128, - 50.8587162 - ], - [ - 4.3874128, - 50.8586755 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88293643 - } - }, - { - "id": 88293587, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3891958, - 50.8589216 - ], - [ - 4.389228, - 50.8589216 - ], - [ - 4.389228, - 50.8590181 - ], - [ - 4.3891958, - 50.8590181 - ], - [ - 4.3891958, - 50.8589216 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88293587 - } - }, - { - "id": 88293504, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3894533, - 50.859096 - ], - [ - 4.3894533, - 50.859096 - ], - [ - 4.3894533, - 50.859096 - ], - [ - 4.3894533, - 50.859096 - ], - [ - 4.3894533, - 50.859096 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88293504 - } - }, - { - "id": 88293492, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3576747, - 50.8454515 - ], - [ - 4.3576747, - 50.8454515 - ], - [ - 4.3576747, - 50.8454515 - ], - [ - 4.3576747, - 50.8454515 - ], - [ - 4.3576747, - 50.8454515 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88293492 - } - }, - { - "id": 88293452, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3894846, - 50.8589679 - ], - [ - 4.3895597, - 50.8589679 - ], - [ - 4.3895597, - 50.8590762 - ], - [ - 4.3894846, - 50.8590762 - ], - [ - 4.3894846, - 50.8589679 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88293452 - } - }, - { - "id": 88293375, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3888053, - 50.8580661 - ], - [ - 4.3889072, - 50.8580661 - ], - [ - 4.3889072, - 50.8580763 - ], - [ - 4.3888053, - 50.8580763 - ], - [ - 4.3888053, - 50.8580661 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88293375 - } - }, - { - "id": 88293294, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3888321, - 50.858223 - ], - [ - 4.3888321, - 50.858223 - ], - [ - 4.3888321, - 50.858223 - ], - [ - 4.3888321, - 50.858223 - ], - [ - 4.3888321, - 50.858223 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88293294 - } - }, - { - "id": 88293250, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3890279, - 50.8581823 - ], - [ - 4.3890279, - 50.8581823 - ], - [ - 4.3890279, - 50.8581823 - ], - [ - 4.3890279, - 50.8581823 - ], - [ - 4.3890279, - 50.8581823 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88293250 - } - }, - { - "id": 88292596, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3530723, - 50.8463519 - ], - [ - 4.3530723, - 50.8463519 - ], - [ - 4.3530723, - 50.8463519 - ], - [ - 4.3530723, - 50.8463519 - ], - [ - 4.3530723, - 50.8463519 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88292596 - } - }, - { - "id": 88292458, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3738112, - 50.8401918 - ], - [ - 4.3738112, - 50.8401918 - ], - [ - 4.3738112, - 50.8401918 - ], - [ - 4.3738112, - 50.8401918 - ], - [ - 4.3738112, - 50.8401918 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88292458 - } - }, - { - "id": 88287986, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4264566, - 51.1732721 - ], - [ - 4.4347993, - 51.1732721 - ], - [ - 4.4347993, - 51.1739878 - ], - [ - 4.4264566, - 51.1739878 - ], - [ - 4.4264566, - 51.1732721 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88287986 - } - }, - { - "id": 88287927, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4350225, - 51.172707 - ], - [ - 4.4447385, - 51.172707 - ], - [ - 4.4447385, - 51.1738802 - ], - [ - 4.4350225, - 51.1738802 - ], - [ - 4.4350225, - 51.172707 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88287927 - } - }, - { - "id": 88287853, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4350225, - 51.172707 - ], - [ - 4.4447385, - 51.172707 - ], - [ - 4.4447385, - 51.1738802 - ], - [ - 4.4350225, - 51.1738802 - ], - [ - 4.4350225, - 51.172707 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88287853 - } - }, - { - "id": 88287725, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3722596, - 51.0927378 - ], - [ - 3.396975, - 51.0927378 - ], - [ - 3.396975, - 51.1072427 - ], - [ - 3.3722596, - 51.1072427 - ], - [ - 3.3722596, - 51.0927378 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88287725 - } - }, - { - "id": 88287663, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3722596, - 51.0927378 - ], - [ - 3.396975, - 51.0927378 - ], - [ - 3.396975, - 51.1072427 - ], - [ - 3.3722596, - 51.1072427 - ], - [ - 3.3722596, - 51.0927378 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88287663 - } - }, - { - "id": 88287617, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3722596, - 51.0927378 - ], - [ - 3.396975, - 51.0927378 - ], - [ - 3.396975, - 51.1072427 - ], - [ - 3.3722596, - 51.1072427 - ], - [ - 3.3722596, - 51.0927378 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88287617 - } - }, - { - "id": 88287607, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4456649, - 51.1702691 - ], - [ - 4.4456649, - 51.1702691 - ], - [ - 4.4456649, - 51.1702691 - ], - [ - 4.4456649, - 51.1702691 - ], - [ - 4.4456649, - 51.1702691 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88287607 - } - }, - { - "id": 88287560, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3722596, - 51.0927378 - ], - [ - 3.396975, - 51.0927378 - ], - [ - 3.396975, - 51.1072427 - ], - [ - 3.3722596, - 51.1072427 - ], - [ - 3.3722596, - 51.0927378 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88287560 - } - }, - { - "id": 88287536, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4456649, - 51.1702691 - ], - [ - 4.4456649, - 51.1702691 - ], - [ - 4.4456649, - 51.1702691 - ], - [ - 4.4456649, - 51.1702691 - ], - [ - 4.4456649, - 51.1702691 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88287536 - } - }, - { - "id": 88287452, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3722596, - 51.0927378 - ], - [ - 3.396975, - 51.0927378 - ], - [ - 3.396975, - 51.1072427 - ], - [ - 3.3722596, - 51.1072427 - ], - [ - 3.3722596, - 51.0927378 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88287452 - } - }, - { - "id": 88263495, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4898528, - 51.079156 - ], - [ - 4.4918555, - 51.079156 - ], - [ - 4.4918555, - 51.0805795 - ], - [ - 4.4898528, - 51.0805795 - ], - [ - 4.4898528, - 51.079156 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88263495 - } - }, - { - "id": 88263438, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4898977, - 51.0806684 - ], - [ - 4.4920508, - 51.0806684 - ], - [ - 4.4920508, - 51.0819139 - ], - [ - 4.4898977, - 51.0819139 - ], - [ - 4.4898977, - 51.0806684 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88263438 - } - }, - { - "id": 88263422, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4852229, - 51.0779155 - ], - [ - 4.4920508, - 51.0779155 - ], - [ - 4.4920508, - 51.0819139 - ], - [ - 4.4852229, - 51.0819139 - ], - [ - 4.4852229, - 51.0779155 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88263422 - } - }, - { - "id": 88262279, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4812668, - 51.0768065 - ], - [ - 4.4899194, - 51.0768065 - ], - [ - 4.4899194, - 51.0828256 - ], - [ - 4.4812668, - 51.0828256 - ], - [ - 4.4812668, - 51.0768065 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88262279 - } - }, - { - "id": 88262262, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4812668, - 51.0768065 - ], - [ - 4.4944247, - 51.0768065 - ], - [ - 4.4944247, - 51.0851587 - ], - [ - 4.4812668, - 51.0851587 - ], - [ - 4.4812668, - 51.0768065 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88262262 - } - }, - { - "id": 88262204, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.496422, - 51.079226 - ], - [ - 4.497895, - 51.079226 - ], - [ - 4.497895, - 51.0805679 - ], - [ - 4.496422, - 51.0805679 - ], - [ - 4.496422, - 51.079226 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88262204 - } - }, - { - "id": 88262162, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4961835, - 51.0728507 - ], - [ - 4.5009941, - 51.0728507 - ], - [ - 4.5009941, - 51.0785743 - ], - [ - 4.4961835, - 51.0785743 - ], - [ - 4.4961835, - 51.0728507 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88262162 - } - }, - { - "id": 88262121, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4635933, - 51.1028769 - ], - [ - 4.4667678, - 51.1028769 - ], - [ - 4.4667678, - 51.1045187 - ], - [ - 4.4635933, - 51.1045187 - ], - [ - 4.4635933, - 51.1028769 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88262121 - } - }, - { - "id": 88262037, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4635933, - 51.1028769 - ], - [ - 4.4667678, - 51.1028769 - ], - [ - 4.4667678, - 51.1045187 - ], - [ - 4.4635933, - 51.1045187 - ], - [ - 4.4635933, - 51.1028769 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88262037 - } - }, - { - "id": 88261900, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3130866, - 50.8235527 - ], - [ - 3.3130866, - 50.8235527 - ], - [ - 3.3130866, - 50.8235527 - ], - [ - 3.3130866, - 50.8235527 - ], - [ - 3.3130866, - 50.8235527 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88261900 - } - }, - { - "id": 88261857, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3130866, - 50.8235527 - ], - [ - 3.3130866, - 50.8235527 - ], - [ - 3.3130866, - 50.8235527 - ], - [ - 3.3130866, - 50.8235527 - ], - [ - 3.3130866, - 50.8235527 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88261857 - } - }, - { - "id": 88261832, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3130866, - 50.8235527 - ], - [ - 3.3130866, - 50.8235527 - ], - [ - 3.3130866, - 50.8235527 - ], - [ - 3.3130866, - 50.8235527 - ], - [ - 3.3130866, - 50.8235527 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88261832 - } - }, - { - "id": 88261781, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3130866, - 50.8235527 - ], - [ - 3.3130866, - 50.8235527 - ], - [ - 3.3130866, - 50.8235527 - ], - [ - 3.3130866, - 50.8235527 - ], - [ - 3.3130866, - 50.8235527 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88261781 - } - }, - { - "id": 88261756, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3130866, - 50.8235527 - ], - [ - 3.3130866, - 50.8235527 - ], - [ - 3.3130866, - 50.8235527 - ], - [ - 3.3130866, - 50.8235527 - ], - [ - 3.3130866, - 50.8235527 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88261756 - } - }, - { - "id": 88261721, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4635933, - 51.1028769 - ], - [ - 4.4667678, - 51.1028769 - ], - [ - 4.4667678, - 51.1045187 - ], - [ - 4.4635933, - 51.1045187 - ], - [ - 4.4635933, - 51.1028769 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88261721 - } - }, - { - "id": 88261641, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4898528, - 51.079156 - ], - [ - 4.4918555, - 51.079156 - ], - [ - 4.4918555, - 51.0805795 - ], - [ - 4.4898528, - 51.0805795 - ], - [ - 4.4898528, - 51.079156 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88261641 - } - }, - { - "id": 88261466, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4961835, - 51.0728507 - ], - [ - 4.5009941, - 51.0728507 - ], - [ - 4.5009941, - 51.0785743 - ], - [ - 4.4961835, - 51.0785743 - ], - [ - 4.4961835, - 51.0728507 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88261466 - } - }, - { - "id": 88254014, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4017357, - 50.8218991 - ], - [ - 4.4017357, - 50.8218991 - ], - [ - 4.4017357, - 50.8218991 - ], - [ - 4.4017357, - 50.8218991 - ], - [ - 4.4017357, - 50.8218991 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88254014 - } - }, - { - "id": 88253210, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4000083, - 50.8230648 - ], - [ - 4.4000083, - 50.8230648 - ], - [ - 4.4000083, - 50.8230648 - ], - [ - 4.4000083, - 50.8230648 - ], - [ - 4.4000083, - 50.8230648 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88253210 - } - }, - { - "id": 88252889, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4009042, - 50.8224142 - ], - [ - 4.4009042, - 50.8224142 - ], - [ - 4.4009042, - 50.8224142 - ], - [ - 4.4009042, - 50.8224142 - ], - [ - 4.4009042, - 50.8224142 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88252889 - } - }, - { - "id": 88247884, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2687289, - 50.7478892 - ], - [ - 4.2687289, - 50.7478892 - ], - [ - 4.2687289, - 50.7478892 - ], - [ - 4.2687289, - 50.7478892 - ], - [ - 4.2687289, - 50.7478892 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88247884 - } - }, - { - "id": 88247807, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2688268, - 50.747963 - ], - [ - 4.2688268, - 50.747963 - ], - [ - 4.2688268, - 50.747963 - ], - [ - 4.2688268, - 50.747963 - ], - [ - 4.2688268, - 50.747963 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88247807 - } - }, - { - "id": 88245109, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3533956, - 50.845075 - ], - [ - 4.3533956, - 50.845075 - ], - [ - 4.3533956, - 50.845075 - ], - [ - 4.3533956, - 50.845075 - ], - [ - 4.3533956, - 50.845075 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88245109 - } - }, - { - "id": 88236476, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.760688, - 50.8666163 - ], - [ - 3.7681411, - 50.8666163 - ], - [ - 3.7681411, - 50.870623 - ], - [ - 3.760688, - 50.870623 - ], - [ - 3.760688, - 50.8666163 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88236476 - } - }, - { - "id": 88236292, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6288177, - 50.9864468 - ], - [ - 4.6827656, - 50.9864468 - ], - [ - 4.6827656, - 51.0126998 - ], - [ - 4.6288177, - 51.0126998 - ], - [ - 4.6288177, - 50.9864468 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88236292 - } - }, - { - "id": 88236169, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7961129, - 50.8200764 - ], - [ - 3.7985399, - 50.8200764 - ], - [ - 3.7985399, - 50.8205041 - ], - [ - 3.7961129, - 50.8205041 - ], - [ - 3.7961129, - 50.8200764 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88236169 - } - }, - { - "id": 88236045, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8061723, - 50.8189464 - ], - [ - 3.8147168, - 50.8189464 - ], - [ - 3.8147168, - 50.8234513 - ], - [ - 3.8061723, - 50.8234513 - ], - [ - 3.8061723, - 50.8189464 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88236045 - } - }, - { - "id": 88236005, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6288177, - 50.9864468 - ], - [ - 4.6827656, - 50.9864468 - ], - [ - 4.6827656, - 51.0126998 - ], - [ - 4.6288177, - 51.0126998 - ], - [ - 4.6288177, - 50.9864468 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88236005 - } - }, - { - "id": 88235914, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4450775, - 51.1866264 - ], - [ - 4.4450775, - 51.1866264 - ], - [ - 4.4450775, - 51.1866264 - ], - [ - 4.4450775, - 51.1866264 - ], - [ - 4.4450775, - 51.1866264 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88235914 - } - }, - { - "id": 88235872, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4472662, - 51.1880066 - ], - [ - 4.4472662, - 51.1880066 - ], - [ - 4.4472662, - 51.1880066 - ], - [ - 4.4472662, - 51.1880066 - ], - [ - 4.4472662, - 51.1880066 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88235872 - } - }, - { - "id": 88235643, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4234674, - 51.1922261 - ], - [ - 4.4278666, - 51.1922261 - ], - [ - 4.4278666, - 51.1941479 - ], - [ - 4.4234674, - 51.1941479 - ], - [ - 4.4234674, - 51.1922261 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88235643 - } - }, - { - "id": 88235329, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4269897, - 51.1934086 - ], - [ - 4.4330271, - 51.1934086 - ], - [ - 4.4330271, - 51.1978017 - ], - [ - 4.4269897, - 51.1978017 - ], - [ - 4.4269897, - 51.1934086 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88235329 - } - }, - { - "id": 88235283, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4269897, - 51.1934086 - ], - [ - 4.4330271, - 51.1934086 - ], - [ - 4.4330271, - 51.1978017 - ], - [ - 4.4269897, - 51.1978017 - ], - [ - 4.4269897, - 51.1934086 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88235283 - } - }, - { - "id": 88235225, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4353662, - 51.1968349 - ], - [ - 4.439169, - 51.1968349 - ], - [ - 4.439169, - 51.2004394 - ], - [ - 4.4353662, - 51.2004394 - ], - [ - 4.4353662, - 51.1968349 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88235225 - } - }, - { - "id": 88212868, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7669085, - 50.8767024 - ], - [ - 4.7674549, - 50.8767024 - ], - [ - 4.7674549, - 50.8772436 - ], - [ - 4.7669085, - 50.8772436 - ], - [ - 4.7669085, - 50.8767024 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88212868 - } - }, - { - "id": 88212849, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7720872, - 50.8767228 - ], - [ - 4.7829254, - 50.8767228 - ], - [ - 4.7829254, - 50.8864317 - ], - [ - 4.7720872, - 50.8864317 - ], - [ - 4.7720872, - 50.8767228 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88212849 - } - }, - { - "id": 88212820, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7598159, - 50.8744192 - ], - [ - 4.7598159, - 50.8744192 - ], - [ - 4.7598159, - 50.8744192 - ], - [ - 4.7598159, - 50.8744192 - ], - [ - 4.7598159, - 50.8744192 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88212820 - } - }, - { - "id": 88212797, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7598159, - 50.8744192 - ], - [ - 4.7598159, - 50.8744192 - ], - [ - 4.7598159, - 50.8744192 - ], - [ - 4.7598159, - 50.8744192 - ], - [ - 4.7598159, - 50.8744192 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88212797 - } - }, - { - "id": 88212784, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7598159, - 50.8744192 - ], - [ - 4.7598159, - 50.8744192 - ], - [ - 4.7598159, - 50.8744192 - ], - [ - 4.7598159, - 50.8744192 - ], - [ - 4.7598159, - 50.8744192 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88212784 - } - }, - { - "id": 88212759, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7592679, - 50.8826097 - ], - [ - 4.7640503, - 50.8826097 - ], - [ - 4.7640503, - 50.8856431 - ], - [ - 4.7592679, - 50.8856431 - ], - [ - 4.7592679, - 50.8826097 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88212759 - } - }, - { - "id": 88212748, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0296649, - 51.0602255 - ], - [ - 3.0610521, - 51.0602255 - ], - [ - 3.0610521, - 51.0788125 - ], - [ - 3.0296649, - 51.0788125 - ], - [ - 3.0296649, - 51.0602255 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88212748 - } - }, - { - "id": 88212702, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1021793, - 51.0666234 - ], - [ - 3.1069742, - 51.0666234 - ], - [ - 3.1069742, - 51.0705005 - ], - [ - 3.1021793, - 51.0705005 - ], - [ - 3.1021793, - 51.0666234 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88212702 - } - }, - { - "id": 88212626, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1191633, - 51.0581251 - ], - [ - 3.1198472, - 51.0581251 - ], - [ - 3.1198472, - 51.0588874 - ], - [ - 3.1191633, - 51.0588874 - ], - [ - 3.1191633, - 51.0581251 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88212626 - } - }, - { - "id": 88212617, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1208299, - 51.0536186 - ], - [ - 3.1224025, - 51.0536186 - ], - [ - 3.1224025, - 51.054753 - ], - [ - 3.1208299, - 51.054753 - ], - [ - 3.1208299, - 51.0536186 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88212617 - } - }, - { - "id": 88212607, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1064158, - 51.0524216 - ], - [ - 3.1224025, - 51.0524216 - ], - [ - 3.1224025, - 51.054753 - ], - [ - 3.1064158, - 51.054753 - ], - [ - 3.1064158, - 51.0524216 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88212607 - } - }, - { - "id": 88212602, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7592679, - 50.8826097 - ], - [ - 4.7640503, - 50.8826097 - ], - [ - 4.7640503, - 50.8856431 - ], - [ - 4.7592679, - 50.8856431 - ], - [ - 4.7592679, - 50.8826097 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88212602 - } - }, - { - "id": 88212576, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7568839, - 50.8734867 - ], - [ - 4.7581688, - 50.8734867 - ], - [ - 4.7581688, - 50.8744582 - ], - [ - 4.7568839, - 50.8744582 - ], - [ - 4.7568839, - 50.8734867 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88212576 - } - }, - { - "id": 88212566, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7568839, - 50.8734867 - ], - [ - 4.7581688, - 50.8734867 - ], - [ - 4.7581688, - 50.8744582 - ], - [ - 4.7568839, - 50.8744582 - ], - [ - 4.7568839, - 50.8734867 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88212566 - } - }, - { - "id": 88204389, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6054467, - 50.8964074 - ], - [ - 3.6162873, - 50.8964074 - ], - [ - 3.6162873, - 50.8984702 - ], - [ - 3.6054467, - 50.8984702 - ], - [ - 3.6054467, - 50.8964074 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88204389 - } - }, - { - "id": 88204328, - "type": "Feature", - "geometry": null, - "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:51:09Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88204328 - } - }, - { - "id": 88204280, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6235625, - 50.9026472 - ], - [ - 3.6241612, - 50.9026472 - ], - [ - 3.6241612, - 50.9033368 - ], - [ - 3.6235625, - 50.9033368 - ], - [ - 3.6235625, - 50.9026472 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88204280 - } - }, - { - "id": 88204195, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0928659, - 51.0375967 - ], - [ - 4.0928659, - 51.0375967 - ], - [ - 4.0928659, - 51.0375967 - ], - [ - 4.0928659, - 51.0375967 - ], - [ - 4.0928659, - 51.0375967 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88204195 - } - }, - { - "id": 88204161, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0928189, - 51.0366808 - ], - [ - 4.0937014, - 51.0366808 - ], - [ - 4.0937014, - 51.0375967 - ], - [ - 4.0928189, - 51.0375967 - ], - [ - 4.0928189, - 51.0366808 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88204161 - } - }, - { - "id": 88204114, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0928189, - 51.0368436 - ], - [ - 4.0936518, - 51.0368436 - ], - [ - 4.0936518, - 51.0374542 - ], - [ - 4.0928189, - 51.0374542 - ], - [ - 4.0928189, - 51.0368436 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88204114 - } - }, - { - "id": 88204080, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0936518, - 51.0374542 - ], - [ - 4.0936518, - 51.0374542 - ], - [ - 4.0936518, - 51.0374542 - ], - [ - 4.0936518, - 51.0374542 - ], - [ - 4.0936518, - 51.0374542 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88204080 - } - }, - { - "id": 88204053, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6399534, - 50.8977635 - ], - [ - 3.6422054, - 50.8977635 - ], - [ - 3.6422054, - 50.8984229 - ], - [ - 3.6399534, - 50.8984229 - ], - [ - 3.6399534, - 50.8977635 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88204053 - } - }, - { - "id": 88204013, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6391815, - 50.894751 - ], - [ - 3.6420972, - 50.894751 - ], - [ - 3.6420972, - 50.8983153 - ], - [ - 3.6391815, - 50.8983153 - ], - [ - 3.6391815, - 50.894751 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88204013 - } - }, - { - "id": 88203987, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.633812, - 50.8922935 - ], - [ - 3.64145, - 50.8922935 - ], - [ - 3.64145, - 50.896902 - ], - [ - 3.633812, - 50.896902 - ], - [ - 3.633812, - 50.8922935 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88203987 - } - }, - { - "id": 88203949, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6242874, - 50.8922935 - ], - [ - 3.6351698, - 50.8922935 - ], - [ - 3.6351698, - 50.8955452 - ], - [ - 3.6242874, - 50.8955452 - ], - [ - 3.6242874, - 50.8922935 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88203949 - } - }, - { - "id": 88203926, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6242874, - 50.8939481 - ], - [ - 3.6286552, - 50.8939481 - ], - [ - 3.6286552, - 50.8968049 - ], - [ - 3.6242874, - 50.8968049 - ], - [ - 3.6242874, - 50.8939481 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88203926 - } - }, - { - "id": 88203886, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6243643, - 50.8957032 - ], - [ - 3.6335783, - 50.8957032 - ], - [ - 3.6335783, - 50.8970107 - ], - [ - 3.6243643, - 50.8970107 - ], - [ - 3.6243643, - 50.8957032 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88203886 - } - }, - { - "id": 88203852, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6332095, - 50.8940942 - ], - [ - 3.6388183, - 50.8940942 - ], - [ - 3.6388183, - 50.8983881 - ], - [ - 3.6332095, - 50.8983881 - ], - [ - 3.6332095, - 50.8940942 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88203852 - } - }, - { - "id": 88203808, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.633098, - 50.8960549 - ], - [ - 3.6388183, - 50.8960549 - ], - [ - 3.6388183, - 50.8995074 - ], - [ - 3.633098, - 50.8995074 - ], - [ - 3.633098, - 50.8960549 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88203808 - } - }, - { - "id": 88203778, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.633098, - 50.8966582 - ], - [ - 3.6378789, - 50.8966582 - ], - [ - 3.6378789, - 50.9004368 - ], - [ - 3.633098, - 50.9004368 - ], - [ - 3.633098, - 50.8966582 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88203778 - } - }, - { - "id": 88203743, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6350774, - 50.8994017 - ], - [ - 3.6365646, - 50.8994017 - ], - [ - 3.6365646, - 50.9003276 - ], - [ - 3.6350774, - 50.9003276 - ], - [ - 3.6350774, - 50.8994017 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88203743 - } - }, - { - "id": 88203730, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6287123, - 50.9005547 - ], - [ - 3.6287123, - 50.9005547 - ], - [ - 3.6287123, - 50.9005547 - ], - [ - 3.6287123, - 50.9005547 - ], - [ - 3.6287123, - 50.9005547 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88203730 - } - }, - { - "id": 88203704, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6287123, - 50.9005547 - ], - [ - 3.6287123, - 50.9005547 - ], - [ - 3.6287123, - 50.9005547 - ], - [ - 3.6287123, - 50.9005547 - ], - [ - 3.6287123, - 50.9005547 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88203704 - } - }, - { - "id": 88203682, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6259979, - 50.8997242 - ], - [ - 3.6259979, - 50.8997242 - ], - [ - 3.6259979, - 50.8997242 - ], - [ - 3.6259979, - 50.8997242 - ], - [ - 3.6259979, - 50.8997242 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88203682 - } - }, - { - "id": 88203659, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6213695, - 50.8998737 - ], - [ - 3.6218045, - 50.8998737 - ], - [ - 3.6218045, - 50.9001524 - ], - [ - 3.6213695, - 50.9001524 - ], - [ - 3.6213695, - 50.8998737 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88203659 - } - }, - { - "id": 88203628, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6288461, - 50.8958835 - ], - [ - 3.6297462, - 50.8958835 - ], - [ - 3.6297462, - 50.8964043 - ], - [ - 3.6288461, - 50.8964043 - ], - [ - 3.6288461, - 50.8958835 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88203628 - } - }, - { - "id": 88203599, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6218002, - 50.9002807 - ], - [ - 3.6218002, - 50.9002807 - ], - [ - 3.6218002, - 50.9002807 - ], - [ - 3.6218002, - 50.9002807 - ], - [ - 3.6218002, - 50.9002807 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88203599 - } - }, - { - "id": 88203574, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6218002, - 50.8995339 - ], - [ - 3.622741, - 50.8995339 - ], - [ - 3.622741, - 50.9002807 - ], - [ - 3.6218002, - 50.9002807 - ], - [ - 3.6218002, - 50.8995339 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88203574 - } - }, - { - "id": 88203524, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6255346, - 50.8985896 - ], - [ - 3.6277411, - 50.8985896 - ], - [ - 3.6277411, - 50.8993311 - ], - [ - 3.6255346, - 50.8993311 - ], - [ - 3.6255346, - 50.8985896 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88203524 - } - }, - { - "id": 88203491, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6261593, - 50.8983502 - ], - [ - 3.6295866, - 50.8983502 - ], - [ - 3.6295866, - 50.9005403 - ], - [ - 3.6261593, - 50.9005403 - ], - [ - 3.6261593, - 50.8983502 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88203491 - } - }, - { - "id": 88203449, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6272948, - 50.8983502 - ], - [ - 3.6278283, - 50.8983502 - ], - [ - 3.6278283, - 50.8990413 - ], - [ - 3.6272948, - 50.8990413 - ], - [ - 3.6272948, - 50.8983502 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88203449 - } - }, - { - "id": 88203417, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6272948, - 50.8983502 - ], - [ - 3.6278283, - 50.8983502 - ], - [ - 3.6278283, - 50.8990413 - ], - [ - 3.6272948, - 50.8990413 - ], - [ - 3.6272948, - 50.8983502 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88203417 - } - }, - { - "id": 88203400, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6160435, - 50.8972431 - ], - [ - 3.6253404, - 50.8972431 - ], - [ - 3.6253404, - 50.8985948 - ], - [ - 3.6160435, - 50.8985948 - ], - [ - 3.6160435, - 50.8972431 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88203400 - } - }, - { - "id": 88203336, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6160435, - 50.8967183 - ], - [ - 3.617141, - 50.8967183 - ], - [ - 3.617141, - 50.8990024 - ], - [ - 3.6160435, - 50.8990024 - ], - [ - 3.6160435, - 50.8967183 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88203336 - } - }, - { - "id": 88202539, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6194457, - 50.9003476 - ], - [ - 3.6200541, - 50.9003476 - ], - [ - 3.6200541, - 50.9007864 - ], - [ - 3.6194457, - 50.9007864 - ], - [ - 3.6194457, - 50.9003476 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88202539 - } - }, - { - "id": 88202522, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6194457, - 50.9003476 - ], - [ - 3.6200541, - 50.9003476 - ], - [ - 3.6200541, - 50.9007864 - ], - [ - 3.6194457, - 50.9007864 - ], - [ - 3.6194457, - 50.9003476 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88202522 - } - }, - { - "id": 88202469, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6200483, - 50.9003817 - ], - [ - 3.6212321, - 50.9003817 - ], - [ - 3.6212321, - 50.9009667 - ], - [ - 3.6200483, - 50.9009667 - ], - [ - 3.6200483, - 50.9003817 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88202469 - } - }, - { - "id": 88202315, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6198382, - 50.8974282 - ], - [ - 3.6251504, - 50.8974282 - ], - [ - 3.6251504, - 50.9009667 - ], - [ - 3.6198382, - 50.9009667 - ], - [ - 3.6198382, - 50.8974282 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88202315 - } - }, - { - "id": 88202229, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6198382, - 50.8974282 - ], - [ - 3.6220932, - 50.8974282 - ], - [ - 3.6220932, - 50.8991258 - ], - [ - 3.6198382, - 50.8991258 - ], - [ - 3.6198382, - 50.8974282 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88202229 - } - }, - { - "id": 88202214, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.617034, - 50.8982507 - ], - [ - 3.617034, - 50.8982507 - ], - [ - 3.617034, - 50.8982507 - ], - [ - 3.617034, - 50.8982507 - ], - [ - 3.617034, - 50.8982507 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88202214 - } - }, - { - "id": 88202189, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.617034, - 50.8982507 - ], - [ - 3.617034, - 50.8982507 - ], - [ - 3.617034, - 50.8982507 - ], - [ - 3.617034, - 50.8982507 - ], - [ - 3.617034, - 50.8982507 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88202189 - } - }, - { - "id": 88202169, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6188471, - 50.8998629 - ], - [ - 3.6188471, - 50.8998629 - ], - [ - 3.6188471, - 50.8998629 - ], - [ - 3.6188471, - 50.8998629 - ], - [ - 3.6188471, - 50.8998629 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88202169 - } - }, - { - "id": 88202036, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6188984, - 50.9002132 - ], - [ - 3.6198637, - 50.9002132 - ], - [ - 3.6198637, - 50.9010126 - ], - [ - 3.6188984, - 50.9010126 - ], - [ - 3.6188984, - 50.9002132 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88202036 - } - }, - { - "id": 88201955, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.618108, - 50.899913 - ], - [ - 3.6192679, - 50.899913 - ], - [ - 3.6192679, - 50.9010126 - ], - [ - 3.618108, - 50.9010126 - ], - [ - 3.618108, - 50.899913 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88201955 - } - }, - { - "id": 88201903, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.618108, - 50.899913 - ], - [ - 3.6190668, - 50.899913 - ], - [ - 3.6190668, - 50.9004124 - ], - [ - 3.618108, - 50.9004124 - ], - [ - 3.618108, - 50.899913 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88201903 - } - }, - { - "id": 88201871, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.618108, - 50.899913 - ], - [ - 3.6190668, - 50.899913 - ], - [ - 3.6190668, - 50.9004124 - ], - [ - 3.618108, - 50.9004124 - ], - [ - 3.618108, - 50.899913 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88201871 - } - }, - { - "id": 88200855, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2803896, - 51.191496 - ], - [ - 3.315736, - 51.191496 - ], - [ - 3.315736, - 51.2058162 - ], - [ - 3.2803896, - 51.2058162 - ], - [ - 3.2803896, - 51.191496 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88200855 - } - }, - { - "id": 88200650, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2799706, - 51.1978669 - ], - [ - 3.2895145, - 51.1978669 - ], - [ - 3.2895145, - 51.2011485 - ], - [ - 3.2799706, - 51.2011485 - ], - [ - 3.2799706, - 51.1978669 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88200650 - } - }, - { - "id": 88200085, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2799706, - 51.1978669 - ], - [ - 3.2895145, - 51.1978669 - ], - [ - 3.2895145, - 51.2011485 - ], - [ - 3.2799706, - 51.2011485 - ], - [ - 3.2799706, - 51.1978669 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88200085 - } - }, - { - "id": 88199941, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2799706, - 51.1978669 - ], - [ - 3.2895145, - 51.1978669 - ], - [ - 3.2895145, - 51.2011485 - ], - [ - 3.2799706, - 51.2011485 - ], - [ - 3.2799706, - 51.1978669 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88199941 - } - }, - { - "id": 88199936, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2799706, - 51.1978669 - ], - [ - 3.2895145, - 51.1978669 - ], - [ - 3.2895145, - 51.2011485 - ], - [ - 3.2799706, - 51.2011485 - ], - [ - 3.2799706, - 51.1978669 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88199936 - } - }, - { - "id": 88199787, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2799706, - 51.1978669 - ], - [ - 3.2895145, - 51.1978669 - ], - [ - 3.2895145, - 51.2011485 - ], - [ - 3.2799706, - 51.2011485 - ], - [ - 3.2799706, - 51.1978669 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88199787 - } - }, - { - "id": 88199742, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2799706, - 51.1978669 - ], - [ - 3.2895145, - 51.1978669 - ], - [ - 3.2895145, - 51.2011485 - ], - [ - 3.2799706, - 51.2011485 - ], - [ - 3.2799706, - 51.1978669 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88199742 - } - }, - { - "id": 88199680, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2799706, - 51.1978669 - ], - [ - 3.2895145, - 51.1978669 - ], - [ - 3.2895145, - 51.2011485 - ], - [ - 3.2799706, - 51.2011485 - ], - [ - 3.2799706, - 51.1978669 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88199680 - } - }, - { - "id": 88199588, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2895148, - 51.201141 - ], - [ - 3.2895148, - 51.201141 - ], - [ - 3.2895148, - 51.201141 - ], - [ - 3.2895148, - 51.201141 - ], - [ - 3.2895148, - 51.201141 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88199588 - } - }, - { - "id": 88199581, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2895148, - 51.201141 - ], - [ - 3.2895148, - 51.201141 - ], - [ - 3.2895148, - 51.201141 - ], - [ - 3.2895148, - 51.201141 - ], - [ - 3.2895148, - 51.201141 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88199581 - } - }, - { - "id": 88199547, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2803896, - 51.191496 - ], - [ - 3.315736, - 51.191496 - ], - [ - 3.315736, - 51.2058162 - ], - [ - 3.2803896, - 51.2058162 - ], - [ - 3.2803896, - 51.191496 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88199547 - } - }, - { - "id": 88199005, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2803896, - 51.191496 - ], - [ - 3.315736, - 51.191496 - ], - [ - 3.315736, - 51.2058162 - ], - [ - 3.2803896, - 51.2058162 - ], - [ - 3.2803896, - 51.191496 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88199005 - } - }, - { - "id": 88196773, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3432187, - 51.1294427 - ], - [ - 3.3585803, - 51.1294427 - ], - [ - 3.3585803, - 51.1317001 - ], - [ - 3.3432187, - 51.1317001 - ], - [ - 3.3432187, - 51.1294427 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88196773 - } - }, - { - "id": 88195733, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4983271, - 51.1366319 - ], - [ - 3.5053641, - 51.1366319 - ], - [ - 3.5053641, - 51.1399197 - ], - [ - 3.4983271, - 51.1399197 - ], - [ - 3.4983271, - 51.1366319 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88195733 - } - }, - { - "id": 88195711, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5036977, - 51.1358554 - ], - [ - 3.5064789, - 51.1358554 - ], - [ - 3.5064789, - 51.1377054 - ], - [ - 3.5036977, - 51.1377054 - ], - [ - 3.5036977, - 51.1358554 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88195711 - } - }, - { - "id": 88193952, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2286383, - 51.2132287 - ], - [ - 3.228715, - 51.2132287 - ], - [ - 3.228715, - 51.2133786 - ], - [ - 3.2286383, - 51.2133786 - ], - [ - 3.2286383, - 51.2132287 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88193952 - } - }, - { - "id": 88186791, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4329807, - 50.9398303 - ], - [ - 5.4726747, - 50.9398303 - ], - [ - 5.4726747, - 50.9609039 - ], - [ - 5.4329807, - 50.9609039 - ], - [ - 5.4329807, - 50.9398303 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88186791 - } - }, - { - "id": 88186788, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4645824, - 50.9648395 - ], - [ - 5.4701747, - 50.9648395 - ], - [ - 5.4701747, - 50.9656368 - ], - [ - 5.4645824, - 50.9656368 - ], - [ - 5.4645824, - 50.9648395 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88186788 - } - }, - { - "id": 88186775, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4645824, - 50.9648395 - ], - [ - 5.4701747, - 50.9648395 - ], - [ - 5.4701747, - 50.9656368 - ], - [ - 5.4645824, - 50.9656368 - ], - [ - 5.4645824, - 50.9648395 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88186775 - } - }, - { - "id": 88184078, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2594848, - 51.1411643 - ], - [ - 3.3245589, - 51.1411643 - ], - [ - 3.3245589, - 51.1598374 - ], - [ - 3.2594848, - 51.1598374 - ], - [ - 3.2594848, - 51.1411643 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88184078 - } - }, - { - "id": 88184063, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.262859, - 51.1411643 - ], - [ - 3.3245589, - 51.1411643 - ], - [ - 3.3245589, - 51.1588626 - ], - [ - 3.262859, - 51.1588626 - ], - [ - 3.262859, - 51.1411643 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88184063 - } - }, - { - "id": 88180857, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2634313, - 51.1588626 - ], - [ - 3.2634313, - 51.1588626 - ], - [ - 3.2634313, - 51.1588626 - ], - [ - 3.2634313, - 51.1588626 - ], - [ - 3.2634313, - 51.1588626 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88180857 - } - }, - { - "id": 88180547, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2632739, - 51.1497118 - ], - [ - 3.2867119, - 51.1497118 - ], - [ - 3.2867119, - 51.1596192 - ], - [ - 3.2632739, - 51.1596192 - ], - [ - 3.2632739, - 51.1497118 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88180547 - } - }, - { - "id": 88180535, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2632739, - 51.1497118 - ], - [ - 3.2867119, - 51.1497118 - ], - [ - 3.2867119, - 51.1596192 - ], - [ - 3.2632739, - 51.1596192 - ], - [ - 3.2632739, - 51.1497118 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88180535 - } - }, - { - "id": 88180440, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2632739, - 51.1497118 - ], - [ - 3.2867119, - 51.1497118 - ], - [ - 3.2867119, - 51.1596192 - ], - [ - 3.2632739, - 51.1596192 - ], - [ - 3.2632739, - 51.1497118 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88180440 - } - }, - { - "id": 88180381, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3564356, - 50.9305607 - ], - [ - 5.3601416, - 50.9305607 - ], - [ - 5.3601416, - 50.9319405 - ], - [ - 5.3564356, - 50.9319405 - ], - [ - 5.3564356, - 50.9305607 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88180381 - } - }, - { - "id": 88180359, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2632739, - 51.1497118 - ], - [ - 3.2867119, - 51.1497118 - ], - [ - 3.2867119, - 51.1596192 - ], - [ - 3.2632739, - 51.1596192 - ], - [ - 3.2632739, - 51.1497118 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88180359 - } - }, - { - "id": 88180321, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4023273, - 51.0034227 - ], - [ - 5.4210744, - 51.0034227 - ], - [ - 5.4210744, - 51.0084229 - ], - [ - 5.4023273, - 51.0084229 - ], - [ - 5.4023273, - 51.0034227 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88180321 - } - }, - { - "id": 88180317, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2632739, - 51.1497118 - ], - [ - 3.2867119, - 51.1497118 - ], - [ - 3.2867119, - 51.1596192 - ], - [ - 3.2632739, - 51.1596192 - ], - [ - 3.2632739, - 51.1497118 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88180317 - } - }, - { - "id": 88180278, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2632739, - 51.1497118 - ], - [ - 3.2867119, - 51.1497118 - ], - [ - 3.2867119, - 51.1596192 - ], - [ - 3.2632739, - 51.1596192 - ], - [ - 3.2632739, - 51.1497118 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88180278 - } - }, - { - "id": 88180251, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3600688, - 51.0034596 - ], - [ - 5.3615045, - 51.0034596 - ], - [ - 5.3615045, - 51.0039558 - ], - [ - 5.3600688, - 51.0039558 - ], - [ - 5.3600688, - 51.0034596 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88180251 - } - }, - { - "id": 88180225, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3566466, - 51.0026096 - ], - [ - 5.3615045, - 51.0026096 - ], - [ - 5.3615045, - 51.0039558 - ], - [ - 5.3566466, - 51.0039558 - ], - [ - 5.3566466, - 51.0026096 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88180225 - } - }, - { - "id": 88180224, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2632739, - 51.1497118 - ], - [ - 3.2867119, - 51.1497118 - ], - [ - 3.2867119, - 51.1596192 - ], - [ - 3.2632739, - 51.1596192 - ], - [ - 3.2632739, - 51.1497118 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88180224 - } - }, - { - "id": 88180209, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2865858, - 51.1497939 - ], - [ - 3.2865858, - 51.1497939 - ], - [ - 3.2865858, - 51.1497939 - ], - [ - 3.2865858, - 51.1497939 - ], - [ - 3.2865858, - 51.1497939 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88180209 - } - }, - { - "id": 88180186, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3566466, - 51.0026096 - ], - [ - 5.3583218, - 51.0026096 - ], - [ - 5.3583218, - 51.0033167 - ], - [ - 5.3566466, - 51.0033167 - ], - [ - 5.3566466, - 51.0026096 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88180186 - } - }, - { - "id": 88180167, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3101874, - 50.9281903 - ], - [ - 5.3113639, - 50.9281903 - ], - [ - 5.3113639, - 50.9326948 - ], - [ - 5.3101874, - 50.9326948 - ], - [ - 5.3101874, - 50.9281903 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88180167 - } - }, - { - "id": 88180118, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3031002, - 50.9314205 - ], - [ - 5.3121686, - 50.9314205 - ], - [ - 5.3121686, - 50.9349755 - ], - [ - 5.3031002, - 50.9349755 - ], - [ - 5.3031002, - 50.9314205 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88180118 - } - }, - { - "id": 88180058, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3031002, - 50.9314205 - ], - [ - 5.3121686, - 50.9314205 - ], - [ - 5.3121686, - 50.9349755 - ], - [ - 5.3031002, - 50.9349755 - ], - [ - 5.3031002, - 50.9314205 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88180058 - } - }, - { - "id": 88179987, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3024627, - 51.1421623 - ], - [ - 3.3024627, - 51.1421623 - ], - [ - 3.3024627, - 51.1421623 - ], - [ - 3.3024627, - 51.1421623 - ], - [ - 3.3024627, - 51.1421623 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88179987 - } - }, - { - "id": 88179934, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3064234, - 51.1418585 - ], - [ - 3.3064234, - 51.1418585 - ], - [ - 3.3064234, - 51.1418585 - ], - [ - 3.3064234, - 51.1418585 - ], - [ - 3.3064234, - 51.1418585 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88179934 - } - }, - { - "id": 88179905, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3023333, - 51.1410331 - ], - [ - 3.3245608, - 51.1410331 - ], - [ - 3.3245608, - 51.1421686 - ], - [ - 3.3023333, - 51.1421686 - ], - [ - 3.3023333, - 51.1410331 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88179905 - } - }, - { - "id": 88179878, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3023333, - 51.1410331 - ], - [ - 3.3245608, - 51.1410331 - ], - [ - 3.3245608, - 51.1421686 - ], - [ - 3.3023333, - 51.1421686 - ], - [ - 3.3023333, - 51.1410331 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88179878 - } - }, - { - "id": 88179802, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3023333, - 51.1410331 - ], - [ - 3.3245608, - 51.1410331 - ], - [ - 3.3245608, - 51.1421686 - ], - [ - 3.3023333, - 51.1421686 - ], - [ - 3.3023333, - 51.1410331 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88179802 - } - }, - { - "id": 88179753, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3023333, - 51.1410331 - ], - [ - 3.3245608, - 51.1410331 - ], - [ - 3.3245608, - 51.1421686 - ], - [ - 3.3023333, - 51.1421686 - ], - [ - 3.3023333, - 51.1410331 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88179753 - } - }, - { - "id": 88179693, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3023333, - 51.1410331 - ], - [ - 3.3245608, - 51.1410331 - ], - [ - 3.3245608, - 51.1421686 - ], - [ - 3.3023333, - 51.1421686 - ], - [ - 3.3023333, - 51.1410331 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88179693 - } - }, - { - "id": 88179141, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3425044, - 51.1268064 - ], - [ - 3.3694338, - 51.1268064 - ], - [ - 3.3694338, - 51.1317203 - ], - [ - 3.3425044, - 51.1317203 - ], - [ - 3.3425044, - 51.1268064 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88179141 - } - }, - { - "id": 88177912, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3425044, - 51.1268064 - ], - [ - 3.3694338, - 51.1268064 - ], - [ - 3.3694338, - 51.1317203 - ], - [ - 3.3425044, - 51.1317203 - ], - [ - 3.3425044, - 51.1268064 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88177912 - } - }, - { - "id": 88177445, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3425044, - 51.1268064 - ], - [ - 3.3694338, - 51.1268064 - ], - [ - 3.3694338, - 51.1317203 - ], - [ - 3.3425044, - 51.1317203 - ], - [ - 3.3425044, - 51.1268064 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88177445 - } - }, - { - "id": 88177282, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3425044, - 51.1268064 - ], - [ - 3.3694338, - 51.1268064 - ], - [ - 3.3694338, - 51.1317203 - ], - [ - 3.3425044, - 51.1317203 - ], - [ - 3.3425044, - 51.1268064 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88177282 - } - }, - { - "id": 88177239, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3425044, - 51.1268064 - ], - [ - 3.3694338, - 51.1268064 - ], - [ - 3.3694338, - 51.1317203 - ], - [ - 3.3425044, - 51.1317203 - ], - [ - 3.3425044, - 51.1268064 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88177239 - } - }, - { - "id": 88176953, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4005304, - 50.8873099 - ], - [ - 3.4027292, - 50.8873099 - ], - [ - 3.4027292, - 50.8891116 - ], - [ - 3.4005304, - 50.8891116 - ], - [ - 3.4005304, - 50.8873099 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88176953 - } - }, - { - "id": 88176943, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4005304, - 50.8873099 - ], - [ - 3.4027292, - 50.8873099 - ], - [ - 3.4027292, - 50.8891116 - ], - [ - 3.4005304, - 50.8891116 - ], - [ - 3.4005304, - 50.8873099 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88176943 - } - }, - { - "id": 88176933, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1127986, - 50.8679097 - ], - [ - 3.1143215, - 50.8679097 - ], - [ - 3.1143215, - 50.8682672 - ], - [ - 3.1127986, - 50.8682672 - ], - [ - 3.1127986, - 50.8679097 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88176933 - } - }, - { - "id": 88176873, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7787213, - 50.9194434 - ], - [ - 4.7792946, - 50.9194434 - ], - [ - 4.7792946, - 50.9204807 - ], - [ - 4.7787213, - 50.9204807 - ], - [ - 4.7787213, - 50.9194434 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88176873 - } - }, - { - "id": 88176828, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7876802, - 50.9213858 - ], - [ - 4.7882598, - 50.9213858 - ], - [ - 4.7882598, - 50.9219201 - ], - [ - 4.7876802, - 50.9219201 - ], - [ - 4.7876802, - 50.9213858 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88176828 - } - }, - { - "id": 88176812, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7949131, - 50.9229884 - ], - [ - 4.7955891, - 50.9229884 - ], - [ - 4.7955891, - 50.9235041 - ], - [ - 4.7949131, - 50.9235041 - ], - [ - 4.7949131, - 50.9229884 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88176812 - } - }, - { - "id": 88176595, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3425044, - 51.1268064 - ], - [ - 3.3694338, - 51.1268064 - ], - [ - 3.3694338, - 51.1317203 - ], - [ - 3.3425044, - 51.1317203 - ], - [ - 3.3425044, - 51.1268064 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88176595 - } - }, - { - "id": 88176088, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3425044, - 51.1268064 - ], - [ - 3.3694338, - 51.1268064 - ], - [ - 3.3694338, - 51.1317203 - ], - [ - 3.3425044, - 51.1317203 - ], - [ - 3.3425044, - 51.1268064 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88176088 - } - }, - { - "id": 88174879, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4627024, - 50.8782821 - ], - [ - 3.4661362, - 50.8782821 - ], - [ - 3.4661362, - 50.8808374 - ], - [ - 3.4627024, - 50.8808374 - ], - [ - 3.4627024, - 50.8782821 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88174879 - } - }, - { - "id": 88174790, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3360942, - 51.1331409 - ], - [ - 3.3360942, - 51.1331409 - ], - [ - 3.3360942, - 51.1331409 - ], - [ - 3.3360942, - 51.1331409 - ], - [ - 3.3360942, - 51.1331409 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88174790 - } - }, - { - "id": 88174486, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2842925, - 51.150244 - ], - [ - 3.2842925, - 51.150244 - ], - [ - 3.2842925, - 51.150244 - ], - [ - 3.2842925, - 51.150244 - ], - [ - 3.2842925, - 51.150244 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88174486 - } - }, - { - "id": 88174462, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2836865, - 51.1504499 - ], - [ - 3.2836865, - 51.1504499 - ], - [ - 3.2836865, - 51.1504499 - ], - [ - 3.2836865, - 51.1504499 - ], - [ - 3.2836865, - 51.1504499 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88174462 - } - }, - { - "id": 88174448, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2834044, - 51.1496077 - ], - [ - 3.2848987, - 51.1496077 - ], - [ - 3.2848987, - 51.1504686 - ], - [ - 3.2834044, - 51.1504686 - ], - [ - 3.2834044, - 51.1496077 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88174448 - } - }, - { - "id": 88174356, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.262859, - 51.1581519 - ], - [ - 3.262859, - 51.1581519 - ], - [ - 3.262859, - 51.1581519 - ], - [ - 3.262859, - 51.1581519 - ], - [ - 3.262859, - 51.1581519 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88174356 - } - }, - { - "id": 88174310, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2594848, - 51.1598374 - ], - [ - 3.2594848, - 51.1598374 - ], - [ - 3.2594848, - 51.1598374 - ], - [ - 3.2594848, - 51.1598374 - ], - [ - 3.2594848, - 51.1598374 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88174310 - } - }, - { - "id": 88174286, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2594848, - 51.1598374 - ], - [ - 3.2594848, - 51.1598374 - ], - [ - 3.2594848, - 51.1598374 - ], - [ - 3.2594848, - 51.1598374 - ], - [ - 3.2594848, - 51.1598374 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88174286 - } - }, - { - "id": 88174254, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2581356, - 51.1610032 - ], - [ - 3.2581356, - 51.1610032 - ], - [ - 3.2581356, - 51.1610032 - ], - [ - 3.2581356, - 51.1610032 - ], - [ - 3.2581356, - 51.1610032 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88174254 - } - }, - { - "id": 88174246, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2581356, - 51.1610032 - ], - [ - 3.2581356, - 51.1610032 - ], - [ - 3.2581356, - 51.1610032 - ], - [ - 3.2581356, - 51.1610032 - ], - [ - 3.2581356, - 51.1610032 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88174246 - } - }, - { - "id": 88174203, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2576475, - 51.1613615 - ], - [ - 3.2576475, - 51.1613615 - ], - [ - 3.2576475, - 51.1613615 - ], - [ - 3.2576475, - 51.1613615 - ], - [ - 3.2576475, - 51.1613615 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88174203 - } - }, - { - "id": 88174198, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2576475, - 51.1613615 - ], - [ - 3.2576475, - 51.1613615 - ], - [ - 3.2576475, - 51.1613615 - ], - [ - 3.2576475, - 51.1613615 - ], - [ - 3.2576475, - 51.1613615 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88174198 - } - }, - { - "id": 88174190, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2580471, - 51.1610806 - ], - [ - 3.2580471, - 51.1610806 - ], - [ - 3.2580471, - 51.1610806 - ], - [ - 3.2580471, - 51.1610806 - ], - [ - 3.2580471, - 51.1610806 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88174190 - } - }, - { - "id": 88174183, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2580471, - 51.1610806 - ], - [ - 3.2580471, - 51.1610806 - ], - [ - 3.2580471, - 51.1610806 - ], - [ - 3.2580471, - 51.1610806 - ], - [ - 3.2580471, - 51.1610806 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88174183 - } - }, - { - "id": 88174181, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2580471, - 51.1610806 - ], - [ - 3.2580471, - 51.1610806 - ], - [ - 3.2580471, - 51.1610806 - ], - [ - 3.2580471, - 51.1610806 - ], - [ - 3.2580471, - 51.1610806 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88174181 - } - }, - { - "id": 88174148, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2576475, - 51.1613615 - ], - [ - 3.2576475, - 51.1613615 - ], - [ - 3.2576475, - 51.1613615 - ], - [ - 3.2576475, - 51.1613615 - ], - [ - 3.2576475, - 51.1613615 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88174148 - } - }, - { - "id": 88170260, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1981113, - 50.9814948 - ], - [ - 3.1995251, - 50.9814948 - ], - [ - 3.1995251, - 50.9829646 - ], - [ - 3.1981113, - 50.9829646 - ], - [ - 3.1981113, - 50.9814948 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88170260 - } - }, - { - "id": 88170206, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1981113, - 50.9814948 - ], - [ - 3.1995251, - 50.9814948 - ], - [ - 3.1995251, - 50.9829646 - ], - [ - 3.1981113, - 50.9829646 - ], - [ - 3.1981113, - 50.9814948 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88170206 - } - }, - { - "id": 88170197, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1981113, - 50.9814948 - ], - [ - 3.1995251, - 50.9814948 - ], - [ - 3.1995251, - 50.9829646 - ], - [ - 3.1981113, - 50.9829646 - ], - [ - 3.1981113, - 50.9814948 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88170197 - } - }, - { - "id": 88170128, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2255978, - 50.9544182 - ], - [ - 3.2371462, - 50.9544182 - ], - [ - 3.2371462, - 50.9638578 - ], - [ - 3.2255978, - 50.9638578 - ], - [ - 3.2255978, - 50.9544182 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88170128 - } - }, - { - "id": 88170105, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2255978, - 50.9544182 - ], - [ - 3.2371462, - 50.9544182 - ], - [ - 3.2371462, - 50.9638578 - ], - [ - 3.2255978, - 50.9638578 - ], - [ - 3.2255978, - 50.9544182 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88170105 - } - }, - { - "id": 88170104, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2255978, - 50.9544182 - ], - [ - 3.2371462, - 50.9544182 - ], - [ - 3.2371462, - 50.9638578 - ], - [ - 3.2255978, - 50.9638578 - ], - [ - 3.2255978, - 50.9544182 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88170104 - } - }, - { - "id": 88169908, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9583599, - 51.1479739 - ], - [ - 3.9608745, - 51.1479739 - ], - [ - 3.9608745, - 51.1492226 - ], - [ - 3.9583599, - 51.1492226 - ], - [ - 3.9583599, - 51.1479739 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88169908 - } - }, - { - "id": 88169624, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3051883, - 51.089237 - ], - [ - 4.3100549, - 51.089237 - ], - [ - 4.3100549, - 51.0906391 - ], - [ - 4.3051883, - 51.0906391 - ], - [ - 4.3051883, - 51.089237 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88169624 - } - }, - { - "id": 88169608, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2898389, - 51.097568 - ], - [ - 4.2961385, - 51.097568 - ], - [ - 4.2961385, - 51.1016341 - ], - [ - 4.2898389, - 51.1016341 - ], - [ - 4.2898389, - 51.097568 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88169608 - } - }, - { - "id": 88169584, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3014467, - 51.0940912 - ], - [ - 4.3042792, - 51.0940912 - ], - [ - 4.3042792, - 51.0961403 - ], - [ - 4.3014467, - 51.0961403 - ], - [ - 4.3014467, - 51.0940912 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88169584 - } - }, - { - "id": 88169570, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3051883, - 51.089237 - ], - [ - 4.3100549, - 51.089237 - ], - [ - 4.3100549, - 51.0919293 - ], - [ - 4.3051883, - 51.0919293 - ], - [ - 4.3051883, - 51.089237 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88169570 - } - }, - { - "id": 88169460, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5431789, - 50.7686071 - ], - [ - 4.5467924, - 50.7686071 - ], - [ - 4.5467924, - 50.7717283 - ], - [ - 4.5431789, - 50.7717283 - ], - [ - 4.5431789, - 50.7686071 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88169460 - } - }, - { - "id": 88169430, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5431789, - 50.7686071 - ], - [ - 4.5467924, - 50.7686071 - ], - [ - 4.5467924, - 50.7717283 - ], - [ - 4.5431789, - 50.7717283 - ], - [ - 4.5431789, - 50.7686071 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88169430 - } - }, - { - "id": 88163662, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198427, - 51.2002445 - ], - [ - 3.220172, - 51.2002445 - ], - [ - 3.220172, - 51.2003385 - ], - [ - 3.2198427, - 51.2003385 - ], - [ - 3.2198427, - 51.2002445 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88163662 - } - }, - { - "id": 88159433, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2286876, - 51.2008905 - ], - [ - 3.2286876, - 51.2008905 - ], - [ - 3.2286876, - 51.2008905 - ], - [ - 3.2286876, - 51.2008905 - ], - [ - 3.2286876, - 51.2008905 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88159433 - } - }, - { - "id": 88159033, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3276477, - 50.8503028 - ], - [ - 4.3276477, - 50.8503028 - ], - [ - 4.3276477, - 50.8503028 - ], - [ - 4.3276477, - 50.8503028 - ], - [ - 4.3276477, - 50.8503028 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88159033 - } - }, - { - "id": 88158937, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3276477, - 50.8503028 - ], - [ - 4.3276477, - 50.8503028 - ], - [ - 4.3276477, - 50.8503028 - ], - [ - 4.3276477, - 50.8503028 - ], - [ - 4.3276477, - 50.8503028 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88158937 - } - }, - { - "id": 88158904, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3276477, - 50.8503028 - ], - [ - 4.3276477, - 50.8503028 - ], - [ - 4.3276477, - 50.8503028 - ], - [ - 4.3276477, - 50.8503028 - ], - [ - 4.3276477, - 50.8503028 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88158904 - } - }, - { - "id": 88158634, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2350606, - 51.203719 - ], - [ - 3.2350606, - 51.203719 - ], - [ - 3.2350606, - 51.203719 - ], - [ - 3.2350606, - 51.203719 - ], - [ - 3.2350606, - 51.203719 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88158634 - } - }, - { - "id": 88157870, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2163023, - 51.2148728 - ], - [ - 3.2164978, - 51.2148728 - ], - [ - 3.2164978, - 51.215144 - ], - [ - 3.2163023, - 51.215144 - ], - [ - 3.2163023, - 51.2148728 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88157870 - } - }, - { - "id": 88157113, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2115447, - 51.2176632 - ], - [ - 3.2115447, - 51.2176632 - ], - [ - 3.2115447, - 51.2176632 - ], - [ - 3.2115447, - 51.2176632 - ], - [ - 3.2115447, - 51.2176632 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88157113 - } - }, - { - "id": 88157080, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5062741, - 50.9636733 - ], - [ - 5.5225319, - 50.9636733 - ], - [ - 5.5225319, - 50.9658221 - ], - [ - 5.5062741, - 50.9658221 - ], - [ - 5.5062741, - 50.9636733 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88157080 - } - }, - { - "id": 88156833, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5190677, - 50.9707772 - ], - [ - 5.5222391, - 50.9707772 - ], - [ - 5.5222391, - 50.9729652 - ], - [ - 5.5190677, - 50.9729652 - ], - [ - 5.5190677, - 50.9707772 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88156833 - } - }, - { - "id": 88156247, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2255351, - 51.181186 - ], - [ - 3.2329263, - 51.181186 - ], - [ - 3.2329263, - 51.1868973 - ], - [ - 3.2255351, - 51.1868973 - ], - [ - 3.2255351, - 51.181186 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88156247 - } - }, - { - "id": 88156218, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.204001, - 51.1735232 - ], - [ - 3.2093184, - 51.1735232 - ], - [ - 3.2093184, - 51.1756144 - ], - [ - 3.204001, - 51.1756144 - ], - [ - 3.204001, - 51.1735232 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88156218 - } - }, - { - "id": 88155379, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.273103, - 51.227341 - ], - [ - 3.2894348, - 51.227341 - ], - [ - 3.2894348, - 51.2303034 - ], - [ - 3.273103, - 51.2303034 - ], - [ - 3.273103, - 51.227341 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88155379 - } - }, - { - "id": 88155243, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2877584, - 51.2120898 - ], - [ - 3.2886133, - 51.2120898 - ], - [ - 3.2886133, - 51.2135213 - ], - [ - 3.2877584, - 51.2135213 - ], - [ - 3.2877584, - 51.2120898 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88155243 - } - }, - { - "id": 88155200, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2668383, - 51.1979763 - ], - [ - 3.2738301, - 51.1979763 - ], - [ - 3.2738301, - 51.2027771 - ], - [ - 3.2668383, - 51.2027771 - ], - [ - 3.2668383, - 51.1979763 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88155200 - } - }, - { - "id": 88155173, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2668383, - 51.1979763 - ], - [ - 3.2738301, - 51.1979763 - ], - [ - 3.2738301, - 51.2027771 - ], - [ - 3.2668383, - 51.2027771 - ], - [ - 3.2668383, - 51.1979763 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88155173 - } - }, - { - "id": 88153253, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7187251, - 51.3204237 - ], - [ - 4.7252026, - 51.3204237 - ], - [ - 4.7252026, - 51.3262526 - ], - [ - 4.7187251, - 51.3262526 - ], - [ - 4.7187251, - 51.3204237 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88153253 - } - }, - { - "id": 88153223, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7339379, - 51.2982367 - ], - [ - 4.7361073, - 51.2982367 - ], - [ - 4.7361073, - 51.2997088 - ], - [ - 4.7339379, - 51.2997088 - ], - [ - 4.7339379, - 51.2982367 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88153223 - } - }, - { - "id": 88153129, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2277163, - 51.2146203 - ], - [ - 3.2311131, - 51.2146203 - ], - [ - 3.2311131, - 51.2205774 - ], - [ - 3.2277163, - 51.2205774 - ], - [ - 3.2277163, - 51.2146203 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88153129 - } - }, - { - "id": 88152935, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7221523, - 51.2886744 - ], - [ - 4.7306579, - 51.2886744 - ], - [ - 4.7306579, - 51.2976096 - ], - [ - 4.7221523, - 51.2976096 - ], - [ - 4.7221523, - 51.2886744 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88152935 - } - }, - { - "id": 88152750, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2217165, - 51.2153253 - ], - [ - 3.2225958, - 51.2153253 - ], - [ - 3.2225958, - 51.2154806 - ], - [ - 3.2217165, - 51.2154806 - ], - [ - 3.2217165, - 51.2153253 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88152750 - } - }, - { - "id": 88150653, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0021972, - 50.8445413 - ], - [ - 3.0111917, - 50.8445413 - ], - [ - 3.0111917, - 50.8486897 - ], - [ - 3.0021972, - 50.8486897 - ], - [ - 3.0021972, - 50.8445413 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88150653 - } - }, - { - "id": 88150632, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9911189, - 50.8485441 - ], - [ - 3.0025041, - 50.8485441 - ], - [ - 3.0025041, - 50.8546163 - ], - [ - 2.9911189, - 50.8546163 - ], - [ - 2.9911189, - 50.8485441 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88150632 - } - }, - { - "id": 88150567, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9784721, - 50.8485065 - ], - [ - 2.9952538, - 50.8485065 - ], - [ - 2.9952538, - 50.8578951 - ], - [ - 2.9784721, - 50.8578951 - ], - [ - 2.9784721, - 50.8485065 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88150567 - } - }, - { - "id": 88149475, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3483172, - 50.8025905 - ], - [ - 4.3532619, - 50.8025905 - ], - [ - 4.3532619, - 50.8042588 - ], - [ - 4.3483172, - 50.8042588 - ], - [ - 4.3483172, - 50.8025905 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88149475 - } - }, - { - "id": 88141902, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2647513, - 50.6506435 - ], - [ - 4.2647513, - 50.6506435 - ], - [ - 4.2647513, - 50.6506435 - ], - [ - 4.2647513, - 50.6506435 - ], - [ - 4.2647513, - 50.6506435 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88141902 - } - }, - { - "id": 88107671, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2649676, - 51.1713897 - ], - [ - 5.2720501, - 51.1713897 - ], - [ - 5.2720501, - 51.1840354 - ], - [ - 5.2649676, - 51.1840354 - ], - [ - 5.2649676, - 51.1713897 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88107671 - } - }, - { - "id": 88107650, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2649676, - 51.1713897 - ], - [ - 5.2720501, - 51.1713897 - ], - [ - 5.2720501, - 51.1840354 - ], - [ - 5.2649676, - 51.1840354 - ], - [ - 5.2649676, - 51.1713897 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88107650 - } - }, - { - "id": 88107625, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2649676, - 51.1713897 - ], - [ - 5.2720501, - 51.1713897 - ], - [ - 5.2720501, - 51.1840354 - ], - [ - 5.2649676, - 51.1840354 - ], - [ - 5.2649676, - 51.1713897 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88107625 - } - }, - { - "id": 88107401, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3532469, - 50.8311614 - ], - [ - 4.3532469, - 50.8311614 - ], - [ - 4.3532469, - 50.8311614 - ], - [ - 4.3532469, - 50.8311614 - ], - [ - 4.3532469, - 50.8311614 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88107401 - } - }, - { - "id": 88107384, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1088547, - 50.8990408 - ], - [ - 4.1157531, - 50.8990408 - ], - [ - 4.1157531, - 50.9020349 - ], - [ - 4.1088547, - 50.9020349 - ], - [ - 4.1088547, - 50.8990408 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88107384 - } - }, - { - "id": 88107024, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1076566, - 50.9014892 - ], - [ - 4.1111664, - 50.9014892 - ], - [ - 4.1111664, - 50.9056292 - ], - [ - 4.1076566, - 50.9056292 - ], - [ - 4.1076566, - 50.9014892 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88107024 - } - }, - { - "id": 88107012, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1076566, - 50.9014892 - ], - [ - 4.1111664, - 50.9014892 - ], - [ - 4.1111664, - 50.9056292 - ], - [ - 4.1076566, - 50.9056292 - ], - [ - 4.1076566, - 50.9014892 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88107012 - } - }, - { - "id": 88106994, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1076566, - 50.9014892 - ], - [ - 4.1111664, - 50.9014892 - ], - [ - 4.1111664, - 50.9056292 - ], - [ - 4.1076566, - 50.9056292 - ], - [ - 4.1076566, - 50.9014892 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88106994 - } - }, - { - "id": 88089631, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 139.5134022, - 35.9213301 - ], - [ - 139.5146057, - 35.9213301 - ], - [ - 139.5146057, - 35.9240419 - ], - [ - 139.5134022, - 35.9240419 - ], - [ - 139.5134022, - 35.9213301 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88089631 - } - }, - { - "id": 88089296, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7027761, - 50.8777923 - ], - [ - 4.7027761, - 50.8777923 - ], - [ - 4.7027761, - 50.8777923 - ], - [ - 4.7027761, - 50.8777923 - ], - [ - 4.7027761, - 50.8777923 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88089296 - } - }, - { - "id": 88089251, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7027761, - 50.8777923 - ], - [ - 4.7027761, - 50.8777923 - ], - [ - 4.7027761, - 50.8777923 - ], - [ - 4.7027761, - 50.8777923 - ], - [ - 4.7027761, - 50.8777923 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88089251 - } - }, - { - "id": 88086585, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0590298, - 51.0971727 - ], - [ - 4.0608082, - 51.0971727 - ], - [ - 4.0608082, - 51.0981046 - ], - [ - 4.0590298, - 51.0981046 - ], - [ - 4.0590298, - 51.0971727 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88086585 - } - }, - { - "id": 88086439, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0316326, - 51.0921282 - ], - [ - 4.0881853, - 51.0921282 - ], - [ - 4.0881853, - 51.1111296 - ], - [ - 4.0316326, - 51.1111296 - ], - [ - 4.0316326, - 51.0921282 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88086439 - } - }, - { - "id": 88086354, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.02369, - 51.0872346 - ], - [ - 4.0283897, - 51.0872346 - ], - [ - 4.0283897, - 51.0900089 - ], - [ - 4.02369, - 51.0900089 - ], - [ - 4.02369, - 51.0872346 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88086354 - } - }, - { - "id": 88086277, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0316326, - 51.0921282 - ], - [ - 4.0881853, - 51.0921282 - ], - [ - 4.0881853, - 51.1111296 - ], - [ - 4.0316326, - 51.1111296 - ], - [ - 4.0316326, - 51.0921282 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88086277 - } - }, - { - "id": 88086153, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0316326, - 51.0921282 - ], - [ - 4.0881853, - 51.0921282 - ], - [ - 4.0881853, - 51.1111296 - ], - [ - 4.0316326, - 51.1111296 - ], - [ - 4.0316326, - 51.0921282 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88086153 - } - }, - { - "id": 88086113, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0298782, - 51.0806543 - ], - [ - 4.0313339, - 51.0806543 - ], - [ - 4.0313339, - 51.081522 - ], - [ - 4.0298782, - 51.081522 - ], - [ - 4.0298782, - 51.0806543 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88086113 - } - }, - { - "id": 88086105, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0316326, - 51.0921282 - ], - [ - 4.0881853, - 51.0921282 - ], - [ - 4.0881853, - 51.1111296 - ], - [ - 4.0316326, - 51.1111296 - ], - [ - 4.0316326, - 51.0921282 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88086105 - } - }, - { - "id": 88086056, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0298782, - 51.0806543 - ], - [ - 4.0313339, - 51.0806543 - ], - [ - 4.0313339, - 51.081522 - ], - [ - 4.0298782, - 51.081522 - ], - [ - 4.0298782, - 51.0806543 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88086056 - } - }, - { - "id": 88086004, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0293278, - 51.0811583 - ], - [ - 4.0360112, - 51.0811583 - ], - [ - 4.0360112, - 51.0843938 - ], - [ - 4.0293278, - 51.0843938 - ], - [ - 4.0293278, - 51.0811583 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88086004 - } - }, - { - "id": 88085971, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0298782, - 51.0806543 - ], - [ - 4.0313339, - 51.0806543 - ], - [ - 4.0313339, - 51.081522 - ], - [ - 4.0298782, - 51.081522 - ], - [ - 4.0298782, - 51.0806543 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88085971 - } - }, - { - "id": 88085836, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0293278, - 51.0811583 - ], - [ - 4.0360112, - 51.0811583 - ], - [ - 4.0360112, - 51.0843938 - ], - [ - 4.0293278, - 51.0843938 - ], - [ - 4.0293278, - 51.0811583 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88085836 - } - }, - { - "id": 88085772, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0293278, - 51.0811583 - ], - [ - 4.0360112, - 51.0811583 - ], - [ - 4.0360112, - 51.0843938 - ], - [ - 4.0293278, - 51.0843938 - ], - [ - 4.0293278, - 51.0811583 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88085772 - } - }, - { - "id": 88081752, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3071682, - 50.8615584 - ], - [ - 3.3079065, - 50.8615584 - ], - [ - 3.3079065, - 50.8620589 - ], - [ - 3.3071682, - 50.8620589 - ], - [ - 3.3071682, - 50.8615584 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88081752 - } - }, - { - "id": 88081641, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3128133, - 50.8582042 - ], - [ - 3.3130023, - 50.8582042 - ], - [ - 3.3130023, - 50.8583504 - ], - [ - 3.3128133, - 50.8583504 - ], - [ - 3.3128133, - 50.8582042 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88081641 - } - }, - { - "id": 88081544, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3150686, - 50.8600718 - ], - [ - 3.3152979, - 50.8600718 - ], - [ - 3.3152979, - 50.86027 - ], - [ - 3.3150686, - 50.86027 - ], - [ - 3.3150686, - 50.8600718 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88081544 - } - }, - { - "id": 88069921, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1477068, - 50.9778112 - ], - [ - 3.1483176, - 50.9778112 - ], - [ - 3.1483176, - 50.9782891 - ], - [ - 3.1477068, - 50.9782891 - ], - [ - 3.1477068, - 50.9778112 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88069921 - } - }, - { - "id": 88069723, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1401624, - 50.9666221 - ], - [ - 3.1425968, - 50.9666221 - ], - [ - 3.1425968, - 50.9678616 - ], - [ - 3.1401624, - 50.9678616 - ], - [ - 3.1401624, - 50.9666221 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88069723 - } - }, - { - "id": 88069637, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1467862, - 50.9775819 - ], - [ - 3.1480955, - 50.9775819 - ], - [ - 3.1480955, - 50.9779161 - ], - [ - 3.1467862, - 50.9779161 - ], - [ - 3.1467862, - 50.9775819 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88069637 - } - }, - { - "id": 88069564, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1467862, - 50.9775819 - ], - [ - 3.1480955, - 50.9775819 - ], - [ - 3.1480955, - 50.9779161 - ], - [ - 3.1467862, - 50.9779161 - ], - [ - 3.1467862, - 50.9775819 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88069564 - } - }, - { - "id": 88048793, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4991887, - 50.9784863 - ], - [ - 5.514167, - 50.9784863 - ], - [ - 5.514167, - 50.9851878 - ], - [ - 5.4991887, - 50.9851878 - ], - [ - 5.4991887, - 50.9784863 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88048793 - } - }, - { - "id": 88048701, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4420405, - 50.9566702 - ], - [ - 5.442867, - 50.9566702 - ], - [ - 5.442867, - 50.9570691 - ], - [ - 5.4420405, - 50.9570691 - ], - [ - 5.4420405, - 50.9566702 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88048701 - } - }, - { - "id": 88048560, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4717834, - 50.9584205 - ], - [ - 5.4780069, - 50.9584205 - ], - [ - 5.4780069, - 50.9647702 - ], - [ - 5.4717834, - 50.9647702 - ], - [ - 5.4717834, - 50.9584205 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88048560 - } - }, - { - "id": 88047430, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4136644, - 50.965372 - ], - [ - 5.4378935, - 50.965372 - ], - [ - 5.4378935, - 50.9745674 - ], - [ - 5.4136644, - 50.9745674 - ], - [ - 5.4136644, - 50.965372 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88047430 - } - }, - { - "id": 88047330, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0719774, - 51.09112 - ], - [ - 3.086583, - 51.09112 - ], - [ - 3.086583, - 51.0981837 - ], - [ - 3.0719774, - 51.0981837 - ], - [ - 3.0719774, - 51.09112 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88047330 - } - }, - { - "id": 88047295, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0700123, - 51.0925857 - ], - [ - 3.0708241, - 51.0925857 - ], - [ - 3.0708241, - 51.0931823 - ], - [ - 3.0700123, - 51.0931823 - ], - [ - 3.0700123, - 51.0925857 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88047295 - } - }, - { - "id": 88047255, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0631543, - 51.0894864 - ], - [ - 3.0680028, - 51.0894864 - ], - [ - 3.0680028, - 51.0919261 - ], - [ - 3.0631543, - 51.0919261 - ], - [ - 3.0631543, - 51.0894864 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88047255 - } - }, - { - "id": 88047220, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0631543, - 51.0894864 - ], - [ - 3.0680028, - 51.0894864 - ], - [ - 3.0680028, - 51.0919261 - ], - [ - 3.0631543, - 51.0919261 - ], - [ - 3.0631543, - 51.0894864 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88047220 - } - }, - { - "id": 88047061, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0296649, - 51.0602255 - ], - [ - 3.0610521, - 51.0602255 - ], - [ - 3.0610521, - 51.0788125 - ], - [ - 3.0296649, - 51.0788125 - ], - [ - 3.0296649, - 51.0602255 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88047061 - } - }, - { - "id": 88046597, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4299094, - 51.192744 - ], - [ - 4.4345337, - 51.192744 - ], - [ - 4.4345337, - 51.1952395 - ], - [ - 4.4299094, - 51.1952395 - ], - [ - 4.4299094, - 51.192744 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88046597 - } - }, - { - "id": 88046577, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4299094, - 51.192744 - ], - [ - 4.446798, - 51.192744 - ], - [ - 4.446798, - 51.2110521 - ], - [ - 4.4299094, - 51.2110521 - ], - [ - 4.4299094, - 51.192744 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88046577 - } - }, - { - "id": 88046500, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4493857, - 51.214755 - ], - [ - 4.4573557, - 51.214755 - ], - [ - 4.4573557, - 51.2164273 - ], - [ - 4.4493857, - 51.2164273 - ], - [ - 4.4493857, - 51.214755 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88046500 - } - }, - { - "id": 88046461, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4484144, - 51.2106528 - ], - [ - 4.4637904, - 51.2106528 - ], - [ - 4.4637904, - 51.2161714 - ], - [ - 4.4484144, - 51.2161714 - ], - [ - 4.4484144, - 51.2106528 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88046461 - } - }, - { - "id": 88046420, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4484144, - 51.2135989 - ], - [ - 4.4590402, - 51.2135989 - ], - [ - 4.4590402, - 51.2161714 - ], - [ - 4.4484144, - 51.2161714 - ], - [ - 4.4484144, - 51.2135989 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88046420 - } - }, - { - "id": 88030837, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2115447, - 51.2176632 - ], - [ - 3.2115447, - 51.2176632 - ], - [ - 3.2115447, - 51.2176632 - ], - [ - 3.2115447, - 51.2176632 - ], - [ - 3.2115447, - 51.2176632 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88030837 - } - }, - { - "id": 88028271, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9989372, - 50.4072866 - ], - [ - 5.9989372, - 50.4072866 - ], - [ - 5.9989372, - 50.4072866 - ], - [ - 5.9989372, - 50.4072866 - ], - [ - 5.9989372, - 50.4072866 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88028271 - } - }, - { - "id": 88028195, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9989372, - 50.4072866 - ], - [ - 5.9989372, - 50.4072866 - ], - [ - 5.9989372, - 50.4072866 - ], - [ - 5.9989372, - 50.4072866 - ], - [ - 5.9989372, - 50.4072866 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88028195 - } - }, - { - "id": 88025907, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8407869, - 51.3304452 - ], - [ - 4.8485709, - 51.3304452 - ], - [ - 4.8485709, - 51.3359572 - ], - [ - 4.8407869, - 51.3359572 - ], - [ - 4.8407869, - 51.3304452 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88025907 - } - }, - { - "id": 88025839, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7950972, - 51.3325514 - ], - [ - 4.8341228, - 51.3325514 - ], - [ - 4.8341228, - 51.3512416 - ], - [ - 4.7950972, - 51.3512416 - ], - [ - 4.7950972, - 51.3325514 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88025839 - } - }, - { - "id": 88025764, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8017629, - 51.3325514 - ], - [ - 4.8217895, - 51.3325514 - ], - [ - 4.8217895, - 51.3443292 - ], - [ - 4.8017629, - 51.3443292 - ], - [ - 4.8017629, - 51.3325514 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88025764 - } - }, - { - "id": 88025678, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8017629, - 51.3325514 - ], - [ - 4.8217895, - 51.3325514 - ], - [ - 4.8217895, - 51.3443292 - ], - [ - 4.8017629, - 51.3443292 - ], - [ - 4.8017629, - 51.3325514 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88025678 - } - }, - { - "id": 88025605, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8599989, - 51.329912 - ], - [ - 4.8692948, - 51.329912 - ], - [ - 4.8692948, - 51.3361768 - ], - [ - 4.8599989, - 51.3361768 - ], - [ - 4.8599989, - 51.329912 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88025605 - } - }, - { - "id": 88025458, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8778773, - 51.3196626 - ], - [ - 4.9139482, - 51.3196626 - ], - [ - 4.9139482, - 51.3294001 - ], - [ - 4.8778773, - 51.3294001 - ], - [ - 4.8778773, - 51.3196626 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88025458 - } - }, - { - "id": 88025429, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7950972, - 51.3282369 - ], - [ - 4.8587272, - 51.3282369 - ], - [ - 4.8587272, - 51.3512416 - ], - [ - 4.7950972, - 51.3512416 - ], - [ - 4.7950972, - 51.3282369 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88025429 - } - }, - { - "id": 88025313, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8407869, - 51.3304452 - ], - [ - 4.8485709, - 51.3304452 - ], - [ - 4.8485709, - 51.3359572 - ], - [ - 4.8407869, - 51.3359572 - ], - [ - 4.8407869, - 51.3304452 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88025313 - } - }, - { - "id": 88019422, - "type": "Feature", - "geometry": null, - "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:37:28Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88019422 - } - }, - { - "id": 88019376, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6170223, - 50.8510006 - ], - [ - 3.6199137, - 50.8510006 - ], - [ - 3.6199137, - 50.8525148 - ], - [ - 3.6170223, - 50.8525148 - ], - [ - 3.6170223, - 50.8510006 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88019376 - } - }, - { - "id": 88016145, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0414613, - 51.0876541 - ], - [ - 4.0414613, - 51.0876541 - ], - [ - 4.0414613, - 51.0876541 - ], - [ - 4.0414613, - 51.0876541 - ], - [ - 4.0414613, - 51.0876541 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88016145 - } - }, - { - "id": 88015726, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0692375, - 51.0677753 - ], - [ - 4.0702939, - 51.0677753 - ], - [ - 4.0702939, - 51.0684267 - ], - [ - 4.0692375, - 51.0684267 - ], - [ - 4.0692375, - 51.0677753 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88015726 - } - }, - { - "id": 88015554, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0692375, - 51.0677753 - ], - [ - 4.0702939, - 51.0677753 - ], - [ - 4.0702939, - 51.0684267 - ], - [ - 4.0692375, - 51.0684267 - ], - [ - 4.0692375, - 51.0677753 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88015554 - } - }, - { - "id": 88015489, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0692375, - 51.0677753 - ], - [ - 4.0702939, - 51.0677753 - ], - [ - 4.0702939, - 51.0684267 - ], - [ - 4.0692375, - 51.0684267 - ], - [ - 4.0692375, - 51.0677753 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88015489 - } - }, - { - "id": 88015151, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.02369, - 51.0872346 - ], - [ - 4.0283897, - 51.0872346 - ], - [ - 4.0283897, - 51.0900089 - ], - [ - 4.02369, - 51.0900089 - ], - [ - 4.02369, - 51.0872346 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88015151 - } - }, - { - "id": 88015082, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1828728, - 50.8706803 - ], - [ - 4.1968384, - 50.8706803 - ], - [ - 4.1968384, - 50.8728755 - ], - [ - 4.1828728, - 50.8728755 - ], - [ - 4.1828728, - 50.8706803 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88015082 - } - }, - { - "id": 88015062, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.02369, - 51.0872346 - ], - [ - 4.0283897, - 51.0872346 - ], - [ - 4.0283897, - 51.0900089 - ], - [ - 4.02369, - 51.0900089 - ], - [ - 4.02369, - 51.0872346 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88015062 - } - }, - { - "id": 88014719, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.15792, - 50.8551597 - ], - [ - 4.1620295, - 50.8551597 - ], - [ - 4.1620295, - 50.8600038 - ], - [ - 4.15792, - 50.8600038 - ], - [ - 4.15792, - 50.8551597 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88014719 - } - }, - { - "id": 88014577, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.15792, - 50.8551597 - ], - [ - 4.1620295, - 50.8551597 - ], - [ - 4.1620295, - 50.8600038 - ], - [ - 4.15792, - 50.8600038 - ], - [ - 4.15792, - 50.8551597 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88014577 - } - }, - { - "id": 88014511, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.15792, - 50.8551597 - ], - [ - 4.1620295, - 50.8551597 - ], - [ - 4.1620295, - 50.8600038 - ], - [ - 4.15792, - 50.8600038 - ], - [ - 4.15792, - 50.8551597 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88014511 - } - }, - { - "id": 88014236, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1878563, - 50.8738251 - ], - [ - 4.1878563, - 50.8738251 - ], - [ - 4.1878563, - 50.8738251 - ], - [ - 4.1878563, - 50.8738251 - ], - [ - 4.1878563, - 50.8738251 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88014236 - } - }, - { - "id": 88014039, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1878563, - 50.8738251 - ], - [ - 4.1878563, - 50.8738251 - ], - [ - 4.1878563, - 50.8738251 - ], - [ - 4.1878563, - 50.8738251 - ], - [ - 4.1878563, - 50.8738251 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88014039 - } - }, - { - "id": 88013444, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1493172, - 50.8755817 - ], - [ - 4.1502088, - 50.8755817 - ], - [ - 4.1502088, - 50.876015 - ], - [ - 4.1493172, - 50.876015 - ], - [ - 4.1493172, - 50.8755817 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88013444 - } - }, - { - "id": 88013395, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1493172, - 50.8755817 - ], - [ - 4.1502088, - 50.8755817 - ], - [ - 4.1502088, - 50.876015 - ], - [ - 4.1493172, - 50.876015 - ], - [ - 4.1493172, - 50.8755817 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88013395 - } - }, - { - "id": 88013379, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1493172, - 50.8755817 - ], - [ - 4.1502088, - 50.8755817 - ], - [ - 4.1502088, - 50.876015 - ], - [ - 4.1493172, - 50.876015 - ], - [ - 4.1493172, - 50.8755817 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88013379 - } - }, - { - "id": 88013215, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1491199, - 50.8758697 - ], - [ - 4.1491199, - 50.8758697 - ], - [ - 4.1491199, - 50.8758697 - ], - [ - 4.1491199, - 50.8758697 - ], - [ - 4.1491199, - 50.8758697 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88013215 - } - }, - { - "id": 88012093, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8261575, - 51.0877629 - ], - [ - 3.8321859, - 51.0877629 - ], - [ - 3.8321859, - 51.0945606 - ], - [ - 3.8261575, - 51.0945606 - ], - [ - 3.8261575, - 51.0877629 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88012093 - } - }, - { - "id": 88011975, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4116839, - 50.9642105 - ], - [ - 5.4337595, - 50.9642105 - ], - [ - 5.4337595, - 50.9655674 - ], - [ - 5.4116839, - 50.9655674 - ], - [ - 5.4116839, - 50.9642105 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88011975 - } - }, - { - "id": 88011814, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4121699, - 50.9633051 - ], - [ - 5.4142168, - 50.9633051 - ], - [ - 5.4142168, - 50.9634989 - ], - [ - 5.4121699, - 50.9634989 - ], - [ - 5.4121699, - 50.9633051 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88011814 - } - }, - { - "id": 88008751, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3758546, - 51.0847314 - ], - [ - 4.3914168, - 51.0847314 - ], - [ - 4.3914168, - 51.094882 - ], - [ - 4.3758546, - 51.094882 - ], - [ - 4.3758546, - 51.0847314 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88008751 - } - }, - { - "id": 88008701, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3852499, - 51.0806464 - ], - [ - 4.4100702, - 51.0806464 - ], - [ - 4.4100702, - 51.0907573 - ], - [ - 4.3852499, - 51.0907573 - ], - [ - 4.3852499, - 51.0806464 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88008701 - } - }, - { - "id": 88008661, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3852499, - 51.0806464 - ], - [ - 4.4100702, - 51.0806464 - ], - [ - 4.4100702, - 51.0907573 - ], - [ - 4.3852499, - 51.0907573 - ], - [ - 4.3852499, - 51.0806464 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88008661 - } - }, - { - "id": 88008622, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.377451, - 51.0935003 - ], - [ - 4.3874243, - 51.0935003 - ], - [ - 4.3874243, - 51.0992358 - ], - [ - 4.377451, - 51.0992358 - ], - [ - 4.377451, - 51.0935003 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88008622 - } - }, - { - "id": 87997843, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5052078, - 51.08089 - ], - [ - 4.5083416, - 51.08089 - ], - [ - 4.5083416, - 51.0850668 - ], - [ - 4.5052078, - 51.0850668 - ], - [ - 4.5052078, - 51.08089 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87997843 - } - }, - { - "id": 87997553, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4917014, - 51.0789541 - ], - [ - 4.4957562, - 51.0789541 - ], - [ - 4.4957562, - 51.0840829 - ], - [ - 4.4917014, - 51.0840829 - ], - [ - 4.4917014, - 51.0789541 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87997553 - } - }, - { - "id": 87997523, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4954016, - 51.0806887 - ], - [ - 4.5006611, - 51.0806887 - ], - [ - 4.5006611, - 51.0859843 - ], - [ - 4.4954016, - 51.0859843 - ], - [ - 4.4954016, - 51.0806887 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87997523 - } - }, - { - "id": 87997500, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4954016, - 51.0806887 - ], - [ - 4.5006611, - 51.0806887 - ], - [ - 4.5006611, - 51.0859843 - ], - [ - 4.4954016, - 51.0859843 - ], - [ - 4.4954016, - 51.0806887 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87997500 - } - }, - { - "id": 87986399, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4266195, - 51.2063523 - ], - [ - 3.4338906, - 51.2063523 - ], - [ - 3.4338906, - 51.2118163 - ], - [ - 3.4266195, - 51.2118163 - ], - [ - 3.4266195, - 51.2063523 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87986399 - } - }, - { - "id": 87986368, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4266195, - 51.2063523 - ], - [ - 3.4338906, - 51.2063523 - ], - [ - 3.4338906, - 51.2118163 - ], - [ - 3.4266195, - 51.2118163 - ], - [ - 3.4266195, - 51.2063523 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87986368 - } - }, - { - "id": 87986259, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4266195, - 51.2063523 - ], - [ - 3.4338906, - 51.2063523 - ], - [ - 3.4338906, - 51.2118163 - ], - [ - 3.4266195, - 51.2118163 - ], - [ - 3.4266195, - 51.2063523 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87986259 - } - }, - { - "id": 87986231, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4266195, - 51.2063523 - ], - [ - 3.4338906, - 51.2063523 - ], - [ - 3.4338906, - 51.2118163 - ], - [ - 3.4266195, - 51.2118163 - ], - [ - 3.4266195, - 51.2063523 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87986231 - } - }, - { - "id": 87986147, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4266195, - 51.2063523 - ], - [ - 3.4338906, - 51.2063523 - ], - [ - 3.4338906, - 51.2118163 - ], - [ - 3.4266195, - 51.2118163 - ], - [ - 3.4266195, - 51.2063523 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87986147 - } - }, - { - "id": 87982845, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.438761, - 50.938033 - ], - [ - 5.4900774, - 50.938033 - ], - [ - 5.4900774, - 50.9890342 - ], - [ - 5.438761, - 50.9890342 - ], - [ - 5.438761, - 50.938033 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87982845 - } - }, - { - "id": 87982805, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.862274, - 50.8387375 - ], - [ - 4.8631953, - 50.8387375 - ], - [ - 4.8631953, - 50.8403629 - ], - [ - 4.862274, - 50.8403629 - ], - [ - 4.862274, - 50.8387375 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87982805 - } - }, - { - "id": 87982762, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4828536, - 50.9675966 - ], - [ - 5.4931848, - 50.9675966 - ], - [ - 5.4931848, - 50.9753816 - ], - [ - 5.4828536, - 50.9753816 - ], - [ - 5.4828536, - 50.9675966 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87982762 - } - }, - { - "id": 87982694, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4771946, - 50.9688659 - ], - [ - 5.4840569, - 50.9688659 - ], - [ - 5.4840569, - 50.9727386 - ], - [ - 5.4771946, - 50.9727386 - ], - [ - 5.4771946, - 50.9688659 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87982694 - } - }, - { - "id": 87982613, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4571371, - 50.9584254 - ], - [ - 5.4628275, - 50.9584254 - ], - [ - 5.4628275, - 50.9610052 - ], - [ - 5.4571371, - 50.9610052 - ], - [ - 5.4571371, - 50.9584254 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87982613 - } - }, - { - "id": 87982570, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.45619, - 50.9618283 - ], - [ - 5.4720711, - 50.9618283 - ], - [ - 5.4720711, - 50.9679276 - ], - [ - 5.45619, - 50.9679276 - ], - [ - 5.45619, - 50.9618283 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87982570 - } - }, - { - "id": 87982495, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4524971, - 50.9571152 - ], - [ - 5.4572718, - 50.9571152 - ], - [ - 5.4572718, - 50.9592899 - ], - [ - 5.4524971, - 50.9592899 - ], - [ - 5.4524971, - 50.9571152 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87982495 - } - }, - { - "id": 87982465, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4329807, - 50.9398303 - ], - [ - 5.4726747, - 50.9398303 - ], - [ - 5.4726747, - 50.9609039 - ], - [ - 5.4329807, - 50.9609039 - ], - [ - 5.4329807, - 50.9398303 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87982465 - } - }, - { - "id": 87982237, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4645824, - 50.9648395 - ], - [ - 5.4754676, - 50.9648395 - ], - [ - 5.4754676, - 50.9677868 - ], - [ - 5.4645824, - 50.9677868 - ], - [ - 5.4645824, - 50.9648395 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87982237 - } - }, - { - "id": 87980602, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5949909, - 50.8400414 - ], - [ - 3.5967943, - 50.8400414 - ], - [ - 3.5967943, - 50.8418776 - ], - [ - 3.5949909, - 50.8418776 - ], - [ - 3.5949909, - 50.8400414 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87980602 - } - }, - { - "id": 87980514, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5811466, - 50.8405636 - ], - [ - 3.5949207, - 50.8405636 - ], - [ - 3.5949207, - 50.8462614 - ], - [ - 3.5811466, - 50.8462614 - ], - [ - 3.5811466, - 50.8405636 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87980514 - } - }, - { - "id": 87980472, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.592868, - 50.8424216 - ], - [ - 3.5937212, - 50.8424216 - ], - [ - 3.5937212, - 50.8442699 - ], - [ - 3.592868, - 50.8442699 - ], - [ - 3.592868, - 50.8424216 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87980472 - } - }, - { - "id": 87980423, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5900559, - 50.8407955 - ], - [ - 3.5926436, - 50.8407955 - ], - [ - 3.5926436, - 50.8418768 - ], - [ - 3.5900559, - 50.8418768 - ], - [ - 3.5900559, - 50.8407955 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87980423 - } - }, - { - "id": 87980385, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.584316, - 50.8434785 - ], - [ - 3.5931146, - 50.8434785 - ], - [ - 3.5931146, - 50.8465448 - ], - [ - 3.584316, - 50.8465448 - ], - [ - 3.584316, - 50.8434785 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87980385 - } - }, - { - "id": 87980367, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5842186, - 50.8395099 - ], - [ - 3.5860785, - 50.8395099 - ], - [ - 3.5860785, - 50.8460417 - ], - [ - 3.5842186, - 50.8460417 - ], - [ - 3.5842186, - 50.8395099 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87980367 - } - }, - { - "id": 87980340, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5802695, - 50.8394308 - ], - [ - 3.5871745, - 50.8394308 - ], - [ - 3.5871745, - 50.84543 - ], - [ - 3.5802695, - 50.84543 - ], - [ - 3.5802695, - 50.8394308 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87980340 - } - }, - { - "id": 87980303, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5808348, - 50.8409909 - ], - [ - 3.5846114, - 50.8409909 - ], - [ - 3.5846114, - 50.8448151 - ], - [ - 3.5808348, - 50.8448151 - ], - [ - 3.5808348, - 50.8409909 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87980303 - } - }, - { - "id": 87980284, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5846002, - 50.8395292 - ], - [ - 3.5932255, - 50.8395292 - ], - [ - 3.5932255, - 50.8462937 - ], - [ - 3.5846002, - 50.8462937 - ], - [ - 3.5846002, - 50.8395292 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87980284 - } - }, - { - "id": 87980218, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6203362, - 50.8555253 - ], - [ - 3.6237133, - 50.8555253 - ], - [ - 3.6237133, - 50.8584298 - ], - [ - 3.6203362, - 50.8584298 - ], - [ - 3.6203362, - 50.8555253 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87980218 - } - }, - { - "id": 87980173, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.603398, - 50.8622977 - ], - [ - 3.6053644, - 50.8622977 - ], - [ - 3.6053644, - 50.8636072 - ], - [ - 3.603398, - 50.8636072 - ], - [ - 3.603398, - 50.8622977 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87980173 - } - }, - { - "id": 87977722, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0058801, - 51.0971271 - ], - [ - 4.0218356, - 51.0971271 - ], - [ - 4.0218356, - 51.1070966 - ], - [ - 4.0058801, - 51.1070966 - ], - [ - 4.0058801, - 51.0971271 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87977722 - } - }, - { - "id": 87975361, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Joost Rotty", - "uid": "11490367", - "editor": "MapComplete 0.0.0", - "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", - "comments_count": null, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2020-07-14T11:42:00Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 87975361 - } - }, - { - "id": 87971874, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3681525, - 50.9540566 - ], - [ - 5.4091448, - 50.9540566 - ], - [ - 5.4091448, - 50.9691863 - ], - [ - 5.3681525, - 50.9691863 - ], - [ - 5.3681525, - 50.9540566 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87971874 - } - }, - { - "id": 87971450, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3451009, - 50.9467973 - ], - [ - 5.3457251, - 50.9467973 - ], - [ - 5.3457251, - 50.9470609 - ], - [ - 5.3451009, - 50.9470609 - ], - [ - 5.3451009, - 50.9467973 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87971450 - } - }, - { - "id": 87971404, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3421858, - 50.9467973 - ], - [ - 5.3461081, - 50.9467973 - ], - [ - 5.3461081, - 50.9487145 - ], - [ - 5.3421858, - 50.9487145 - ], - [ - 5.3421858, - 50.9467973 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87971404 - } - }, - { - "id": 87971298, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3300084, - 50.9499965 - ], - [ - 5.3425725, - 50.9499965 - ], - [ - 5.3425725, - 50.9531215 - ], - [ - 5.3300084, - 50.9531215 - ], - [ - 5.3300084, - 50.9499965 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87971298 - } - }, - { - "id": 87971219, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3441979, - 50.9505829 - ], - [ - 5.3482246, - 50.9505829 - ], - [ - 5.3482246, - 50.9537672 - ], - [ - 5.3441979, - 50.9537672 - ], - [ - 5.3441979, - 50.9505829 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87971219 - } - }, - { - "id": 87971151, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3441925, - 50.9505829 - ], - [ - 5.3472073, - 50.9505829 - ], - [ - 5.3472073, - 50.9522033 - ], - [ - 5.3441925, - 50.9522033 - ], - [ - 5.3441925, - 50.9505829 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87971151 - } - }, - { - "id": 87971027, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3432287, - 50.950174 - ], - [ - 5.3455507, - 50.950174 - ], - [ - 5.3455507, - 50.9511021 - ], - [ - 5.3432287, - 50.9511021 - ], - [ - 5.3432287, - 50.950174 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87971027 - } - }, - { - "id": 87970869, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3422737, - 50.9535165 - ], - [ - 5.3435105, - 50.9535165 - ], - [ - 5.3435105, - 50.9537728 - ], - [ - 5.3422737, - 50.9537728 - ], - [ - 5.3422737, - 50.9535165 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87970869 - } - }, - { - "id": 87970819, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3019446, - 50.9758638 - ], - [ - 5.3180731, - 50.9758638 - ], - [ - 5.3180731, - 50.9827628 - ], - [ - 5.3019446, - 50.9827628 - ], - [ - 5.3019446, - 50.9758638 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87970819 - } - }, - { - "id": 87970757, - "type": "Feature", - "geometry": null, - "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:23:27Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 87970757 - } - }, - { - "id": 87967158, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Joost Rotty", - "uid": "11490367", - "editor": "MapComplete 0.0.0", - "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #buurtnatuur", - "comments_count": null, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2020-07-14T09:26:30Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 87967158 - } - }, - { - "id": 87966494, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1862056, - 51.2037968 - ], - [ - 3.1862056, - 51.2037968 - ], - [ - 3.1862056, - 51.2037968 - ], - [ - 3.1862056, - 51.2037968 - ], - [ - 3.1862056, - 51.2037968 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87966494 - } - }, - { - "id": 87964003, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3441379, - 50.832024 - ], - [ - 4.3441379, - 50.832024 - ], - [ - 4.3441379, - 50.832024 - ], - [ - 4.3441379, - 50.832024 - ], - [ - 4.3441379, - 50.832024 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87964003 - } - }, - { - "id": 87962368, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1812063, - 50.872701 - ], - [ - 4.1838551, - 50.872701 - ], - [ - 4.1838551, - 50.8738972 - ], - [ - 4.1812063, - 50.8738972 - ], - [ - 4.1812063, - 50.872701 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87962368 - } - }, - { - "id": 87961924, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1797185, - 50.8730262 - ], - [ - 4.1797185, - 50.8730262 - ], - [ - 4.1797185, - 50.8730262 - ], - [ - 4.1797185, - 50.8730262 - ], - [ - 4.1797185, - 50.8730262 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87961924 - } - }, - { - "id": 87961673, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1797185, - 50.8730262 - ], - [ - 4.1797185, - 50.8730262 - ], - [ - 4.1797185, - 50.8730262 - ], - [ - 4.1797185, - 50.8730262 - ], - [ - 4.1797185, - 50.8730262 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87961673 - } - }, - { - "id": 87961294, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1884153, - 50.8703694 - ], - [ - 4.1920745, - 50.8703694 - ], - [ - 4.1920745, - 50.871811 - ], - [ - 4.1884153, - 50.871811 - ], - [ - 4.1884153, - 50.8703694 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87961294 - } - }, - { - "id": 87960975, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1922914, - 50.866296 - ], - [ - 4.195489, - 50.866296 - ], - [ - 4.195489, - 50.8684936 - ], - [ - 4.1922914, - 50.8684936 - ], - [ - 4.1922914, - 50.866296 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87960975 - } - }, - { - "id": 87960961, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1922914, - 50.866296 - ], - [ - 4.195489, - 50.866296 - ], - [ - 4.195489, - 50.8684936 - ], - [ - 4.1922914, - 50.8684936 - ], - [ - 4.1922914, - 50.866296 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87960961 - } - }, - { - "id": 87960766, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1922914, - 50.866296 - ], - [ - 4.195489, - 50.866296 - ], - [ - 4.195489, - 50.8684936 - ], - [ - 4.1922914, - 50.8684936 - ], - [ - 4.1922914, - 50.866296 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87960766 - } - }, - { - "id": 87960529, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.103968, - 50.8622755 - ], - [ - 4.1223869, - 50.8622755 - ], - [ - 4.1223869, - 50.8796133 - ], - [ - 4.103968, - 50.8796133 - ], - [ - 4.103968, - 50.8622755 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87960529 - } - }, - { - "id": 87960411, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.103968, - 50.8622755 - ], - [ - 4.1223869, - 50.8622755 - ], - [ - 4.1223869, - 50.8796133 - ], - [ - 4.103968, - 50.8796133 - ], - [ - 4.103968, - 50.8622755 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87960411 - } - }, - { - "id": 87960109, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7387901, - 50.8567935 - ], - [ - 4.7505936, - 50.8567935 - ], - [ - 4.7505936, - 50.8600725 - ], - [ - 4.7387901, - 50.8600725 - ], - [ - 4.7387901, - 50.8567935 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87960109 - } - }, - { - "id": 87953731, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2614016, - 50.9069432 - ], - [ - 3.2623747, - 50.9069432 - ], - [ - 3.2623747, - 50.907436 - ], - [ - 3.2614016, - 50.907436 - ], - [ - 3.2614016, - 50.9069432 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87953731 - } - }, - { - "id": 87953643, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2597124, - 50.9097582 - ], - [ - 3.2606376, - 50.9097582 - ], - [ - 3.2606376, - 50.9101185 - ], - [ - 3.2597124, - 50.9101185 - ], - [ - 3.2597124, - 50.9097582 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87953643 - } - }, - { - "id": 87953608, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.258923, - 50.9072485 - ], - [ - 3.2594771, - 50.9072485 - ], - [ - 3.2594771, - 50.9079427 - ], - [ - 3.258923, - 50.9079427 - ], - [ - 3.258923, - 50.9072485 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87953608 - } - }, - { - "id": 87944068, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0987694, - 50.9268937 - ], - [ - 4.0987694, - 50.9268937 - ], - [ - 4.0987694, - 50.9268937 - ], - [ - 4.0987694, - 50.9268937 - ], - [ - 4.0987694, - 50.9268937 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87944068 - } - }, - { - "id": 87943233, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.126853, - 50.9117798 - ], - [ - 4.131104, - 50.9117798 - ], - [ - 4.131104, - 50.9182455 - ], - [ - 4.126853, - 50.9182455 - ], - [ - 4.126853, - 50.9117798 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87943233 - } - }, - { - "id": 87943209, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1057121, - 50.920221 - ], - [ - 4.1101516, - 50.920221 - ], - [ - 4.1101516, - 50.9280586 - ], - [ - 4.1057121, - 50.9280586 - ], - [ - 4.1057121, - 50.920221 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87943209 - } - }, - { - "id": 87941416, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3858907, - 50.9412038 - ], - [ - 4.3858907, - 50.9412038 - ], - [ - 4.3858907, - 50.9412038 - ], - [ - 4.3858907, - 50.9412038 - ], - [ - 4.3858907, - 50.9412038 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87941416 - } - }, - { - "id": 87941355, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3835071, - 50.9553674 - ], - [ - 4.3904029, - 50.9553674 - ], - [ - 4.3904029, - 50.958833 - ], - [ - 4.3835071, - 50.958833 - ], - [ - 4.3835071, - 50.9553674 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87941355 - } - }, - { - "id": 87941336, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3835071, - 50.9553674 - ], - [ - 4.3904029, - 50.9553674 - ], - [ - 4.3904029, - 50.958833 - ], - [ - 4.3835071, - 50.958833 - ], - [ - 4.3835071, - 50.9553674 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87941336 - } - }, - { - "id": 87941283, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.392439, - 50.966516 - ], - [ - 4.3977725, - 50.966516 - ], - [ - 4.3977725, - 50.9737319 - ], - [ - 4.392439, - 50.9737319 - ], - [ - 4.392439, - 50.966516 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87941283 - } - }, - { - "id": 87941234, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.392439, - 50.966516 - ], - [ - 4.3977725, - 50.966516 - ], - [ - 4.3977725, - 50.9737319 - ], - [ - 4.392439, - 50.9737319 - ], - [ - 4.392439, - 50.966516 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87941234 - } - }, - { - "id": 87941143, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3791239, - 50.9606224 - ], - [ - 4.3791239, - 50.9606224 - ], - [ - 4.3791239, - 50.9606224 - ], - [ - 4.3791239, - 50.9606224 - ], - [ - 4.3791239, - 50.9606224 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87941143 - } - }, - { - "id": 87941091, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3791239, - 50.9606224 - ], - [ - 4.3791239, - 50.9606224 - ], - [ - 4.3791239, - 50.9606224 - ], - [ - 4.3791239, - 50.9606224 - ], - [ - 4.3791239, - 50.9606224 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87941091 - } - }, - { - "id": 87941016, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.405729, - 50.9515658 - ], - [ - 4.4098293, - 50.9515658 - ], - [ - 4.4098293, - 50.956122 - ], - [ - 4.405729, - 50.956122 - ], - [ - 4.405729, - 50.9515658 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87941016 - } - }, - { - "id": 87940987, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.405729, - 50.9515658 - ], - [ - 4.4098293, - 50.9515658 - ], - [ - 4.4098293, - 50.956122 - ], - [ - 4.405729, - 50.956122 - ], - [ - 4.405729, - 50.9515658 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87940987 - } - }, - { - "id": 87940963, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.405729, - 50.9515658 - ], - [ - 4.4098293, - 50.9515658 - ], - [ - 4.4098293, - 50.956122 - ], - [ - 4.405729, - 50.956122 - ], - [ - 4.405729, - 50.9515658 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87940963 - } - }, - { - "id": 87940895, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4067803, - 50.948973 - ], - [ - 4.408893, - 50.948973 - ], - [ - 4.408893, - 50.9502524 - ], - [ - 4.4067803, - 50.9502524 - ], - [ - 4.4067803, - 50.948973 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87940895 - } - }, - { - "id": 87940858, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4067803, - 50.948973 - ], - [ - 4.408893, - 50.948973 - ], - [ - 4.408893, - 50.9502524 - ], - [ - 4.4067803, - 50.9502524 - ], - [ - 4.4067803, - 50.948973 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87940858 - } - }, - { - "id": 87939914, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5476574, - 51.0157504 - ], - [ - 3.5500918, - 51.0157504 - ], - [ - 3.5500918, - 51.0158806 - ], - [ - 3.5476574, - 51.0158806 - ], - [ - 3.5476574, - 51.0157504 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87939914 - } - }, - { - "id": 87939887, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.563748, - 51.0205933 - ], - [ - 3.5653558, - 51.0205933 - ], - [ - 3.5653558, - 51.0218351 - ], - [ - 3.563748, - 51.0218351 - ], - [ - 3.563748, - 51.0205933 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87939887 - } - }, - { - "id": 87939848, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5596426, - 51.0186719 - ], - [ - 3.5653558, - 51.0186719 - ], - [ - 3.5653558, - 51.0218351 - ], - [ - 3.5596426, - 51.0218351 - ], - [ - 3.5596426, - 51.0186719 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87939848 - } - }, - { - "id": 87939765, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5582347, - 51.0231432 - ], - [ - 3.5602792, - 51.0231432 - ], - [ - 3.5602792, - 51.0244085 - ], - [ - 3.5582347, - 51.0244085 - ], - [ - 3.5582347, - 51.0231432 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87939765 - } - }, - { - "id": 87939736, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5582347, - 51.0231432 - ], - [ - 3.5602792, - 51.0231432 - ], - [ - 3.5602792, - 51.0244085 - ], - [ - 3.5582347, - 51.0244085 - ], - [ - 3.5582347, - 51.0231432 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87939736 - } - }, - { - "id": 87938218, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3296218, - 50.8592228 - ], - [ - 4.3296218, - 50.8592228 - ], - [ - 4.3296218, - 50.8592228 - ], - [ - 4.3296218, - 50.8592228 - ], - [ - 4.3296218, - 50.8592228 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87938218 - } - }, - { - "id": 87933827, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3296218, - 50.8592228 - ], - [ - 4.3296218, - 50.8592228 - ], - [ - 4.3296218, - 50.8592228 - ], - [ - 4.3296218, - 50.8592228 - ], - [ - 4.3296218, - 50.8592228 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87933827 - } - }, - { - "id": 87931718, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4438442, - 51.083241 - ], - [ - 3.4441772, - 51.083241 - ], - [ - 3.4441772, - 51.0834502 - ], - [ - 3.4438442, - 51.0834502 - ], - [ - 3.4438442, - 51.083241 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87931718 - } - }, - { - "id": 87931646, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4887845, - 51.0826028 - ], - [ - 3.4963345, - 51.0826028 - ], - [ - 3.4963345, - 51.0880164 - ], - [ - 3.4887845, - 51.0880164 - ], - [ - 3.4887845, - 51.0826028 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87931646 - } - }, - { - "id": 87931609, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4884012, - 51.0918549 - ], - [ - 3.4896585, - 51.0918549 - ], - [ - 3.4896585, - 51.0925376 - ], - [ - 3.4884012, - 51.0925376 - ], - [ - 3.4884012, - 51.0918549 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87931609 - } - }, - { - "id": 87931302, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4472963, - 51.0929965 - ], - [ - 3.4475893, - 51.0929965 - ], - [ - 3.4475893, - 51.0937886 - ], - [ - 3.4472963, - 51.0937886 - ], - [ - 3.4472963, - 51.0929965 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87931302 - } - }, - { - "id": 87931266, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4412706, - 51.0847293 - ], - [ - 3.4452097, - 51.0847293 - ], - [ - 3.4452097, - 51.0902964 - ], - [ - 3.4412706, - 51.0902964 - ], - [ - 3.4412706, - 51.0847293 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87931266 - } - }, - { - "id": 87930907, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4506969, - 51.0953506 - ], - [ - 3.453029, - 51.0953506 - ], - [ - 3.453029, - 51.0963829 - ], - [ - 3.4506969, - 51.0963829 - ], - [ - 3.4506969, - 51.0953506 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87930907 - } - }, - { - "id": 87930827, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4479078, - 51.0832527 - ], - [ - 3.4486255, - 51.0832527 - ], - [ - 3.4486255, - 51.0834532 - ], - [ - 3.4479078, - 51.0834532 - ], - [ - 3.4479078, - 51.0832527 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87930827 - } - }, - { - "id": 87930640, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3962872, - 51.1149466 - ], - [ - 3.3988194, - 51.1149466 - ], - [ - 3.3988194, - 51.1173174 - ], - [ - 3.3962872, - 51.1173174 - ], - [ - 3.3962872, - 51.1149466 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87930640 - } - }, - { - "id": 87930541, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4016164, - 51.1066629 - ], - [ - 3.4187109, - 51.1066629 - ], - [ - 3.4187109, - 51.1126662 - ], - [ - 3.4016164, - 51.1126662 - ], - [ - 3.4016164, - 51.1066629 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87930541 - } - }, - { - "id": 87930502, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4016164, - 51.1066629 - ], - [ - 3.4187109, - 51.1066629 - ], - [ - 3.4187109, - 51.1126662 - ], - [ - 3.4016164, - 51.1126662 - ], - [ - 3.4016164, - 51.1066629 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87930502 - } - }, - { - "id": 87930480, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4016164, - 51.1066629 - ], - [ - 3.4187109, - 51.1066629 - ], - [ - 3.4187109, - 51.1126662 - ], - [ - 3.4016164, - 51.1126662 - ], - [ - 3.4016164, - 51.1066629 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87930480 - } - }, - { - "id": 87929716, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5520163, - 50.9209573 - ], - [ - 3.5685553, - 50.9209573 - ], - [ - 3.5685553, - 50.9301986 - ], - [ - 3.5520163, - 50.9301986 - ], - [ - 3.5520163, - 50.9209573 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87929716 - } - }, - { - "id": 87929652, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7284164, - 51.0755573 - ], - [ - 3.7293241, - 51.0755573 - ], - [ - 3.7293241, - 51.077462 - ], - [ - 3.7284164, - 51.077462 - ], - [ - 3.7284164, - 51.0755573 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87929652 - } - }, - { - "id": 87929593, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.39542, - 50.9324686 - ], - [ - 4.39542, - 50.9324686 - ], - [ - 4.39542, - 50.9324686 - ], - [ - 4.39542, - 50.9324686 - ], - [ - 4.39542, - 50.9324686 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87929593 - } - }, - { - "id": 87929536, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.39542, - 50.9324686 - ], - [ - 4.39542, - 50.9324686 - ], - [ - 4.39542, - 50.9324686 - ], - [ - 4.39542, - 50.9324686 - ], - [ - 4.39542, - 50.9324686 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87929536 - } - }, - { - "id": 87929486, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.39542, - 50.9324686 - ], - [ - 4.39542, - 50.9324686 - ], - [ - 4.39542, - 50.9324686 - ], - [ - 4.39542, - 50.9324686 - ], - [ - 4.39542, - 50.9324686 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87929486 - } - }, - { - "id": 87927387, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8422508, - 51.3256438 - ], - [ - 4.8436718, - 51.3256438 - ], - [ - 4.8436718, - 51.3259351 - ], - [ - 4.8422508, - 51.3259351 - ], - [ - 4.8422508, - 51.3256438 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87927387 - } - }, - { - "id": 87927343, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.850882, - 51.3230245 - ], - [ - 4.8517367, - 51.3230245 - ], - [ - 4.8517367, - 51.3246448 - ], - [ - 4.850882, - 51.3246448 - ], - [ - 4.850882, - 51.3230245 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87927343 - } - }, - { - "id": 87927305, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.850882, - 51.3230245 - ], - [ - 4.8542002, - 51.3230245 - ], - [ - 4.8542002, - 51.3252611 - ], - [ - 4.850882, - 51.3252611 - ], - [ - 4.850882, - 51.3230245 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87927305 - } - }, - { - "id": 87927238, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8517624, - 51.3252192 - ], - [ - 4.8527253, - 51.3252192 - ], - [ - 4.8527253, - 51.3269952 - ], - [ - 4.8517624, - 51.3269952 - ], - [ - 4.8517624, - 51.3252192 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87927238 - } - }, - { - "id": 87927197, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8599989, - 51.329912 - ], - [ - 4.8692948, - 51.329912 - ], - [ - 4.8692948, - 51.3361768 - ], - [ - 4.8599989, - 51.3361768 - ], - [ - 4.8599989, - 51.329912 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87927197 - } - }, - { - "id": 87926463, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9185314, - 51.2247601 - ], - [ - 2.9187386, - 51.2247601 - ], - [ - 2.9187386, - 51.2252012 - ], - [ - 2.9185314, - 51.2252012 - ], - [ - 2.9185314, - 51.2247601 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87926463 - } - }, - { - "id": 87926324, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8776757, - 51.2083773 - ], - [ - 2.8796387, - 51.2083773 - ], - [ - 2.8796387, - 51.2094483 - ], - [ - 2.8776757, - 51.2094483 - ], - [ - 2.8776757, - 51.2083773 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87926324 - } - }, - { - "id": 87926249, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8776757, - 51.2083773 - ], - [ - 2.8796387, - 51.2083773 - ], - [ - 2.8796387, - 51.2094483 - ], - [ - 2.8776757, - 51.2094483 - ], - [ - 2.8776757, - 51.2083773 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87926249 - } - }, - { - "id": 87926211, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8940887, - 51.2131052 - ], - [ - 2.8954025, - 51.2131052 - ], - [ - 2.8954025, - 51.2147822 - ], - [ - 2.8940887, - 51.2147822 - ], - [ - 2.8940887, - 51.2131052 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87926211 - } - }, - { - "id": 87925329, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7140894, - 51.1060903 - ], - [ - 3.716922, - 51.1060903 - ], - [ - 3.716922, - 51.108738 - ], - [ - 3.7140894, - 51.108738 - ], - [ - 3.7140894, - 51.1060903 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87925329 - } - }, - { - "id": 87925212, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6584773, - 51.0538256 - ], - [ - 3.6884113, - 51.0538256 - ], - [ - 3.6884113, - 51.0703779 - ], - [ - 3.6584773, - 51.0703779 - ], - [ - 3.6584773, - 51.0538256 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87925212 - } - }, - { - "id": 87925003, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7207718, - 51.1295153 - ], - [ - 3.7247992, - 51.1295153 - ], - [ - 3.7247992, - 51.1354437 - ], - [ - 3.7207718, - 51.1354437 - ], - [ - 3.7207718, - 51.1295153 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87925003 - } - }, - { - "id": 87924514, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "geldhoan", - "uid": "11485387", - "editor": "MapComplete 0.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:35:32Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 87924514 - } - }, - { - "id": 87924140, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7222927, - 51.1314273 - ], - [ - 3.7251756, - 51.1314273 - ], - [ - 3.7251756, - 51.1343545 - ], - [ - 3.7222927, - 51.1343545 - ], - [ - 3.7222927, - 51.1314273 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87924140 - } - }, - { - "id": 87923942, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7207434, - 51.1341492 - ], - [ - 3.7232304, - 51.1341492 - ], - [ - 3.7232304, - 51.1354437 - ], - [ - 3.7207434, - 51.1354437 - ], - [ - 3.7207434, - 51.1341492 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87923942 - } - }, - { - "id": 87923886, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7210857, - 51.1295153 - ], - [ - 3.7247992, - 51.1295153 - ], - [ - 3.7247992, - 51.1354437 - ], - [ - 3.7210857, - 51.1354437 - ], - [ - 3.7210857, - 51.1295153 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87923886 - } - }, - { - "id": 87923840, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.721442, - 51.1313897 - ], - [ - 3.7237288, - 51.1313897 - ], - [ - 3.7237288, - 51.1333818 - ], - [ - 3.721442, - 51.1333818 - ], - [ - 3.721442, - 51.1313897 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87923840 - } - }, - { - "id": 87923801, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7207718, - 51.1314273 - ], - [ - 3.7251756, - 51.1314273 - ], - [ - 3.7251756, - 51.1343545 - ], - [ - 3.7207718, - 51.1343545 - ], - [ - 3.7207718, - 51.1314273 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87923801 - } - }, - { - "id": 87923746, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7222927, - 51.1314273 - ], - [ - 3.7251756, - 51.1314273 - ], - [ - 3.7251756, - 51.1343545 - ], - [ - 3.7222927, - 51.1343545 - ], - [ - 3.7222927, - 51.1314273 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87923746 - } - }, - { - "id": 87923710, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7041682, - 51.1190275 - ], - [ - 3.7041682, - 51.1190275 - ], - [ - 3.7041682, - 51.1190275 - ], - [ - 3.7041682, - 51.1190275 - ], - [ - 3.7041682, - 51.1190275 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87923710 - } - }, - { - "id": 87923453, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6961005, - 51.1150869 - ], - [ - 3.7041682, - 51.1150869 - ], - [ - 3.7041682, - 51.1190275 - ], - [ - 3.6961005, - 51.1190275 - ], - [ - 3.6961005, - 51.1150869 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87923453 - } - }, - { - "id": 87920359, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3660115, - 50.9748091 - ], - [ - 4.3887805, - 50.9748091 - ], - [ - 4.3887805, - 50.9911278 - ], - [ - 4.3660115, - 50.9911278 - ], - [ - 4.3660115, - 50.9748091 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87920359 - } - }, - { - "id": 87920324, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3660115, - 50.9748091 - ], - [ - 4.3887805, - 50.9748091 - ], - [ - 4.3887805, - 50.9911278 - ], - [ - 4.3660115, - 50.9911278 - ], - [ - 4.3660115, - 50.9748091 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87920324 - } - }, - { - "id": 87920120, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4001949, - 50.9539765 - ], - [ - 4.4001949, - 50.9539765 - ], - [ - 4.4001949, - 50.9539765 - ], - [ - 4.4001949, - 50.9539765 - ], - [ - 4.4001949, - 50.9539765 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87920120 - } - }, - { - "id": 87920038, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4001949, - 50.9539765 - ], - [ - 4.4001949, - 50.9539765 - ], - [ - 4.4001949, - 50.9539765 - ], - [ - 4.4001949, - 50.9539765 - ], - [ - 4.4001949, - 50.9539765 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87920038 - } - }, - { - "id": 87919823, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3810435, - 50.9467003 - ], - [ - 4.3917465, - 50.9467003 - ], - [ - 4.3917465, - 50.9529023 - ], - [ - 4.3810435, - 50.9529023 - ], - [ - 4.3810435, - 50.9467003 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87919823 - } - }, - { - "id": 87919779, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3810435, - 50.9467003 - ], - [ - 4.3917465, - 50.9467003 - ], - [ - 4.3917465, - 50.9529023 - ], - [ - 4.3810435, - 50.9529023 - ], - [ - 4.3810435, - 50.9467003 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87919779 - } - }, - { - "id": 87919658, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3810435, - 50.9467003 - ], - [ - 4.3917465, - 50.9467003 - ], - [ - 4.3917465, - 50.9529023 - ], - [ - 4.3810435, - 50.9529023 - ], - [ - 4.3810435, - 50.9467003 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87919658 - } - }, - { - "id": 87919554, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3771467, - 50.9440741 - ], - [ - 4.3851156, - 50.9440741 - ], - [ - 4.3851156, - 50.9482792 - ], - [ - 4.3771467, - 50.9482792 - ], - [ - 4.3771467, - 50.9440741 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87919554 - } - }, - { - "id": 87919510, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3771467, - 50.9440741 - ], - [ - 4.3851156, - 50.9440741 - ], - [ - 4.3851156, - 50.9482792 - ], - [ - 4.3771467, - 50.9482792 - ], - [ - 4.3771467, - 50.9440741 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87919510 - } - }, - { - "id": 87919278, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3880529, - 50.9534804 - ], - [ - 4.3911926, - 50.9534804 - ], - [ - 4.3911926, - 50.9550646 - ], - [ - 4.3880529, - 50.9550646 - ], - [ - 4.3880529, - 50.9534804 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87919278 - } - }, - { - "id": 87919232, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3880529, - 50.9534804 - ], - [ - 4.3911926, - 50.9534804 - ], - [ - 4.3911926, - 50.9550646 - ], - [ - 4.3880529, - 50.9550646 - ], - [ - 4.3880529, - 50.9534804 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87919232 - } - }, - { - "id": 87919177, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3893492, - 50.9534196 - ], - [ - 4.3901324, - 50.9534196 - ], - [ - 4.3901324, - 50.9541539 - ], - [ - 4.3893492, - 50.9541539 - ], - [ - 4.3893492, - 50.9534196 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87919177 - } - }, - { - "id": 87919075, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3893492, - 50.9534196 - ], - [ - 4.3901324, - 50.9534196 - ], - [ - 4.3901324, - 50.9541539 - ], - [ - 4.3893492, - 50.9541539 - ], - [ - 4.3893492, - 50.9534196 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87919075 - } - }, - { - "id": 87918821, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3983332, - 50.9297849 - ], - [ - 4.4003035, - 50.9297849 - ], - [ - 4.4003035, - 50.9328801 - ], - [ - 4.3983332, - 50.9328801 - ], - [ - 4.3983332, - 50.9297849 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87918821 - } - }, - { - "id": 87918762, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3983332, - 50.9297849 - ], - [ - 4.4003035, - 50.9297849 - ], - [ - 4.4003035, - 50.9328801 - ], - [ - 4.3983332, - 50.9328801 - ], - [ - 4.3983332, - 50.9297849 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87918762 - } - }, - { - "id": 87918525, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4001872, - 50.9272401 - ], - [ - 4.4094924, - 50.9272401 - ], - [ - 4.4094924, - 50.9365618 - ], - [ - 4.4001872, - 50.9365618 - ], - [ - 4.4001872, - 50.9272401 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87918525 - } - }, - { - "id": 87918463, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4001872, - 50.9272401 - ], - [ - 4.4094924, - 50.9272401 - ], - [ - 4.4094924, - 50.9365618 - ], - [ - 4.4001872, - 50.9365618 - ], - [ - 4.4001872, - 50.9272401 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87918463 - } - }, - { - "id": 87916269, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2294098, - 51.2048009 - ], - [ - 4.234181, - 51.2048009 - ], - [ - 4.234181, - 51.2072853 - ], - [ - 4.2294098, - 51.2072853 - ], - [ - 4.2294098, - 51.2048009 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87916269 - } - }, - { - "id": 87916220, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2294098, - 51.2048009 - ], - [ - 4.234181, - 51.2048009 - ], - [ - 4.234181, - 51.2072853 - ], - [ - 4.2294098, - 51.2072853 - ], - [ - 4.2294098, - 51.2048009 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87916220 - } - }, - { - "id": 87916152, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2171983, - 51.2576437 - ], - [ - 4.220057, - 51.2576437 - ], - [ - 4.220057, - 51.261169 - ], - [ - 4.2171983, - 51.261169 - ], - [ - 4.2171983, - 51.2576437 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87916152 - } - }, - { - "id": 87916109, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2294098, - 51.2048009 - ], - [ - 4.234181, - 51.2048009 - ], - [ - 4.234181, - 51.2072853 - ], - [ - 4.2294098, - 51.2072853 - ], - [ - 4.2294098, - 51.2048009 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87916109 - } - }, - { - "id": 87915987, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2294098, - 51.2048009 - ], - [ - 4.234181, - 51.2048009 - ], - [ - 4.234181, - 51.2072853 - ], - [ - 4.2294098, - 51.2072853 - ], - [ - 4.2294098, - 51.2048009 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87915987 - } - }, - { - "id": 87915769, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2294098, - 51.2048009 - ], - [ - 4.234181, - 51.2048009 - ], - [ - 4.234181, - 51.2072853 - ], - [ - 4.2294098, - 51.2072853 - ], - [ - 4.2294098, - 51.2048009 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87915769 - } - }, - { - "id": 87915760, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2221388, - 51.2008967 - ], - [ - 3.2236762, - 51.2008967 - ], - [ - 3.2236762, - 51.201779 - ], - [ - 3.2221388, - 51.201779 - ], - [ - 3.2221388, - 51.2008967 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87915760 - } - }, - { - "id": 87915698, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2512912, - 51.1872637 - ], - [ - 3.2657584, - 51.1872637 - ], - [ - 3.2657584, - 51.2020133 - ], - [ - 3.2512912, - 51.2020133 - ], - [ - 3.2512912, - 51.1872637 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87915698 - } - }, - { - "id": 87915670, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2294098, - 51.2048009 - ], - [ - 4.234181, - 51.2048009 - ], - [ - 4.234181, - 51.2072853 - ], - [ - 4.2294098, - 51.2072853 - ], - [ - 4.2294098, - 51.2048009 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87915670 - } - }, - { - "id": 87915610, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2558476, - 51.2051002 - ], - [ - 3.2625369, - 51.2051002 - ], - [ - 3.2625369, - 51.2085568 - ], - [ - 3.2558476, - 51.2085568 - ], - [ - 3.2558476, - 51.2051002 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87915610 - } - }, - { - "id": 87912844, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.374023, - 50.9363059 - ], - [ - 4.374023, - 50.9363059 - ], - [ - 4.374023, - 50.9363059 - ], - [ - 4.374023, - 50.9363059 - ], - [ - 4.374023, - 50.9363059 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87912844 - } - }, - { - "id": 87912625, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.374023, - 50.9363059 - ], - [ - 4.374023, - 50.9363059 - ], - [ - 4.374023, - 50.9363059 - ], - [ - 4.374023, - 50.9363059 - ], - [ - 4.374023, - 50.9363059 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87912625 - } - }, - { - "id": 87912560, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "LotteB", - "uid": "11484707", - "editor": "MapComplete 0.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:11:28Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 87912560 - } - }, - { - "id": 87911490, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2212356, - 50.9163232 - ], - [ - 3.2253983, - 50.9163232 - ], - [ - 3.2253983, - 50.9208781 - ], - [ - 3.2212356, - 50.9208781 - ], - [ - 3.2212356, - 50.9163232 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87911490 - } - }, - { - "id": 87911439, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2435599, - 50.8869956 - ], - [ - 3.2439389, - 50.8869956 - ], - [ - 3.2439389, - 50.8872904 - ], - [ - 3.2435599, - 50.8872904 - ], - [ - 3.2435599, - 50.8869956 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87911439 - } - }, - { - "id": 87911403, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2432151, - 50.8838155 - ], - [ - 3.2481363, - 50.8838155 - ], - [ - 3.2481363, - 50.887489 - ], - [ - 3.2432151, - 50.887489 - ], - [ - 3.2432151, - 50.8838155 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87911403 - } - }, - { - "id": 87911376, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2344677, - 50.8839028 - ], - [ - 3.2474408, - 50.8839028 - ], - [ - 3.2474408, - 50.8903457 - ], - [ - 3.2344677, - 50.8903457 - ], - [ - 3.2344677, - 50.8839028 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87911376 - } - }, - { - "id": 87911312, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2344677, - 50.8744592 - ], - [ - 3.2461341, - 50.8744592 - ], - [ - 3.2461341, - 50.8903457 - ], - [ - 3.2344677, - 50.8903457 - ], - [ - 3.2344677, - 50.8744592 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87911312 - } - }, - { - "id": 87910800, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3750361, - 50.9346066 - ], - [ - 4.3795742, - 50.9346066 - ], - [ - 4.3795742, - 50.936925 - ], - [ - 4.3750361, - 50.936925 - ], - [ - 4.3750361, - 50.9346066 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87910800 - } - }, - { - "id": 87910751, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3750361, - 50.9346066 - ], - [ - 4.3795742, - 50.9346066 - ], - [ - 4.3795742, - 50.936925 - ], - [ - 4.3750361, - 50.936925 - ], - [ - 4.3750361, - 50.9346066 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87910751 - } - }, - { - "id": 87910694, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3750361, - 50.9346066 - ], - [ - 4.3795742, - 50.9346066 - ], - [ - 4.3795742, - 50.936925 - ], - [ - 4.3750361, - 50.936925 - ], - [ - 4.3750361, - 50.9346066 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87910694 - } - }, - { - "id": 87910653, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3750361, - 50.9346066 - ], - [ - 4.3795742, - 50.9346066 - ], - [ - 4.3795742, - 50.936925 - ], - [ - 4.3750361, - 50.936925 - ], - [ - 4.3750361, - 50.9346066 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87910653 - } - }, - { - "id": 87909541, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.382856, - 50.9429059 - ], - [ - 4.389766, - 50.9429059 - ], - [ - 4.389766, - 50.9469605 - ], - [ - 4.382856, - 50.9469605 - ], - [ - 4.382856, - 50.9429059 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87909541 - } - }, - { - "id": 87909508, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.382856, - 50.9429059 - ], - [ - 4.389766, - 50.9429059 - ], - [ - 4.389766, - 50.9469605 - ], - [ - 4.382856, - 50.9469605 - ], - [ - 4.382856, - 50.9429059 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87909508 - } - }, - { - "id": 87908895, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3858907, - 50.9412038 - ], - [ - 4.3858907, - 50.9412038 - ], - [ - 4.3858907, - 50.9412038 - ], - [ - 4.3858907, - 50.9412038 - ], - [ - 4.3858907, - 50.9412038 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87908895 - } - }, - { - "id": 87908853, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3858907, - 50.9412038 - ], - [ - 4.3858907, - 50.9412038 - ], - [ - 4.3858907, - 50.9412038 - ], - [ - 4.3858907, - 50.9412038 - ], - [ - 4.3858907, - 50.9412038 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87908853 - } - }, - { - "id": 87908429, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3817172, - 50.9377462 - ], - [ - 4.3887467, - 50.9377462 - ], - [ - 4.3887467, - 50.9416458 - ], - [ - 4.3817172, - 50.9416458 - ], - [ - 4.3817172, - 50.9377462 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87908429 - } - }, - { - "id": 87908379, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3817172, - 50.9377462 - ], - [ - 4.3887467, - 50.9377462 - ], - [ - 4.3887467, - 50.9416458 - ], - [ - 4.3817172, - 50.9416458 - ], - [ - 4.3817172, - 50.9377462 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87908379 - } - }, - { - "id": 87908303, - "type": "Feature", - "geometry": null, - "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:01:32Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 87908303 - } - }, - { - "id": 87908251, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3752475, - 50.9360659 - ], - [ - 4.383219, - 50.9360659 - ], - [ - 4.383219, - 50.9383178 - ], - [ - 4.3752475, - 50.9383178 - ], - [ - 4.3752475, - 50.9360659 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87908251 - } - }, - { - "id": 87907684, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3752475, - 50.9360659 - ], - [ - 4.383219, - 50.9360659 - ], - [ - 4.383219, - 50.9383178 - ], - [ - 4.3752475, - 50.9383178 - ], - [ - 4.3752475, - 50.9360659 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87907684 - } - }, - { - "id": 87907160, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1503406, - 50.9647203 - ], - [ - 5.1531678, - 50.9647203 - ], - [ - 5.1531678, - 50.9665837 - ], - [ - 5.1503406, - 50.9665837 - ], - [ - 5.1503406, - 50.9647203 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87907160 - } - }, - { - "id": 87906513, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6999498, - 51.0752621 - ], - [ - 3.7009614, - 51.0752621 - ], - [ - 3.7009614, - 51.0759282 - ], - [ - 3.6999498, - 51.0759282 - ], - [ - 3.6999498, - 51.0752621 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87906513 - } - }, - { - "id": 87906456, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6747443, - 51.0725611 - ], - [ - 3.6758896, - 51.0725611 - ], - [ - 3.6758896, - 51.0728611 - ], - [ - 3.6747443, - 51.0728611 - ], - [ - 3.6747443, - 51.0725611 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87906456 - } - }, - { - "id": 87905715, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.912944, - 50.8324993 - ], - [ - 4.9153959, - 50.8324993 - ], - [ - 4.9153959, - 50.834047 - ], - [ - 4.912944, - 50.834047 - ], - [ - 4.912944, - 50.8324993 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87905715 - } - }, - { - "id": 87904804, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.268218, - 51.2188734 - ], - [ - 3.268218, - 51.2188734 - ], - [ - 3.268218, - 51.2188734 - ], - [ - 3.268218, - 51.2188734 - ], - [ - 3.268218, - 51.2188734 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87904804 - } - }, - { - "id": 87904741, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.268218, - 51.2188734 - ], - [ - 3.268218, - 51.2188734 - ], - [ - 3.268218, - 51.2188734 - ], - [ - 3.268218, - 51.2188734 - ], - [ - 3.268218, - 51.2188734 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87904741 - } - }, - { - "id": 87901895, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9137746, - 50.8418387 - ], - [ - 4.9157962, - 50.8418387 - ], - [ - 4.9157962, - 50.8428326 - ], - [ - 4.9137746, - 50.8428326 - ], - [ - 4.9137746, - 50.8418387 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87901895 - } - }, - { - "id": 87901183, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8650358, - 51.213543 - ], - [ - 3.8668868, - 51.213543 - ], - [ - 3.8668868, - 51.214585 - ], - [ - 3.8650358, - 51.214585 - ], - [ - 3.8650358, - 51.213543 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87901183 - } - }, - { - "id": 87897500, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5702622, - 50.7828566 - ], - [ - 3.5710773, - 50.7828566 - ], - [ - 3.5710773, - 50.7830642 - ], - [ - 3.5702622, - 50.7830642 - ], - [ - 3.5702622, - 50.7828566 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87897500 - } - }, - { - "id": 87897463, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5700873, - 50.7830097 - ], - [ - 3.5705152, - 50.7830097 - ], - [ - 3.5705152, - 50.7834835 - ], - [ - 3.5700873, - 50.7834835 - ], - [ - 3.5700873, - 50.7830097 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87897463 - } - }, - { - "id": 87889907, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2245804, - 51.215657 - ], - [ - 3.2245804, - 51.215657 - ], - [ - 3.2245804, - 51.215657 - ], - [ - 3.2245804, - 51.215657 - ], - [ - 3.2245804, - 51.215657 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87889907 - } - }, - { - "id": 87889587, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.206361, - 51.2163913 - ], - [ - 3.206361, - 51.2163913 - ], - [ - 3.206361, - 51.2163913 - ], - [ - 3.206361, - 51.2163913 - ], - [ - 3.206361, - 51.2163913 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87889587 - } - }, - { - "id": 87889492, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9716462, - 51.0944433 - ], - [ - 2.9735912, - 51.0944433 - ], - [ - 2.9735912, - 51.0960535 - ], - [ - 2.9716462, - 51.0960535 - ], - [ - 2.9716462, - 51.0944433 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87889492 - } - }, - { - "id": 87889475, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9716462, - 51.0944433 - ], - [ - 2.9735912, - 51.0944433 - ], - [ - 2.9735912, - 51.0960535 - ], - [ - 2.9716462, - 51.0960535 - ], - [ - 2.9716462, - 51.0944433 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87889475 - } - }, - { - "id": 87889427, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9716462, - 51.0944433 - ], - [ - 2.9735912, - 51.0944433 - ], - [ - 2.9735912, - 51.0960535 - ], - [ - 2.9716462, - 51.0960535 - ], - [ - 2.9716462, - 51.0944433 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87889427 - } - }, - { - "id": 87888352, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9250761, - 51.1315744 - ], - [ - 3.9286426, - 51.1315744 - ], - [ - 3.9286426, - 51.1338629 - ], - [ - 3.9250761, - 51.1338629 - ], - [ - 3.9250761, - 51.1315744 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87888352 - } - }, - { - "id": 87888330, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9222473, - 51.1328874 - ], - [ - 3.9321935, - 51.1328874 - ], - [ - 3.9321935, - 51.13747 - ], - [ - 3.9222473, - 51.13747 - ], - [ - 3.9222473, - 51.1328874 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87888330 - } - }, - { - "id": 87888284, - "type": "Feature", - "geometry": null, - "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:16:10Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 87888284 - } - }, - { - "id": 87888254, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9222473, - 51.1318254 - ], - [ - 3.9321935, - 51.1318254 - ], - [ - 3.9321935, - 51.1402564 - ], - [ - 3.9222473, - 51.1402564 - ], - [ - 3.9222473, - 51.1318254 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87888254 - } - }, - { - "id": 87888203, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9224041, - 51.1349275 - ], - [ - 3.9313354, - 51.1349275 - ], - [ - 3.9313354, - 51.1402564 - ], - [ - 3.9224041, - 51.1402564 - ], - [ - 3.9224041, - 51.1349275 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87888203 - } - }, - { - "id": 87888179, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9219107, - 51.1349275 - ], - [ - 3.9288318, - 51.1349275 - ], - [ - 3.9288318, - 51.1422038 - ], - [ - 3.9219107, - 51.1422038 - ], - [ - 3.9219107, - 51.1349275 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87888179 - } - }, - { - "id": 87887838, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0376567, - 51.1540214 - ], - [ - 4.0423552, - 51.1540214 - ], - [ - 4.0423552, - 51.1571392 - ], - [ - 4.0376567, - 51.1571392 - ], - [ - 4.0376567, - 51.1540214 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87887838 - } - }, - { - "id": 87887818, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0383825, - 51.1540214 - ], - [ - 4.0426609, - 51.1540214 - ], - [ - 4.0426609, - 51.1558725 - ], - [ - 4.0383825, - 51.1558725 - ], - [ - 4.0383825, - 51.1540214 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87887818 - } - }, - { - "id": 87887772, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0399135, - 51.1564087 - ], - [ - 4.0453417, - 51.1564087 - ], - [ - 4.0453417, - 51.162262 - ], - [ - 4.0399135, - 51.162262 - ], - [ - 4.0399135, - 51.1564087 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87887772 - } - }, - { - "id": 87887738, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0249872, - 51.174622 - ], - [ - 4.0283498, - 51.174622 - ], - [ - 4.0283498, - 51.1774397 - ], - [ - 4.0249872, - 51.1774397 - ], - [ - 4.0249872, - 51.174622 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87887738 - } - }, - { - "id": 87887728, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9745107, - 51.1566421 - ], - [ - 4.0283498, - 51.1566421 - ], - [ - 4.0283498, - 51.1796578 - ], - [ - 3.9745107, - 51.1796578 - ], - [ - 3.9745107, - 51.1566421 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87887728 - } - }, - { - "id": 87887603, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9850998, - 51.1117959 - ], - [ - 3.989136, - 51.1117959 - ], - [ - 3.989136, - 51.1184264 - ], - [ - 3.9850998, - 51.1184264 - ], - [ - 3.9850998, - 51.1117959 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87887603 - } - }, - { - "id": 87887577, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9918797, - 51.1055234 - ], - [ - 4.0041312, - 51.1055234 - ], - [ - 4.0041312, - 51.1102317 - ], - [ - 3.9918797, - 51.1102317 - ], - [ - 3.9918797, - 51.1055234 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87887577 - } - }, - { - "id": 87887509, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9921801, - 51.116211 - ], - [ - 4.0106034, - 51.116211 - ], - [ - 4.0106034, - 51.1215497 - ], - [ - 3.9921801, - 51.1215497 - ], - [ - 3.9921801, - 51.116211 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87887509 - } - }, - { - "id": 87887478, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9856997, - 51.1125202 - ], - [ - 4.0084642, - 51.1125202 - ], - [ - 4.0084642, - 51.1208602 - ], - [ - 3.9856997, - 51.1208602 - ], - [ - 3.9856997, - 51.1125202 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87887478 - } - }, - { - "id": 87887435, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0283732, - 51.1596274 - ], - [ - 4.0338915, - 51.1596274 - ], - [ - 4.0338915, - 51.1637941 - ], - [ - 4.0283732, - 51.1637941 - ], - [ - 4.0283732, - 51.1596274 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87887435 - } - }, - { - "id": 87887409, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0306041, - 51.1668231 - ], - [ - 4.0362052, - 51.1668231 - ], - [ - 4.0362052, - 51.1683773 - ], - [ - 4.0306041, - 51.1683773 - ], - [ - 4.0306041, - 51.1668231 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87887409 - } - }, - { - "id": 87887399, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0241626, - 51.1651485 - ], - [ - 4.0362052, - 51.1651485 - ], - [ - 4.0362052, - 51.174852 - ], - [ - 4.0241626, - 51.174852 - ], - [ - 4.0241626, - 51.1651485 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87887399 - } - }, - { - "id": 87887352, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9948577, - 51.122463 - ], - [ - 3.9972612, - 51.122463 - ], - [ - 3.9972612, - 51.1241522 - ], - [ - 3.9948577, - 51.1241522 - ], - [ - 3.9948577, - 51.122463 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87887352 - } - }, - { - "id": 87887275, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9866287, - 51.1227774 - ], - [ - 3.9871804, - 51.1227774 - ], - [ - 3.9871804, - 51.1240477 - ], - [ - 3.9866287, - 51.1240477 - ], - [ - 3.9866287, - 51.1227774 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87887275 - } - }, - { - "id": 87887253, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9843748, - 51.1222767 - ], - [ - 3.9905362, - 51.1222767 - ], - [ - 3.9905362, - 51.1255505 - ], - [ - 3.9843748, - 51.1255505 - ], - [ - 3.9843748, - 51.1222767 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87887253 - } - }, - { - "id": 87887229, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9883846, - 51.1115423 - ], - [ - 3.9942326, - 51.1115423 - ], - [ - 3.9942326, - 51.1223451 - ], - [ - 3.9883846, - 51.1223451 - ], - [ - 3.9883846, - 51.1115423 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87887229 - } - }, - { - "id": 87887200, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9916977, - 51.1196311 - ], - [ - 4.0032902, - 51.1196311 - ], - [ - 4.0032902, - 51.1264693 - ], - [ - 3.9916977, - 51.1264693 - ], - [ - 3.9916977, - 51.1196311 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87887200 - } - }, - { - "id": 87887175, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9923197, - 51.1169017 - ], - [ - 4.0006884, - 51.1169017 - ], - [ - 4.0006884, - 51.1234565 - ], - [ - 3.9923197, - 51.1234565 - ], - [ - 3.9923197, - 51.1169017 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87887175 - } - }, - { - "id": 87885055, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7269875, - 50.8490034 - ], - [ - 4.7303545, - 50.8490034 - ], - [ - 4.7303545, - 50.8510159 - ], - [ - 4.7269875, - 50.8510159 - ], - [ - 4.7269875, - 50.8490034 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87885055 - } - }, - { - "id": 87885040, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7292593, - 50.8675986 - ], - [ - 4.7449776, - 50.8675986 - ], - [ - 4.7449776, - 50.8727841 - ], - [ - 4.7292593, - 50.8727841 - ], - [ - 4.7292593, - 50.8675986 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87885040 - } - }, - { - "id": 87885015, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6454569, - 50.842914 - ], - [ - 4.6548012, - 50.842914 - ], - [ - 4.6548012, - 50.8470215 - ], - [ - 4.6454569, - 50.8470215 - ], - [ - 4.6454569, - 50.842914 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87885015 - } - }, - { - "id": 87884986, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6767378, - 50.7884353 - ], - [ - 4.6868695, - 50.7884353 - ], - [ - 4.6868695, - 50.7920695 - ], - [ - 4.6767378, - 50.7920695 - ], - [ - 4.6767378, - 50.7884353 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87884986 - } - }, - { - "id": 87884969, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6785869, - 50.8088554 - ], - [ - 4.6836938, - 50.8088554 - ], - [ - 4.6836938, - 50.8120926 - ], - [ - 4.6785869, - 50.8120926 - ], - [ - 4.6785869, - 50.8088554 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87884969 - } - }, - { - "id": 87884948, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7076558, - 50.8267374 - ], - [ - 4.7134038, - 50.8267374 - ], - [ - 4.7134038, - 50.8301503 - ], - [ - 4.7076558, - 50.8301503 - ], - [ - 4.7076558, - 50.8267374 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87884948 - } - }, - { - "id": 87884941, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6288177, - 50.9864468 - ], - [ - 4.6827656, - 50.9864468 - ], - [ - 4.6827656, - 51.0126998 - ], - [ - 4.6288177, - 51.0126998 - ], - [ - 4.6288177, - 50.9864468 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87884941 - } - }, - { - "id": 87884926, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7021418, - 50.8266219 - ], - [ - 4.7104647, - 50.8266219 - ], - [ - 4.7104647, - 50.8360991 - ], - [ - 4.7021418, - 50.8360991 - ], - [ - 4.7021418, - 50.8266219 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87884926 - } - }, - { - "id": 87884923, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6288177, - 50.9864468 - ], - [ - 4.6827656, - 50.9864468 - ], - [ - 4.6827656, - 51.0126998 - ], - [ - 4.6288177, - 51.0126998 - ], - [ - 4.6288177, - 50.9864468 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87884923 - } - }, - { - "id": 87884896, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6288177, - 50.9864468 - ], - [ - 4.6827656, - 50.9864468 - ], - [ - 4.6827656, - 51.0126998 - ], - [ - 4.6288177, - 51.0126998 - ], - [ - 4.6288177, - 50.9864468 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87884896 - } - }, - { - "id": 87884875, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7012552, - 50.8055703 - ], - [ - 4.7027602, - 50.8055703 - ], - [ - 4.7027602, - 50.8065942 - ], - [ - 4.7012552, - 50.8065942 - ], - [ - 4.7012552, - 50.8055703 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87884875 - } - }, - { - "id": 87884863, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6288177, - 50.9864468 - ], - [ - 4.6827656, - 50.9864468 - ], - [ - 4.6827656, - 51.0126998 - ], - [ - 4.6288177, - 51.0126998 - ], - [ - 4.6288177, - 50.9864468 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87884863 - } - }, - { - "id": 87884841, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6288177, - 50.9864468 - ], - [ - 4.6827656, - 50.9864468 - ], - [ - 4.6827656, - 51.0126998 - ], - [ - 4.6288177, - 51.0126998 - ], - [ - 4.6288177, - 50.9864468 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87884841 - } - }, - { - "id": 87884762, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6274948, - 50.7885256 - ], - [ - 4.7499541, - 50.7885256 - ], - [ - 4.7499541, - 50.8354445 - ], - [ - 4.6274948, - 50.8354445 - ], - [ - 4.6274948, - 50.7885256 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87884762 - } - }, - { - "id": 87884614, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4524033, - 51.0960168 - ], - [ - 3.4539691, - 51.0960168 - ], - [ - 3.4539691, - 51.0970275 - ], - [ - 3.4524033, - 51.0970275 - ], - [ - 3.4524033, - 51.0960168 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87884614 - } - }, - { - "id": 87884558, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6525919, - 50.7809363 - ], - [ - 4.712342, - 50.7809363 - ], - [ - 4.712342, - 50.8211842 - ], - [ - 4.6525919, - 50.8211842 - ], - [ - 4.6525919, - 50.7809363 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87884558 - } - }, - { - "id": 87884538, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6930112, - 50.8325827 - ], - [ - 4.6935221, - 50.8325827 - ], - [ - 4.6935221, - 50.832946 - ], - [ - 4.6930112, - 50.832946 - ], - [ - 4.6930112, - 50.8325827 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87884538 - } - }, - { - "id": 87884476, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7080416, - 50.8715078 - ], - [ - 4.7107544, - 50.8715078 - ], - [ - 4.7107544, - 50.873298 - ], - [ - 4.7080416, - 50.873298 - ], - [ - 4.7080416, - 50.8715078 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87884476 - } - }, - { - "id": 87884431, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7174585, - 50.8512924 - ], - [ - 4.7203001, - 50.8512924 - ], - [ - 4.7203001, - 50.8532529 - ], - [ - 4.7174585, - 50.8532529 - ], - [ - 4.7174585, - 50.8512924 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87884431 - } - }, - { - "id": 87884424, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7133401, - 50.8512924 - ], - [ - 4.7203001, - 50.8512924 - ], - [ - 4.7203001, - 50.8561539 - ], - [ - 4.7133401, - 50.8561539 - ], - [ - 4.7133401, - 50.8512924 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87884424 - } - }, - { - "id": 87884403, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7086489, - 50.8558262 - ], - [ - 4.7146088, - 50.8558262 - ], - [ - 4.7146088, - 50.8611885 - ], - [ - 4.7086489, - 50.8611885 - ], - [ - 4.7086489, - 50.8558262 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87884403 - } - }, - { - "id": 87884374, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7114064, - 50.8666013 - ], - [ - 4.7119947, - 50.8666013 - ], - [ - 4.7119947, - 50.8676465 - ], - [ - 4.7114064, - 50.8676465 - ], - [ - 4.7114064, - 50.8666013 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87884374 - } - }, - { - "id": 87884341, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7130114, - 50.8680402 - ], - [ - 4.7130114, - 50.8680402 - ], - [ - 4.7130114, - 50.8680402 - ], - [ - 4.7130114, - 50.8680402 - ], - [ - 4.7130114, - 50.8680402 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87884341 - } - }, - { - "id": 87884321, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7116409, - 50.8644294 - ], - [ - 4.7134987, - 50.8644294 - ], - [ - 4.7134987, - 50.8654499 - ], - [ - 4.7116409, - 50.8654499 - ], - [ - 4.7116409, - 50.8644294 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87884321 - } - }, - { - "id": 87884294, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7116409, - 50.8644294 - ], - [ - 4.7200073, - 50.8644294 - ], - [ - 4.7200073, - 50.8682796 - ], - [ - 4.7116409, - 50.8682796 - ], - [ - 4.7116409, - 50.8644294 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87884294 - } - }, - { - "id": 87884211, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7133292, - 50.8661491 - ], - [ - 4.7157147, - 50.8661491 - ], - [ - 4.7157147, - 50.8677804 - ], - [ - 4.7133292, - 50.8677804 - ], - [ - 4.7133292, - 50.8661491 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87884211 - } - }, - { - "id": 87884142, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7056846, - 50.865703 - ], - [ - 4.7058477, - 50.865703 - ], - [ - 4.7058477, - 50.8658218 - ], - [ - 4.7056846, - 50.8658218 - ], - [ - 4.7056846, - 50.865703 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87884142 - } - }, - { - "id": 87884071, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7112327, - 50.8675832 - ], - [ - 4.7193324, - 50.8675832 - ], - [ - 4.7193324, - 50.8733349 - ], - [ - 4.7112327, - 50.8733349 - ], - [ - 4.7112327, - 50.8675832 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87884071 - } - }, - { - "id": 87884023, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7083583, - 50.8664213 - ], - [ - 4.7120536, - 50.8664213 - ], - [ - 4.7120536, - 50.8697124 - ], - [ - 4.7083583, - 50.8697124 - ], - [ - 4.7083583, - 50.8664213 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87884023 - } - }, - { - "id": 87883996, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6979404, - 50.8636274 - ], - [ - 4.7120536, - 50.8636274 - ], - [ - 4.7120536, - 50.8672253 - ], - [ - 4.6979404, - 50.8672253 - ], - [ - 4.6979404, - 50.8636274 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87883996 - } - }, - { - "id": 87883957, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2429148, - 51.2157801 - ], - [ - 3.2454881, - 51.2157801 - ], - [ - 3.2454881, - 51.2170739 - ], - [ - 3.2429148, - 51.2170739 - ], - [ - 3.2429148, - 51.2157801 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87883957 - } - }, - { - "id": 87883950, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6963333, - 50.8471215 - ], - [ - 4.7004789, - 50.8471215 - ], - [ - 4.7004789, - 50.8505145 - ], - [ - 4.6963333, - 50.8505145 - ], - [ - 4.6963333, - 50.8471215 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87883950 - } - }, - { - "id": 87883926, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.658418, - 50.8233246 - ], - [ - 4.7163741, - 50.8233246 - ], - [ - 4.7163741, - 50.8549877 - ], - [ - 4.658418, - 50.8549877 - ], - [ - 4.658418, - 50.8233246 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87883926 - } - }, - { - "id": 87883914, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2882658, - 51.2094635 - ], - [ - 3.2890308, - 51.2094635 - ], - [ - 3.2890308, - 51.209673 - ], - [ - 3.2882658, - 51.209673 - ], - [ - 3.2882658, - 51.2094635 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87883914 - } - }, - { - "id": 87883906, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6989974, - 50.8515903 - ], - [ - 4.7030451, - 50.8515903 - ], - [ - 4.7030451, - 50.8565754 - ], - [ - 4.6989974, - 50.8565754 - ], - [ - 4.6989974, - 50.8515903 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87883906 - } - }, - { - "id": 87883890, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2866395, - 51.2082423 - ], - [ - 3.3059906, - 51.2082423 - ], - [ - 3.3059906, - 51.2147186 - ], - [ - 3.2866395, - 51.2147186 - ], - [ - 3.2866395, - 51.2082423 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87883890 - } - }, - { - "id": 87883873, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7060839, - 50.8506199 - ], - [ - 4.7153907, - 50.8506199 - ], - [ - 4.7153907, - 50.8608093 - ], - [ - 4.7060839, - 50.8608093 - ], - [ - 4.7060839, - 50.8506199 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87883873 - } - }, - { - "id": 87883867, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2598516, - 51.2148204 - ], - [ - 3.2679311, - 51.2148204 - ], - [ - 3.2679311, - 51.2203012 - ], - [ - 3.2598516, - 51.2203012 - ], - [ - 3.2598516, - 51.2148204 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87883867 - } - }, - { - "id": 87883855, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7060839, - 50.8506199 - ], - [ - 4.7153907, - 50.8506199 - ], - [ - 4.7153907, - 50.8608093 - ], - [ - 4.7060839, - 50.8608093 - ], - [ - 4.7060839, - 50.8506199 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87883855 - } - }, - { - "id": 87883805, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.276533, - 51.2163043 - ], - [ - 3.277138, - 51.2163043 - ], - [ - 3.277138, - 51.2166185 - ], - [ - 3.276533, - 51.2166185 - ], - [ - 3.276533, - 51.2163043 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87883805 - } - }, - { - "id": 87883777, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2704403, - 51.2141004 - ], - [ - 3.271292, - 51.2141004 - ], - [ - 3.271292, - 51.215055 - ], - [ - 3.2704403, - 51.215055 - ], - [ - 3.2704403, - 51.2141004 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87883777 - } - }, - { - "id": 87883741, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2680215, - 51.2251666 - ], - [ - 3.2721815, - 51.2251666 - ], - [ - 3.2721815, - 51.2281225 - ], - [ - 3.2680215, - 51.2281225 - ], - [ - 3.2680215, - 51.2251666 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87883741 - } - }, - { - "id": 87883683, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2657252, - 51.2203515 - ], - [ - 3.268784, - 51.2203515 - ], - [ - 3.268784, - 51.2236737 - ], - [ - 3.2657252, - 51.2236737 - ], - [ - 3.2657252, - 51.2203515 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87883683 - } - }, - { - "id": 87883664, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2721712, - 51.2197402 - ], - [ - 3.2726774, - 51.2197402 - ], - [ - 3.2726774, - 51.2200942 - ], - [ - 3.2721712, - 51.2200942 - ], - [ - 3.2721712, - 51.2197402 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87883664 - } - }, - { - "id": 87883642, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2688255, - 51.2187409 - ], - [ - 3.2726774, - 51.2187409 - ], - [ - 3.2726774, - 51.2215132 - ], - [ - 3.2688255, - 51.2215132 - ], - [ - 3.2688255, - 51.2187409 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87883642 - } - }, - { - "id": 87883604, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2773902, - 51.2200676 - ], - [ - 3.2776738, - 51.2200676 - ], - [ - 3.2776738, - 51.2201958 - ], - [ - 3.2773902, - 51.2201958 - ], - [ - 3.2773902, - 51.2200676 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87883604 - } - }, - { - "id": 87883560, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2797622, - 51.2206369 - ], - [ - 3.2816268, - 51.2206369 - ], - [ - 3.2816268, - 51.2214979 - ], - [ - 3.2797622, - 51.2214979 - ], - [ - 3.2797622, - 51.2206369 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87883560 - } - }, - { - "id": 87883520, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2797622, - 51.2206369 - ], - [ - 3.2816268, - 51.2206369 - ], - [ - 3.2816268, - 51.2214979 - ], - [ - 3.2797622, - 51.2214979 - ], - [ - 3.2797622, - 51.2206369 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87883520 - } - }, - { - "id": 87883516, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3295805, - 50.8594301 - ], - [ - 3.3315612, - 50.8594301 - ], - [ - 3.3315612, - 50.8605861 - ], - [ - 3.3295805, - 50.8605861 - ], - [ - 3.3295805, - 50.8594301 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87883516 - } - }, - { - "id": 87883483, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3295805, - 50.8554233 - ], - [ - 3.3327049, - 50.8554233 - ], - [ - 3.3327049, - 50.8605861 - ], - [ - 3.3295805, - 50.8605861 - ], - [ - 3.3295805, - 50.8554233 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87883483 - } - }, - { - "id": 87883434, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3335019, - 50.8513252 - ], - [ - 3.3357054, - 50.8513252 - ], - [ - 3.3357054, - 50.8528138 - ], - [ - 3.3335019, - 50.8528138 - ], - [ - 3.3335019, - 50.8513252 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87883434 - } - }, - { - "id": 87881690, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7491186, - 50.8755878 - ], - [ - 4.7569574, - 50.8755878 - ], - [ - 4.7569574, - 50.8798035 - ], - [ - 4.7491186, - 50.8798035 - ], - [ - 4.7491186, - 50.8755878 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87881690 - } - }, - { - "id": 87881597, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7591609, - 51.0819839 - ], - [ - 3.7653284, - 51.0819839 - ], - [ - 3.7653284, - 51.0860435 - ], - [ - 3.7591609, - 51.0860435 - ], - [ - 3.7591609, - 51.0819839 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87881597 - } - }, - { - "id": 87881582, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7188614, - 50.8873553 - ], - [ - 4.7192273, - 50.8873553 - ], - [ - 4.7192273, - 50.8876729 - ], - [ - 4.7188614, - 50.8876729 - ], - [ - 4.7188614, - 50.8873553 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87881582 - } - }, - { - "id": 87881568, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7260374, - 50.8863612 - ], - [ - 4.7481175, - 50.8863612 - ], - [ - 4.7481175, - 50.8966313 - ], - [ - 4.7260374, - 50.8966313 - ], - [ - 4.7260374, - 50.8863612 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87881568 - } - }, - { - "id": 87881533, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7373852, - 50.8992462 - ], - [ - 4.7482869, - 50.8992462 - ], - [ - 4.7482869, - 50.903374 - ], - [ - 4.7373852, - 50.903374 - ], - [ - 4.7373852, - 50.8992462 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87881533 - } - }, - { - "id": 87881531, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7008691, - 51.0718077 - ], - [ - 3.701596, - 51.0718077 - ], - [ - 3.701596, - 51.072256 - ], - [ - 3.7008691, - 51.072256 - ], - [ - 3.7008691, - 51.0718077 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87881531 - } - }, - { - "id": 87881502, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7008691, - 51.0718077 - ], - [ - 3.7008691, - 51.0718077 - ], - [ - 3.7008691, - 51.0718077 - ], - [ - 3.7008691, - 51.0718077 - ], - [ - 3.7008691, - 51.0718077 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87881502 - } - }, - { - "id": 87881489, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7058101, - 50.9052035 - ], - [ - 4.7066052, - 50.9052035 - ], - [ - 4.7066052, - 50.9078823 - ], - [ - 4.7058101, - 50.9078823 - ], - [ - 4.7058101, - 50.9052035 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87881489 - } - }, - { - "id": 87881443, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7474957, - 51.0732678 - ], - [ - 3.7490752, - 51.0732678 - ], - [ - 3.7490752, - 51.0735722 - ], - [ - 3.7474957, - 51.0735722 - ], - [ - 3.7474957, - 51.0732678 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87881443 - } - }, - { - "id": 87881430, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.201195, - 51.1810714 - ], - [ - 3.205714, - 51.1810714 - ], - [ - 3.205714, - 51.1827702 - ], - [ - 3.201195, - 51.1827702 - ], - [ - 3.201195, - 51.1810714 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87881430 - } - }, - { - "id": 87881401, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.201195, - 51.1810714 - ], - [ - 3.205714, - 51.1810714 - ], - [ - 3.205714, - 51.1827702 - ], - [ - 3.201195, - 51.1827702 - ], - [ - 3.201195, - 51.1810714 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87881401 - } - }, - { - "id": 87881375, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7871458, - 50.9096498 - ], - [ - 4.7894561, - 50.9096498 - ], - [ - 4.7894561, - 50.9127139 - ], - [ - 4.7871458, - 50.9127139 - ], - [ - 4.7871458, - 50.9096498 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87881375 - } - }, - { - "id": 87881362, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1306631, - 51.1671815 - ], - [ - 3.1746379, - 51.1671815 - ], - [ - 3.1746379, - 51.288698 - ], - [ - 3.1306631, - 51.288698 - ], - [ - 3.1306631, - 51.1671815 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87881362 - } - }, - { - "id": 87881332, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7194153, - 50.9021204 - ], - [ - 4.7824368, - 50.9021204 - ], - [ - 4.7824368, - 50.919666 - ], - [ - 4.7194153, - 50.919666 - ], - [ - 4.7194153, - 50.9021204 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87881332 - } - }, - { - "id": 87881283, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0828249, - 51.2997369 - ], - [ - 3.0840398, - 51.2997369 - ], - [ - 3.0840398, - 51.300493 - ], - [ - 3.0828249, - 51.300493 - ], - [ - 3.0828249, - 51.2997369 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87881283 - } - }, - { - "id": 87881266, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.711912, - 50.9037721 - ], - [ - 4.7181216, - 50.9037721 - ], - [ - 4.7181216, - 50.9070529 - ], - [ - 4.711912, - 50.9070529 - ], - [ - 4.711912, - 50.9037721 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87881266 - } - }, - { - "id": 87881252, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0078059, - 51.2635462 - ], - [ - 3.0314193, - 51.2635462 - ], - [ - 3.0314193, - 51.2722329 - ], - [ - 3.0078059, - 51.2722329 - ], - [ - 3.0078059, - 51.2635462 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87881252 - } - }, - { - "id": 87881221, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7236968, - 50.8932449 - ], - [ - 4.7247804, - 50.8932449 - ], - [ - 4.7247804, - 50.8955931 - ], - [ - 4.7236968, - 50.8955931 - ], - [ - 4.7236968, - 50.8932449 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87881221 - } - }, - { - "id": 87881151, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7212671, - 50.902866 - ], - [ - 4.756322, - 50.902866 - ], - [ - 4.756322, - 50.919666 - ], - [ - 4.7212671, - 50.919666 - ], - [ - 4.7212671, - 50.902866 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87881151 - } - }, - { - "id": 87881139, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0423653, - 51.2757226 - ], - [ - 3.052489, - 51.2757226 - ], - [ - 3.052489, - 51.2826233 - ], - [ - 3.0423653, - 51.2826233 - ], - [ - 3.0423653, - 51.2757226 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87881139 - } - }, - { - "id": 87881124, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0412729, - 51.276501 - ], - [ - 3.0435941, - 51.276501 - ], - [ - 3.0435941, - 51.2793713 - ], - [ - 3.0412729, - 51.2793713 - ], - [ - 3.0412729, - 51.276501 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87881124 - } - }, - { - "id": 87881063, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0079552, - 51.2462548 - ], - [ - 3.0146138, - 51.2462548 - ], - [ - 3.0146138, - 51.2503442 - ], - [ - 3.0079552, - 51.2503442 - ], - [ - 3.0079552, - 51.2462548 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87881063 - } - }, - { - "id": 87880817, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0845281, - 51.1711154 - ], - [ - 3.0863761, - 51.1711154 - ], - [ - 3.0863761, - 51.1715732 - ], - [ - 3.0845281, - 51.1715732 - ], - [ - 3.0845281, - 51.1711154 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87880817 - } - }, - { - "id": 87880802, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.07681, - 51.1670509 - ], - [ - 3.0863761, - 51.1670509 - ], - [ - 3.0863761, - 51.1716613 - ], - [ - 3.07681, - 51.1716613 - ], - [ - 3.07681, - 51.1670509 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87880802 - } - }, - { - "id": 87880789, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7211113, - 50.9703543 - ], - [ - 3.7224058, - 50.9703543 - ], - [ - 3.7224058, - 50.9715015 - ], - [ - 3.7211113, - 50.9715015 - ], - [ - 3.7211113, - 50.9703543 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87880789 - } - }, - { - "id": 87880768, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0766993, - 51.1655201 - ], - [ - 3.0841861, - 51.1655201 - ], - [ - 3.0841861, - 51.1716613 - ], - [ - 3.0766993, - 51.1716613 - ], - [ - 3.0766993, - 51.1655201 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87880768 - } - }, - { - "id": 87880738, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0668429, - 51.1646138 - ], - [ - 3.0739976, - 51.1646138 - ], - [ - 3.0739976, - 51.1710943 - ], - [ - 3.0668429, - 51.1710943 - ], - [ - 3.0668429, - 51.1646138 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87880738 - } - }, - { - "id": 87880719, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0699482, - 51.1713651 - ], - [ - 3.0734258, - 51.1713651 - ], - [ - 3.0734258, - 51.1742458 - ], - [ - 3.0699482, - 51.1742458 - ], - [ - 3.0699482, - 51.1713651 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87880719 - } - }, - { - "id": 87880702, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0675206, - 51.1670961 - ], - [ - 3.0721984, - 51.1670961 - ], - [ - 3.0721984, - 51.1741074 - ], - [ - 3.0675206, - 51.1741074 - ], - [ - 3.0675206, - 51.1670961 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87880702 - } - }, - { - "id": 87880197, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1275462, - 51.2601978 - ], - [ - 5.1313823, - 51.2601978 - ], - [ - 5.1313823, - 51.2628858 - ], - [ - 5.1275462, - 51.2628858 - ], - [ - 5.1275462, - 51.2601978 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87880197 - } - }, - { - "id": 87880164, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1275462, - 51.2601978 - ], - [ - 5.1313823, - 51.2601978 - ], - [ - 5.1313823, - 51.2628858 - ], - [ - 5.1275462, - 51.2628858 - ], - [ - 5.1275462, - 51.2601978 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87880164 - } - }, - { - "id": 87880137, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7119676, - 50.8452142 - ], - [ - 2.7145601, - 50.8452142 - ], - [ - 2.7145601, - 50.846646 - ], - [ - 2.7119676, - 50.846646 - ], - [ - 2.7119676, - 50.8452142 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87880137 - } - }, - { - "id": 87880107, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7119676, - 50.8452142 - ], - [ - 2.7145601, - 50.8452142 - ], - [ - 2.7145601, - 50.846646 - ], - [ - 2.7119676, - 50.846646 - ], - [ - 2.7119676, - 50.8452142 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87880107 - } - }, - { - "id": 87880073, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7119676, - 50.8452142 - ], - [ - 2.7145601, - 50.8452142 - ], - [ - 2.7145601, - 50.846646 - ], - [ - 2.7119676, - 50.846646 - ], - [ - 2.7119676, - 50.8452142 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87880073 - } - }, - { - "id": 87879917, - "type": "Feature", - "geometry": null, - "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:54Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 87879917 - } - }, - { - "id": 87879906, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9361715, - 51.1595716 - ], - [ - 2.9388967, - 51.1595716 - ], - [ - 2.9388967, - 51.1606011 - ], - [ - 2.9361715, - 51.1606011 - ], - [ - 2.9361715, - 51.1595716 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87879906 - } - }, - { - "id": 87879883, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9031758, - 51.1735696 - ], - [ - 2.9097897, - 51.1735696 - ], - [ - 2.9097897, - 51.1741039 - ], - [ - 2.9031758, - 51.1741039 - ], - [ - 2.9031758, - 51.1735696 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87879883 - } - }, - { - "id": 87879876, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9011059, - 51.1256042 - ], - [ - 4.9022688, - 51.1256042 - ], - [ - 4.9022688, - 51.1265773 - ], - [ - 4.9011059, - 51.1265773 - ], - [ - 4.9011059, - 51.1256042 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87879876 - } - }, - { - "id": 87879868, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9081714, - 51.1177375 - ], - [ - 4.9196591, - 51.1177375 - ], - [ - 4.9196591, - 51.1253511 - ], - [ - 4.9081714, - 51.1253511 - ], - [ - 4.9081714, - 51.1177375 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87879868 - } - }, - { - "id": 87879865, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9373514, - 51.1738273 - ], - [ - 2.9412405, - 51.1738273 - ], - [ - 2.9412405, - 51.1775068 - ], - [ - 2.9373514, - 51.1775068 - ], - [ - 2.9373514, - 51.1738273 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87879865 - } - }, - { - "id": 87879825, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.891057, - 51.1182869 - ], - [ - 4.90634, - 51.1182869 - ], - [ - 4.90634, - 51.1267615 - ], - [ - 4.891057, - 51.1267615 - ], - [ - 4.891057, - 51.1182869 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87879825 - } - }, - { - "id": 87879821, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9237001, - 51.1766366 - ], - [ - 2.9249883, - 51.1766366 - ], - [ - 2.9249883, - 51.1775216 - ], - [ - 2.9237001, - 51.1775216 - ], - [ - 2.9237001, - 51.1766366 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87879821 - } - }, - { - "id": 87879799, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9223966, - 51.1766366 - ], - [ - 2.9249883, - 51.1766366 - ], - [ - 2.9249883, - 51.1775216 - ], - [ - 2.9223966, - 51.1775216 - ], - [ - 2.9223966, - 51.1766366 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87879799 - } - }, - { - "id": 87879774, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9196577, - 51.1710351 - ], - [ - 2.9208456, - 51.1710351 - ], - [ - 2.9208456, - 51.1717662 - ], - [ - 2.9196577, - 51.1717662 - ], - [ - 2.9196577, - 51.1710351 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87879774 - } - }, - { - "id": 87879686, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9117844, - 51.1750946 - ], - [ - 2.9126696, - 51.1750946 - ], - [ - 2.9126696, - 51.1755451 - ], - [ - 2.9117844, - 51.1755451 - ], - [ - 2.9117844, - 51.1750946 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87879686 - } - }, - { - "id": 87879652, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.918459, - 51.1780287 - ], - [ - 2.9213707, - 51.1780287 - ], - [ - 2.9213707, - 51.1796626 - ], - [ - 2.918459, - 51.1796626 - ], - [ - 2.918459, - 51.1780287 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87879652 - } - }, - { - "id": 87878154, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.133529, - 51.1406882 - ], - [ - 3.133529, - 51.1406882 - ], - [ - 3.133529, - 51.1406882 - ], - [ - 3.133529, - 51.1406882 - ], - [ - 3.133529, - 51.1406882 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87878154 - } - }, - { - "id": 87878125, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1332336, - 51.1405398 - ], - [ - 3.133529, - 51.1405398 - ], - [ - 3.133529, - 51.1406882 - ], - [ - 3.1332336, - 51.1406882 - ], - [ - 3.1332336, - 51.1405398 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87878125 - } - }, - { - "id": 87878112, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0603536, - 50.9833954 - ], - [ - 3.0660597, - 50.9833954 - ], - [ - 3.0660597, - 50.9868678 - ], - [ - 3.0603536, - 50.9868678 - ], - [ - 3.0603536, - 50.9833954 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87878112 - } - }, - { - "id": 87878071, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0644544, - 50.9841397 - ], - [ - 3.0660597, - 50.9841397 - ], - [ - 3.0660597, - 50.9852855 - ], - [ - 3.0644544, - 50.9852855 - ], - [ - 3.0644544, - 50.9841397 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87878071 - } - }, - { - "id": 87877042, - "type": "Feature", - "geometry": null, - "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:13Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 87877042 - } - }, - { - "id": 87877037, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8616771, - 50.987534 - ], - [ - 3.9732841, - 50.987534 - ], - [ - 3.9732841, - 51.0365414 - ], - [ - 3.8616771, - 51.0365414 - ], - [ - 3.8616771, - 50.987534 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87877037 - } - }, - { - "id": 87876524, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2206131, - 51.2028391 - ], - [ - 3.2208484, - 51.2028391 - ], - [ - 3.2208484, - 51.2029217 - ], - [ - 3.2206131, - 51.2029217 - ], - [ - 3.2206131, - 51.2028391 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87876524 - } - }, - { - "id": 87876512, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2206131, - 51.2028391 - ], - [ - 3.2208484, - 51.2028391 - ], - [ - 3.2208484, - 51.2029217 - ], - [ - 3.2206131, - 51.2029217 - ], - [ - 3.2206131, - 51.2028391 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87876512 - } - }, - { - "id": 87876484, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.220765, - 51.2027991 - ], - [ - 3.2208484, - 51.2027991 - ], - [ - 3.2208484, - 51.2028399 - ], - [ - 3.220765, - 51.2028399 - ], - [ - 3.220765, - 51.2027991 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87876484 - } - }, - { - "id": 87876430, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2204155, - 51.2013334 - ], - [ - 3.2205754, - 51.2013334 - ], - [ - 3.2205754, - 51.2014308 - ], - [ - 3.2204155, - 51.2014308 - ], - [ - 3.2204155, - 51.2013334 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87876430 - } - }, - { - "id": 87876393, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7658808, - 51.1468947 - ], - [ - 4.7669563, - 51.1468947 - ], - [ - 4.7669563, - 51.1474518 - ], - [ - 4.7658808, - 51.1474518 - ], - [ - 4.7658808, - 51.1468947 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87876393 - } - }, - { - "id": 87876354, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2201597, - 51.2007431 - ], - [ - 3.2202861, - 51.2007431 - ], - [ - 3.2202861, - 51.2008034 - ], - [ - 3.2201597, - 51.2008034 - ], - [ - 3.2201597, - 51.2007431 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87876354 - } - }, - { - "id": 87876232, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2231486, - 51.2000025 - ], - [ - 3.2233838, - 51.2000025 - ], - [ - 3.2233838, - 51.2001475 - ], - [ - 3.2231486, - 51.2001475 - ], - [ - 3.2231486, - 51.2000025 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87876232 - } - }, - { - "id": 87876156, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2223496, - 51.2017359 - ], - [ - 3.2223496, - 51.2017359 - ], - [ - 3.2223496, - 51.2017359 - ], - [ - 3.2223496, - 51.2017359 - ], - [ - 3.2223496, - 51.2017359 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87876156 - } - }, - { - "id": 87876099, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2223496, - 51.2017359 - ], - [ - 3.2223496, - 51.2017359 - ], - [ - 3.2223496, - 51.2017359 - ], - [ - 3.2223496, - 51.2017359 - ], - [ - 3.2223496, - 51.2017359 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87876099 - } - }, - { - "id": 87876046, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2223496, - 51.2017359 - ], - [ - 3.2223496, - 51.2017359 - ], - [ - 3.2223496, - 51.2017359 - ], - [ - 3.2223496, - 51.2017359 - ], - [ - 3.2223496, - 51.2017359 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87876046 - } - }, - { - "id": 87875825, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2243554, - 51.2033458 - ], - [ - 3.2247423, - 51.2033458 - ], - [ - 3.2247423, - 51.2035858 - ], - [ - 3.2243554, - 51.2035858 - ], - [ - 3.2243554, - 51.2033458 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87875825 - } - }, - { - "id": 87875633, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7170589, - 51.1133364 - ], - [ - 3.7170589, - 51.1133364 - ], - [ - 3.7170589, - 51.1133364 - ], - [ - 3.7170589, - 51.1133364 - ], - [ - 3.7170589, - 51.1133364 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87875633 - } - }, - { - "id": 87875612, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.719854, - 51.1151252 - ], - [ - 3.724741, - 51.1151252 - ], - [ - 3.724741, - 51.1181492 - ], - [ - 3.719854, - 51.1181492 - ], - [ - 3.719854, - 51.1151252 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87875612 - } - }, - { - "id": 87875583, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2179186, - 51.2131523 - ], - [ - 3.2182114, - 51.2131523 - ], - [ - 3.2182114, - 51.2133289 - ], - [ - 3.2179186, - 51.2133289 - ], - [ - 3.2179186, - 51.2131523 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87875583 - } - }, - { - "id": 87875440, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5405086, - 51.0683153 - ], - [ - 4.5508024, - 51.0683153 - ], - [ - 4.5508024, - 51.0733883 - ], - [ - 4.5405086, - 51.0733883 - ], - [ - 4.5405086, - 51.0683153 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87875440 - } - }, - { - "id": 87861343, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1057121, - 50.9216409 - ], - [ - 4.1099341, - 50.9216409 - ], - [ - 4.1099341, - 50.9280586 - ], - [ - 4.1057121, - 50.9280586 - ], - [ - 4.1057121, - 50.9216409 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87861343 - } - }, - { - "id": 87861329, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1073248, - 50.920221 - ], - [ - 4.1101516, - 50.920221 - ], - [ - 4.1101516, - 50.9217215 - ], - [ - 4.1073248, - 50.9217215 - ], - [ - 4.1073248, - 50.920221 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87861329 - } - }, - { - "id": 87861288, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1073248, - 50.920221 - ], - [ - 4.1101516, - 50.920221 - ], - [ - 4.1101516, - 50.9217215 - ], - [ - 4.1073248, - 50.9217215 - ], - [ - 4.1073248, - 50.920221 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87861288 - } - }, - { - "id": 87861244, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.080576, - 50.9228517 - ], - [ - 4.0954957, - 50.9228517 - ], - [ - 4.0954957, - 50.9329709 - ], - [ - 4.080576, - 50.9329709 - ], - [ - 4.080576, - 50.9228517 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87861244 - } - }, - { - "id": 87861241, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.080576, - 50.9228517 - ], - [ - 4.0954957, - 50.9228517 - ], - [ - 4.0954957, - 50.9329709 - ], - [ - 4.080576, - 50.9329709 - ], - [ - 4.080576, - 50.9228517 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87861241 - } - }, - { - "id": 87860711, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2693902, - 51.1889883 - ], - [ - 3.2693902, - 51.1889883 - ], - [ - 3.2693902, - 51.1889883 - ], - [ - 3.2693902, - 51.1889883 - ], - [ - 3.2693902, - 51.1889883 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87860711 - } - }, - { - "id": 87858397, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2245404, - 51.2123733 - ], - [ - 3.2251563, - 51.2123733 - ], - [ - 3.2251563, - 51.2130098 - ], - [ - 3.2245404, - 51.2130098 - ], - [ - 3.2245404, - 51.2123733 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87858397 - } - }, - { - "id": 87858343, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2247788, - 51.21168 - ], - [ - 3.2250966, - 51.21168 - ], - [ - 3.2250966, - 51.2117726 - ], - [ - 3.2247788, - 51.2117726 - ], - [ - 3.2247788, - 51.21168 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87858343 - } - }, - { - "id": 87858287, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2264234, - 51.2097427 - ], - [ - 3.2266308, - 51.2097427 - ], - [ - 3.2266308, - 51.2097896 - ], - [ - 3.2264234, - 51.2097896 - ], - [ - 3.2264234, - 51.2097427 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87858287 - } - }, - { - "id": 87858255, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2264428, - 51.2094475 - ], - [ - 3.2266264, - 51.2094475 - ], - [ - 3.2266264, - 51.2095461 - ], - [ - 3.2264428, - 51.2095461 - ], - [ - 3.2264428, - 51.2094475 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87858255 - } - }, - { - "id": 87858231, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.226587, - 51.2093638 - ], - [ - 3.226759, - 51.2093638 - ], - [ - 3.226759, - 51.2094635 - ], - [ - 3.226587, - 51.2094635 - ], - [ - 3.226587, - 51.2093638 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87858231 - } - }, - { - "id": 87858215, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2262563, - 51.2093022 - ], - [ - 3.2263935, - 51.2093022 - ], - [ - 3.2263935, - 51.2094472 - ], - [ - 3.2262563, - 51.2094472 - ], - [ - 3.2262563, - 51.2093022 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87858215 - } - }, - { - "id": 87857804, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2344212, - 51.2031691 - ], - [ - 3.2344212, - 51.2031691 - ], - [ - 3.2344212, - 51.2031691 - ], - [ - 3.2344212, - 51.2031691 - ], - [ - 3.2344212, - 51.2031691 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87857804 - } - }, - { - "id": 87857359, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2693902, - 51.1889883 - ], - [ - 3.2693902, - 51.1889883 - ], - [ - 3.2693902, - 51.1889883 - ], - [ - 3.2693902, - 51.1889883 - ], - [ - 3.2693902, - 51.1889883 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87857359 - } - }, - { - "id": 87857305, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2693902, - 51.1889883 - ], - [ - 3.2693902, - 51.1889883 - ], - [ - 3.2693902, - 51.1889883 - ], - [ - 3.2693902, - 51.1889883 - ], - [ - 3.2693902, - 51.1889883 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87857305 - } - }, - { - "id": 87857303, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2693902, - 51.1889883 - ], - [ - 3.2693902, - 51.1889883 - ], - [ - 3.2693902, - 51.1889883 - ], - [ - 3.2693902, - 51.1889883 - ], - [ - 3.2693902, - 51.1889883 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87857303 - } - }, - { - "id": 87857275, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2693902, - 51.1889883 - ], - [ - 3.2693902, - 51.1889883 - ], - [ - 3.2693902, - 51.1889883 - ], - [ - 3.2693902, - 51.1889883 - ], - [ - 3.2693902, - 51.1889883 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87857275 - } - }, - { - "id": 87852045, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2636348, - 51.1496118 - ], - [ - 3.2735735, - 51.1496118 - ], - [ - 3.2735735, - 51.1581621 - ], - [ - 3.2636348, - 51.1581621 - ], - [ - 3.2636348, - 51.1496118 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87852045 - } - }, - { - "id": 87849108, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3531877, - 50.8311549 - ], - [ - 4.3531877, - 50.8311549 - ], - [ - 4.3531877, - 50.8311549 - ], - [ - 4.3531877, - 50.8311549 - ], - [ - 4.3531877, - 50.8311549 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87849108 - } - }, - { - "id": 87827539, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2130498, - 51.2047361 - ], - [ - 3.2130498, - 51.2047361 - ], - [ - 3.2130498, - 51.2047361 - ], - [ - 3.2130498, - 51.2047361 - ], - [ - 3.2130498, - 51.2047361 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.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, - "metadata": {}, - "id": 87827539 - } - }, - { - "id": 87827499, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2130498, - 51.2047361 - ], - [ - 3.2130498, - 51.2047361 - ], - [ - 3.2130498, - 51.2047361 - ], - [ - 3.2130498, - 51.2047361 - ], - [ - 3.2130498, - 51.2047361 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.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, - "metadata": {}, - "id": 87827499 - } - }, - { - "id": 87824438, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3531877, - 50.8311549 - ], - [ - 4.3531877, - 50.8311549 - ], - [ - 4.3531877, - 50.8311549 - ], - [ - 4.3531877, - 50.8311549 - ], - [ - 4.3531877, - 50.8311549 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87824438 - } - }, - { - "id": 87824430, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3531877, - 50.8311549 - ], - [ - 4.3531877, - 50.8311549 - ], - [ - 4.3531877, - 50.8311549 - ], - [ - 4.3531877, - 50.8311549 - ], - [ - 4.3531877, - 50.8311549 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87824430 - } - }, - { - "id": 87824414, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3531877, - 50.8311549 - ], - [ - 4.3531877, - 50.8311549 - ], - [ - 4.3531877, - 50.8311549 - ], - [ - 4.3531877, - 50.8311549 - ], - [ - 4.3531877, - 50.8311549 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87824414 - } - }, - { - "id": 87775439, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3808359, - 50.8626495 - ], - [ - 4.3808359, - 50.8626495 - ], - [ - 4.3808359, - 50.8626495 - ], - [ - 4.3808359, - 50.8626495 - ], - [ - 4.3808359, - 50.8626495 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87775439 - } - }, - { - "id": 87775395, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3808359, - 50.8626495 - ], - [ - 4.3808359, - 50.8626495 - ], - [ - 4.3808359, - 50.8626495 - ], - [ - 4.3808359, - 50.8626495 - ], - [ - 4.3808359, - 50.8626495 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87775395 - } - }, - { - "id": 87760839, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4417375, - 51.3771322 - ], - [ - 4.450495, - 51.3771322 - ], - [ - 4.450495, - 51.3874326 - ], - [ - 4.4417375, - 51.3874326 - ], - [ - 4.4417375, - 51.3771322 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87760839 - } - }, - { - "id": 87760772, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4286656, - 51.3435123 - ], - [ - 4.4582169, - 51.3435123 - ], - [ - 4.4582169, - 51.3691624 - ], - [ - 4.4286656, - 51.3691624 - ], - [ - 4.4286656, - 51.3435123 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87760772 - } - }, - { - "id": 87717804, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2153406, - 51.2156501 - ], - [ - 3.2153406, - 51.2156501 - ], - [ - 3.2153406, - 51.2156501 - ], - [ - 3.2153406, - 51.2156501 - ], - [ - 3.2153406, - 51.2156501 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87717804 - } - }, - { - "id": 87715983, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2114246, - 51.2112087 - ], - [ - 3.2134929, - 51.2112087 - ], - [ - 3.2134929, - 51.2124385 - ], - [ - 3.2114246, - 51.2124385 - ], - [ - 3.2114246, - 51.2112087 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87715983 - } - }, - { - "id": 87710063, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2153406, - 51.2156501 - ], - [ - 3.2153406, - 51.2156501 - ], - [ - 3.2153406, - 51.2156501 - ], - [ - 3.2153406, - 51.2156501 - ], - [ - 3.2153406, - 51.2156501 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87710063 - } - }, - { - "id": 87707418, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2169854, - 51.2084071 - ], - [ - 3.2188323, - 51.2084071 - ], - [ - 3.2188323, - 51.2101439 - ], - [ - 3.2169854, - 51.2101439 - ], - [ - 3.2169854, - 51.2084071 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87707418 - } - }, - { - "id": 87669369, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4874966, - 51.1002113 - ], - [ - 3.4899185, - 51.1002113 - ], - [ - 3.4899185, - 51.1015789 - ], - [ - 3.4874966, - 51.1015789 - ], - [ - 3.4874966, - 51.1002113 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87669369 - } - }, - { - "id": 87669336, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4661094, - 51.1178999 - ], - [ - 3.4694115, - 51.1178999 - ], - [ - 3.4694115, - 51.1200071 - ], - [ - 3.4661094, - 51.1200071 - ], - [ - 3.4661094, - 51.1178999 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87669336 - } - }, - { - "id": 87663336, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2382765, - 50.7333846 - ], - [ - 4.2382765, - 50.7333846 - ], - [ - 4.2382765, - 50.7333846 - ], - [ - 4.2382765, - 50.7333846 - ], - [ - 4.2382765, - 50.7333846 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87663336 - } - }, - { - "id": 87663250, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2421925, - 50.7345615 - ], - [ - 4.2421925, - 50.7345615 - ], - [ - 4.2421925, - 50.7345615 - ], - [ - 4.2421925, - 50.7345615 - ], - [ - 4.2421925, - 50.7345615 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87663250 - } - }, - { - "id": 87663219, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2421925, - 50.7345615 - ], - [ - 4.2421925, - 50.7345615 - ], - [ - 4.2421925, - 50.7345615 - ], - [ - 4.2421925, - 50.7345615 - ], - [ - 4.2421925, - 50.7345615 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87663219 - } - }, - { - "id": 87663025, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2389458, - 50.7346319 - ], - [ - 4.2389458, - 50.7346319 - ], - [ - 4.2389458, - 50.7346319 - ], - [ - 4.2389458, - 50.7346319 - ], - [ - 4.2389458, - 50.7346319 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87663025 - } - }, - { - "id": 87594916, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3607213, - 50.8424482 - ], - [ - 4.3665856, - 50.8424482 - ], - [ - 4.3665856, - 50.8467118 - ], - [ - 4.3607213, - 50.8467118 - ], - [ - 4.3607213, - 50.8424482 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87594916 - } - }, - { - "id": 87559753, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2161345, - 51.2148361 - ], - [ - 3.2163085, - 51.2148361 - ], - [ - 3.2163085, - 51.2149282 - ], - [ - 3.2161345, - 51.2149282 - ], - [ - 3.2161345, - 51.2148361 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87559753 - } - }, - { - "id": 87559697, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2153939, - 51.213688 - ], - [ - 3.215843, - 51.213688 - ], - [ - 3.215843, - 51.2140151 - ], - [ - 3.2153939, - 51.2140151 - ], - [ - 3.2153939, - 51.213688 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87559697 - } - }, - { - "id": 87559576, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.214828, - 51.2124477 - ], - [ - 3.2152939, - 51.2124477 - ], - [ - 3.2152939, - 51.2126177 - ], - [ - 3.214828, - 51.2126177 - ], - [ - 3.214828, - 51.2124477 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87559576 - } - }, - { - "id": 87559502, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2147639, - 51.2123247 - ], - [ - 3.2149751, - 51.2123247 - ], - [ - 3.2149751, - 51.2124233 - ], - [ - 3.2147639, - 51.2124233 - ], - [ - 3.2147639, - 51.2123247 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87559502 - } - }, - { - "id": 87559483, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2146449, - 51.2120091 - ], - [ - 3.215158, - 51.2120091 - ], - [ - 3.215158, - 51.2124233 - ], - [ - 3.2146449, - 51.2124233 - ], - [ - 3.2146449, - 51.2120091 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87559483 - } - }, - { - "id": 87559416, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2147851, - 51.2112864 - ], - [ - 3.2153678, - 51.2112864 - ], - [ - 3.2153678, - 51.2116638 - ], - [ - 3.2147851, - 51.2116638 - ], - [ - 3.2147851, - 51.2112864 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87559416 - } - }, - { - "id": 87559366, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2156688, - 51.210635 - ], - [ - 3.2159594, - 51.210635 - ], - [ - 3.2159594, - 51.2107853 - ], - [ - 3.2156688, - 51.2107853 - ], - [ - 3.2156688, - 51.210635 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87559366 - } - }, - { - "id": 87559314, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2162632, - 51.2099601 - ], - [ - 3.2164015, - 51.2099601 - ], - [ - 3.2164015, - 51.2100435 - ], - [ - 3.2162632, - 51.2100435 - ], - [ - 3.2162632, - 51.2099601 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87559314 - } - }, - { - "id": 87559283, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2166447, - 51.2094642 - ], - [ - 3.2169288, - 51.2094642 - ], - [ - 3.2169288, - 51.2095941 - ], - [ - 3.2166447, - 51.2095941 - ], - [ - 3.2166447, - 51.2094642 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87559283 - } - }, - { - "id": 87559250, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2169312, - 51.2090858 - ], - [ - 3.2171473, - 51.2090858 - ], - [ - 3.2171473, - 51.2091869 - ], - [ - 3.2169312, - 51.2091869 - ], - [ - 3.2169312, - 51.2090858 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87559250 - } - }, - { - "id": 87559234, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2168695, - 51.2087066 - ], - [ - 3.2171231, - 51.2087066 - ], - [ - 3.2171231, - 51.2088074 - ], - [ - 3.2168695, - 51.2088074 - ], - [ - 3.2168695, - 51.2087066 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87559234 - } - }, - { - "id": 87559210, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2169854, - 51.2084071 - ], - [ - 3.2188323, - 51.2084071 - ], - [ - 3.2188323, - 51.2101439 - ], - [ - 3.2169854, - 51.2101439 - ], - [ - 3.2169854, - 51.2084071 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87559210 - } - }, - { - "id": 87559106, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2169854, - 51.2084071 - ], - [ - 3.2188323, - 51.2084071 - ], - [ - 3.2188323, - 51.2101439 - ], - [ - 3.2169854, - 51.2101439 - ], - [ - 3.2169854, - 51.2084071 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87559106 - } - }, - { - "id": 87559101, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2173753, - 51.2101744 - ], - [ - 3.2175581, - 51.2101744 - ], - [ - 3.2175581, - 51.2102846 - ], - [ - 3.2173753, - 51.2102846 - ], - [ - 3.2173753, - 51.2101744 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87559101 - } - }, - { - "id": 87559035, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.219948, - 51.2112418 - ], - [ - 3.2201781, - 51.2112418 - ], - [ - 3.2201781, - 51.2113943 - ], - [ - 3.219948, - 51.2113943 - ], - [ - 3.219948, - 51.2112418 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87559035 - } - }, - { - "id": 87559002, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198653, - 51.2115266 - ], - [ - 3.2201778, - 51.2115266 - ], - [ - 3.2201778, - 51.2117214 - ], - [ - 3.2198653, - 51.2117214 - ], - [ - 3.2198653, - 51.2115266 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87559002 - } - }, - { - "id": 87558940, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2195661, - 51.2117083 - ], - [ - 3.2199372, - 51.2117083 - ], - [ - 3.2199372, - 51.2119761 - ], - [ - 3.2195661, - 51.2119761 - ], - [ - 3.2195661, - 51.2117083 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87558940 - } - }, - { - "id": 87558779, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2183839, - 51.2121669 - ], - [ - 3.2186606, - 51.2121669 - ], - [ - 3.2186606, - 51.2123184 - ], - [ - 3.2183839, - 51.2123184 - ], - [ - 3.2183839, - 51.2121669 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87558779 - } - }, - { - "id": 87558712, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2179951, - 51.2123772 - ], - [ - 3.218137, - 51.2123772 - ], - [ - 3.218137, - 51.212452 - ], - [ - 3.2179951, - 51.212452 - ], - [ - 3.2179951, - 51.2123772 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87558712 - } - }, - { - "id": 87558681, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2177965, - 51.2128402 - ], - [ - 3.2179742, - 51.2128402 - ], - [ - 3.2179742, - 51.2129478 - ], - [ - 3.2177965, - 51.2129478 - ], - [ - 3.2177965, - 51.2128402 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87558681 - } - }, - { - "id": 87558542, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2162699, - 51.2135767 - ], - [ - 3.2169645, - 51.2135767 - ], - [ - 3.2169645, - 51.214016 - ], - [ - 3.2162699, - 51.214016 - ], - [ - 3.2162699, - 51.2135767 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87558542 - } - }, - { - "id": 87558522, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2162699, - 51.2135767 - ], - [ - 3.2169645, - 51.2135767 - ], - [ - 3.2169645, - 51.214016 - ], - [ - 3.2162699, - 51.214016 - ], - [ - 3.2162699, - 51.2135767 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87558522 - } - }, - { - "id": 87558492, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2170327, - 51.2135724 - ], - [ - 3.2173535, - 51.2135724 - ], - [ - 3.2173535, - 51.2137559 - ], - [ - 3.2170327, - 51.2137559 - ], - [ - 3.2170327, - 51.2135724 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87558492 - } - }, - { - "id": 87558414, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2165306, - 51.2141877 - ], - [ - 3.2168246, - 51.2141877 - ], - [ - 3.2168246, - 51.214409 - ], - [ - 3.2165306, - 51.214409 - ], - [ - 3.2165306, - 51.2141877 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87558414 - } - }, - { - "id": 87558369, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2162521, - 51.2145881 - ], - [ - 3.2165471, - 51.2145881 - ], - [ - 3.2165471, - 51.2147797 - ], - [ - 3.2162521, - 51.2147797 - ], - [ - 3.2162521, - 51.2145881 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87558369 - } - }, - { - "id": 87558322, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2163026, - 51.2147491 - ], - [ - 3.2165021, - 51.2147491 - ], - [ - 3.2165021, - 51.2148734 - ], - [ - 3.2163026, - 51.2148734 - ], - [ - 3.2163026, - 51.2147491 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87558322 - } - }, - { - "id": 87558287, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2171834, - 51.2144674 - ], - [ - 3.2178387, - 51.2144674 - ], - [ - 3.2178387, - 51.2149173 - ], - [ - 3.2171834, - 51.2149173 - ], - [ - 3.2171834, - 51.2144674 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87558287 - } - }, - { - "id": 87558234, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2179225, - 51.2147153 - ], - [ - 3.2180392, - 51.2147153 - ], - [ - 3.2180392, - 51.214833 - ], - [ - 3.2179225, - 51.214833 - ], - [ - 3.2179225, - 51.2147153 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87558234 - } - }, - { - "id": 87558203, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2182569, - 51.2148529 - ], - [ - 3.2188079, - 51.2148529 - ], - [ - 3.2188079, - 51.2152199 - ], - [ - 3.2182569, - 51.2152199 - ], - [ - 3.2182569, - 51.2148529 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87558203 - } - }, - { - "id": 87535363, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2595246, - 50.7373634 - ], - [ - 4.2636467, - 50.7373634 - ], - [ - 4.2636467, - 50.7400806 - ], - [ - 4.2595246, - 50.7400806 - ], - [ - 4.2595246, - 50.7373634 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87535363 - } - }, - { - "id": 87535357, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.25863, - 50.7344128 - ], - [ - 4.2685838, - 50.7344128 - ], - [ - 4.2685838, - 50.7382448 - ], - [ - 4.25863, - 50.7382448 - ], - [ - 4.25863, - 50.7344128 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87535357 - } - }, - { - "id": 87535346, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2532183, - 50.7363737 - ], - [ - 4.2621903, - 50.7363737 - ], - [ - 4.2621903, - 50.7430478 - ], - [ - 4.2532183, - 50.7430478 - ], - [ - 4.2532183, - 50.7363737 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87535346 - } - }, - { - "id": 87535344, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2532183, - 50.7363737 - ], - [ - 4.2621903, - 50.7363737 - ], - [ - 4.2621903, - 50.7430478 - ], - [ - 4.2532183, - 50.7430478 - ], - [ - 4.2532183, - 50.7363737 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87535344 - } - }, - { - "id": 87532054, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2636348, - 51.1496118 - ], - [ - 3.2735735, - 51.1496118 - ], - [ - 3.2735735, - 51.1581621 - ], - [ - 3.2636348, - 51.1581621 - ], - [ - 3.2636348, - 51.1496118 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87532054 - } - }, - { - "id": 87530915, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2636348, - 51.1496118 - ], - [ - 3.2735735, - 51.1496118 - ], - [ - 3.2735735, - 51.1581621 - ], - [ - 3.2636348, - 51.1581621 - ], - [ - 3.2636348, - 51.1496118 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87530915 - } - }, - { - "id": 87519702, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3768463, - 50.8636015 - ], - [ - 4.3770196, - 50.8636015 - ], - [ - 4.3770196, - 50.8636587 - ], - [ - 4.3768463, - 50.8636587 - ], - [ - 4.3768463, - 50.8636015 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87519702 - } - }, - { - "id": 87519699, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3772942, - 50.8635988 - ], - [ - 4.3773466, - 50.8635988 - ], - [ - 4.3773466, - 50.8636831 - ], - [ - 4.3772942, - 50.8636831 - ], - [ - 4.3772942, - 50.8635988 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87519699 - } - }, - { - "id": 87519696, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.377538, - 50.8631378 - ], - [ - 4.3807013, - 50.8631378 - ], - [ - 4.3807013, - 50.864467 - ], - [ - 4.377538, - 50.864467 - ], - [ - 4.377538, - 50.8631378 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87519696 - } - }, - { - "id": 87517182, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3424733, - 51.3447124 - ], - [ - 3.3751697, - 51.3447124 - ], - [ - 3.3751697, - 51.3681764 - ], - [ - 3.3424733, - 51.3681764 - ], - [ - 3.3424733, - 51.3447124 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87517182 - } - }, - { - "id": 87517178, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3424733, - 51.3447124 - ], - [ - 3.3751697, - 51.3447124 - ], - [ - 3.3751697, - 51.3681764 - ], - [ - 3.3424733, - 51.3681764 - ], - [ - 3.3424733, - 51.3447124 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87517178 - } - }, - { - "id": 87517174, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3424733, - 51.3447124 - ], - [ - 3.3751697, - 51.3447124 - ], - [ - 3.3751697, - 51.3681764 - ], - [ - 3.3424733, - 51.3681764 - ], - [ - 3.3424733, - 51.3447124 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87517174 - } - }, - { - "id": 87517158, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3424733, - 51.3447124 - ], - [ - 3.3751697, - 51.3447124 - ], - [ - 3.3751697, - 51.3681764 - ], - [ - 3.3424733, - 51.3681764 - ], - [ - 3.3424733, - 51.3447124 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87517158 - } - }, - { - "id": 87517135, - "type": "Feature", - "geometry": null, - "properties": { - "check_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:28:54Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 87517135 - } - }, - { - "id": 87516927, - "type": "Feature", - "geometry": null, - "properties": { - "check_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:18:30Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 87516927 - } - }, - { - "id": 87507744, - "type": "Feature", - "geometry": null, - "properties": { - "check_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:18:03Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 87507744 - } - }, - { - "id": 87507730, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3274897, - 51.3550655 - ], - [ - 3.3372821, - 51.3550655 - ], - [ - 3.3372821, - 51.3590617 - ], - [ - 3.3274897, - 51.3590617 - ], - [ - 3.3274897, - 51.3550655 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87507730 - } - }, - { - "id": 87507650, - "type": "Feature", - "geometry": null, - "properties": { - "check_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:14:58Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 87507650 - } - }, - { - "id": 87506849, - "type": "Feature", - "geometry": null, - "properties": { - "check_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-03T13:52:04Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 87506849 - } - }, - { - "id": 87503779, - "type": "Feature", - "geometry": null, - "properties": { - "check_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-03T12:27:04Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 87503779 - } - }, - { - "id": 87503768, - "type": "Feature", - "geometry": null, - "properties": { - "check_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-03T12:26:41Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 87503768 - } - }, - { - "id": 87470785, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2138432, - 51.206531 - ], - [ - 3.2140106, - 51.206531 - ], - [ - 3.2140106, - 51.2066587 - ], - [ - 3.2138432, - 51.2066587 - ], - [ - 3.2138432, - 51.206531 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87470785 - } - }, - { - "id": 87470780, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2138432, - 51.206531 - ], - [ - 3.2140106, - 51.206531 - ], - [ - 3.2140106, - 51.2066587 - ], - [ - 3.2138432, - 51.2066587 - ], - [ - 3.2138432, - 51.206531 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87470780 - } - }, - { - "id": 87465375, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0512558, - 50.9330957 - ], - [ - 3.0518675, - 50.9330957 - ], - [ - 3.0518675, - 50.9336481 - ], - [ - 3.0512558, - 50.9336481 - ], - [ - 3.0512558, - 50.9330957 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87465375 - } - }, - { - "id": 87465369, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0512558, - 50.9330957 - ], - [ - 3.0518675, - 50.9330957 - ], - [ - 3.0518675, - 50.9336481 - ], - [ - 3.0512558, - 50.9336481 - ], - [ - 3.0512558, - 50.9330957 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87465369 - } - }, - { - "id": 87465307, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0753202, - 50.9388783 - ], - [ - 3.0780097, - 50.9388783 - ], - [ - 3.0780097, - 50.9403086 - ], - [ - 3.0753202, - 50.9403086 - ], - [ - 3.0753202, - 50.9388783 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87465307 - } - }, - { - "id": 87465301, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0753202, - 50.9388783 - ], - [ - 3.0780097, - 50.9388783 - ], - [ - 3.0780097, - 50.9403086 - ], - [ - 3.0753202, - 50.9403086 - ], - [ - 3.0753202, - 50.9388783 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87465301 - } - }, - { - "id": 87465291, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0793954, - 50.9376812 - ], - [ - 3.0807226, - 50.9376812 - ], - [ - 3.0807226, - 50.9383873 - ], - [ - 3.0793954, - 50.9383873 - ], - [ - 3.0793954, - 50.9376812 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87465291 - } - }, - { - "id": 87465277, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0736237, - 50.9360679 - ], - [ - 3.0759734, - 50.9360679 - ], - [ - 3.0759734, - 50.9383582 - ], - [ - 3.0736237, - 50.9383582 - ], - [ - 3.0736237, - 50.9360679 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87465277 - } - }, - { - "id": 87465267, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0736237, - 50.9360679 - ], - [ - 3.0759734, - 50.9360679 - ], - [ - 3.0759734, - 50.9383582 - ], - [ - 3.0736237, - 50.9383582 - ], - [ - 3.0736237, - 50.9360679 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87465267 - } - }, - { - "id": 87412606, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2302031, - 51.2044904 - ], - [ - 3.2302031, - 51.2044904 - ], - [ - 3.2302031, - 51.2044904 - ], - [ - 3.2302031, - 51.2044904 - ], - [ - 3.2302031, - 51.2044904 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87412606 - } - }, - { - "id": 87412419, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2197237, - 51.215709 - ], - [ - 3.2197237, - 51.215709 - ], - [ - 3.2197237, - 51.215709 - ], - [ - 3.2197237, - 51.215709 - ], - [ - 3.2197237, - 51.215709 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87412419 - } - }, - { - "id": 87404982, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1089964, - 50.9625582 - ], - [ - 3.1098367, - 50.9625582 - ], - [ - 3.1098367, - 50.963047 - ], - [ - 3.1089964, - 50.963047 - ], - [ - 3.1089964, - 50.9625582 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87404982 - } - }, - { - "id": 87404977, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1080817, - 50.9620199 - ], - [ - 3.1101392, - 50.9620199 - ], - [ - 3.1101392, - 50.9629443 - ], - [ - 3.1080817, - 50.9629443 - ], - [ - 3.1080817, - 50.9620199 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87404977 - } - }, - { - "id": 87404897, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1151244, - 50.9628401 - ], - [ - 3.1158525, - 50.9628401 - ], - [ - 3.1158525, - 50.9631365 - ], - [ - 3.1151244, - 50.9631365 - ], - [ - 3.1151244, - 50.9628401 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87404897 - } - }, - { - "id": 87404874, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1132326, - 50.9649541 - ], - [ - 3.1150959, - 50.9649541 - ], - [ - 3.1150959, - 50.9672492 - ], - [ - 3.1132326, - 50.9672492 - ], - [ - 3.1132326, - 50.9649541 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87404874 - } - }, - { - "id": 87404866, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1141132, - 50.9659486 - ], - [ - 3.1155446, - 50.9659486 - ], - [ - 3.1155446, - 50.9679427 - ], - [ - 3.1141132, - 50.9679427 - ], - [ - 3.1141132, - 50.9659486 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87404866 - } - }, - { - "id": 87404855, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1066516, - 50.9643789 - ], - [ - 3.1073393, - 50.9643789 - ], - [ - 3.1073393, - 50.9646547 - ], - [ - 3.1066516, - 50.9646547 - ], - [ - 3.1066516, - 50.9643789 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87404855 - } - }, - { - "id": 87404845, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1057133, - 50.9652651 - ], - [ - 3.106966, - 50.9652651 - ], - [ - 3.106966, - 50.965758 - ], - [ - 3.1057133, - 50.965758 - ], - [ - 3.1057133, - 50.9652651 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87404845 - } - }, - { - "id": 87404826, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1111153, - 50.9632674 - ], - [ - 3.1122002, - 50.9632674 - ], - [ - 3.1122002, - 50.9644088 - ], - [ - 3.1111153, - 50.9644088 - ], - [ - 3.1111153, - 50.9632674 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87404826 - } - }, - { - "id": 87404824, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1111153, - 50.9632674 - ], - [ - 3.1122002, - 50.9632674 - ], - [ - 3.1122002, - 50.9644088 - ], - [ - 3.1111153, - 50.9644088 - ], - [ - 3.1111153, - 50.9632674 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87404824 - } - }, - { - "id": 87390913, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1936044, - 51.1867407 - ], - [ - 3.1936044, - 51.1867407 - ], - [ - 3.1936044, - 51.1867407 - ], - [ - 3.1936044, - 51.1867407 - ], - [ - 3.1936044, - 51.1867407 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 87390913 - } - }, - { - "id": 87369682, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2525253, - 51.1538874 - ], - [ - 3.2597849, - 51.1538874 - ], - [ - 3.2597849, - 51.1610842 - ], - [ - 3.2525253, - 51.1610842 - ], - [ - 3.2525253, - 51.1538874 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 87369682 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2020-8.json b/Docs/Tools/stats/stats.2020-8.json deleted file mode 100644 index 72b5ace26b..0000000000 --- a/Docs/Tools/stats/stats.2020-8.json +++ /dev/null @@ -1,28469 +0,0 @@ -{ - "features": [ - { - "id": 90204516, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2234547, - 51.1986366 - ], - [ - 3.2234547, - 51.1986366 - ], - [ - 3.2234547, - 51.1986366 - ], - [ - 3.2234547, - 51.1986366 - ], - [ - 3.2234547, - 51.1986366 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90204516 - } - }, - { - "id": 90200013, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1132693, - 48.8197235 - ], - [ - 2.3455945, - 48.8197235 - ], - [ - 2.3455945, - 48.8534692 - ], - [ - 2.1132693, - 48.8534692 - ], - [ - 2.1132693, - 48.8197235 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 90200013 - } - }, - { - "id": 90189154, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6954298, - 50.861813 - ], - [ - 4.6984132, - 50.861813 - ], - [ - 4.6984132, - 50.865796 - ], - [ - 4.6954298, - 50.865796 - ], - [ - 4.6954298, - 50.861813 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90189154 - } - }, - { - "id": 90145239, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2255917, - 51.1554034 - ], - [ - 3.2297286, - 51.1554034 - ], - [ - 3.2297286, - 51.1566615 - ], - [ - 3.2255917, - 51.1566615 - ], - [ - 3.2255917, - 51.1554034 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90145239 - } - }, - { - "id": 90139064, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -8.7930349, - 42.0831106 - ], - [ - -8.604949, - 42.0831106 - ], - [ - -8.604949, - 42.2788832 - ], - [ - -8.7930349, - 42.2788832 - ], - [ - -8.7930349, - 42.0831106 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90139064 - } - }, - { - "id": 90138809, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1291771, - 48.8003915 - ], - [ - 2.1291771, - 48.8003915 - ], - [ - 2.1291771, - 48.8003915 - ], - [ - 2.1291771, - 48.8003915 - ], - [ - 2.1291771, - 48.8003915 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 90138809 - } - }, - { - "id": 90132646, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2188596, - 51.2185334 - ], - [ - 3.2188596, - 51.2185334 - ], - [ - 3.2188596, - 51.2185334 - ], - [ - 3.2188596, - 51.2185334 - ], - [ - 3.2188596, - 51.2185334 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "theme-creator": "MapComplete" - }, - "id": 90132646 - } - }, - { - "id": 90132634, - "type": "Feature", - "geometry": null, - "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:06:30Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "bookcases", - "theme-creator": "MapComplete" - }, - "id": 90132634 - } - }, - { - "id": 90132597, - "type": "Feature", - "geometry": null, - "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:03:44Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "bookcases", - "theme-creator": "MapComplete" - }, - "id": 90132597 - } - }, - { - "id": 90132584, - "type": "Feature", - "geometry": null, - "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:02:39Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "bookcases", - "theme-creator": "MapComplete" - }, - "id": 90132584 - } - }, - { - "id": 90132576, - "type": "Feature", - "geometry": null, - "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:01:51Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "bookcases", - "theme-creator": "MapComplete" - }, - "id": 90132576 - } - }, - { - "id": 90132555, - "type": "Feature", - "geometry": null, - "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:00:01Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "bookcases", - "theme-creator": "MapComplete" - }, - "id": 90132555 - } - }, - { - "id": 90132286, - "type": "Feature", - "geometry": null, - "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-29T22:38:33Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "bookcases", - "theme-creator": "MapComplete" - }, - "id": 90132286 - } - }, - { - "id": 90132261, - "type": "Feature", - "geometry": null, - "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-29T22:36:36Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "bookcases", - "theme-creator": "MapComplete" - }, - "id": 90132261 - } - }, - { - "id": 90132250, - "type": "Feature", - "geometry": null, - "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 #bookcases", - "comments_count": null, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2020-08-29T22:35:45Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "bookcases", - "theme-creator": "MapComplete" - }, - "id": 90132250 - } - }, - { - "id": 90128361, - "type": "Feature", - "geometry": null, - "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:09:44Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "cyclofix" - }, - "id": 90128361 - } - }, - { - "id": 90128198, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2264881, - 51.2241947 - ], - [ - 3.2264881, - 51.2241947 - ], - [ - 3.2264881, - 51.2241947 - ], - [ - 3.2264881, - 51.2241947 - ], - [ - 3.2264881, - 51.2241947 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90128198 - } - }, - { - "id": 90128197, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "cyclofix" - }, - "id": 90128197 - } - }, - { - "id": 90128155, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2254734, - 51.2241947 - ], - [ - 3.2264881, - 51.2241947 - ], - [ - 3.2264881, - 51.225901 - ], - [ - 3.2254734, - 51.225901 - ], - [ - 3.2254734, - 51.2241947 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90128155 - } - }, - { - "id": 90116827, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4649876, - 51.0967057 - ], - [ - 3.4742325, - 51.0967057 - ], - [ - 3.4742325, - 51.1047205 - ], - [ - 3.4649876, - 51.1047205 - ], - [ - 3.4649876, - 51.0967057 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "OnlyWays", - "theme-creator": "s8evq" - }, - "id": 90116827 - } - }, - { - "id": 90072264, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -6.9474177, - 37.2602054 - ], - [ - -6.9407792, - 37.2602054 - ], - [ - -6.9407792, - 37.265317 - ], - [ - -6.9474177, - 37.265317 - ], - [ - -6.9474177, - 37.2602054 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "Velocidad", - "theme-creator": "yopaseopor" - }, - "id": 90072264 - } - }, - { - "id": 90066820, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.7204406, - 50.1409767 - ], - [ - 8.7204406, - 50.1409767 - ], - [ - 8.7204406, - 50.1409767 - ], - [ - 8.7204406, - 50.1409767 - ], - [ - 8.7204406, - 50.1409767 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 90066820 - } - }, - { - "id": 90055323, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4458979, - 52.4790464 - ], - [ - 13.4458979, - 52.4790464 - ], - [ - 13.4458979, - 52.4790464 - ], - [ - 13.4458979, - 52.4790464 - ], - [ - 13.4458979, - 52.4790464 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90055323 - } - }, - { - "id": 90048040, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2154662, - 51.2179199 - ], - [ - 3.2154662, - 51.2179199 - ], - [ - 3.2154662, - 51.2179199 - ], - [ - 3.2154662, - 51.2179199 - ], - [ - 3.2154662, - 51.2179199 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 90048040 - } - }, - { - "id": 90048023, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.206361, - 51.2163913 - ], - [ - 3.206361, - 51.2163913 - ], - [ - 3.206361, - 51.2163913 - ], - [ - 3.206361, - 51.2163913 - ], - [ - 3.206361, - 51.2163913 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 90048023 - } - }, - { - "id": 90047277, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.7034988, - 41.2280282 - ], - [ - 1.704246, - 41.2280282 - ], - [ - 1.704246, - 41.2282415 - ], - [ - 1.7034988, - 41.2282415 - ], - [ - 1.7034988, - 41.2280282 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "Velocidad", - "theme-creator": "Not logged in" - }, - "id": 90047277 - } - }, - { - "id": 90046969, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -6.928896, - 37.2576616 - ], - [ - -6.9196919, - 37.2576616 - ], - [ - -6.9196919, - 37.2743504 - ], - [ - -6.928896, - 37.2743504 - ], - [ - -6.928896, - 37.2576616 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "Velocidad", - "theme-creator": "yopaseopor" - }, - "id": 90046969 - } - }, - { - "id": 90046930, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -8.7333343, - 42.9120268 - ], - [ - -8.7326591, - 42.9120268 - ], - [ - -8.7326591, - 42.9125418 - ], - [ - -8.7333343, - 42.9125418 - ], - [ - -8.7333343, - 42.9120268 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "Velocidad", - "theme-creator": "yopaseopor" - }, - "id": 90046930 - } - }, - { - "id": 90044452, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.8742141, - 41.6464382 - ], - [ - -0.8561305, - 41.6464382 - ], - [ - -0.8561305, - 41.6646908 - ], - [ - -0.8742141, - 41.6646908 - ], - [ - -0.8742141, - 41.6464382 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "Velocidad", - "theme-creator": "yopaseopor" - }, - "id": 90044452 - } - }, - { - "id": 90041025, - "type": "Feature", - "geometry": null, - "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 (solo faltantes)", - "comments_count": null, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2020-08-27T18:22:38Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "Velocidad (solo faltantes)", - "theme-creator": "yopaseopor" - }, - "id": 90041025 - } - }, - { - "id": 90033359, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.6910973, - 41.2109265 - ], - [ - 1.7419156, - 41.2109265 - ], - [ - 1.7419156, - 41.2513639 - ], - [ - 1.6910973, - 41.2513639 - ], - [ - 1.6910973, - 41.2109265 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "Velocidad (solo faltantes)", - "theme-creator": "yopaseopor" - }, - "id": 90033359 - } - }, - { - "id": 90033351, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.6917541, - 41.2236395 - ], - [ - 1.6944946, - 41.2236395 - ], - [ - 1.6944946, - 41.2262679 - ], - [ - 1.6917541, - 41.2262679 - ], - [ - 1.6917541, - 41.2236395 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "Velocidad (solo faltantes)", - "theme-creator": "yopaseopor" - }, - "id": 90033351 - } - }, - { - "id": 90030286, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1410386, - 50.9103828 - ], - [ - 3.2613469, - 50.9103828 - ], - [ - 3.2613469, - 51.0272393 - ], - [ - 3.1410386, - 51.0272393 - ], - [ - 3.1410386, - 50.9103828 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "Fietsstraten", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 90030286 - } - }, - { - "id": 90026467, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3462346, - 50.8228388 - ], - [ - 4.4025543, - 50.8228388 - ], - [ - 4.4025543, - 50.8556874 - ], - [ - 4.3462346, - 50.8556874 - ], - [ - 4.3462346, - 50.8228388 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 90026467 - } - }, - { - "id": 90022347, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1857711, - 40.8272702 - ], - [ - 0.1884197, - 40.8272702 - ], - [ - 0.1884197, - 40.8278736 - ], - [ - 0.1857711, - 40.8278736 - ], - [ - 0.1857711, - 40.8272702 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "Velocidad", - "theme-creator": "yopaseopor" - }, - "id": 90022347 - } - }, - { - "id": 90020122, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -8.4780579, - 51.990067 - ], - [ - -8.4780579, - 51.990067 - ], - [ - -8.4780579, - 51.990067 - ], - [ - -8.4780579, - 51.990067 - ], - [ - -8.4780579, - 51.990067 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 90020122 - } - }, - { - "id": 90018500, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4317429, - 46.9355167 - ], - [ - 7.4346009, - 46.9355167 - ], - [ - 7.4346009, - 46.9412958 - ], - [ - 7.4317429, - 46.9412958 - ], - [ - 7.4317429, - 46.9355167 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90018500 - } - }, - { - "id": 90018478, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6819206, - 50.9538548 - ], - [ - 3.6865085, - 50.9538548 - ], - [ - 3.6865085, - 50.9565901 - ], - [ - 3.6819206, - 50.9565901 - ], - [ - 3.6819206, - 50.9538548 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90018478 - } - }, - { - "id": 90018448, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4382152, - 46.9467199 - ], - [ - 7.4382152, - 46.9467199 - ], - [ - 7.4382152, - 46.9467199 - ], - [ - 7.4382152, - 46.9467199 - ], - [ - 7.4382152, - 46.9467199 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90018448 - } - }, - { - "id": 90018437, - "type": "Feature", - "geometry": null, - "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:38Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "cyclofix" - }, - "id": 90018437 - } - }, - { - "id": 90018302, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4486869, - 46.9561426 - ], - [ - 7.4532331, - 46.9561426 - ], - [ - 7.4532331, - 46.9613707 - ], - [ - 7.4486869, - 46.9613707 - ], - [ - 7.4486869, - 46.9561426 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90018302 - } - }, - { - "id": 90018126, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2005313, - 41.4416877 - ], - [ - 2.2193832, - 41.4416877 - ], - [ - 2.2193832, - 41.4589529 - ], - [ - 2.2005313, - 41.4589529 - ], - [ - 2.2005313, - 41.4416877 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 90018126 - } - }, - { - "id": 90017087, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4197182, - 46.9373279 - ], - [ - 7.4521308, - 46.9373279 - ], - [ - 7.4521308, - 46.9623898 - ], - [ - 7.4197182, - 46.9623898 - ], - [ - 7.4197182, - 46.9373279 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 90017087 - } - }, - { - "id": 90017040, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.427977, - 46.9515907 - ], - [ - 7.4289693, - 46.9515907 - ], - [ - 7.4289693, - 46.9520997 - ], - [ - 7.427977, - 46.9520997 - ], - [ - 7.427977, - 46.9515907 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 90017040 - } - }, - { - "id": 90015665, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4490046, - 46.9552762 - ], - [ - 7.4490046, - 46.9552762 - ], - [ - 7.4490046, - 46.9552762 - ], - [ - 7.4490046, - 46.9552762 - ], - [ - 7.4490046, - 46.9552762 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90015665 - } - }, - { - "id": 90015643, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6869332, - 50.9634448 - ], - [ - 3.6970746, - 50.9634448 - ], - [ - 3.6970746, - 50.9697447 - ], - [ - 3.6869332, - 50.9697447 - ], - [ - 3.6869332, - 50.9634448 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90015643 - } - }, - { - "id": 90015488, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6136255, - 50.974695 - ], - [ - 3.6289729, - 50.974695 - ], - [ - 3.6289729, - 50.9825167 - ], - [ - 3.6136255, - 50.9825167 - ], - [ - 3.6136255, - 50.974695 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90015488 - } - }, - { - "id": 90015427, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6321457, - 50.9552591 - ], - [ - 3.6324696, - 50.9552591 - ], - [ - 3.6324696, - 50.9554871 - ], - [ - 3.6321457, - 50.9554871 - ], - [ - 3.6321457, - 50.9552591 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90015427 - } - }, - { - "id": 90015021, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.870381, - 41.3872785 - ], - [ - 1.9552205, - 41.3872785 - ], - [ - 1.9552205, - 41.4436957 - ], - [ - 1.870381, - 41.4436957 - ], - [ - 1.870381, - 41.3872785 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "Velocidad", - "theme-creator": "yopaseopor" - }, - "id": 90015021 - } - }, - { - "id": 90014375, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.7246723, - 41.2258199 - ], - [ - 1.7254204, - 41.2258199 - ], - [ - 1.7254204, - 41.2260662 - ], - [ - 1.7246723, - 41.2260662 - ], - [ - 1.7246723, - 41.2258199 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "Velocidad", - "theme-creator": "yopaseopor" - }, - "id": 90014375 - } - }, - { - "id": 90013423, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.8961515, - 41.6297135 - ], - [ - -0.8949837, - 41.6297135 - ], - [ - -0.8949837, - 41.6300028 - ], - [ - -0.8961515, - 41.6300028 - ], - [ - -0.8961515, - 41.6297135 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "Velocidad", - "theme-creator": "yopaseopor" - }, - "id": 90013423 - } - }, - { - "id": 90001065, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.1024051, - 47.6215814 - ], - [ - -122.102405, - 47.6215814 - ], - [ - -122.102405, - 47.6215814 - ], - [ - -122.1024051, - 47.6215814 - ], - [ - -122.1024051, - 47.6215814 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90001065 - } - }, - { - "id": 89999280, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.116445, - 50.9117564 - ], - [ - 4.1317778, - 50.9117564 - ], - [ - 4.1317778, - 50.9235216 - ], - [ - 4.116445, - 50.9235216 - ], - [ - 4.116445, - 50.9117564 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89999280 - } - }, - { - "id": 89997595, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -120.2232385, - 50.6561607 - ], - [ - -120.223238, - 50.6561607 - ], - [ - -120.223238, - 50.6561607 - ], - [ - -120.2232385, - 50.6561607 - ], - [ - -120.2232385, - 50.6561607 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89997595 - } - }, - { - "id": 89996590, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -118.3517271, - 34.1602734 - ], - [ - -118.3517271, - 34.1602734 - ], - [ - -118.3517271, - 34.1602734 - ], - [ - -118.3517271, - 34.1602734 - ], - [ - -118.3517271, - 34.1602734 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89996590 - } - }, - { - "id": 89995176, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.5620095, - 48.5973999 - ], - [ - -4.5620095, - 48.5973999 - ], - [ - -4.5620095, - 48.5973999 - ], - [ - -4.5620095, - 48.5973999 - ], - [ - -4.5620095, - 48.5973999 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "toilets", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89995176 - } - }, - { - "id": 89995170, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.5724469, - 48.586866 - ], - [ - -4.5723688, - 48.586866 - ], - [ - -4.5723688, - 48.5869039 - ], - [ - -4.5724469, - 48.5869039 - ], - [ - -4.5724469, - 48.586866 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "toilets", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89995170 - } - }, - { - "id": 89995147, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2202119, - 51.2148076 - ], - [ - 3.2207134, - 51.2148076 - ], - [ - 3.2207134, - 51.215058 - ], - [ - 3.2202119, - 51.215058 - ], - [ - 3.2202119, - 51.2148076 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "toilets", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89995147 - } - }, - { - "id": 89995070, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2196808, - 51.2158073 - ], - [ - 3.2196808, - 51.2158073 - ], - [ - 3.2196808, - 51.2158073 - ], - [ - 3.2196808, - 51.2158073 - ], - [ - 3.2196808, - 51.2158073 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89995070 - } - }, - { - "id": 89995035, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2196808, - 51.2156763 - ], - [ - 3.2198322, - 51.2156763 - ], - [ - 3.2198322, - 51.2158073 - ], - [ - 3.2196808, - 51.2158073 - ], - [ - 3.2196808, - 51.2156763 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89995035 - } - }, - { - "id": 89995003, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89995003 - } - }, - { - "id": 89995002, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89995002 - } - }, - { - "id": 89994916, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89994916 - } - }, - { - "id": 89994902, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89994902 - } - }, - { - "id": 89994877, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89994877 - } - }, - { - "id": 89994876, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89994876 - } - }, - { - "id": 89994672, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89994672 - } - }, - { - "id": 89994637, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ], - [ - 3.2198322, - 51.2156978 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89994637 - } - }, - { - "id": 89994440, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2196379, - 51.2156897 - ], - [ - 3.2196379, - 51.2156897 - ], - [ - 3.2196379, - 51.2156897 - ], - [ - 3.2196379, - 51.2156897 - ], - [ - 3.2196379, - 51.2156897 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89994440 - } - }, - { - "id": 89994137, - "type": "Feature", - "geometry": null, - "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:22:03Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "bookcases", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89994137 - } - }, - { - "id": 89994136, - "type": "Feature", - "geometry": null, - "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:22:01Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "bookcases", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89994136 - } - }, - { - "id": 89994130, - "type": "Feature", - "geometry": null, - "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:32Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "bookcases", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89994130 - } - }, - { - "id": 89994126, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2197881, - 51.2156931 - ], - [ - 3.2199302, - 51.2156931 - ], - [ - 3.2199302, - 51.2157031 - ], - [ - 3.2197881, - 51.2157031 - ], - [ - 3.2197881, - 51.2156931 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89994126 - } - }, - { - "id": 89994125, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2197881, - 51.2156931 - ], - [ - 3.2197881, - 51.2156931 - ], - [ - 3.2197881, - 51.2156931 - ], - [ - 3.2197881, - 51.2156931 - ], - [ - 3.2197881, - 51.2156931 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89994125 - } - }, - { - "id": 89991077, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.8384772, - 53.5162236 - ], - [ - -2.8384772, - 53.5162236 - ], - [ - -2.8384772, - 53.5162236 - ], - [ - -2.8384772, - 53.5162236 - ], - [ - -2.8384772, - 53.5162236 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "personal" - }, - "id": 89991077 - } - }, - { - "id": 89991062, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.8384772, - 53.5162236 - ], - [ - -2.8384772, - 53.5162236 - ], - [ - -2.8384772, - 53.5162236 - ], - [ - -2.8384772, - 53.5162236 - ], - [ - -2.8384772, - 53.5162236 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "personal" - }, - "id": 89991062 - } - }, - { - "id": 89990961, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.2978324, - 53.4735524 - ], - [ - -2.2978324, - 53.4735524 - ], - [ - -2.2978324, - 53.4735524 - ], - [ - -2.2978324, - 53.4735524 - ], - [ - -2.2978324, - 53.4735524 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "personal" - }, - "id": 89990961 - } - }, - { - "id": 89990938, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.2978324, - 53.4735524 - ], - [ - -2.2978324, - 53.4735524 - ], - [ - -2.2978324, - 53.4735524 - ], - [ - -2.2978324, - 53.4735524 - ], - [ - -2.2978324, - 53.4735524 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "personal" - }, - "id": 89990938 - } - }, - { - "id": 89990819, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.8380561, - 53.530797 - ], - [ - -2.8380561, - 53.530797 - ], - [ - -2.8380561, - 53.530797 - ], - [ - -2.8380561, - 53.530797 - ], - [ - -2.8380561, - 53.530797 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89990819 - } - }, - { - "id": 89990781, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.8386381, - 53.5172658 - ], - [ - -2.8386381, - 53.5172658 - ], - [ - -2.8386381, - 53.5172658 - ], - [ - -2.8386381, - 53.5172658 - ], - [ - -2.8386381, - 53.5172658 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89990781 - } - }, - { - "id": 89989645, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4446244, - 46.9571176 - ], - [ - 7.4446244, - 46.9571176 - ], - [ - 7.4446244, - 46.9571176 - ], - [ - 7.4446244, - 46.9571176 - ], - [ - 7.4446244, - 46.9571176 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 89989645 - } - }, - { - "id": 89989628, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4446244, - 46.9571176 - ], - [ - 7.4446244, - 46.9571176 - ], - [ - 7.4446244, - 46.9571176 - ], - [ - 7.4446244, - 46.9571176 - ], - [ - 7.4446244, - 46.9571176 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 89989628 - } - }, - { - "id": 89989623, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2328408, - 51.2134638 - ], - [ - 3.2329431, - 51.2134638 - ], - [ - 3.2329431, - 51.213537 - ], - [ - 3.2328408, - 51.213537 - ], - [ - 3.2328408, - 51.2134638 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "personal" - }, - "id": 89989623 - } - }, - { - "id": 89989618, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4476853, - 46.9585884 - ], - [ - 7.4476853, - 46.9585884 - ], - [ - 7.4476853, - 46.9585884 - ], - [ - 7.4476853, - 46.9585884 - ], - [ - 7.4476853, - 46.9585884 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 89989618 - } - }, - { - "id": 89989597, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Vucod", - "uid": "7814237", - "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:07:17Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "personal" - }, - "id": 89989597 - } - }, - { - "id": 89989594, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4476853, - 46.9585884 - ], - [ - 7.4476853, - 46.9585884 - ], - [ - 7.4476853, - 46.9585884 - ], - [ - 7.4476853, - 46.9585884 - ], - [ - 7.4476853, - 46.9585884 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 89989594 - } - }, - { - "id": 89989541, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.423602, - 46.9452633 - ], - [ - 7.423602, - 46.9452633 - ], - [ - 7.423602, - 46.9452633 - ], - [ - 7.423602, - 46.9452633 - ], - [ - 7.423602, - 46.9452633 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 89989541 - } - }, - { - "id": 89989506, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.423602, - 46.9452633 - ], - [ - 7.423602, - 46.9452633 - ], - [ - 7.423602, - 46.9452633 - ], - [ - 7.423602, - 46.9452633 - ], - [ - 7.423602, - 46.9452633 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 89989506 - } - }, - { - "id": 89989450, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2330988, - 51.213542 - ], - [ - 3.2333932, - 51.213542 - ], - [ - 3.2333932, - 51.2137108 - ], - [ - 3.2330988, - 51.2137108 - ], - [ - 3.2330988, - 51.213542 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "personal" - }, - "id": 89989450 - } - }, - { - "id": 89989376, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3867528, - 50.8469176 - ], - [ - 4.3867528, - 50.8469176 - ], - [ - 4.3867528, - 50.8469176 - ], - [ - 4.3867528, - 50.8469176 - ], - [ - 4.3867528, - 50.8469176 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89989376 - } - }, - { - "id": 89989371, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2332557, - 51.213113 - ], - [ - 3.2335049, - 51.213113 - ], - [ - 3.2335049, - 51.2131697 - ], - [ - 3.2332557, - 51.2131697 - ], - [ - 3.2332557, - 51.213113 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "personal" - }, - "id": 89989371 - } - }, - { - "id": 89989365, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2332621, - 51.2128209 - ], - [ - 3.2335762, - 51.2128209 - ], - [ - 3.2335762, - 51.2131288 - ], - [ - 3.2332621, - 51.2131288 - ], - [ - 3.2332621, - 51.2128209 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "personal" - }, - "id": 89989365 - } - }, - { - "id": 89989354, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3867528, - 50.8469176 - ], - [ - 4.3867528, - 50.8469176 - ], - [ - 4.3867528, - 50.8469176 - ], - [ - 4.3867528, - 50.8469176 - ], - [ - 4.3867528, - 50.8469176 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89989354 - } - }, - { - "id": 89989339, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4223105, - 46.9446537 - ], - [ - 7.4223105, - 46.9446537 - ], - [ - 7.4223105, - 46.9446537 - ], - [ - 7.4223105, - 46.9446537 - ], - [ - 7.4223105, - 46.9446537 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 89989339 - } - }, - { - "id": 89989191, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5632923, - 51.426493 - ], - [ - -0.5632923, - 51.426493 - ], - [ - -0.5632923, - 51.426493 - ], - [ - -0.5632923, - 51.426493 - ], - [ - -0.5632923, - 51.426493 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89989191 - } - }, - { - "id": 89974136, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4171797, - 51.2278795 - ], - [ - 4.4338482, - 51.2278795 - ], - [ - 4.4338482, - 51.2322838 - ], - [ - 4.4171797, - 51.2322838 - ], - [ - 4.4171797, - 51.2278795 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89974136 - } - }, - { - "id": 89965962, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.6348892, - 46.7664162 - ], - [ - 6.6595987, - 46.7664162 - ], - [ - 6.6595987, - 46.7851662 - ], - [ - 6.6348892, - 46.7851662 - ], - [ - 6.6348892, - 46.7664162 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89965962 - } - }, - { - "id": 89965785, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2737057, - 46.4174789 - ], - [ - 6.2737057, - 46.4174789 - ], - [ - 6.2737057, - 46.4174789 - ], - [ - 6.2737057, - 46.4174789 - ], - [ - 6.2737057, - 46.4174789 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89965785 - } - }, - { - "id": 89965762, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2593136, - 46.4216434 - ], - [ - 6.2659259, - 46.4216434 - ], - [ - 6.2659259, - 46.4241159 - ], - [ - 6.2593136, - 46.4241159 - ], - [ - 6.2593136, - 46.4216434 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89965762 - } - }, - { - "id": 89965407, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.1933649, - 46.3162684 - ], - [ - 6.1933649, - 46.3162684 - ], - [ - 6.1933649, - 46.3162684 - ], - [ - 6.1933649, - 46.3162684 - ], - [ - 6.1933649, - 46.3162684 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89965407 - } - }, - { - "id": 89965400, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2274247, - 46.3683431 - ], - [ - 6.2314402, - 46.3683431 - ], - [ - 6.2314402, - 46.37257 - ], - [ - 6.2274247, - 46.37257 - ], - [ - 6.2274247, - 46.3683431 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89965400 - } - }, - { - "id": 89965315, - "type": "Feature", - "geometry": null, - "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:23:46Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89965315 - } - }, - { - "id": 89965215, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2057625, - 46.3839442 - ], - [ - 6.2753574, - 46.3839442 - ], - [ - 6.2753574, - 46.4285237 - ], - [ - 6.2057625, - 46.4285237 - ], - [ - 6.2057625, - 46.3839442 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89965215 - } - }, - { - "id": 89965115, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2505271, - 46.428591 - ], - [ - 6.4945795, - 46.428591 - ], - [ - 6.4945795, - 46.5200482 - ], - [ - 6.2505271, - 46.5200482 - ], - [ - 6.2505271, - 46.428591 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89965115 - } - }, - { - "id": 89965001, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.8486258, - 46.5103042 - ], - [ - 6.8486258, - 46.5103042 - ], - [ - 6.8486258, - 46.5103042 - ], - [ - 6.8486258, - 46.5103042 - ], - [ - 6.8486258, - 46.5103042 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89965001 - } - }, - { - "id": 89964677, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.860401, - 46.4772182 - ], - [ - 6.860401, - 46.4772182 - ], - [ - 6.860401, - 46.4772182 - ], - [ - 6.860401, - 46.4772182 - ], - [ - 6.860401, - 46.4772182 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89964677 - } - }, - { - "id": 89964665, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.860401, - 46.4469876 - ], - [ - 6.8750883, - 46.4469876 - ], - [ - 6.8750883, - 46.4772182 - ], - [ - 6.860401, - 46.4772182 - ], - [ - 6.860401, - 46.4469876 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89964665 - } - }, - { - "id": 89964580, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.832793, - 46.4525566 - ], - [ - 6.8576627, - 46.4525566 - ], - [ - 6.8576627, - 46.4680604 - ], - [ - 6.832793, - 46.4680604 - ], - [ - 6.832793, - 46.4525566 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89964580 - } - }, - { - "id": 89964547, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.8422228, - 46.4700996 - ], - [ - 6.8422228, - 46.4700996 - ], - [ - 6.8422228, - 46.4700996 - ], - [ - 6.8422228, - 46.4700996 - ], - [ - 6.8422228, - 46.4700996 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89964547 - } - }, - { - "id": 89964427, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.8400089, - 46.4636618 - ], - [ - 6.8417273, - 46.4636618 - ], - [ - 6.8417273, - 46.4648784 - ], - [ - 6.8400089, - 46.4648784 - ], - [ - 6.8400089, - 46.4636618 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89964427 - } - }, - { - "id": 89964413, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.8409332, - 46.4629763 - ], - [ - 6.8409332, - 46.4629763 - ], - [ - 6.8409332, - 46.4629763 - ], - [ - 6.8409332, - 46.4629763 - ], - [ - 6.8409332, - 46.4629763 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89964413 - } - }, - { - "id": 89964365, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.8442735, - 46.4607518 - ], - [ - 6.8442735, - 46.4607518 - ], - [ - 6.8442735, - 46.4607518 - ], - [ - 6.8442735, - 46.4607518 - ], - [ - 6.8442735, - 46.4607518 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89964365 - } - }, - { - "id": 89927795, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.6548612, - 48.841249 - ], - [ - 2.6548612, - 48.841249 - ], - [ - 2.6548612, - 48.841249 - ], - [ - 2.6548612, - 48.841249 - ], - [ - 2.6548612, - 48.841249 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89927795 - } - }, - { - "id": 89927784, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.6548612, - 48.841249 - ], - [ - 2.6548612, - 48.841249 - ], - [ - 2.6548612, - 48.841249 - ], - [ - 2.6548612, - 48.841249 - ], - [ - 2.6548612, - 48.841249 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89927784 - } - }, - { - "id": 89927744, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.6548612, - 48.841249 - ], - [ - 2.6548612, - 48.841249 - ], - [ - 2.6548612, - 48.841249 - ], - [ - 2.6548612, - 48.841249 - ], - [ - 2.6548612, - 48.841249 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89927744 - } - }, - { - "id": 89927719, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.6548612, - 48.841249 - ], - [ - 2.6548612, - 48.841249 - ], - [ - 2.6548612, - 48.841249 - ], - [ - 2.6548612, - 48.841249 - ], - [ - 2.6548612, - 48.841249 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89927719 - } - }, - { - "id": 89923234, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1318008, - 51.2103548 - ], - [ - 3.1571638, - 51.2103548 - ], - [ - 3.1571638, - 51.2295839 - ], - [ - 3.1318008, - 51.2295839 - ], - [ - 3.1318008, - 51.2103548 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "natuurpunt" - }, - "id": 89923234 - } - }, - { - "id": 89922269, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.661273, - 41.9363493 - ], - [ - -70.661273, - 41.9363493 - ], - [ - -70.661273, - 41.9363493 - ], - [ - -70.661273, - 41.9363493 - ], - [ - -70.661273, - 41.9363493 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "artworks", - "theme-creator": "Not logged in" - }, - "id": 89922269 - } - }, - { - "id": 89922194, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.661273, - 41.9363493 - ], - [ - -70.661273, - 41.9363493 - ], - [ - -70.661273, - 41.9363493 - ], - [ - -70.661273, - 41.9363493 - ], - [ - -70.661273, - 41.9363493 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "artworks", - "theme-creator": "Not logged in" - }, - "id": 89922194 - } - }, - { - "id": 89922132, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.661273, - 41.9363493 - ], - [ - -70.661273, - 41.9363493 - ], - [ - -70.661273, - 41.9363493 - ], - [ - -70.661273, - 41.9363493 - ], - [ - -70.661273, - 41.9363493 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "artworks", - "theme-creator": "Not logged in" - }, - "id": 89922132 - } - }, - { - "id": 89922041, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.661273, - 41.9363493 - ], - [ - -70.661273, - 41.9363493 - ], - [ - -70.661273, - 41.9363493 - ], - [ - -70.661273, - 41.9363493 - ], - [ - -70.661273, - 41.9363493 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "artworks", - "theme-creator": "Not logged in" - }, - "id": 89922041 - } - }, - { - "id": 89918711, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1509752, - 51.2120753 - ], - [ - 3.1509752, - 51.2120753 - ], - [ - 3.1509752, - 51.2120753 - ], - [ - 3.1509752, - 51.2120753 - ], - [ - 3.1509752, - 51.2120753 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "natuurpunt" - }, - "id": 89918711 - } - }, - { - "id": 89918675, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1509752, - 51.2120753 - ], - [ - 3.1509752, - 51.2120753 - ], - [ - 3.1509752, - 51.2120753 - ], - [ - 3.1509752, - 51.2120753 - ], - [ - 3.1509752, - 51.2120753 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "natuurpunt" - }, - "id": 89918675 - } - }, - { - "id": 89918631, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1509752, - 51.2120753 - ], - [ - 3.1509752, - 51.2120753 - ], - [ - 3.1509752, - 51.2120753 - ], - [ - 3.1509752, - 51.2120753 - ], - [ - 3.1509752, - 51.2120753 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "natuurpunt" - }, - "id": 89918631 - } - }, - { - "id": 89918590, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1318008, - 51.2103548 - ], - [ - 3.1571638, - 51.2103548 - ], - [ - 3.1571638, - 51.2295839 - ], - [ - 3.1318008, - 51.2295839 - ], - [ - 3.1318008, - 51.2103548 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "natuurpunt" - }, - "id": 89918590 - } - }, - { - "id": 89918557, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1318008, - 51.2103548 - ], - [ - 3.1571638, - 51.2103548 - ], - [ - 3.1571638, - 51.2295839 - ], - [ - 3.1318008, - 51.2295839 - ], - [ - 3.1318008, - 51.2103548 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "natuurpunt" - }, - "id": 89918557 - } - }, - { - "id": 89918496, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1318008, - 51.2103548 - ], - [ - 3.1571638, - 51.2103548 - ], - [ - 3.1571638, - 51.2295839 - ], - [ - 3.1318008, - 51.2295839 - ], - [ - 3.1318008, - 51.2103548 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "natuurpunt" - }, - "id": 89918496 - } - }, - { - "id": 89918491, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1318008, - 51.2103548 - ], - [ - 3.1571638, - 51.2103548 - ], - [ - 3.1571638, - 51.2295839 - ], - [ - 3.1318008, - 51.2295839 - ], - [ - 3.1318008, - 51.2103548 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "natuurpunt" - }, - "id": 89918491 - } - }, - { - "id": 89918483, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1318008, - 51.2103548 - ], - [ - 3.1571638, - 51.2103548 - ], - [ - 3.1571638, - 51.2295839 - ], - [ - 3.1318008, - 51.2295839 - ], - [ - 3.1318008, - 51.2103548 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "natuurpunt" - }, - "id": 89918483 - } - }, - { - "id": 89918453, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1318008, - 51.2103548 - ], - [ - 3.1571638, - 51.2103548 - ], - [ - 3.1571638, - 51.2295839 - ], - [ - 3.1318008, - 51.2295839 - ], - [ - 3.1318008, - 51.2103548 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "natuurpunt" - }, - "id": 89918453 - } - }, - { - "id": 89903500, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3964947, - 51.0407528 - ], - [ - 3.3965711, - 51.0407528 - ], - [ - 3.3965711, - 51.0407748 - ], - [ - 3.3964947, - 51.0407748 - ], - [ - 3.3964947, - 51.0407528 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 89903500 - } - }, - { - "id": 89903362, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3964947, - 51.0407528 - ], - [ - 3.3965711, - 51.0407528 - ], - [ - 3.3965711, - 51.0407748 - ], - [ - 3.3964947, - 51.0407748 - ], - [ - 3.3964947, - 51.0407528 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 89903362 - } - }, - { - "id": 89903280, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3964947, - 51.0407528 - ], - [ - 3.3964947, - 51.0407528 - ], - [ - 3.3964947, - 51.0407528 - ], - [ - 3.3964947, - 51.0407528 - ], - [ - 3.3964947, - 51.0407528 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 89903280 - } - }, - { - "id": 89901819, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3193318, - 50.885021 - ], - [ - 4.3287028, - 50.885021 - ], - [ - 4.3287028, - 50.8895811 - ], - [ - 4.3193318, - 50.8895811 - ], - [ - 4.3193318, - 50.885021 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89901819 - } - }, - { - "id": 89901763, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2937557, - 50.8778668 - ], - [ - 4.3129802, - 50.8778668 - ], - [ - 4.3129802, - 50.8909536 - ], - [ - 4.2937557, - 50.8909536 - ], - [ - 4.2937557, - 50.8778668 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89901763 - } - }, - { - "id": 89873464, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.6584017, - 48.8364966 - ], - [ - 2.6584017, - 48.8364966 - ], - [ - 2.6584017, - 48.8364966 - ], - [ - 2.6584017, - 48.8364966 - ], - [ - 2.6584017, - 48.8364966 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89873464 - } - }, - { - "id": 89873437, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.6631385, - 48.8345104 - ], - [ - 2.6631385, - 48.8345104 - ], - [ - 2.6631385, - 48.8345104 - ], - [ - 2.6631385, - 48.8345104 - ], - [ - 2.6631385, - 48.8345104 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89873437 - } - }, - { - "id": 89873379, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1559863, - 44.9036805 - ], - [ - 4.1559863, - 44.9036805 - ], - [ - 4.1559863, - 44.9036805 - ], - [ - 4.1559863, - 44.9036805 - ], - [ - 4.1559863, - 44.9036805 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89873379 - } - }, - { - "id": 89869480, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1559863, - 44.9036805 - ], - [ - 4.1559863, - 44.9036805 - ], - [ - 4.1559863, - 44.9036805 - ], - [ - 4.1559863, - 44.9036805 - ], - [ - 4.1559863, - 44.9036805 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89869480 - } - }, - { - "id": 89869436, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1559863, - 44.9036805 - ], - [ - 4.1559863, - 44.9036805 - ], - [ - 4.1559863, - 44.9036805 - ], - [ - 4.1559863, - 44.9036805 - ], - [ - 4.1559863, - 44.9036805 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89869436 - } - }, - { - "id": 89869379, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1559863, - 44.9036805 - ], - [ - 4.1559863, - 44.9036805 - ], - [ - 4.1559863, - 44.9036805 - ], - [ - 4.1559863, - 44.9036805 - ], - [ - 4.1559863, - 44.9036805 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 89869379 - } - }, - { - "id": 89854556, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1107006, - 41.8482517 - ], - [ - 3.1107006, - 41.8482517 - ], - [ - 3.1107006, - 41.8482517 - ], - [ - 3.1107006, - 41.8482517 - ], - [ - 3.1107006, - 41.8482517 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "Restaurants" - }, - "id": 89854556 - } - }, - { - "id": 89847129, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2380503, - 50.7366736 - ], - [ - 4.2380503, - 50.7366736 - ], - [ - 4.2380503, - 50.7366736 - ], - [ - 4.2380503, - 50.7366736 - ], - [ - 4.2380503, - 50.7366736 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 89847129 - } - }, - { - "id": 89847053, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2380503, - 50.7366736 - ], - [ - 4.2380503, - 50.7366736 - ], - [ - 4.2380503, - 50.7366736 - ], - [ - 4.2380503, - 50.7366736 - ], - [ - 4.2380503, - 50.7366736 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 89847053 - } - }, - { - "id": 89821362, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6072582, - 51.1980733 - ], - [ - 3.6120805, - 51.1980733 - ], - [ - 3.6120805, - 51.2004739 - ], - [ - 3.6072582, - 51.2004739 - ], - [ - 3.6072582, - 51.1980733 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89821362 - } - }, - { - "id": 89821327, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6072582, - 51.1980733 - ], - [ - 3.6120805, - 51.1980733 - ], - [ - 3.6120805, - 51.2004739 - ], - [ - 3.6072582, - 51.2004739 - ], - [ - 3.6072582, - 51.1980733 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89821327 - } - }, - { - "id": 89804554, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2216308, - 51.2127326 - ], - [ - 3.2216308, - 51.2127326 - ], - [ - 3.2216308, - 51.2127326 - ], - [ - 3.2216308, - 51.2127326 - ], - [ - 3.2216308, - 51.2127326 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "personal" - }, - "id": 89804554 - } - }, - { - "id": 89804545, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2216308, - 51.2127326 - ], - [ - 3.2216308, - 51.2127326 - ], - [ - 3.2216308, - 51.2127326 - ], - [ - 3.2216308, - 51.2127326 - ], - [ - 3.2216308, - 51.2127326 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "personal" - }, - "id": 89804545 - } - }, - { - "id": 89804341, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1753489, - 41.39646 - ], - [ - 2.1753489, - 41.39646 - ], - [ - 2.1753489, - 41.39646 - ], - [ - 2.1753489, - 41.39646 - ], - [ - 2.1753489, - 41.39646 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "Datos de tienda", - "theme-creator": "yopaseopor" - }, - "id": 89804341 - } - }, - { - "id": 89804128, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1859067, - 41.411405 - ], - [ - 2.1859067, - 41.411405 - ], - [ - 2.1859067, - 41.411405 - ], - [ - 2.1859067, - 41.411405 - ], - [ - 2.1859067, - 41.411405 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "Datos de tienda", - "theme-creator": "yopaseopor" - }, - "id": 89804128 - } - }, - { - "id": 89803709, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4695853, - 51.1980216 - ], - [ - 5.4695853, - 51.1980216 - ], - [ - 5.4695853, - 51.1980216 - ], - [ - 5.4695853, - 51.1980216 - ], - [ - 5.4695853, - 51.1980216 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 89803709 - } - }, - { - "id": 89803685, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4695853, - 51.1980216 - ], - [ - 5.4695853, - 51.1980216 - ], - [ - 5.4695853, - 51.1980216 - ], - [ - 5.4695853, - 51.1980216 - ], - [ - 5.4695853, - 51.1980216 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 89803685 - } - }, - { - "id": 89794266, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.178151, - 51.1874615 - ], - [ - 3.1787829, - 51.1874615 - ], - [ - 3.1787829, - 51.1887772 - ], - [ - 3.178151, - 51.1887772 - ], - [ - 3.178151, - 51.1874615 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "Superficie", - "theme-creator": "Not logged in" - }, - "id": 89794266 - } - }, - { - "id": 89789965, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1976354, - 51.1938125 - ], - [ - 3.1976354, - 51.1938125 - ], - [ - 3.1976354, - 51.1938125 - ], - [ - 3.1976354, - 51.1938125 - ], - [ - 3.1976354, - 51.1938125 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "personal" - }, - "id": 89789965 - } - }, - { - "id": 89789070, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2006272, - 51.2027385 - ], - [ - 3.2052968, - 51.2027385 - ], - [ - 3.2052968, - 51.2032363 - ], - [ - 3.2006272, - 51.2032363 - ], - [ - 3.2006272, - 51.2027385 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "Fietsstraten", - "theme-creator": "Not logged in" - }, - "id": 89789070 - } - }, - { - "id": 89788850, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2115033, - 51.2133643 - ], - [ - 3.2139127, - 51.2133643 - ], - [ - 3.2139127, - 51.2138283 - ], - [ - 3.2115033, - 51.2138283 - ], - [ - 3.2115033, - 51.2133643 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "Fietsstraten", - "theme-creator": "Not logged in" - }, - "id": 89788850 - } - }, - { - "id": 89788822, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2133724, - 51.2122352 - ], - [ - 3.2151321, - 51.2122352 - ], - [ - 3.2151321, - 51.2155858 - ], - [ - 3.2133724, - 51.2155858 - ], - [ - 3.2133724, - 51.2122352 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "Fietsstraten", - "theme-creator": "Not logged in" - }, - "id": 89788822 - } - }, - { - "id": 89788812, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2152451, - 51.2158029 - ], - [ - 3.2209435, - 51.2158029 - ], - [ - 3.2209435, - 51.2199112 - ], - [ - 3.2152451, - 51.2199112 - ], - [ - 3.2152451, - 51.2158029 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "Fietsstraten", - "theme-creator": "Not logged in" - }, - "id": 89788812 - } - }, - { - "id": 89788587, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2061917, - 51.2142128 - ], - [ - 3.2081708, - 51.2142128 - ], - [ - 3.2081708, - 51.2176162 - ], - [ - 3.2061917, - 51.2176162 - ], - [ - 3.2061917, - 51.2142128 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "Fietsstraten", - "theme-creator": "Not logged in" - }, - "id": 89788587 - } - }, - { - "id": 89777909, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3973136, - 50.8999204 - ], - [ - 4.4002839, - 50.8999204 - ], - [ - 4.4002839, - 50.90237 - ], - [ - 4.3973136, - 50.90237 - ], - [ - 4.3973136, - 50.8999204 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89777909 - } - }, - { - "id": 89777843, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3662715, - 50.8495152 - ], - [ - 4.367751, - 50.8495152 - ], - [ - 4.367751, - 50.8514834 - ], - [ - 4.3662715, - 50.8514834 - ], - [ - 4.3662715, - 50.8495152 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89777843 - } - }, - { - "id": 89777782, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3130321, - 50.8506058 - ], - [ - 4.3168476, - 50.8506058 - ], - [ - 4.3168476, - 50.8520255 - ], - [ - 4.3130321, - 50.8520255 - ], - [ - 4.3130321, - 50.8506058 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89777782 - } - }, - { - "id": 89777754, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3086997, - 50.8358044 - ], - [ - 4.3101716, - 50.8358044 - ], - [ - 4.3101716, - 50.8367803 - ], - [ - 4.3086997, - 50.8367803 - ], - [ - 4.3086997, - 50.8358044 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89777754 - } - }, - { - "id": 89777720, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.301568, - 50.8295185 - ], - [ - 4.3041162, - 50.8295185 - ], - [ - 4.3041162, - 50.8305199 - ], - [ - 4.301568, - 50.8305199 - ], - [ - 4.301568, - 50.8295185 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89777720 - } - }, - { - "id": 89777635, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2553782, - 50.8236491 - ], - [ - 4.2553782, - 50.8236491 - ], - [ - 4.2553782, - 50.8236491 - ], - [ - 4.2553782, - 50.8236491 - ], - [ - 4.2553782, - 50.8236491 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89777635 - } - }, - { - "id": 89777620, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2553782, - 50.8236491 - ], - [ - 4.2553782, - 50.8236491 - ], - [ - 4.2553782, - 50.8236491 - ], - [ - 4.2553782, - 50.8236491 - ], - [ - 4.2553782, - 50.8236491 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89777620 - } - }, - { - "id": 89777568, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2608927, - 50.8108764 - ], - [ - 4.2785788, - 50.8108764 - ], - [ - 4.2785788, - 50.8157487 - ], - [ - 4.2608927, - 50.8157487 - ], - [ - 4.2608927, - 50.8108764 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89777568 - } - }, - { - "id": 89777558, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2710428, - 50.8127376 - ], - [ - 4.2730369, - 50.8127376 - ], - [ - 4.2730369, - 50.8144342 - ], - [ - 4.2710428, - 50.8144342 - ], - [ - 4.2710428, - 50.8127376 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89777558 - } - }, - { - "id": 89777492, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2710428, - 50.8127376 - ], - [ - 4.2730369, - 50.8127376 - ], - [ - 4.2730369, - 50.8144342 - ], - [ - 4.2710428, - 50.8144342 - ], - [ - 4.2710428, - 50.8127376 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89777492 - } - }, - { - "id": 89777464, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2756877, - 50.8082648 - ], - [ - 4.2775826, - 50.8082648 - ], - [ - 4.2775826, - 50.8109915 - ], - [ - 4.2756877, - 50.8109915 - ], - [ - 4.2756877, - 50.8082648 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89777464 - } - }, - { - "id": 89777446, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2756877, - 50.8070065 - ], - [ - 4.2883585, - 50.8070065 - ], - [ - 4.2883585, - 50.8109915 - ], - [ - 4.2756877, - 50.8109915 - ], - [ - 4.2756877, - 50.8070065 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89777446 - } - }, - { - "id": 89777414, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2774805, - 50.8070065 - ], - [ - 4.2883585, - 50.8070065 - ], - [ - 4.2883585, - 50.8101533 - ], - [ - 4.2774805, - 50.8101533 - ], - [ - 4.2774805, - 50.8070065 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89777414 - } - }, - { - "id": 89776281, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.211914, - 51.212396 - ], - [ - 3.211914, - 51.212396 - ], - [ - 3.211914, - 51.212396 - ], - [ - 3.211914, - 51.212396 - ], - [ - 3.211914, - 51.212396 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "personal" - }, - "id": 89776281 - } - }, - { - "id": 89776268, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2120445, - 51.2135593 - ], - [ - 3.2120445, - 51.2135593 - ], - [ - 3.2120445, - 51.2135593 - ], - [ - 3.2120445, - 51.2135593 - ], - [ - 3.2120445, - 51.2135593 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "personal" - }, - "id": 89776268 - } - }, - { - "id": 89761097, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.436131, - 49.0071878 - ], - [ - 14.7781128, - 49.0071878 - ], - [ - 14.7781128, - 49.0513002 - ], - [ - 14.436131, - 49.0513002 - ], - [ - 14.436131, - 49.0071878 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89761097 - } - }, - { - "id": 89752874, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -76.6015651, - 2.4425714 - ], - [ - -76.6015651, - 2.4425714 - ], - [ - -76.6015651, - 2.4425714 - ], - [ - -76.6015651, - 2.4425714 - ], - [ - -76.6015651, - 2.4425714 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89752874 - } - }, - { - "id": 89752826, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -76.6015651, - 2.4425714 - ], - [ - -76.6015651, - 2.4425714 - ], - [ - -76.6015651, - 2.4425714 - ], - [ - -76.6015651, - 2.4425714 - ], - [ - -76.6015651, - 2.4425714 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89752826 - } - }, - { - "id": 89743882, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7492359, - 50.9702609 - ], - [ - 3.7597419, - 50.9702609 - ], - [ - 3.7597419, - 50.9780471 - ], - [ - 3.7492359, - 50.9780471 - ], - [ - 3.7492359, - 50.9702609 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89743882 - } - }, - { - "id": 89743820, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7492359, - 50.9702609 - ], - [ - 3.7597419, - 50.9702609 - ], - [ - 3.7597419, - 50.9780471 - ], - [ - 3.7492359, - 50.9780471 - ], - [ - 3.7492359, - 50.9702609 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89743820 - } - }, - { - "id": 89743728, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7391175, - 50.9737555 - ], - [ - 3.7472752, - 50.9737555 - ], - [ - 3.7472752, - 50.9769295 - ], - [ - 3.7391175, - 50.9769295 - ], - [ - 3.7391175, - 50.9737555 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89743728 - } - }, - { - "id": 89740126, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.9850872, - 41.2687001 - ], - [ - 1.9851032, - 41.2687001 - ], - [ - 1.9851032, - 41.2695877 - ], - [ - 1.9850872, - 41.2695877 - ], - [ - 1.9850872, - 41.2687001 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89740126 - } - }, - { - "id": 89718813, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.0163191, - -31.4012905 - ], - [ - -58.0163191, - -31.4012905 - ], - [ - -58.0163191, - -31.4012905 - ], - [ - -58.0163191, - -31.4012905 - ], - [ - -58.0163191, - -31.4012905 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89718813 - } - }, - { - "id": 89712301, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5411295, - -34.6006801 - ], - [ - -58.5411295, - -34.6006801 - ], - [ - -58.5411295, - -34.6006801 - ], - [ - -58.5411295, - -34.6006801 - ], - [ - -58.5411295, - -34.6006801 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89712301 - } - }, - { - "id": 89712151, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.158265, - 41.392842 - ], - [ - 2.158265, - 41.392842 - ], - [ - 2.158265, - 41.392842 - ], - [ - 2.158265, - 41.392842 - ], - [ - 2.158265, - 41.392842 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89712151 - } - }, - { - "id": 89712123, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.158265, - 41.392842 - ], - [ - 2.158265, - 41.392842 - ], - [ - 2.158265, - 41.392842 - ], - [ - 2.158265, - 41.392842 - ], - [ - 2.158265, - 41.392842 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89712123 - } - }, - { - "id": 89712111, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.158265, - 41.392842 - ], - [ - 2.158265, - 41.392842 - ], - [ - 2.158265, - 41.392842 - ], - [ - 2.158265, - 41.392842 - ], - [ - 2.158265, - 41.392842 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89712111 - } - }, - { - "id": 89712097, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.158265, - 41.392842 - ], - [ - 2.158265, - 41.392842 - ], - [ - 2.158265, - 41.392842 - ], - [ - 2.158265, - 41.392842 - ], - [ - 2.158265, - 41.392842 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89712097 - } - }, - { - "id": 89712077, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.158265, - 41.392842 - ], - [ - 2.158265, - 41.392842 - ], - [ - 2.158265, - 41.392842 - ], - [ - 2.158265, - 41.392842 - ], - [ - 2.158265, - 41.392842 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89712077 - } - }, - { - "id": 89709008, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.3195215, - 51.3922301 - ], - [ - -0.3195215, - 51.3922301 - ], - [ - -0.3195215, - 51.3922301 - ], - [ - -0.3195215, - 51.3922301 - ], - [ - -0.3195215, - 51.3922301 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89709008 - } - }, - { - "id": 89708913, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.3195215, - 51.3922301 - ], - [ - -0.3195215, - 51.3922301 - ], - [ - -0.3195215, - 51.3922301 - ], - [ - -0.3195215, - 51.3922301 - ], - [ - -0.3195215, - 51.3922301 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89708913 - } - }, - { - "id": 89708836, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.3039966, - 51.3845356 - ], - [ - -0.2930449, - 51.3845356 - ], - [ - -0.2930449, - 51.3921545 - ], - [ - -0.3039966, - 51.3921545 - ], - [ - -0.3039966, - 51.3845356 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89708836 - } - }, - { - "id": 89708795, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.2944376, - 51.3848655 - ], - [ - -0.2944376, - 51.3848655 - ], - [ - -0.2944376, - 51.3848655 - ], - [ - -0.2944376, - 51.3848655 - ], - [ - -0.2944376, - 51.3848655 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89708795 - } - }, - { - "id": 89708088, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1574889, - 41.3929979 - ], - [ - 2.1574889, - 41.3929979 - ], - [ - 2.1574889, - 41.3929979 - ], - [ - 2.1574889, - 41.3929979 - ], - [ - 2.1574889, - 41.3929979 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89708088 - } - }, - { - "id": 89708034, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1574889, - 41.3929979 - ], - [ - 2.1574889, - 41.3929979 - ], - [ - 2.1574889, - 41.3929979 - ], - [ - 2.1574889, - 41.3929979 - ], - [ - 2.1574889, - 41.3929979 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89708034 - } - }, - { - "id": 89707983, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1574889, - 41.3929979 - ], - [ - 2.1574889, - 41.3929979 - ], - [ - 2.1574889, - 41.3929979 - ], - [ - 2.1574889, - 41.3929979 - ], - [ - 2.1574889, - 41.3929979 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89707983 - } - }, - { - "id": 89707964, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1574889, - 41.3929979 - ], - [ - 2.1574889, - 41.3929979 - ], - [ - 2.1574889, - 41.3929979 - ], - [ - 2.1574889, - 41.3929979 - ], - [ - 2.1574889, - 41.3929979 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89707964 - } - }, - { - "id": 89707958, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1574889, - 41.3929979 - ], - [ - 2.1574889, - 41.3929979 - ], - [ - 2.1574889, - 41.3929979 - ], - [ - 2.1574889, - 41.3929979 - ], - [ - 2.1574889, - 41.3929979 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89707958 - } - }, - { - "id": 89707924, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1574889, - 41.3929979 - ], - [ - 2.1574889, - 41.3929979 - ], - [ - 2.1574889, - 41.3929979 - ], - [ - 2.1574889, - 41.3929979 - ], - [ - 2.1574889, - 41.3929979 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89707924 - } - }, - { - "id": 89705487, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1694189, - 41.3858368 - ], - [ - 2.1694189, - 41.3858368 - ], - [ - 2.1694189, - 41.3858368 - ], - [ - 2.1694189, - 41.3858368 - ], - [ - 2.1694189, - 41.3858368 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89705487 - } - }, - { - "id": 89697089, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.6524393, - 45.8368895 - ], - [ - -0.6524393, - 45.8368895 - ], - [ - -0.6524393, - 45.8368895 - ], - [ - -0.6524393, - 45.8368895 - ], - [ - -0.6524393, - 45.8368895 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89697089 - } - }, - { - "id": 89697014, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.6524393, - 45.8368895 - ], - [ - -0.6524393, - 45.8368895 - ], - [ - -0.6524393, - 45.8368895 - ], - [ - -0.6524393, - 45.8368895 - ], - [ - -0.6524393, - 45.8368895 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89697014 - } - }, - { - "id": 89622951, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5966869, - 45.8897673 - ], - [ - -0.5966869, - 45.8897673 - ], - [ - -0.5966869, - 45.8897673 - ], - [ - -0.5966869, - 45.8897673 - ], - [ - -0.5966869, - 45.8897673 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89622951 - } - }, - { - "id": 89622923, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5965547, - 45.8897271 - ], - [ - -0.5965547, - 45.8897271 - ], - [ - -0.5965547, - 45.8897271 - ], - [ - -0.5965547, - 45.8897271 - ], - [ - -0.5965547, - 45.8897271 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89622923 - } - }, - { - "id": 89622886, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5966869, - 45.8897673 - ], - [ - -0.5966869, - 45.8897673 - ], - [ - -0.5966869, - 45.8897673 - ], - [ - -0.5966869, - 45.8897673 - ], - [ - -0.5966869, - 45.8897673 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89622886 - } - }, - { - "id": 89622807, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5965547, - 45.8897271 - ], - [ - -0.5965547, - 45.8897271 - ], - [ - -0.5965547, - 45.8897271 - ], - [ - -0.5965547, - 45.8897271 - ], - [ - -0.5965547, - 45.8897271 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89622807 - } - }, - { - "id": 89608014, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3932532, - 51.0336855 - ], - [ - 3.3932532, - 51.0336855 - ], - [ - 3.3932532, - 51.0336855 - ], - [ - 3.3932532, - 51.0336855 - ], - [ - 3.3932532, - 51.0336855 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89608014 - } - }, - { - "id": 89607809, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3932532, - 51.0336855 - ], - [ - 3.3932532, - 51.0336855 - ], - [ - 3.3932532, - 51.0336855 - ], - [ - 3.3932532, - 51.0336855 - ], - [ - 3.3932532, - 51.0336855 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89607809 - } - }, - { - "id": 89607765, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3932532, - 51.0336855 - ], - [ - 3.3932532, - 51.0336855 - ], - [ - 3.3932532, - 51.0336855 - ], - [ - 3.3932532, - 51.0336855 - ], - [ - 3.3932532, - 51.0336855 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89607765 - } - }, - { - "id": 89591688, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9050333, - 51.2060669 - ], - [ - 2.9050333, - 51.2060669 - ], - [ - 2.9050333, - 51.2060669 - ], - [ - 2.9050333, - 51.2060669 - ], - [ - 2.9050333, - 51.2060669 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89591688 - } - }, - { - "id": 89591653, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9050333, - 51.2060669 - ], - [ - 2.9050333, - 51.2060669 - ], - [ - 2.9050333, - 51.2060669 - ], - [ - 2.9050333, - 51.2060669 - ], - [ - 2.9050333, - 51.2060669 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89591653 - } - }, - { - "id": 89591643, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9050333, - 51.2060669 - ], - [ - 2.9050333, - 51.2060669 - ], - [ - 2.9050333, - 51.2060669 - ], - [ - 2.9050333, - 51.2060669 - ], - [ - 2.9050333, - 51.2060669 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89591643 - } - }, - { - "id": 89585554, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.1281611, - 42.9867733 - ], - [ - -4.1281611, - 42.9867733 - ], - [ - -4.1281611, - 42.9867733 - ], - [ - -4.1281611, - 42.9867733 - ], - [ - -4.1281611, - 42.9867733 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89585554 - } - }, - { - "id": 89581804, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3932532, - 51.0336855 - ], - [ - 3.3932532, - 51.0336855 - ], - [ - 3.3932532, - 51.0336855 - ], - [ - 3.3932532, - 51.0336855 - ], - [ - 3.3932532, - 51.0336855 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89581804 - } - }, - { - "id": 89566523, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.7150406, - 41.2227771 - ], - [ - 1.7150406, - 41.2227771 - ], - [ - 1.7150406, - 41.2227771 - ], - [ - 1.7150406, - 41.2227771 - ], - [ - 1.7150406, - 41.2227771 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89566523 - } - }, - { - "id": 89537077, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.0680179, - 43.262091 - ], - [ - -4.0680179, - 43.262091 - ], - [ - -4.0680179, - 43.262091 - ], - [ - -4.0680179, - 43.262091 - ], - [ - -4.0680179, - 43.262091 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89537077 - } - }, - { - "id": 89529460, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.7160987, - 41.2190819 - ], - [ - 1.7160987, - 41.2190819 - ], - [ - 1.7160987, - 41.2190819 - ], - [ - 1.7160987, - 41.2190819 - ], - [ - 1.7160987, - 41.2190819 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89529460 - } - }, - { - "id": 89528596, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.7148677, - 41.2217551 - ], - [ - 1.7148677, - 41.2217551 - ], - [ - 1.7148677, - 41.2217551 - ], - [ - 1.7148677, - 41.2217551 - ], - [ - 1.7148677, - 41.2217551 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89528596 - } - }, - { - "id": 89513953, - "type": "Feature", - "geometry": null, - "properties": { - "check_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-17T10:57:14Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 89513953 - } - }, - { - "id": 89507735, - "type": "Feature", - "geometry": null, - "properties": { - "check_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-17T09:17:56Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 89507735 - } - }, - { - "id": 89507698, - "type": "Feature", - "geometry": null, - "properties": { - "check_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-17T09:17:13Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 89507698 - } - }, - { - "id": 89466862, - "type": "Feature", - "geometry": null, - "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:40:05Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 89466862 - } - }, - { - "id": 89466819, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4748189, - 51.0624042 - ], - [ - 3.4911847, - 51.0624042 - ], - [ - 3.4911847, - 51.0692793 - ], - [ - 3.4748189, - 51.0692793 - ], - [ - 3.4748189, - 51.0624042 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89466819 - } - }, - { - "id": 89466775, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4795176, - 51.0736401 - ], - [ - 3.4801921, - 51.0736401 - ], - [ - 3.4801921, - 51.0741823 - ], - [ - 3.4795176, - 51.0741823 - ], - [ - 3.4795176, - 51.0736401 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89466775 - } - }, - { - "id": 89466758, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4789764, - 51.0720423 - ], - [ - 3.4856375, - 51.0720423 - ], - [ - 3.4856375, - 51.0779223 - ], - [ - 3.4789764, - 51.0779223 - ], - [ - 3.4789764, - 51.0720423 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89466758 - } - }, - { - "id": 89466648, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5337501, - 52.9947596 - ], - [ - 6.5337501, - 52.9947596 - ], - [ - 6.5337501, - 52.9947596 - ], - [ - 6.5337501, - 52.9947596 - ], - [ - 6.5337501, - 52.9947596 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89466648 - } - }, - { - "id": 89466590, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5337501, - 52.9947596 - ], - [ - 6.5337501, - 52.9947596 - ], - [ - 6.5337501, - 52.9947596 - ], - [ - 6.5337501, - 52.9947596 - ], - [ - 6.5337501, - 52.9947596 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89466590 - } - }, - { - "id": 89466577, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5337501, - 52.9947596 - ], - [ - 6.5337501, - 52.9947596 - ], - [ - 6.5337501, - 52.9947596 - ], - [ - 6.5337501, - 52.9947596 - ], - [ - 6.5337501, - 52.9947596 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89466577 - } - }, - { - "id": 89466568, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5337501, - 52.9947596 - ], - [ - 6.5337501, - 52.9947596 - ], - [ - 6.5337501, - 52.9947596 - ], - [ - 6.5337501, - 52.9947596 - ], - [ - 6.5337501, - 52.9947596 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89466568 - } - }, - { - "id": 89466534, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5668792, - 53.0053151 - ], - [ - 6.5668792, - 53.0053151 - ], - [ - 6.5668792, - 53.0053151 - ], - [ - 6.5668792, - 53.0053151 - ], - [ - 6.5668792, - 53.0053151 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89466534 - } - }, - { - "id": 89466521, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5668792, - 53.0053151 - ], - [ - 6.5668792, - 53.0053151 - ], - [ - 6.5668792, - 53.0053151 - ], - [ - 6.5668792, - 53.0053151 - ], - [ - 6.5668792, - 53.0053151 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89466521 - } - }, - { - "id": 89466505, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5668792, - 53.0053151 - ], - [ - 6.5668792, - 53.0053151 - ], - [ - 6.5668792, - 53.0053151 - ], - [ - 6.5668792, - 53.0053151 - ], - [ - 6.5668792, - 53.0053151 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89466505 - } - }, - { - "id": 89466101, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5703635, - 52.992196 - ], - [ - 6.5711193, - 52.992196 - ], - [ - 6.5711193, - 52.9927698 - ], - [ - 6.5703635, - 52.9927698 - ], - [ - 6.5703635, - 52.992196 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89466101 - } - }, - { - "id": 89456596, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.122321, - 50.9187642 - ], - [ - 4.1281444, - 50.9187642 - ], - [ - 4.1281444, - 50.9214991 - ], - [ - 4.122321, - 50.9214991 - ], - [ - 4.122321, - 50.9187642 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89456596 - } - }, - { - "id": 89456554, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0963318, - 50.9216409 - ], - [ - 4.1099341, - 50.9216409 - ], - [ - 4.1099341, - 50.9280586 - ], - [ - 4.0963318, - 50.9280586 - ], - [ - 4.0963318, - 50.9216409 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89456554 - } - }, - { - "id": 89456494, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1068293, - 50.9094599 - ], - [ - 4.1079027, - 50.9094599 - ], - [ - 4.1079027, - 50.9107488 - ], - [ - 4.1068293, - 50.9107488 - ], - [ - 4.1068293, - 50.9094599 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89456494 - } - }, - { - "id": 89456470, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1101487, - 50.9078504 - ], - [ - 4.1124255, - 50.9078504 - ], - [ - 4.1124255, - 50.9090443 - ], - [ - 4.1101487, - 50.9090443 - ], - [ - 4.1101487, - 50.9078504 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89456470 - } - }, - { - "id": 89427211, - "type": "Feature", - "geometry": null, - "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:28:06Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 89427211 - } - }, - { - "id": 89427167, - "type": "Feature", - "geometry": null, - "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:26:49Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 89427167 - } - }, - { - "id": 89427074, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2070696, - 51.1858295 - ], - [ - 5.2091316, - 51.1858295 - ], - [ - 5.2091316, - 51.1872228 - ], - [ - 5.2070696, - 51.1872228 - ], - [ - 5.2070696, - 51.1858295 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89427074 - } - }, - { - "id": 89417205, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4815663, - 51.502385 - ], - [ - 3.4815663, - 51.502385 - ], - [ - 3.4815663, - 51.502385 - ], - [ - 3.4815663, - 51.502385 - ], - [ - 3.4815663, - 51.502385 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89417205 - } - }, - { - "id": 89417169, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4815663, - 51.502385 - ], - [ - 3.4815663, - 51.502385 - ], - [ - 3.4815663, - 51.502385 - ], - [ - 3.4815663, - 51.502385 - ], - [ - 3.4815663, - 51.502385 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89417169 - } - }, - { - "id": 89338725, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3876887, - 51.0458411 - ], - [ - 3.3876887, - 51.0458411 - ], - [ - 3.3876887, - 51.0458411 - ], - [ - 3.3876887, - 51.0458411 - ], - [ - 3.3876887, - 51.0458411 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89338725 - } - }, - { - "id": 89337783, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3876887, - 51.0458411 - ], - [ - 3.3876887, - 51.0458411 - ], - [ - 3.3876887, - 51.0458411 - ], - [ - 3.3876887, - 51.0458411 - ], - [ - 3.3876887, - 51.0458411 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89337783 - } - }, - { - "id": 89314595, - "type": "Feature", - "geometry": null, - "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:47Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 89314595 - } - }, - { - "id": 89314575, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8695804, - 50.8199572 - ], - [ - 3.8770077, - 50.8199572 - ], - [ - 3.8770077, - 50.8290833 - ], - [ - 3.8695804, - 50.8290833 - ], - [ - 3.8695804, - 50.8199572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89314575 - } - }, - { - "id": 89314554, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8695804, - 50.8199572 - ], - [ - 3.8770077, - 50.8199572 - ], - [ - 3.8770077, - 50.8290833 - ], - [ - 3.8695804, - 50.8290833 - ], - [ - 3.8695804, - 50.8199572 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89314554 - } - }, - { - "id": 89314545, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8341657, - 50.8312698 - ], - [ - 3.8536053, - 50.8312698 - ], - [ - 3.8536053, - 50.8396248 - ], - [ - 3.8341657, - 50.8396248 - ], - [ - 3.8341657, - 50.8312698 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89314545 - } - }, - { - "id": 89309318, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7222589, - 51.0464217 - ], - [ - 3.7222589, - 51.0464217 - ], - [ - 3.7222589, - 51.0464217 - ], - [ - 3.7222589, - 51.0464217 - ], - [ - 3.7222589, - 51.0464217 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89309318 - } - }, - { - "id": 89301027, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.491458, - 51.0920052 - ], - [ - 3.491458, - 51.0920052 - ], - [ - 3.491458, - 51.0920052 - ], - [ - 3.491458, - 51.0920052 - ], - [ - 3.491458, - 51.0920052 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89301027 - } - }, - { - "id": 89292111, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9233569, - 51.1920512 - ], - [ - 4.9486756, - 51.1920512 - ], - [ - 4.9486756, - 51.2035083 - ], - [ - 4.9233569, - 51.2035083 - ], - [ - 4.9233569, - 51.1920512 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89292111 - } - }, - { - "id": 89292039, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9233569, - 51.1920512 - ], - [ - 4.9486756, - 51.1920512 - ], - [ - 4.9486756, - 51.2035083 - ], - [ - 4.9233569, - 51.2035083 - ], - [ - 4.9233569, - 51.1920512 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89292039 - } - }, - { - "id": 89291100, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.463762, - 51.0464399 - ], - [ - 3.4649079, - 51.0464399 - ], - [ - 3.4649079, - 51.0468998 - ], - [ - 3.463762, - 51.0468998 - ], - [ - 3.463762, - 51.0464399 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89291100 - } - }, - { - "id": 89281420, - "type": "Feature", - "geometry": null, - "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:53:42Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 89281420 - } - }, - { - "id": 89280973, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3795631, - 50.8351254 - ], - [ - 4.3801965, - 50.8351254 - ], - [ - 4.3801965, - 50.8357627 - ], - [ - 4.3795631, - 50.8357627 - ], - [ - 4.3795631, - 50.8351254 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89280973 - } - }, - { - "id": 89280844, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.384191, - 50.8339188 - ], - [ - 4.3879452, - 50.8339188 - ], - [ - 4.3879452, - 50.8349661 - ], - [ - 4.384191, - 50.8349661 - ], - [ - 4.384191, - 50.8339188 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89280844 - } - }, - { - "id": 89280801, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1149594, - 51.1585028 - ], - [ - 4.1236246, - 51.1585028 - ], - [ - 4.1236246, - 51.1628788 - ], - [ - 4.1149594, - 51.1628788 - ], - [ - 4.1149594, - 51.1585028 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89280801 - } - }, - { - "id": 89280763, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.384191, - 50.8339188 - ], - [ - 4.3879452, - 50.8339188 - ], - [ - 4.3879452, - 50.8349661 - ], - [ - 4.384191, - 50.8349661 - ], - [ - 4.384191, - 50.8339188 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89280763 - } - }, - { - "id": 89280500, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1517535, - 51.142942 - ], - [ - 4.1642315, - 51.142942 - ], - [ - 4.1642315, - 51.1499581 - ], - [ - 4.1517535, - 51.1499581 - ], - [ - 4.1517535, - 51.142942 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89280500 - } - }, - { - "id": 89280456, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1517535, - 51.142942 - ], - [ - 4.1642315, - 51.142942 - ], - [ - 4.1642315, - 51.1499581 - ], - [ - 4.1517535, - 51.1499581 - ], - [ - 4.1517535, - 51.142942 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89280456 - } - }, - { - "id": 89271173, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0358215, - 51.1419118 - ], - [ - 4.0458773, - 51.1419118 - ], - [ - 4.0458773, - 51.1475424 - ], - [ - 4.0358215, - 51.1475424 - ], - [ - 4.0358215, - 51.1419118 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89271173 - } - }, - { - "id": 89271153, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.045695, - 51.1359054 - ], - [ - 4.0567485, - 51.1359054 - ], - [ - 4.0567485, - 51.1464938 - ], - [ - 4.045695, - 51.1464938 - ], - [ - 4.045695, - 51.1359054 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89271153 - } - }, - { - "id": 89271142, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0356963, - 51.1351521 - ], - [ - 4.0490616, - 51.1351521 - ], - [ - 4.0490616, - 51.1404219 - ], - [ - 4.0356963, - 51.1404219 - ], - [ - 4.0356963, - 51.1351521 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89271142 - } - }, - { - "id": 89271129, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0247318, - 51.1365868 - ], - [ - 4.0393311, - 51.1365868 - ], - [ - 4.0393311, - 51.1441471 - ], - [ - 4.0247318, - 51.1441471 - ], - [ - 4.0247318, - 51.1365868 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89271129 - } - }, - { - "id": 89271122, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0247318, - 51.1300493 - ], - [ - 4.0372191, - 51.1300493 - ], - [ - 4.0372191, - 51.1394752 - ], - [ - 4.0247318, - 51.1394752 - ], - [ - 4.0247318, - 51.1300493 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89271122 - } - }, - { - "id": 89271109, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0266398, - 51.1300493 - ], - [ - 4.0372191, - 51.1300493 - ], - [ - 4.0372191, - 51.1383377 - ], - [ - 4.0266398, - 51.1383377 - ], - [ - 4.0266398, - 51.1300493 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89271109 - } - }, - { - "id": 89271079, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2148091, - 51.1711064 - ], - [ - 4.2176552, - 51.1711064 - ], - [ - 4.2176552, - 51.1718143 - ], - [ - 4.2148091, - 51.1718143 - ], - [ - 4.2148091, - 51.1711064 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89271079 - } - }, - { - "id": 89271069, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2075785, - 51.1246214 - ], - [ - 4.2593325, - 51.1246214 - ], - [ - 4.2593325, - 51.1718143 - ], - [ - 4.2075785, - 51.1718143 - ], - [ - 4.2075785, - 51.1246214 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89271069 - } - }, - { - "id": 89271033, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1149594, - 51.1534911 - ], - [ - 4.1290231, - 51.1534911 - ], - [ - 4.1290231, - 51.1642182 - ], - [ - 4.1149594, - 51.1642182 - ], - [ - 4.1149594, - 51.1534911 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89271033 - } - }, - { - "id": 89271010, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1517535, - 51.142942 - ], - [ - 4.1642315, - 51.142942 - ], - [ - 4.1642315, - 51.1499581 - ], - [ - 4.1517535, - 51.1499581 - ], - [ - 4.1517535, - 51.142942 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89271010 - } - }, - { - "id": 89270968, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7543953, - 50.9132913 - ], - [ - 3.7678875, - 50.9132913 - ], - [ - 3.7678875, - 50.9202055 - ], - [ - 3.7543953, - 50.9202055 - ], - [ - 3.7543953, - 50.9132913 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89270968 - } - }, - { - "id": 89270937, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6978443, - 50.8732405 - ], - [ - 3.6981253, - 50.8732405 - ], - [ - 3.6981253, - 50.8735908 - ], - [ - 3.6978443, - 50.8735908 - ], - [ - 3.6978443, - 50.8732405 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89270937 - } - }, - { - "id": 89270921, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6978443, - 50.8732405 - ], - [ - 3.6981253, - 50.8732405 - ], - [ - 3.6981253, - 50.8735908 - ], - [ - 3.6978443, - 50.8735908 - ], - [ - 3.6978443, - 50.8732405 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89270921 - } - }, - { - "id": 89269423, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3642168, - 51.0944282 - ], - [ - 3.3648529, - 51.0944282 - ], - [ - 3.3648529, - 51.0948729 - ], - [ - 3.3642168, - 51.0948729 - ], - [ - 3.3642168, - 51.0944282 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89269423 - } - }, - { - "id": 89243471, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.6495759, - 48.8361426 - ], - [ - 2.6495759, - 48.8361426 - ], - [ - 2.6495759, - 48.8361426 - ], - [ - 2.6495759, - 48.8361426 - ], - [ - 2.6495759, - 48.8361426 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89243471 - } - }, - { - "id": 89241564, - "type": "Feature", - "geometry": null, - "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:28:08Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 89241564 - } - }, - { - "id": 89241493, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9695577, - 51.040363 - ], - [ - 3.9765474, - 51.040363 - ], - [ - 3.9765474, - 51.0476844 - ], - [ - 3.9695577, - 51.0476844 - ], - [ - 3.9695577, - 51.040363 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89241493 - } - }, - { - "id": 89241311, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.012368, - 51.0440415 - ], - [ - 4.0212981, - 51.0440415 - ], - [ - 4.0212981, - 51.0463253 - ], - [ - 4.012368, - 51.0463253 - ], - [ - 4.012368, - 51.0440415 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89241311 - } - }, - { - "id": 89241213, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0335051, - 51.0376653 - ], - [ - 4.0442173, - 51.0376653 - ], - [ - 4.0442173, - 51.040663 - ], - [ - 4.0335051, - 51.040663 - ], - [ - 4.0335051, - 51.0376653 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89241213 - } - }, - { - "id": 89241077, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0410661, - 51.0410003 - ], - [ - 4.0445757, - 51.0410003 - ], - [ - 4.0445757, - 51.0428545 - ], - [ - 4.0410661, - 51.0428545 - ], - [ - 4.0410661, - 51.0410003 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89241077 - } - }, - { - "id": 89241036, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0330414, - 51.0346937 - ], - [ - 4.0445757, - 51.0346937 - ], - [ - 4.0445757, - 51.0428545 - ], - [ - 4.0330414, - 51.0428545 - ], - [ - 4.0330414, - 51.0346937 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89241036 - } - }, - { - "id": 89240842, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0917848, - 51.0668949 - ], - [ - 4.0952631, - 51.0668949 - ], - [ - 4.0952631, - 51.0695697 - ], - [ - 4.0917848, - 51.0695697 - ], - [ - 4.0917848, - 51.0668949 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89240842 - } - }, - { - "id": 89240747, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0917848, - 51.0668949 - ], - [ - 4.0952631, - 51.0668949 - ], - [ - 4.0952631, - 51.0695697 - ], - [ - 4.0917848, - 51.0695697 - ], - [ - 4.0917848, - 51.0668949 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89240747 - } - }, - { - "id": 89240601, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0588457, - 51.0774796 - ], - [ - 4.0603874, - 51.0774796 - ], - [ - 4.0603874, - 51.0787842 - ], - [ - 4.0588457, - 51.0787842 - ], - [ - 4.0588457, - 51.0774796 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89240601 - } - }, - { - "id": 89240517, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0588457, - 51.0774796 - ], - [ - 4.0603874, - 51.0774796 - ], - [ - 4.0603874, - 51.0787842 - ], - [ - 4.0588457, - 51.0787842 - ], - [ - 4.0588457, - 51.0774796 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89240517 - } - }, - { - "id": 89238094, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.258923, - 50.9072485 - ], - [ - 3.2594771, - 50.9072485 - ], - [ - 3.2594771, - 50.9079427 - ], - [ - 3.258923, - 50.9079427 - ], - [ - 3.258923, - 50.9072485 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89238094 - } - }, - { - "id": 89238015, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2531524, - 50.9165999 - ], - [ - 3.2602567, - 50.9165999 - ], - [ - 3.2602567, - 50.9200174 - ], - [ - 3.2531524, - 50.9200174 - ], - [ - 3.2531524, - 50.9165999 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89238015 - } - }, - { - "id": 89237924, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2010806, - 51.0961092 - ], - [ - 3.2022853, - 51.0961092 - ], - [ - 3.2022853, - 51.0965439 - ], - [ - 3.2010806, - 51.0965439 - ], - [ - 3.2010806, - 51.0961092 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89237924 - } - }, - { - "id": 89216341, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89216341 - } - }, - { - "id": 89216328, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89216328 - } - }, - { - "id": 89216288, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89216288 - } - }, - { - "id": 89216285, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89216285 - } - }, - { - "id": 89216244, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89216244 - } - }, - { - "id": 89216216, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89216216 - } - }, - { - "id": 89216202, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89216202 - } - }, - { - "id": 89216186, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ], - [ - 4.3373278, - 50.8763909 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89216186 - } - }, - { - "id": 89216012, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3287995, - 50.8727951 - ], - [ - 4.3287995, - 50.8727951 - ], - [ - 4.3287995, - 50.8727951 - ], - [ - 4.3287995, - 50.8727951 - ], - [ - 4.3287995, - 50.8727951 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89216012 - } - }, - { - "id": 89215951, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3345362, - 50.8892402 - ], - [ - 4.3345362, - 50.8892402 - ], - [ - 4.3345362, - 50.8892402 - ], - [ - 4.3345362, - 50.8892402 - ], - [ - 4.3345362, - 50.8892402 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89215951 - } - }, - { - "id": 89215883, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3345362, - 50.8892402 - ], - [ - 4.3345362, - 50.8892402 - ], - [ - 4.3345362, - 50.8892402 - ], - [ - 4.3345362, - 50.8892402 - ], - [ - 4.3345362, - 50.8892402 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89215883 - } - }, - { - "id": 89215746, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3241726, - 50.8733567 - ], - [ - 4.3241726, - 50.8733567 - ], - [ - 4.3241726, - 50.8733567 - ], - [ - 4.3241726, - 50.8733567 - ], - [ - 4.3241726, - 50.8733567 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89215746 - } - }, - { - "id": 89215678, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3249033, - 50.8901985 - ], - [ - 4.3249033, - 50.8901985 - ], - [ - 4.3249033, - 50.8901985 - ], - [ - 4.3249033, - 50.8901985 - ], - [ - 4.3249033, - 50.8901985 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89215678 - } - }, - { - "id": 89215613, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3373338, - 50.8762849 - ], - [ - 4.3373338, - 50.8762849 - ], - [ - 4.3373338, - 50.8762849 - ], - [ - 4.3373338, - 50.8762849 - ], - [ - 4.3373338, - 50.8762849 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89215613 - } - }, - { - "id": 89196683, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4502948, - 51.0838006 - ], - [ - 3.4502948, - 51.0838006 - ], - [ - 3.4502948, - 51.0838006 - ], - [ - 3.4502948, - 51.0838006 - ], - [ - 3.4502948, - 51.0838006 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89196683 - } - }, - { - "id": 89196554, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4478284, - 51.0919485 - ], - [ - 3.4478284, - 51.0919485 - ], - [ - 3.4478284, - 51.0919485 - ], - [ - 3.4478284, - 51.0919485 - ], - [ - 3.4478284, - 51.0919485 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89196554 - } - }, - { - "id": 89196531, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4504684, - 51.0841602 - ], - [ - 3.4504684, - 51.0841602 - ], - [ - 3.4504684, - 51.0841602 - ], - [ - 3.4504684, - 51.0841602 - ], - [ - 3.4504684, - 51.0841602 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89196531 - } - }, - { - "id": 89183359, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.7463646, - 45.1471565 - ], - [ - 5.7463646, - 45.1471565 - ], - [ - 5.7463646, - 45.1471565 - ], - [ - 5.7463646, - 45.1471565 - ], - [ - 5.7463646, - 45.1471565 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89183359 - } - }, - { - "id": 89183346, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.7469842, - 45.1461997 - ], - [ - 5.7469842, - 45.1461997 - ], - [ - 5.7469842, - 45.1461997 - ], - [ - 5.7469842, - 45.1461997 - ], - [ - 5.7469842, - 45.1461997 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89183346 - } - }, - { - "id": 89163669, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.7751029, - -41.2911835 - ], - [ - 174.7751029, - -41.2911835 - ], - [ - 174.7751029, - -41.2911835 - ], - [ - 174.7751029, - -41.2911835 - ], - [ - 174.7751029, - -41.2911835 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89163669 - } - }, - { - "id": 89163658, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.7732663, - -41.2943922 - ], - [ - 174.7732663, - -41.2943922 - ], - [ - 174.7732663, - -41.2943922 - ], - [ - 174.7732663, - -41.2943922 - ], - [ - 174.7732663, - -41.2943922 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89163658 - } - }, - { - "id": 89163637, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.7768396, - -41.2938043 - ], - [ - 174.7768396, - -41.2938043 - ], - [ - 174.7768396, - -41.2938043 - ], - [ - 174.7768396, - -41.2938043 - ], - [ - 174.7768396, - -41.2938043 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89163637 - } - }, - { - "id": 89163594, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.7768396, - -41.2938043 - ], - [ - 174.7768396, - -41.2938043 - ], - [ - 174.7768396, - -41.2938043 - ], - [ - 174.7768396, - -41.2938043 - ], - [ - 174.7768396, - -41.2938043 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89163594 - } - }, - { - "id": 89160626, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4479307, - 51.0935514 - ], - [ - 3.4480237, - 51.0935514 - ], - [ - 3.4480237, - 51.0936113 - ], - [ - 3.4479307, - 51.0936113 - ], - [ - 3.4479307, - 51.0935514 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89160626 - } - }, - { - "id": 89160587, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4521481, - 51.0846264 - ], - [ - 3.4521481, - 51.0846264 - ], - [ - 3.4521481, - 51.0846264 - ], - [ - 3.4521481, - 51.0846264 - ], - [ - 3.4521481, - 51.0846264 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89160587 - } - }, - { - "id": 89157318, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7426479, - 48.396588 - ], - [ - 11.7426479, - 48.396588 - ], - [ - 11.7426479, - 48.396588 - ], - [ - 11.7426479, - 48.396588 - ], - [ - 11.7426479, - 48.396588 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89157318 - } - }, - { - "id": 89155840, - "type": "Feature", - "geometry": null, - "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:33:32Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 89155840 - } - }, - { - "id": 89155785, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4834515, - 51.1586329 - ], - [ - 3.4835506, - 51.1586329 - ], - [ - 3.4835506, - 51.1586773 - ], - [ - 3.4834515, - 51.1586773 - ], - [ - 3.4834515, - 51.1586329 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89155785 - } - }, - { - "id": 89155722, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4834515, - 51.1586773 - ], - [ - 3.4834515, - 51.1586773 - ], - [ - 3.4834515, - 51.1586773 - ], - [ - 3.4834515, - 51.1586773 - ], - [ - 3.4834515, - 51.1586773 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89155722 - } - }, - { - "id": 89155709, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4834515, - 51.1586773 - ], - [ - 3.4834515, - 51.1586773 - ], - [ - 3.4834515, - 51.1586773 - ], - [ - 3.4834515, - 51.1586773 - ], - [ - 3.4834515, - 51.1586773 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89155709 - } - }, - { - "id": 89155506, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.7278771, - 50.7331389 - ], - [ - -1.7278771, - 50.7331389 - ], - [ - -1.7278771, - 50.7331389 - ], - [ - -1.7278771, - 50.7331389 - ], - [ - -1.7278771, - 50.7331389 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89155506 - } - }, - { - "id": 89155299, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5721879, - 51.1935559 - ], - [ - 3.5721879, - 51.1935559 - ], - [ - 3.5721879, - 51.1935559 - ], - [ - 3.5721879, - 51.1935559 - ], - [ - 3.5721879, - 51.1935559 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89155299 - } - }, - { - "id": 89155260, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5721879, - 51.1935559 - ], - [ - 3.5721879, - 51.1935559 - ], - [ - 3.5721879, - 51.1935559 - ], - [ - 3.5721879, - 51.1935559 - ], - [ - 3.5721879, - 51.1935559 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89155260 - } - }, - { - "id": 89154853, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5634473, - 51.1858258 - ], - [ - 3.5634473, - 51.1858258 - ], - [ - 3.5634473, - 51.1858258 - ], - [ - 3.5634473, - 51.1858258 - ], - [ - 3.5634473, - 51.1858258 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89154853 - } - }, - { - "id": 89154816, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5634473, - 51.1858258 - ], - [ - 3.5634473, - 51.1858258 - ], - [ - 3.5634473, - 51.1858258 - ], - [ - 3.5634473, - 51.1858258 - ], - [ - 3.5634473, - 51.1858258 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89154816 - } - }, - { - "id": 89154775, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5634473, - 51.1858258 - ], - [ - 3.5634473, - 51.1858258 - ], - [ - 3.5634473, - 51.1858258 - ], - [ - 3.5634473, - 51.1858258 - ], - [ - 3.5634473, - 51.1858258 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89154775 - } - }, - { - "id": 89154755, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5634473, - 51.1858258 - ], - [ - 3.5634473, - 51.1858258 - ], - [ - 3.5634473, - 51.1858258 - ], - [ - 3.5634473, - 51.1858258 - ], - [ - 3.5634473, - 51.1858258 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89154755 - } - }, - { - "id": 89154668, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5634473, - 51.1858258 - ], - [ - 3.5634473, - 51.1858258 - ], - [ - 3.5634473, - 51.1858258 - ], - [ - 3.5634473, - 51.1858258 - ], - [ - 3.5634473, - 51.1858258 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89154668 - } - }, - { - "id": 89154629, - "type": "Feature", - "geometry": null, - "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:47:03Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 89154629 - } - }, - { - "id": 89154604, - "type": "Feature", - "geometry": null, - "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:46:02Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 89154604 - } - }, - { - "id": 89153051, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.2308132, - 50.0045291 - ], - [ - 8.2319235, - 50.0045291 - ], - [ - 8.2319235, - 50.0053373 - ], - [ - 8.2308132, - 50.0053373 - ], - [ - 8.2308132, - 50.0045291 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89153051 - } - }, - { - "id": 89123603, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2362217, - 50.735992 - ], - [ - 4.2362217, - 50.735992 - ], - [ - 4.2362217, - 50.735992 - ], - [ - 4.2362217, - 50.735992 - ], - [ - 4.2362217, - 50.735992 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89123603 - } - }, - { - "id": 89108914, - "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.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, - "metadata": {}, - "id": 89108914 - } - }, - { - "id": 89108910, - "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.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, - "metadata": {}, - "id": 89108910 - } - }, - { - "id": 89105341, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0905322, - 51.2934469 - ], - [ - 3.0983311, - 51.2934469 - ], - [ - 3.0983311, - 51.2974987 - ], - [ - 3.0905322, - 51.2974987 - ], - [ - 3.0905322, - 51.2934469 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89105341 - } - }, - { - "id": 89104799, - "type": "Feature", - "geometry": null, - "properties": { - "check_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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 89104799 - } - }, - { - "id": 89104798, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0052811, - 51.1969375 - ], - [ - 3.0052811, - 51.1969375 - ], - [ - 3.0052811, - 51.1969375 - ], - [ - 3.0052811, - 51.1969375 - ], - [ - 3.0052811, - 51.1969375 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89104798 - } - }, - { - "id": 89104790, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0052811, - 51.1969375 - ], - [ - 3.0052811, - 51.1969375 - ], - [ - 3.0052811, - 51.1969375 - ], - [ - 3.0052811, - 51.1969375 - ], - [ - 3.0052811, - 51.1969375 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89104790 - } - }, - { - "id": 89104787, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0052811, - 51.1969375 - ], - [ - 3.0052811, - 51.1969375 - ], - [ - 3.0052811, - 51.1969375 - ], - [ - 3.0052811, - 51.1969375 - ], - [ - 3.0052811, - 51.1969375 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89104787 - } - }, - { - "id": 89104783, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0052811, - 51.1969375 - ], - [ - 3.0052811, - 51.1969375 - ], - [ - 3.0052811, - 51.1969375 - ], - [ - 3.0052811, - 51.1969375 - ], - [ - 3.0052811, - 51.1969375 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89104783 - } - }, - { - "id": 89104721, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0233408, - 51.2056615 - ], - [ - 3.0233408, - 51.2056615 - ], - [ - 3.0233408, - 51.2056615 - ], - [ - 3.0233408, - 51.2056615 - ], - [ - 3.0233408, - 51.2056615 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89104721 - } - }, - { - "id": 89104698, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.019502, - 51.2048803 - ], - [ - 3.023933, - 51.2048803 - ], - [ - 3.023933, - 51.2064398 - ], - [ - 3.019502, - 51.2064398 - ], - [ - 3.019502, - 51.2048803 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89104698 - } - }, - { - "id": 89104690, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.019502, - 51.2048803 - ], - [ - 3.023933, - 51.2048803 - ], - [ - 3.023933, - 51.2064398 - ], - [ - 3.019502, - 51.2064398 - ], - [ - 3.019502, - 51.2048803 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89104690 - } - }, - { - "id": 89104516, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.402338, - 51.1058904 - ], - [ - 3.4221633, - 51.1058904 - ], - [ - 3.4221633, - 51.1115073 - ], - [ - 3.402338, - 51.1115073 - ], - [ - 3.402338, - 51.1058904 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89104516 - } - }, - { - "id": 89104494, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.402338, - 51.1058904 - ], - [ - 3.4221633, - 51.1058904 - ], - [ - 3.4221633, - 51.1115073 - ], - [ - 3.402338, - 51.1115073 - ], - [ - 3.402338, - 51.1058904 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89104494 - } - }, - { - "id": 89104482, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.402338, - 51.1058904 - ], - [ - 3.4221633, - 51.1058904 - ], - [ - 3.4221633, - 51.1115073 - ], - [ - 3.402338, - 51.1115073 - ], - [ - 3.402338, - 51.1058904 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89104482 - } - }, - { - "id": 89104449, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.402338, - 51.1058904 - ], - [ - 3.4221633, - 51.1058904 - ], - [ - 3.4221633, - 51.1115073 - ], - [ - 3.402338, - 51.1115073 - ], - [ - 3.402338, - 51.1058904 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89104449 - } - }, - { - "id": 89104426, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.402338, - 51.1058904 - ], - [ - 3.4221633, - 51.1058904 - ], - [ - 3.4221633, - 51.1115073 - ], - [ - 3.402338, - 51.1115073 - ], - [ - 3.402338, - 51.1058904 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89104426 - } - }, - { - "id": 89104410, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4023929, - 51.1114488 - ], - [ - 3.4023929, - 51.1114488 - ], - [ - 3.4023929, - 51.1114488 - ], - [ - 3.4023929, - 51.1114488 - ], - [ - 3.4023929, - 51.1114488 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89104410 - } - }, - { - "id": 89104320, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1768785, - 51.2531839 - ], - [ - 3.1768785, - 51.2531839 - ], - [ - 3.1768785, - 51.2531839 - ], - [ - 3.1768785, - 51.2531839 - ], - [ - 3.1768785, - 51.2531839 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89104320 - } - }, - { - "id": 89104278, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1768785, - 51.2531839 - ], - [ - 3.1768785, - 51.2531839 - ], - [ - 3.1768785, - 51.2531839 - ], - [ - 3.1768785, - 51.2531839 - ], - [ - 3.1768785, - 51.2531839 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89104278 - } - }, - { - "id": 89104235, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1901945, - 51.1229593 - ], - [ - 3.1901945, - 51.1229593 - ], - [ - 3.1901945, - 51.1229593 - ], - [ - 3.1901945, - 51.1229593 - ], - [ - 3.1901945, - 51.1229593 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89104235 - } - }, - { - "id": 89102969, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2227391, - 51.2065955 - ], - [ - 3.2227391, - 51.2065955 - ], - [ - 3.2227391, - 51.2065955 - ], - [ - 3.2227391, - 51.2065955 - ], - [ - 3.2227391, - 51.2065955 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89102969 - } - }, - { - "id": 89102934, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 31.1099339, - 70.3703315 - ], - [ - 31.1099339, - 70.3703315 - ], - [ - 31.1099339, - 70.3703315 - ], - [ - 31.1099339, - 70.3703315 - ], - [ - 31.1099339, - 70.3703315 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89102934 - } - }, - { - "id": 89102835, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1108904, - 51.2049475 - ], - [ - 3.1108904, - 51.2049475 - ], - [ - 3.1108904, - 51.2049475 - ], - [ - 3.1108904, - 51.2049475 - ], - [ - 3.1108904, - 51.2049475 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89102835 - } - }, - { - "id": 89102790, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1509752, - 51.2120753 - ], - [ - 3.1509752, - 51.2120753 - ], - [ - 3.1509752, - 51.2120753 - ], - [ - 3.1509752, - 51.2120753 - ], - [ - 3.1509752, - 51.2120753 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89102790 - } - }, - { - "id": 89102424, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1730194, - 51.1109037 - ], - [ - 3.1730194, - 51.1109037 - ], - [ - 3.1730194, - 51.1109037 - ], - [ - 3.1730194, - 51.1109037 - ], - [ - 3.1730194, - 51.1109037 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89102424 - } - }, - { - "id": 89102251, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2389458, - 50.7346319 - ], - [ - 4.2389458, - 50.7346319 - ], - [ - 4.2389458, - 50.7346319 - ], - [ - 4.2389458, - 50.7346319 - ], - [ - 4.2389458, - 50.7346319 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89102251 - } - }, - { - "id": 89102045, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2322594, - 50.7335461 - ], - [ - 4.2322594, - 50.7335461 - ], - [ - 4.2322594, - 50.7335461 - ], - [ - 4.2322594, - 50.7335461 - ], - [ - 4.2322594, - 50.7335461 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89102045 - } - }, - { - "id": 89101863, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.2096589, - 59.7362226 - ], - [ - 10.2096589, - 59.7362226 - ], - [ - 10.2096589, - 59.7362226 - ], - [ - 10.2096589, - 59.7362226 - ], - [ - 10.2096589, - 59.7362226 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89101863 - } - }, - { - "id": 89101785, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2204532, - 50.748126 - ], - [ - 4.2204532, - 50.748126 - ], - [ - 4.2204532, - 50.748126 - ], - [ - 4.2204532, - 50.748126 - ], - [ - 4.2204532, - 50.748126 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89101785 - } - }, - { - "id": 89101713, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.2597331, - 60.1712451 - ], - [ - 10.2597331, - 60.1712451 - ], - [ - 10.2597331, - 60.1712451 - ], - [ - 10.2597331, - 60.1712451 - ], - [ - 10.2597331, - 60.1712451 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89101713 - } - }, - { - "id": 89101381, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.3890297, - 60.2401427 - ], - [ - 10.3890297, - 60.2401427 - ], - [ - 10.3890297, - 60.2401427 - ], - [ - 10.3890297, - 60.2401427 - ], - [ - 10.3890297, - 60.2401427 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89101381 - } - }, - { - "id": 89101354, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.3890297, - 60.2401427 - ], - [ - 10.3890297, - 60.2401427 - ], - [ - 10.3890297, - 60.2401427 - ], - [ - 10.3890297, - 60.2401427 - ], - [ - 10.3890297, - 60.2401427 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89101354 - } - }, - { - "id": 89101346, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.3890297, - 60.2401427 - ], - [ - 10.3890297, - 60.2401427 - ], - [ - 10.3890297, - 60.2401427 - ], - [ - 10.3890297, - 60.2401427 - ], - [ - 10.3890297, - 60.2401427 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89101346 - } - }, - { - "id": 89101149, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.5006364, - 60.422103 - ], - [ - 10.5006364, - 60.422103 - ], - [ - 10.5006364, - 60.422103 - ], - [ - 10.5006364, - 60.422103 - ], - [ - 10.5006364, - 60.422103 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89101149 - } - }, - { - "id": 89101117, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.5006364, - 60.422103 - ], - [ - 10.5006364, - 60.422103 - ], - [ - 10.5006364, - 60.422103 - ], - [ - 10.5006364, - 60.422103 - ], - [ - 10.5006364, - 60.422103 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89101117 - } - }, - { - "id": 89099807, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2212821, - 51.2090847 - ], - [ - 3.2212821, - 51.2090847 - ], - [ - 3.2212821, - 51.2090847 - ], - [ - 3.2212821, - 51.2090847 - ], - [ - 3.2212821, - 51.2090847 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89099807 - } - }, - { - "id": 89099737, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.219121, - 51.2099687 - ], - [ - 3.219121, - 51.2099687 - ], - [ - 3.219121, - 51.2099687 - ], - [ - 3.219121, - 51.2099687 - ], - [ - 3.219121, - 51.2099687 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89099737 - } - }, - { - "id": 89099143, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2184148, - 51.2135223 - ], - [ - 3.2184148, - 51.2135223 - ], - [ - 3.2184148, - 51.2135223 - ], - [ - 3.2184148, - 51.2135223 - ], - [ - 3.2184148, - 51.2135223 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89099143 - } - }, - { - "id": 89099112, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2184148, - 51.2135223 - ], - [ - 3.2184148, - 51.2135223 - ], - [ - 3.2184148, - 51.2135223 - ], - [ - 3.2184148, - 51.2135223 - ], - [ - 3.2184148, - 51.2135223 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89099112 - } - }, - { - "id": 89096354, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2444, - 51.1929219 - ], - [ - 3.2444, - 51.1929219 - ], - [ - 3.2444, - 51.1929219 - ], - [ - 3.2444, - 51.1929219 - ], - [ - 3.2444, - 51.1929219 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89096354 - } - }, - { - "id": 89096346, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2444, - 51.1929219 - ], - [ - 3.2444, - 51.1929219 - ], - [ - 3.2444, - 51.1929219 - ], - [ - 3.2444, - 51.1929219 - ], - [ - 3.2444, - 51.1929219 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89096346 - } - }, - { - "id": 89087248, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6189723, - 51.1639525 - ], - [ - 3.6393803, - 51.1639525 - ], - [ - 3.6393803, - 51.1741722 - ], - [ - 3.6189723, - 51.1741722 - ], - [ - 3.6189723, - 51.1639525 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89087248 - } - }, - { - "id": 89087207, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6189723, - 51.1639525 - ], - [ - 3.6393803, - 51.1639525 - ], - [ - 3.6393803, - 51.1741722 - ], - [ - 3.6189723, - 51.1741722 - ], - [ - 3.6189723, - 51.1639525 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89087207 - } - }, - { - "id": 89087139, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6189723, - 51.1639525 - ], - [ - 3.6393803, - 51.1639525 - ], - [ - 3.6393803, - 51.1741722 - ], - [ - 3.6189723, - 51.1741722 - ], - [ - 3.6189723, - 51.1639525 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89087139 - } - }, - { - "id": 89086959, - "type": "Feature", - "geometry": null, - "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:34:54Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 89086959 - } - }, - { - "id": 89086868, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6189723, - 51.1639525 - ], - [ - 3.6393803, - 51.1639525 - ], - [ - 3.6393803, - 51.1741722 - ], - [ - 3.6189723, - 51.1741722 - ], - [ - 3.6189723, - 51.1639525 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89086868 - } - }, - { - "id": 89086780, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5478832, - 51.1570311 - ], - [ - 3.5842224, - 51.1570311 - ], - [ - 3.5842224, - 51.1710918 - ], - [ - 3.5478832, - 51.1710918 - ], - [ - 3.5478832, - 51.1570311 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89086780 - } - }, - { - "id": 89086727, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5478832, - 51.1570311 - ], - [ - 3.5842224, - 51.1570311 - ], - [ - 3.5842224, - 51.1710918 - ], - [ - 3.5478832, - 51.1710918 - ], - [ - 3.5478832, - 51.1570311 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89086727 - } - }, - { - "id": 89086689, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5478832, - 51.1570311 - ], - [ - 3.5842224, - 51.1570311 - ], - [ - 3.5842224, - 51.1710918 - ], - [ - 3.5478832, - 51.1710918 - ], - [ - 3.5478832, - 51.1570311 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89086689 - } - }, - { - "id": 89086647, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5478832, - 51.1570311 - ], - [ - 3.5842224, - 51.1570311 - ], - [ - 3.5842224, - 51.1710918 - ], - [ - 3.5478832, - 51.1710918 - ], - [ - 3.5478832, - 51.1570311 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89086647 - } - }, - { - "id": 89074899, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4602323, - 50.9413095 - ], - [ - 5.6246357, - 50.9413095 - ], - [ - 5.6246357, - 50.9726524 - ], - [ - 5.4602323, - 50.9726524 - ], - [ - 5.4602323, - 50.9413095 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 89074899 - } - }, - { - "id": 89061220, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2197988, - 51.2156645 - ], - [ - 3.2197988, - 51.2156645 - ], - [ - 3.2197988, - 51.2156645 - ], - [ - 3.2197988, - 51.2156645 - ], - [ - 3.2197988, - 51.2156645 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89061220 - } - }, - { - "id": 89059723, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198417, - 51.2156611 - ], - [ - 3.2198417, - 51.2156611 - ], - [ - 3.2198417, - 51.2156611 - ], - [ - 3.2198417, - 51.2156611 - ], - [ - 3.2198417, - 51.2156611 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89059723 - } - }, - { - "id": 89054743, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.219898, - 51.215688 - ], - [ - 3.219898, - 51.215688 - ], - [ - 3.219898, - 51.215688 - ], - [ - 3.219898, - 51.215688 - ], - [ - 3.219898, - 51.215688 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89054743 - } - }, - { - "id": 89052742, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2177094, - 51.2143136 - ], - [ - 3.2177094, - 51.2143136 - ], - [ - 3.2177094, - 51.2143136 - ], - [ - 3.2177094, - 51.2143136 - ], - [ - 3.2177094, - 51.2143136 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89052742 - } - }, - { - "id": 89052737, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2177094, - 51.2143136 - ], - [ - 3.2177094, - 51.2143136 - ], - [ - 3.2177094, - 51.2143136 - ], - [ - 3.2177094, - 51.2143136 - ], - [ - 3.2177094, - 51.2143136 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 89052737 - } - }, - { - "id": 88990444, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.0492688, - 59.9565895 - ], - [ - 11.0492688, - 59.9565895 - ], - [ - 11.0492688, - 59.9565895 - ], - [ - 11.0492688, - 59.9565895 - ], - [ - 11.0492688, - 59.9565895 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88990444 - } - }, - { - "id": 88990436, - "type": "Feature", - "geometry": null, - "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:22Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88990436 - } - }, - { - "id": 88990428, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.0492688, - 59.9565895 - ], - [ - 11.0492688, - 59.9565895 - ], - [ - 11.0492688, - 59.9565895 - ], - [ - 11.0492688, - 59.9565895 - ], - [ - 11.0492688, - 59.9565895 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88990428 - } - }, - { - "id": 88990398, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.0492688, - 59.9565895 - ], - [ - 11.0492688, - 59.9565895 - ], - [ - 11.0492688, - 59.9565895 - ], - [ - 11.0492688, - 59.9565895 - ], - [ - 11.0492688, - 59.9565895 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88990398 - } - }, - { - "id": 88990354, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.0492688, - 59.9565895 - ], - [ - 11.0492688, - 59.9565895 - ], - [ - 11.0492688, - 59.9565895 - ], - [ - 11.0492688, - 59.9565895 - ], - [ - 11.0492688, - 59.9565895 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88990354 - } - }, - { - "id": 88990297, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.0492688, - 59.9565895 - ], - [ - 11.0492688, - 59.9565895 - ], - [ - 11.0492688, - 59.9565895 - ], - [ - 11.0492688, - 59.9565895 - ], - [ - 11.0492688, - 59.9565895 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88990297 - } - }, - { - "id": 88985027, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9749238, - 51.0711133 - ], - [ - 2.9760222, - 51.0711133 - ], - [ - 2.9760222, - 51.0718594 - ], - [ - 2.9749238, - 51.0718594 - ], - [ - 2.9749238, - 51.0711133 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88985027 - } - }, - { - "id": 88984933, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.951033, - 51.0706896 - ], - [ - 2.9706338, - 51.0706896 - ], - [ - 2.9706338, - 51.0771911 - ], - [ - 2.951033, - 51.0771911 - ], - [ - 2.951033, - 51.0706896 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88984933 - } - }, - { - "id": 88984719, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9634507, - 51.0671638 - ], - [ - 2.9705292, - 51.0671638 - ], - [ - 2.9705292, - 51.0715793 - ], - [ - 2.9634507, - 51.0715793 - ], - [ - 2.9634507, - 51.0671638 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88984719 - } - }, - { - "id": 88981788, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "quarcks", - "uid": "11605714", - "editor": "MapComplete 0.0.0", - "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", - "comments_count": null, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2020-08-05T12:17:02Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88981788 - } - }, - { - "id": 88981786, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "quarcks", - "uid": "11605714", - "editor": "MapComplete 0.0.0", - "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", - "comments_count": null, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2020-08-05T12:16:59Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88981786 - } - }, - { - "id": 88981782, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "quarcks", - "uid": "11605714", - "editor": "MapComplete 0.0.0", - "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", - "comments_count": null, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2020-08-05T12:16:58Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88981782 - } - }, - { - "id": 88981774, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "quarcks", - "uid": "11605714", - "editor": "MapComplete 0.0.0", - "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", - "comments_count": null, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2020-08-05T12:16:49Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88981774 - } - }, - { - "id": 88981764, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "quarcks", - "uid": "11605714", - "editor": "MapComplete 0.0.0", - "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", - "comments_count": null, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2020-08-05T12:16:34Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88981764 - } - }, - { - "id": 88981760, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "quarcks", - "uid": "11605714", - "editor": "MapComplete 0.0.0", - "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", - "comments_count": null, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2020-08-05T12:16:27Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88981760 - } - }, - { - "id": 88981754, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "quarcks", - "uid": "11605714", - "editor": "MapComplete 0.0.0", - "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", - "comments_count": null, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2020-08-05T12:16:20Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88981754 - } - }, - { - "id": 88981747, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "quarcks", - "uid": "11605714", - "editor": "MapComplete 0.0.0", - "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", - "comments_count": null, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2020-08-05T12:16:16Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88981747 - } - }, - { - "id": 88981746, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "quarcks", - "uid": "11605714", - "editor": "MapComplete 0.0.0", - "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", - "comments_count": null, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2020-08-05T12:16:16Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88981746 - } - }, - { - "id": 88981735, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "quarcks", - "uid": "11605714", - "editor": "MapComplete 0.0.0", - "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", - "comments_count": null, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2020-08-05T12:16:06Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88981735 - } - }, - { - "id": 88981729, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "quarcks", - "uid": "11605714", - "editor": "MapComplete 0.0.0", - "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", - "comments_count": null, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2020-08-05T12:15:58Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88981729 - } - }, - { - "id": 88981728, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "quarcks", - "uid": "11605714", - "editor": "MapComplete 0.0.0", - "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", - "comments_count": null, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2020-08-05T12:15:53Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88981728 - } - }, - { - "id": 88981727, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "quarcks", - "uid": "11605714", - "editor": "MapComplete 0.0.0", - "comment": "Beantwoorden van vragen met #MapComplete voor vragenset #cyclofix", - "comments_count": null, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2020-08-05T12:15:53Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88981727 - } - }, - { - "id": 88978711, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0425504, - 50.7768575 - ], - [ - 3.0425504, - 50.7768575 - ], - [ - 3.0425504, - 50.7768575 - ], - [ - 3.0425504, - 50.7768575 - ], - [ - 3.0425504, - 50.7768575 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88978711 - } - }, - { - "id": 88978682, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0425504, - 50.7768575 - ], - [ - 3.0425504, - 50.7768575 - ], - [ - 3.0425504, - 50.7768575 - ], - [ - 3.0425504, - 50.7768575 - ], - [ - 3.0425504, - 50.7768575 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88978682 - } - }, - { - "id": 88978650, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0425504, - 50.7768575 - ], - [ - 3.0425504, - 50.7768575 - ], - [ - 3.0425504, - 50.7768575 - ], - [ - 3.0425504, - 50.7768575 - ], - [ - 3.0425504, - 50.7768575 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88978650 - } - }, - { - "id": 88945083, - "type": "Feature", - "geometry": null, - "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:23:16Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88945083 - } - }, - { - "id": 88945041, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9233569, - 51.1920512 - ], - [ - 4.9486756, - 51.1920512 - ], - [ - 4.9486756, - 51.2035083 - ], - [ - 4.9233569, - 51.2035083 - ], - [ - 4.9233569, - 51.1920512 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88945041 - } - }, - { - "id": 88944951, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8660017, - 51.1872309 - ], - [ - 4.8853111, - 51.1872309 - ], - [ - 4.8853111, - 51.1946614 - ], - [ - 4.8660017, - 51.1946614 - ], - [ - 4.8660017, - 51.1872309 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88944951 - } - }, - { - "id": 88944926, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8255602, - 51.1898735 - ], - [ - 4.9676747, - 51.1898735 - ], - [ - 4.9676747, - 51.2526181 - ], - [ - 4.8255602, - 51.2526181 - ], - [ - 4.8255602, - 51.1898735 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88944926 - } - }, - { - "id": 88940196, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4494629, - 50.7663223 - ], - [ - 4.4494629, - 50.7663223 - ], - [ - 4.4494629, - 50.7663223 - ], - [ - 4.4494629, - 50.7663223 - ], - [ - 4.4494629, - 50.7663223 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88940196 - } - }, - { - "id": 88940187, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4494629, - 50.7663223 - ], - [ - 4.4494629, - 50.7663223 - ], - [ - 4.4494629, - 50.7663223 - ], - [ - 4.4494629, - 50.7663223 - ], - [ - 4.4494629, - 50.7663223 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88940187 - } - }, - { - "id": 88940182, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4494629, - 50.7663223 - ], - [ - 4.4494629, - 50.7663223 - ], - [ - 4.4494629, - 50.7663223 - ], - [ - 4.4494629, - 50.7663223 - ], - [ - 4.4494629, - 50.7663223 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88940182 - } - }, - { - "id": 88940172, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4494629, - 50.7663223 - ], - [ - 4.4494629, - 50.7663223 - ], - [ - 4.4494629, - 50.7663223 - ], - [ - 4.4494629, - 50.7663223 - ], - [ - 4.4494629, - 50.7663223 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88940172 - } - }, - { - "id": 88937201, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2421925, - 50.7345615 - ], - [ - 4.2421925, - 50.7345615 - ], - [ - 4.2421925, - 50.7345615 - ], - [ - 4.2421925, - 50.7345615 - ], - [ - 4.2421925, - 50.7345615 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88937201 - } - }, - { - "id": 88937197, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2421925, - 50.7345615 - ], - [ - 4.2421925, - 50.7345615 - ], - [ - 4.2421925, - 50.7345615 - ], - [ - 4.2421925, - 50.7345615 - ], - [ - 4.2421925, - 50.7345615 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88937197 - } - }, - { - "id": 88912957, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2209914, - 50.7147772 - ], - [ - 4.2209914, - 50.7147772 - ], - [ - 4.2209914, - 50.7147772 - ], - [ - 4.2209914, - 50.7147772 - ], - [ - 4.2209914, - 50.7147772 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88912957 - } - }, - { - "id": 88912716, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2204532, - 50.748126 - ], - [ - 4.2204532, - 50.748126 - ], - [ - 4.2204532, - 50.748126 - ], - [ - 4.2204532, - 50.748126 - ], - [ - 4.2204532, - 50.748126 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88912716 - } - }, - { - "id": 88912135, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.7609662, - 59.9253398 - ], - [ - 10.7609662, - 59.9253398 - ], - [ - 10.7609662, - 59.9253398 - ], - [ - 10.7609662, - 59.9253398 - ], - [ - 10.7609662, - 59.9253398 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88912135 - } - }, - { - "id": 88912130, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.7609662, - 59.9253398 - ], - [ - 10.7609662, - 59.9253398 - ], - [ - 10.7609662, - 59.9253398 - ], - [ - 10.7609662, - 59.9253398 - ], - [ - 10.7609662, - 59.9253398 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88912130 - } - }, - { - "id": 88912126, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.7609662, - 59.9253398 - ], - [ - 10.7609662, - 59.9253398 - ], - [ - 10.7609662, - 59.9253398 - ], - [ - 10.7609662, - 59.9253398 - ], - [ - 10.7609662, - 59.9253398 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88912126 - } - }, - { - "id": 88912116, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.7609662, - 59.9253398 - ], - [ - 10.7609662, - 59.9253398 - ], - [ - 10.7609662, - 59.9253398 - ], - [ - 10.7609662, - 59.9253398 - ], - [ - 10.7609662, - 59.9253398 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88912116 - } - }, - { - "id": 88912044, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.7609662, - 59.9253398 - ], - [ - 10.7609662, - 59.9253398 - ], - [ - 10.7609662, - 59.9253398 - ], - [ - 10.7609662, - 59.9253398 - ], - [ - 10.7609662, - 59.9253398 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88912044 - } - }, - { - "id": 88911817, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.7609662, - 59.9253398 - ], - [ - 10.7609662, - 59.9253398 - ], - [ - 10.7609662, - 59.9253398 - ], - [ - 10.7609662, - 59.9253398 - ], - [ - 10.7609662, - 59.9253398 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88911817 - } - }, - { - "id": 88911794, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.7609662, - 59.9253398 - ], - [ - 10.7609662, - 59.9253398 - ], - [ - 10.7609662, - 59.9253398 - ], - [ - 10.7609662, - 59.9253398 - ], - [ - 10.7609662, - 59.9253398 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88911794 - } - }, - { - "id": 88911435, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2209923, - 50.7147216 - ], - [ - 4.2209923, - 50.7147216 - ], - [ - 4.2209923, - 50.7147216 - ], - [ - 4.2209923, - 50.7147216 - ], - [ - 4.2209923, - 50.7147216 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88911435 - } - }, - { - "id": 88911393, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2209914, - 50.7147772 - ], - [ - 4.2209914, - 50.7147772 - ], - [ - 4.2209914, - 50.7147772 - ], - [ - 4.2209914, - 50.7147772 - ], - [ - 4.2209914, - 50.7147772 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88911393 - } - }, - { - "id": 88911383, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2209914, - 50.7147772 - ], - [ - 4.2209914, - 50.7147772 - ], - [ - 4.2209914, - 50.7147772 - ], - [ - 4.2209914, - 50.7147772 - ], - [ - 4.2209914, - 50.7147772 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88911383 - } - }, - { - "id": 88910490, - "type": "Feature", - "geometry": null, - "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:50Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88910490 - } - }, - { - "id": 88910488, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2204532, - 50.748126 - ], - [ - 4.2204532, - 50.748126 - ], - [ - 4.2204532, - 50.748126 - ], - [ - 4.2204532, - 50.748126 - ], - [ - 4.2204532, - 50.748126 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88910488 - } - }, - { - "id": 88892458, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8879532, - 50.8489938 - ], - [ - 2.8879532, - 50.8489938 - ], - [ - 2.8879532, - 50.8489938 - ], - [ - 2.8879532, - 50.8489938 - ], - [ - 2.8879532, - 50.8489938 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88892458 - } - }, - { - "id": 88892445, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8879532, - 50.8489938 - ], - [ - 2.8879532, - 50.8489938 - ], - [ - 2.8879532, - 50.8489938 - ], - [ - 2.8879532, - 50.8489938 - ], - [ - 2.8879532, - 50.8489938 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88892445 - } - }, - { - "id": 88892415, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8879532, - 50.8489938 - ], - [ - 2.8879532, - 50.8489938 - ], - [ - 2.8879532, - 50.8489938 - ], - [ - 2.8879532, - 50.8489938 - ], - [ - 2.8879532, - 50.8489938 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88892415 - } - }, - { - "id": 88882756, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8879184, - 50.8499336 - ], - [ - 2.8879184, - 50.8499336 - ], - [ - 2.8879184, - 50.8499336 - ], - [ - 2.8879184, - 50.8499336 - ], - [ - 2.8879184, - 50.8499336 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88882756 - } - }, - { - "id": 88882696, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8879184, - 50.8499336 - ], - [ - 2.8879184, - 50.8499336 - ], - [ - 2.8879184, - 50.8499336 - ], - [ - 2.8879184, - 50.8499336 - ], - [ - 2.8879184, - 50.8499336 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88882696 - } - }, - { - "id": 88882672, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8879184, - 50.8499336 - ], - [ - 2.8879184, - 50.8499336 - ], - [ - 2.8879184, - 50.8499336 - ], - [ - 2.8879184, - 50.8499336 - ], - [ - 2.8879184, - 50.8499336 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88882672 - } - }, - { - "id": 88878778, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2209923, - 50.7147216 - ], - [ - 4.2209923, - 50.7147216 - ], - [ - 4.2209923, - 50.7147216 - ], - [ - 4.2209923, - 50.7147216 - ], - [ - 4.2209923, - 50.7147216 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88878778 - } - }, - { - "id": 88878766, - "type": "Feature", - "geometry": null, - "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:25Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88878766 - } - }, - { - "id": 88878757, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2209923, - 50.7147216 - ], - [ - 4.2209923, - 50.7147216 - ], - [ - 4.2209923, - 50.7147216 - ], - [ - 4.2209923, - 50.7147216 - ], - [ - 4.2209923, - 50.7147216 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88878757 - } - }, - { - "id": 88878735, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2209923, - 50.7147216 - ], - [ - 4.2209923, - 50.7147216 - ], - [ - 4.2209923, - 50.7147216 - ], - [ - 4.2209923, - 50.7147216 - ], - [ - 4.2209923, - 50.7147216 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88878735 - } - }, - { - "id": 88878713, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2210057, - 50.7147505 - ], - [ - 4.2210057, - 50.7147505 - ], - [ - 4.2210057, - 50.7147505 - ], - [ - 4.2210057, - 50.7147505 - ], - [ - 4.2210057, - 50.7147505 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88878713 - } - }, - { - "id": 88878708, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2210057, - 50.7147505 - ], - [ - 4.2210057, - 50.7147505 - ], - [ - 4.2210057, - 50.7147505 - ], - [ - 4.2210057, - 50.7147505 - ], - [ - 4.2210057, - 50.7147505 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88878708 - } - }, - { - "id": 88878705, - "type": "Feature", - "geometry": null, - "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:59Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88878705 - } - }, - { - "id": 88878703, - "type": "Feature", - "geometry": null, - "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:57Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88878703 - } - }, - { - "id": 88878702, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88878702 - } - }, - { - "id": 88878701, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2210057, - 50.7147505 - ], - [ - 4.2210057, - 50.7147505 - ], - [ - 4.2210057, - 50.7147505 - ], - [ - 4.2210057, - 50.7147505 - ], - [ - 4.2210057, - 50.7147505 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88878701 - } - }, - { - "id": 88878686, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4530351, - 51.2606793 - ], - [ - 4.4625464, - 51.2606793 - ], - [ - 4.4625464, - 51.2661897 - ], - [ - 4.4530351, - 51.2661897 - ], - [ - 4.4530351, - 51.2606793 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88878686 - } - }, - { - "id": 88878678, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2210057, - 50.7147505 - ], - [ - 4.2210057, - 50.7147505 - ], - [ - 4.2210057, - 50.7147505 - ], - [ - 4.2210057, - 50.7147505 - ], - [ - 4.2210057, - 50.7147505 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88878678 - } - }, - { - "id": 88878603, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4530351, - 51.2606793 - ], - [ - 4.4625464, - 51.2606793 - ], - [ - 4.4625464, - 51.2661897 - ], - [ - 4.4530351, - 51.2661897 - ], - [ - 4.4530351, - 51.2606793 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88878603 - } - }, - { - "id": 88877940, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2204532, - 50.748126 - ], - [ - 4.2204532, - 50.748126 - ], - [ - 4.2204532, - 50.748126 - ], - [ - 4.2204532, - 50.748126 - ], - [ - 4.2204532, - 50.748126 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88877940 - } - }, - { - "id": 88877938, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2204532, - 50.748126 - ], - [ - 4.2204532, - 50.748126 - ], - [ - 4.2204532, - 50.748126 - ], - [ - 4.2204532, - 50.748126 - ], - [ - 4.2204532, - 50.748126 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88877938 - } - }, - { - "id": 88877934, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2204532, - 50.748126 - ], - [ - 4.2204532, - 50.748126 - ], - [ - 4.2204532, - 50.748126 - ], - [ - 4.2204532, - 50.748126 - ], - [ - 4.2204532, - 50.748126 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88877934 - } - }, - { - "id": 88877931, - "type": "Feature", - "geometry": null, - "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:21Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88877931 - } - }, - { - "id": 88877903, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2204532, - 50.748126 - ], - [ - 4.2204532, - 50.748126 - ], - [ - 4.2204532, - 50.748126 - ], - [ - 4.2204532, - 50.748126 - ], - [ - 4.2204532, - 50.748126 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88877903 - } - }, - { - "id": 88876365, - "type": "Feature", - "geometry": null, - "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:58Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88876365 - } - }, - { - "id": 88876343, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2050544, - 51.0971013 - ], - [ - 3.2059051, - 51.0971013 - ], - [ - 3.2059051, - 51.0976689 - ], - [ - 3.2050544, - 51.0976689 - ], - [ - 3.2050544, - 51.0971013 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88876343 - } - }, - { - "id": 88876310, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2050544, - 51.0971013 - ], - [ - 3.2059051, - 51.0971013 - ], - [ - 3.2059051, - 51.0976689 - ], - [ - 3.2050544, - 51.0976689 - ], - [ - 3.2050544, - 51.0971013 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88876310 - } - }, - { - "id": 88876053, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1758559, - 51.1102946 - ], - [ - 3.1802386, - 51.1102946 - ], - [ - 3.1802386, - 51.1126045 - ], - [ - 3.1758559, - 51.1126045 - ], - [ - 3.1758559, - 51.1102946 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88876053 - } - }, - { - "id": 88872316, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.408236, - 50.8637499 - ], - [ - 4.4103253, - 50.8637499 - ], - [ - 4.4103253, - 50.8659151 - ], - [ - 4.408236, - 50.8659151 - ], - [ - 4.408236, - 50.8637499 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88872316 - } - }, - { - "id": 88849217, - "type": "Feature", - "geometry": null, - "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:36:22Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88849217 - } - }, - { - "id": 88849201, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0977383, - 50.7746413 - ], - [ - 4.1061072, - 50.7746413 - ], - [ - 4.1061072, - 50.778522 - ], - [ - 4.0977383, - 50.778522 - ], - [ - 4.0977383, - 50.7746413 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88849201 - } - }, - { - "id": 88849120, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0874718, - 50.7966608 - ], - [ - 4.0972942, - 50.7966608 - ], - [ - 4.0972942, - 50.7999714 - ], - [ - 4.0874718, - 50.7999714 - ], - [ - 4.0874718, - 50.7966608 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88849120 - } - }, - { - "id": 88849083, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0874669, - 50.7934651 - ], - [ - 4.0973987, - 50.7934651 - ], - [ - 4.0973987, - 50.8034684 - ], - [ - 4.0874669, - 50.8034684 - ], - [ - 4.0874669, - 50.7934651 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88849083 - } - }, - { - "id": 88849032, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0874718, - 50.7966608 - ], - [ - 4.089183, - 50.7966608 - ], - [ - 4.089183, - 50.797581 - ], - [ - 4.0874718, - 50.797581 - ], - [ - 4.0874718, - 50.7966608 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88849032 - } - }, - { - "id": 88847542, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1090798, - 50.7857738 - ], - [ - 4.1090798, - 50.7857738 - ], - [ - 4.1090798, - 50.7857738 - ], - [ - 4.1090798, - 50.7857738 - ], - [ - 4.1090798, - 50.7857738 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88847542 - } - }, - { - "id": 88846225, - "type": "Feature", - "geometry": null, - "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:22:17Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88846225 - } - }, - { - "id": 88846207, - "type": "Feature", - "geometry": null, - "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:21:33Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88846207 - } - }, - { - "id": 88846161, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4389589, - 51.0847293 - ], - [ - 3.4439552, - 51.0847293 - ], - [ - 3.4439552, - 51.093891 - ], - [ - 3.4389589, - 51.093891 - ], - [ - 3.4389589, - 51.0847293 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88846161 - } - }, - { - "id": 88846085, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4406497, - 51.0870023 - ], - [ - 3.442237, - 51.0870023 - ], - [ - 3.442237, - 51.0900727 - ], - [ - 3.4406497, - 51.0900727 - ], - [ - 3.4406497, - 51.0870023 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88846085 - } - }, - { - "id": 88846067, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4334003, - 51.0810927 - ], - [ - 3.4439552, - 51.0810927 - ], - [ - 3.4439552, - 51.0940433 - ], - [ - 3.4334003, - 51.0940433 - ], - [ - 3.4334003, - 51.0810927 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88846067 - } - }, - { - "id": 88846029, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4334003, - 51.0801936 - ], - [ - 3.4424014, - 51.0801936 - ], - [ - 3.4424014, - 51.0819069 - ], - [ - 3.4334003, - 51.0819069 - ], - [ - 3.4334003, - 51.0801936 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88846029 - } - }, - { - "id": 88845992, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4279579, - 51.0853776 - ], - [ - 3.4286948, - 51.0853776 - ], - [ - 3.4286948, - 51.0862556 - ], - [ - 3.4279579, - 51.0862556 - ], - [ - 3.4279579, - 51.0853776 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88845992 - } - }, - { - "id": 88845970, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4271181, - 51.0817407 - ], - [ - 3.4334415, - 51.0817407 - ], - [ - 3.4334415, - 51.0842846 - ], - [ - 3.4271181, - 51.0842846 - ], - [ - 3.4271181, - 51.0817407 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88845970 - } - }, - { - "id": 88845939, - "type": "Feature", - "geometry": null, - "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:11:04Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88845939 - } - }, - { - "id": 88845906, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4737976, - 51.0670087 - ], - [ - 3.4763733, - 51.0670087 - ], - [ - 3.4763733, - 51.0690491 - ], - [ - 3.4737976, - 51.0690491 - ], - [ - 3.4737976, - 51.0670087 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88845906 - } - }, - { - "id": 88845874, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4761168, - 51.067207 - ], - [ - 3.4780988, - 51.067207 - ], - [ - 3.4780988, - 51.0692793 - ], - [ - 3.4761168, - 51.0692793 - ], - [ - 3.4761168, - 51.067207 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88845874 - } - }, - { - "id": 88845776, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4588736, - 51.0705568 - ], - [ - 3.485425, - 51.0705568 - ], - [ - 3.485425, - 51.0794953 - ], - [ - 3.4588736, - 51.0794953 - ], - [ - 3.4588736, - 51.0705568 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88845776 - } - }, - { - "id": 88845735, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4807877, - 51.0720423 - ], - [ - 3.4856375, - 51.0720423 - ], - [ - 3.4856375, - 51.0779223 - ], - [ - 3.4807877, - 51.0779223 - ], - [ - 3.4807877, - 51.0720423 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88845735 - } - }, - { - "id": 88845709, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4384129, - 51.0833903 - ], - [ - 3.4392684, - 51.0833903 - ], - [ - 3.4392684, - 51.0838901 - ], - [ - 3.4384129, - 51.0838901 - ], - [ - 3.4384129, - 51.0833903 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88845709 - } - }, - { - "id": 88845697, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4296488, - 51.0855956 - ], - [ - 3.4326772, - 51.0855956 - ], - [ - 3.4326772, - 51.0896841 - ], - [ - 3.4296488, - 51.0896841 - ], - [ - 3.4296488, - 51.0855956 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88845697 - } - }, - { - "id": 88845637, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4288976, - 51.0874827 - ], - [ - 3.4326772, - 51.0874827 - ], - [ - 3.4326772, - 51.0889495 - ], - [ - 3.4288976, - 51.0889495 - ], - [ - 3.4288976, - 51.0874827 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88845637 - } - }, - { - "id": 88845602, - "type": "Feature", - "geometry": null, - "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-02T16:59:23Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 88845602 - } - }, - { - "id": 88837531, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4290241, - 51.08732 - ], - [ - 3.4341139, - 51.08732 - ], - [ - 3.4341139, - 51.0904012 - ], - [ - 3.4290241, - 51.0904012 - ], - [ - 3.4290241, - 51.08732 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88837531 - } - }, - { - "id": 88835815, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2016697, - 51.1277849 - ], - [ - 4.2016697, - 51.1277849 - ], - [ - 4.2016697, - 51.1277849 - ], - [ - 4.2016697, - 51.1277849 - ], - [ - 4.2016697, - 51.1277849 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88835815 - } - }, - { - "id": 88835732, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2348408, - 51.1973135 - ], - [ - 4.235898, - 51.1973135 - ], - [ - 4.235898, - 51.197938 - ], - [ - 4.2348408, - 51.197938 - ], - [ - 4.2348408, - 51.1973135 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88835732 - } - }, - { - "id": 88835686, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2386731, - 51.1951568 - ], - [ - 4.2429122, - 51.1951568 - ], - [ - 4.2429122, - 51.1984721 - ], - [ - 4.2386731, - 51.1984721 - ], - [ - 4.2386731, - 51.1951568 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88835686 - } - }, - { - "id": 88835619, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.170531, - 51.1159794 - ], - [ - 4.1743762, - 51.1159794 - ], - [ - 4.1743762, - 51.1221402 - ], - [ - 4.170531, - 51.1221402 - ], - [ - 4.170531, - 51.1159794 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88835619 - } - }, - { - "id": 88835559, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1928461, - 51.1235828 - ], - [ - 4.1942577, - 51.1235828 - ], - [ - 4.1942577, - 51.1244402 - ], - [ - 4.1928461, - 51.1244402 - ], - [ - 4.1928461, - 51.1235828 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88835559 - } - }, - { - "id": 88835506, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2057537, - 51.1247689 - ], - [ - 4.2089589, - 51.1247689 - ], - [ - 4.2089589, - 51.1258091 - ], - [ - 4.2057537, - 51.1258091 - ], - [ - 4.2057537, - 51.1247689 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88835506 - } - }, - { - "id": 88835384, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2218077, - 51.12779 - ], - [ - 4.2224112, - 51.12779 - ], - [ - 4.2224112, - 51.1285794 - ], - [ - 4.2218077, - 51.1285794 - ], - [ - 4.2218077, - 51.12779 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88835384 - } - }, - { - "id": 88835329, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2214514, - 51.1241765 - ], - [ - 4.2230422, - 51.1241765 - ], - [ - 4.2230422, - 51.1245315 - ], - [ - 4.2214514, - 51.1245315 - ], - [ - 4.2214514, - 51.1241765 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88835329 - } - }, - { - "id": 88835271, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1941666, - 51.1268205 - ], - [ - 4.1962098, - 51.1268205 - ], - [ - 4.1962098, - 51.1280942 - ], - [ - 4.1941666, - 51.1280942 - ], - [ - 4.1941666, - 51.1268205 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88835271 - } - }, - { - "id": 88833752, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4376277, - 51.0883896 - ], - [ - 3.4392691, - 51.0883896 - ], - [ - 3.4392691, - 51.0897251 - ], - [ - 3.4376277, - 51.0897251 - ], - [ - 3.4376277, - 51.0883896 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88833752 - } - }, - { - "id": 88833727, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4376277, - 51.0883896 - ], - [ - 3.4392691, - 51.0883896 - ], - [ - 3.4392691, - 51.0897251 - ], - [ - 3.4376277, - 51.0897251 - ], - [ - 3.4376277, - 51.0883896 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88833727 - } - }, - { - "id": 88833707, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4372704, - 51.0874064 - ], - [ - 3.4392691, - 51.0874064 - ], - [ - 3.4392691, - 51.0897251 - ], - [ - 3.4372704, - 51.0897251 - ], - [ - 3.4372704, - 51.0874064 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88833707 - } - }, - { - "id": 88833670, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4372704, - 51.0874064 - ], - [ - 3.437809, - 51.0874064 - ], - [ - 3.437809, - 51.087642 - ], - [ - 3.4372704, - 51.087642 - ], - [ - 3.4372704, - 51.0874064 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88833670 - } - }, - { - "id": 88832970, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6150432, - 50.853319 - ], - [ - 3.6193518, - 50.853319 - ], - [ - 3.6193518, - 50.8549052 - ], - [ - 3.6150432, - 50.8549052 - ], - [ - 3.6150432, - 50.853319 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88832970 - } - }, - { - "id": 88832936, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6150432, - 50.8518811 - ], - [ - 3.6193518, - 50.8518811 - ], - [ - 3.6193518, - 50.8549052 - ], - [ - 3.6150432, - 50.8549052 - ], - [ - 3.6150432, - 50.8518811 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88832936 - } - }, - { - "id": 88832896, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5967162, - 50.8411004 - ], - [ - 3.5973131, - 50.8411004 - ], - [ - 3.5973131, - 50.8412384 - ], - [ - 3.5967162, - 50.8412384 - ], - [ - 3.5967162, - 50.8411004 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88832896 - } - }, - { - "id": 88825749, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4008769, - 51.0407181 - ], - [ - 3.4017304, - 51.0407181 - ], - [ - 3.4017304, - 51.0411894 - ], - [ - 3.4008769, - 51.0411894 - ], - [ - 3.4008769, - 51.0407181 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88825749 - } - }, - { - "id": 88825141, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3972698, - 51.0409008 - ], - [ - 3.3980128, - 51.0409008 - ], - [ - 3.3980128, - 51.0412079 - ], - [ - 3.3972698, - 51.0412079 - ], - [ - 3.3972698, - 51.0409008 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88825141 - } - }, - { - "id": 88825051, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3947147, - 51.0424988 - ], - [ - 3.3963556, - 51.0424988 - ], - [ - 3.3963556, - 51.0432487 - ], - [ - 3.3947147, - 51.0432487 - ], - [ - 3.3947147, - 51.0424988 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88825051 - } - }, - { - "id": 88813196, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2581117, - 50.7507305 - ], - [ - 4.2581117, - 50.7507305 - ], - [ - 4.2581117, - 50.7507305 - ], - [ - 4.2581117, - 50.7507305 - ], - [ - 4.2581117, - 50.7507305 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88813196 - } - }, - { - "id": 88813194, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2581117, - 50.7507305 - ], - [ - 4.2581117, - 50.7507305 - ], - [ - 4.2581117, - 50.7507305 - ], - [ - 4.2581117, - 50.7507305 - ], - [ - 4.2581117, - 50.7507305 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88813194 - } - }, - { - "id": 88813191, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2581117, - 50.7507305 - ], - [ - 4.2581117, - 50.7507305 - ], - [ - 4.2581117, - 50.7507305 - ], - [ - 4.2581117, - 50.7507305 - ], - [ - 4.2581117, - 50.7507305 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88813191 - } - }, - { - "id": 88813189, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2581117, - 50.7507305 - ], - [ - 4.2581117, - 50.7507305 - ], - [ - 4.2581117, - 50.7507305 - ], - [ - 4.2581117, - 50.7507305 - ], - [ - 4.2581117, - 50.7507305 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 88813189 - } - }, - { - "id": 88810288, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9867738, - 51.1071196 - ], - [ - 3.9867738, - 51.1071196 - ], - [ - 3.9867738, - 51.1071196 - ], - [ - 3.9867738, - 51.1071196 - ], - [ - 3.9867738, - 51.1071196 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88810288 - } - }, - { - "id": 88810034, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9867738, - 51.1071196 - ], - [ - 3.9867738, - 51.1071196 - ], - [ - 3.9867738, - 51.1071196 - ], - [ - 3.9867738, - 51.1071196 - ], - [ - 3.9867738, - 51.1071196 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88810034 - } - }, - { - "id": 88810031, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9867738, - 51.1071196 - ], - [ - 3.9867738, - 51.1071196 - ], - [ - 3.9867738, - 51.1071196 - ], - [ - 3.9867738, - 51.1071196 - ], - [ - 3.9867738, - 51.1071196 - ] - ] - ] - }, - "properties": { - "check_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, - "metadata": {}, - "id": 88810031 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2020-9.json b/Docs/Tools/stats/stats.2020-9.json deleted file mode 100644 index 39a25aa7d6..0000000000 --- a/Docs/Tools/stats/stats.2020-9.json +++ /dev/null @@ -1,13882 +0,0 @@ -{ - "features": [ - { - "id": 91790167, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1238829, - 51.1675162 - ], - [ - 4.1238829, - 51.1675162 - ], - [ - 4.1238829, - 51.1675162 - ], - [ - 4.1238829, - 51.1675162 - ], - [ - 4.1238829, - 51.1675162 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 91790167 - } - }, - { - "id": 91779411, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.0854206, - 41.6100346 - ], - [ - 2.0921406, - 41.6100346 - ], - [ - 2.0921406, - 41.6172589 - ], - [ - 2.0854206, - 41.6172589 - ], - [ - 2.0854206, - 41.6100346 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "dalemasvelocidad", - "language": "es", - "theme-creator": "" - }, - "id": 91779411 - } - }, - { - "id": 91773184, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1238829, - 51.1667746 - ], - [ - 4.1388692, - 51.1667746 - ], - [ - 4.1388692, - 51.1706152 - ], - [ - 4.1238829, - 51.1706152 - ], - [ - 4.1238829, - 51.1667746 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "personal", - "language": "en" - }, - "id": 91773184 - } - }, - { - "id": 91759649, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4468626, - 51.2579179 - ], - [ - 4.448352, - 51.2579179 - ], - [ - 4.448352, - 51.2587632 - ], - [ - 4.4468626, - 51.2587632 - ], - [ - 4.4468626, - 51.2579179 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 91759649 - } - }, - { - "id": 91724357, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4320688, - 51.2455377 - ], - [ - 4.4847093, - 51.2455377 - ], - [ - 4.4847093, - 51.2719973 - ], - [ - 4.4320688, - 51.2719973 - ], - [ - 4.4320688, - 51.2455377 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 91724357 - } - }, - { - "id": 91673475, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5822456, - 50.6219693 - ], - [ - 5.5822456, - 50.6219693 - ], - [ - 5.5822456, - 50.6219693 - ], - [ - 5.5822456, - 50.6219693 - ], - [ - 5.5822456, - 50.6219693 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 91673475 - } - }, - { - "id": 91667984, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -79.5749322, - 43.5925976 - ], - [ - -79.5749322, - 43.5925976 - ], - [ - -79.5749322, - 43.5925976 - ], - [ - -79.5749322, - 43.5925976 - ], - [ - -79.5749322, - 43.5925976 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "mcac_cyclofix" - }, - "id": 91667984 - } - }, - { - "id": 91667983, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -79.5749322, - 43.5925976 - ], - [ - -79.5749322, - 43.5925976 - ], - [ - -79.5749322, - 43.5925976 - ], - [ - -79.5749322, - 43.5925976 - ], - [ - -79.5749322, - 43.5925976 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "mcac_cyclofix" - }, - "id": 91667983 - } - }, - { - "id": 91667982, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -79.5749322, - 43.5925976 - ], - [ - -79.5749322, - 43.5925976 - ], - [ - -79.5749322, - 43.5925976 - ], - [ - -79.5749322, - 43.5925976 - ], - [ - -79.5749322, - 43.5925976 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "mcac_cyclofix" - }, - "id": 91667982 - } - }, - { - "id": 91660559, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2158425, - 51.2205836 - ], - [ - 3.2158425, - 51.2205836 - ], - [ - 3.2158425, - 51.2205836 - ], - [ - 3.2158425, - 51.2205836 - ], - [ - 3.2158425, - 51.2205836 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 91660559 - } - }, - { - "id": 91628909, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1895627, - 50.9697941 - ], - [ - 4.1895627, - 50.9697941 - ], - [ - 4.1895627, - 50.9697941 - ], - [ - 4.1895627, - 50.9697941 - ], - [ - 4.1895627, - 50.9697941 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 91628909 - } - }, - { - "id": 91625545, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.8962681, - 43.3113497 - ], - [ - -1.8959892, - 43.3113497 - ], - [ - -1.8959892, - 43.3115097 - ], - [ - -1.8962681, - 43.3115097 - ], - [ - -1.8962681, - 43.3113497 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "containeronvas", - "language": "es", - "theme-creator": "" - }, - "id": 91625545 - } - }, - { - "id": 91623165, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7074942, - 51.0723239 - ], - [ - 3.7220484, - 51.0723239 - ], - [ - 3.7220484, - 51.0881955 - ], - [ - 3.7074942, - 51.0881955 - ], - [ - 3.7074942, - 51.0723239 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 91623165 - } - }, - { - "id": 91600328, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198605, - 51.2156964 - ], - [ - 3.2198605, - 51.2156964 - ], - [ - 3.2198605, - 51.2156964 - ], - [ - 3.2198605, - 51.2156964 - ], - [ - 3.2198605, - 51.2156964 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "language": "nl", - "theme-creator": "MapComplete", - "embedded-website": "" - }, - "id": 91600328 - } - }, - { - "id": 91598640, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2120445, - 51.2135593 - ], - [ - 3.2120445, - 51.2135593 - ], - [ - 3.2120445, - 51.2135593 - ], - [ - 3.2120445, - 51.2135593 - ], - [ - 3.2120445, - 51.2135593 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 91598640 - } - }, - { - "id": 91596369, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.0853886, - 41.6058059 - ], - [ - 2.0979664, - 41.6058059 - ], - [ - 2.0979664, - 41.6200096 - ], - [ - 2.0853886, - 41.6200096 - ], - [ - 2.0853886, - 41.6058059 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "dalemasvelocidad", - "theme-creator": "" - }, - "id": 91596369 - } - }, - { - "id": 91591043, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -6.0526603, - 37.9942326 - ], - [ - -5.8515233, - 37.9942326 - ], - [ - -5.8515233, - 38.1952476 - ], - [ - -6.0526603, - 38.1952476 - ], - [ - -6.0526603, - 37.9942326 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "postalcode", - "theme-creator": "" - }, - "id": 91591043 - } - }, - { - "id": 91590879, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1255965, - 40.7410289 - ], - [ - 0.279896, - 40.7410289 - ], - [ - 0.279896, - 40.8713897 - ], - [ - 0.1255965, - 40.8713897 - ], - [ - 0.1255965, - 40.7410289 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "postalcode", - "theme-creator": "" - }, - "id": 91590879 - } - }, - { - "id": 91587115, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2158425, - 51.2205836 - ], - [ - 3.2158425, - 51.2205836 - ], - [ - 3.2158425, - 51.2205836 - ], - [ - 3.2158425, - 51.2205836 - ], - [ - 3.2158425, - 51.2205836 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 91587115 - } - }, - { - "id": 91586795, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.0868474, - 41.6082901 - ], - [ - 2.0929353, - 41.6082901 - ], - [ - 2.0929353, - 41.6147196 - ], - [ - 2.0868474, - 41.6147196 - ], - [ - 2.0868474, - 41.6082901 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "dalemasvelocidad", - "theme-creator": "" - }, - "id": 91586795 - } - }, - { - "id": 91578488, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2158425, - 51.2205836 - ], - [ - 3.2158425, - 51.2205836 - ], - [ - 3.2158425, - 51.2205836 - ], - [ - 3.2158425, - 51.2205836 - ], - [ - 3.2158425, - 51.2205836 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "theme-creator": "MapComplete" - }, - "id": 91578488 - } - }, - { - "id": 91577107, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2115447, - 51.2176632 - ], - [ - 3.2115447, - 51.2176632 - ], - [ - 3.2115447, - 51.2176632 - ], - [ - 3.2115447, - 51.2176632 - ], - [ - 3.2115447, - 51.2176632 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "theme-creator": "MapComplete" - }, - "id": 91577107 - } - }, - { - "id": 91576955, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5722144, - 53.0072856 - ], - [ - 6.5876544, - 53.0072856 - ], - [ - 6.5876544, - 53.0264694 - ], - [ - 6.5722144, - 53.0264694 - ], - [ - 6.5722144, - 53.0072856 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "theme-creator": "MapComplete" - }, - "id": 91576955 - } - }, - { - "id": 91575776, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -6.9319054, - 37.2690325 - ], - [ - -6.930046, - 37.2690325 - ], - [ - -6.930046, - 37.2698983 - ], - [ - -6.9319054, - 37.2698983 - ], - [ - -6.9319054, - 37.2690325 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "crossingtime", - "theme-creator": "" - }, - "id": 91575776 - } - }, - { - "id": 91564964, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.793507, - 41.9504082 - ], - [ - 2.793507, - 41.9504082 - ], - [ - 2.793507, - 41.9504082 - ], - [ - 2.793507, - 41.9504082 - ], - [ - 2.793507, - 41.9504082 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "crossingtime", - "theme-creator": "" - }, - "id": 91564964 - } - }, - { - "id": 91564798, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3943801, - 50.8217382 - ], - [ - 4.3960204, - 50.8217382 - ], - [ - 4.3960204, - 50.8241743 - ], - [ - 4.3943801, - 50.8241743 - ], - [ - 4.3943801, - 50.8217382 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "theme-creator": "MapComplete" - }, - "id": 91564798 - } - }, - { - "id": 91564089, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3463996, - 50.8269287 - ], - [ - 4.3490126, - 50.8269287 - ], - [ - 4.3490126, - 50.8307184 - ], - [ - 4.3463996, - 50.8307184 - ], - [ - 4.3463996, - 50.8269287 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "theme-creator": "MapComplete" - }, - "id": 91564089 - } - }, - { - "id": 91562463, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4601254, - 51.1204034 - ], - [ - 4.482266, - 51.1204034 - ], - [ - 4.482266, - 51.1408925 - ], - [ - 4.4601254, - 51.1408925 - ], - [ - 4.4601254, - 51.1204034 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 91562463 - } - }, - { - "id": 91557719, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9404686, - 50.7722382 - ], - [ - 4.9467064, - 50.7722382 - ], - [ - 4.9467064, - 50.7827057 - ], - [ - 4.9404686, - 50.7827057 - ], - [ - 4.9404686, - 50.7722382 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 91557719 - } - }, - { - "id": 91552473, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.6596409, - 48.838774 - ], - [ - 2.6596409, - 48.838774 - ], - [ - 2.6596409, - 48.838774 - ], - [ - 2.6596409, - 48.838774 - ], - [ - 2.6596409, - 48.838774 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "MapComplete" - }, - "id": 91552473 - } - }, - { - "id": 91542705, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.1423445, - 52.2954284 - ], - [ - 13.2738606, - 52.2954284 - ], - [ - 13.2738606, - 52.3832405 - ], - [ - 13.1423445, - 52.3832405 - ], - [ - 13.1423445, - 52.2954284 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "theme-creator": "MapComplete" - }, - "id": 91542705 - } - }, - { - "id": 91535355, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2245804, - 51.215657 - ], - [ - 3.2245804, - 51.215657 - ], - [ - 3.2245804, - 51.215657 - ], - [ - 3.2245804, - 51.215657 - ], - [ - 3.2245804, - 51.215657 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 91535355 - } - }, - { - "id": 91527452, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4217637, - 51.1638443 - ], - [ - 4.4280133, - 51.1638443 - ], - [ - 4.4280133, - 51.2107835 - ], - [ - 4.4217637, - 51.2107835 - ], - [ - 4.4217637, - 51.1638443 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "theme-creator": "MapComplete" - }, - "id": 91527452 - } - }, - { - "id": 91525513, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.0852807, - 41.3606388 - ], - [ - 2.0852807, - 41.3606388 - ], - [ - 2.0852807, - 41.3606388 - ], - [ - 2.0852807, - 41.3606388 - ], - [ - 2.0852807, - 41.3606388 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "containeronvas", - "theme-creator": "" - }, - "id": 91525513 - } - }, - { - "id": 91518811, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5297179, - 50.4033076 - ], - [ - 5.5297589, - 50.4033076 - ], - [ - 5.5297589, - 50.4034556 - ], - [ - 5.5297179, - 50.4034556 - ], - [ - 5.5297179, - 50.4033076 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "climbing", - "language": "nl", - "theme-creator": "" - }, - "id": 91518811 - } - }, - { - "id": 91518314, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5281615, - 50.4027001 - ], - [ - 5.5300981, - 50.4027001 - ], - [ - 5.5300981, - 50.4034916 - ], - [ - 5.5281615, - 50.4034916 - ], - [ - 5.5281615, - 50.4027001 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "nature", - "language": "nl", - "theme-creator": "" - }, - "id": 91518314 - } - }, - { - "id": 91517794, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5281615, - 50.4027001 - ], - [ - 5.5300981, - 50.4027001 - ], - [ - 5.5300981, - 50.4034916 - ], - [ - 5.5281615, - 50.4034916 - ], - [ - 5.5281615, - 50.4027001 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "maps", - "theme-creator": "MapComplete" - }, - "id": 91517794 - } - }, - { - "id": 91463977, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3491593, - 50.7934771 - ], - [ - 3.3498618, - 50.7934771 - ], - [ - 3.3498618, - 50.7940413 - ], - [ - 3.3491593, - 50.7940413 - ], - [ - 3.3491593, - 50.7934771 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "boomgaarden", - "theme-creator": "" - }, - "id": 91463977 - } - }, - { - "id": 91457976, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1979856, - 50.8966836 - ], - [ - 4.2064677, - 50.8966836 - ], - [ - 4.2064677, - 50.9132255 - ], - [ - 4.1979856, - 50.9132255 - ], - [ - 4.1979856, - 50.8966836 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "fietsstraten", - "theme-creator": "MapComlete" - }, - "id": 91457976 - } - }, - { - "id": 91271957, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9220504, - 51.3331388 - ], - [ - 4.9448603, - 51.3331388 - ], - [ - 4.9448603, - 51.3524856 - ], - [ - 4.9220504, - 51.3524856 - ], - [ - 4.9220504, - 51.3331388 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "" - }, - "id": 91271957 - } - }, - { - "id": 91244376, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5629225, - 51.1291886 - ], - [ - 4.5775897, - 51.1291886 - ], - [ - 4.5775897, - 51.1333926 - ], - [ - 4.5629225, - 51.1333926 - ], - [ - 4.5629225, - 51.1291886 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "fietsstraten", - "theme-creator": "MapComlete" - }, - "id": 91244376 - } - }, - { - "id": 91240064, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5698296, - 50.4493271 - ], - [ - 5.5702856, - 50.4493271 - ], - [ - 5.5702856, - 50.4499369 - ], - [ - 5.5698296, - 50.4499369 - ], - [ - 5.5698296, - 50.4493271 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "climbing", - "theme-creator": "" - }, - "id": 91240064 - } - }, - { - "id": 91229495, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5696392, - 50.4552997 - ], - [ - 5.5696392, - 50.4552997 - ], - [ - 5.5696392, - 50.4552997 - ], - [ - 5.5696392, - 50.4552997 - ], - [ - 5.5696392, - 50.4552997 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "metamap" - }, - "id": 91229495 - } - }, - { - "id": 91227891, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5696714, - 50.4550456 - ], - [ - 5.5696714, - 50.4550456 - ], - [ - 5.5696714, - 50.4550456 - ], - [ - 5.5696714, - 50.4550456 - ], - [ - 5.5696714, - 50.4550456 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "" - }, - "id": 91227891 - } - }, - { - "id": 91220202, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1968766, - 50.2997505 - ], - [ - 4.76645, - 50.2997505 - ], - [ - 4.76645, - 51.3290284 - ], - [ - 3.1968766, - 51.3290284 - ], - [ - 3.1968766, - 50.2997505 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "MapComplete" - }, - "id": 91220202 - } - }, - { - "id": 91186735, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3844483, - 51.1085014 - ], - [ - 4.3939559, - 51.1085014 - ], - [ - 4.3939559, - 51.1129333 - ], - [ - 4.3844483, - 51.1129333 - ], - [ - 4.3844483, - 51.1085014 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "" - }, - "id": 91186735 - } - }, - { - "id": 91186361, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1940391, - 51.1973959 - ], - [ - 3.2161073, - 51.1973959 - ], - [ - 3.2161073, - 51.2157659 - ], - [ - 3.1940391, - 51.2157659 - ], - [ - 3.1940391, - 51.1973959 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "" - }, - "id": 91186361 - } - }, - { - "id": 91179439, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5994396, - 50.8330744 - ], - [ - 3.6939026, - 50.8330744 - ], - [ - 3.6939026, - 50.9057951 - ], - [ - 3.5994396, - 50.9057951 - ], - [ - 3.5994396, - 50.8330744 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "" - }, - "id": 91179439 - } - }, - { - "id": 91178668, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2195174, - 51.2054346 - ], - [ - 3.2195174, - 51.2054346 - ], - [ - 3.2195174, - 51.2054346 - ], - [ - 3.2195174, - 51.2054346 - ], - [ - 3.2195174, - 51.2054346 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "theme-creator": "MapComplete" - }, - "id": 91178668 - } - }, - { - "id": 91174621, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.336233, - 50.8165646 - ], - [ - 4.336233, - 50.8165646 - ], - [ - 4.336233, - 50.8165646 - ], - [ - 4.336233, - 50.8165646 - ], - [ - 4.336233, - 50.8165646 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "theme-creator": "MapComplete" - }, - "id": 91174621 - } - }, - { - "id": 91158300, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1255538, - 51.1358718 - ], - [ - 3.12607, - 51.1358718 - ], - [ - 3.12607, - 51.1361747 - ], - [ - 3.1255538, - 51.1361747 - ], - [ - 3.1255538, - 51.1358718 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "" - }, - "id": 91158300 - } - }, - { - "id": 91119338, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8684927, - 50.9686435 - ], - [ - 3.9127768, - 50.9686435 - ], - [ - 3.9127768, - 50.9876547 - ], - [ - 3.8684927, - 50.9876547 - ], - [ - 3.8684927, - 50.9686435 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 91119338 - } - }, - { - "id": 91099444, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198122, - 51.2156779 - ], - [ - 3.2198122, - 51.2156779 - ], - [ - 3.2198122, - 51.2156779 - ], - [ - 3.2198122, - 51.2156779 - ], - [ - 3.2198122, - 51.2156779 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "" - }, - "id": 91099444 - } - }, - { - "id": 91074626, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2189995, - 51.2154679 - ], - [ - 3.2198417, - 51.2154679 - ], - [ - 3.2198417, - 51.2157115 - ], - [ - 3.2189995, - 51.2157115 - ], - [ - 3.2189995, - 51.2154679 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "" - }, - "id": 91074626 - } - }, - { - "id": 91074608, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.219839, - 51.2157166 - ], - [ - 3.219839, - 51.2157166 - ], - [ - 3.219839, - 51.2157166 - ], - [ - 3.219839, - 51.2157166 - ], - [ - 3.219839, - 51.2157166 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "" - }, - "id": 91074608 - } - }, - { - "id": 91064867, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3689208, - 50.8777959 - ], - [ - 5.3827762, - 50.8777959 - ], - [ - 5.3827762, - 50.8870166 - ], - [ - 5.3689208, - 50.8870166 - ], - [ - 5.3689208, - 50.8777959 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 91064867 - } - }, - { - "id": 91064861, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3689208, - 50.8777959 - ], - [ - 5.3827762, - 50.8777959 - ], - [ - 5.3827762, - 50.8870166 - ], - [ - 5.3689208, - 50.8870166 - ], - [ - 5.3689208, - 50.8777959 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 91064861 - } - }, - { - "id": 91064714, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.370003, - 50.875833 - ], - [ - 5.3720428, - 50.875833 - ], - [ - 5.3720428, - 50.8780646 - ], - [ - 5.370003, - 50.8780646 - ], - [ - 5.370003, - 50.875833 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 91064714 - } - }, - { - "id": 91060765, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1916241, - 51.0823355 - ], - [ - 5.2119943, - 51.0823355 - ], - [ - 5.2119943, - 51.0947104 - ], - [ - 5.1916241, - 51.0947104 - ], - [ - 5.1916241, - 51.0823355 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 91060765 - } - }, - { - "id": 91060755, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1916241, - 51.0823355 - ], - [ - 5.2119943, - 51.0823355 - ], - [ - 5.2119943, - 51.0947104 - ], - [ - 5.1916241, - 51.0947104 - ], - [ - 5.1916241, - 51.0823355 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 91060755 - } - }, - { - "id": 91041161, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8796563, - 51.0485222 - ], - [ - 4.8804513, - 51.0485222 - ], - [ - 4.8804513, - 51.0492319 - ], - [ - 4.8796563, - 51.0492319 - ], - [ - 4.8796563, - 51.0485222 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 91041161 - } - }, - { - "id": 91041061, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8747905, - 51.0434375 - ], - [ - 4.8823653, - 51.0434375 - ], - [ - 4.8823653, - 51.04874 - ], - [ - 4.8747905, - 51.04874 - ], - [ - 4.8747905, - 51.0434375 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 91041061 - } - }, - { - "id": 91040950, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8747905, - 51.0434375 - ], - [ - 4.8823653, - 51.0434375 - ], - [ - 4.8823653, - 51.04874 - ], - [ - 4.8747905, - 51.04874 - ], - [ - 4.8747905, - 51.0434375 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 91040950 - } - }, - { - "id": 91005229, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8416183, - 50.8837595 - ], - [ - 4.8508288, - 50.8837595 - ], - [ - 4.8508288, - 50.8938665 - ], - [ - 4.8416183, - 50.8938665 - ], - [ - 4.8416183, - 50.8837595 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 91005229 - } - }, - { - "id": 91005193, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8434918, - 50.8932195 - ], - [ - 4.8493212, - 50.8932195 - ], - [ - 4.8493212, - 50.8994419 - ], - [ - 4.8434918, - 50.8994419 - ], - [ - 4.8434918, - 50.8932195 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 91005193 - } - }, - { - "id": 91004594, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7534262, - 50.9022501 - ], - [ - 4.7581524, - 50.9022501 - ], - [ - 4.7581524, - 50.9045483 - ], - [ - 4.7534262, - 50.9045483 - ], - [ - 4.7534262, - 50.9022501 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 91004594 - } - }, - { - "id": 91003424, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7534262, - 50.9022501 - ], - [ - 4.7581524, - 50.9022501 - ], - [ - 4.7581524, - 50.9045483 - ], - [ - 4.7534262, - 50.9045483 - ], - [ - 4.7534262, - 50.9022501 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 91003424 - } - }, - { - "id": 91001838, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2679455, - 50.9515517 - ], - [ - 5.2952232, - 50.9515517 - ], - [ - 5.2952232, - 50.9619992 - ], - [ - 5.2679455, - 50.9619992 - ], - [ - 5.2679455, - 50.9515517 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 91001838 - } - }, - { - "id": 91001663, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2394967, - 50.9696559 - ], - [ - 5.2670284, - 50.9696559 - ], - [ - 5.2670284, - 50.9811933 - ], - [ - 5.2394967, - 50.9811933 - ], - [ - 5.2394967, - 50.9696559 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 91001663 - } - }, - { - "id": 91001370, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3814178, - 51.0531862 - ], - [ - 4.4058155, - 51.0531862 - ], - [ - 4.4058155, - 51.0661128 - ], - [ - 4.3814178, - 51.0661128 - ], - [ - 4.3814178, - 51.0531862 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 91001370 - } - }, - { - "id": 91001352, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3814178, - 51.0531862 - ], - [ - 4.4058155, - 51.0531862 - ], - [ - 4.4058155, - 51.0661128 - ], - [ - 4.3814178, - 51.0661128 - ], - [ - 4.3814178, - 51.0531862 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 91001352 - } - }, - { - "id": 91001279, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4822442, - 51.0459673 - ], - [ - 4.4935374, - 51.0459673 - ], - [ - 4.4935374, - 51.0537953 - ], - [ - 4.4822442, - 51.0537953 - ], - [ - 4.4822442, - 51.0459673 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 91001279 - } - }, - { - "id": 91001211, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4938619, - 51.0459877 - ], - [ - 4.4984562, - 51.0459877 - ], - [ - 4.4984562, - 51.0524296 - ], - [ - 4.4938619, - 51.0524296 - ], - [ - 4.4938619, - 51.0459877 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 91001211 - } - }, - { - "id": 91001154, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4938619, - 51.0459877 - ], - [ - 4.4984562, - 51.0459877 - ], - [ - 4.4984562, - 51.0524296 - ], - [ - 4.4938619, - 51.0524296 - ], - [ - 4.4938619, - 51.0459877 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 91001154 - } - }, - { - "id": 91001125, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4938619, - 51.0459877 - ], - [ - 4.4984562, - 51.0459877 - ], - [ - 4.4984562, - 51.0524296 - ], - [ - 4.4938619, - 51.0524296 - ], - [ - 4.4938619, - 51.0459877 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 91001125 - } - }, - { - "id": 91001059, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5356584, - 50.9981835 - ], - [ - 4.546878, - 50.9981835 - ], - [ - 4.546878, - 51.0052594 - ], - [ - 4.5356584, - 51.0052594 - ], - [ - 4.5356584, - 50.9981835 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 91001059 - } - }, - { - "id": 91001022, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5356584, - 50.9981835 - ], - [ - 4.546878, - 50.9981835 - ], - [ - 4.546878, - 51.0052594 - ], - [ - 4.5356584, - 51.0052594 - ], - [ - 4.5356584, - 50.9981835 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 91001022 - } - }, - { - "id": 91000952, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5041821, - 51.0120406 - ], - [ - 4.5261946, - 51.0120406 - ], - [ - 4.5261946, - 51.0308637 - ], - [ - 4.5041821, - 51.0308637 - ], - [ - 4.5041821, - 51.0120406 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 91000952 - } - }, - { - "id": 90999953, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3336562, - 50.9656077 - ], - [ - 4.343807, - 50.9656077 - ], - [ - 4.343807, - 50.9754354 - ], - [ - 4.3336562, - 50.9754354 - ], - [ - 4.3336562, - 50.9656077 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90999953 - } - }, - { - "id": 90999776, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4652719, - 51.0882305 - ], - [ - 3.4658364, - 51.0882305 - ], - [ - 3.4658364, - 51.0884338 - ], - [ - 3.4652719, - 51.0884338 - ], - [ - 3.4652719, - 51.0882305 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90999776 - } - }, - { - "id": 90999724, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4648825, - 51.089456 - ], - [ - 3.4659149, - 51.089456 - ], - [ - 3.4659149, - 51.0902077 - ], - [ - 3.4648825, - 51.0902077 - ], - [ - 3.4648825, - 51.089456 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90999724 - } - }, - { - "id": 90996138, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8472771, - 51.0695429 - ], - [ - 4.8770056, - 51.0695429 - ], - [ - 4.8770056, - 51.0792251 - ], - [ - 4.8472771, - 51.0792251 - ], - [ - 4.8472771, - 51.0695429 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90996138 - } - }, - { - "id": 90996120, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8472771, - 51.0695429 - ], - [ - 4.8770056, - 51.0695429 - ], - [ - 4.8770056, - 51.0792251 - ], - [ - 4.8472771, - 51.0792251 - ], - [ - 4.8472771, - 51.0695429 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90996120 - } - }, - { - "id": 90996010, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7547443, - 50.9082626 - ], - [ - 4.7641227, - 50.9082626 - ], - [ - 4.7641227, - 50.9090803 - ], - [ - 4.7547443, - 50.9090803 - ], - [ - 4.7547443, - 50.9082626 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90996010 - } - }, - { - "id": 90995645, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1008227, - 50.9523184 - ], - [ - 3.10163, - 50.9523184 - ], - [ - 3.10163, - 50.9524293 - ], - [ - 3.1008227, - 50.9524293 - ], - [ - 3.1008227, - 50.9523184 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90995645 - } - }, - { - "id": 90995608, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1002202, - 50.9530525 - ], - [ - 3.1021324, - 50.9530525 - ], - [ - 3.1021324, - 50.9532783 - ], - [ - 3.1002202, - 50.9532783 - ], - [ - 3.1002202, - 50.9530525 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90995608 - } - }, - { - "id": 90995564, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1024559, - 50.9531736 - ], - [ - 3.104011, - 50.9531736 - ], - [ - 3.104011, - 50.9541667 - ], - [ - 3.1024559, - 50.9541667 - ], - [ - 3.1024559, - 50.9531736 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90995564 - } - }, - { - "id": 90995512, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1097125, - 50.9538459 - ], - [ - 3.1104599, - 50.9538459 - ], - [ - 3.1104599, - 50.9540102 - ], - [ - 3.1097125, - 50.9540102 - ], - [ - 3.1097125, - 50.9538459 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90995512 - } - }, - { - "id": 90995491, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1047466, - 50.953736 - ], - [ - 3.1096755, - 50.953736 - ], - [ - 3.1096755, - 50.9543051 - ], - [ - 3.1047466, - 50.9543051 - ], - [ - 3.1047466, - 50.953736 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90995491 - } - }, - { - "id": 90995407, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1047466, - 50.953736 - ], - [ - 3.1096755, - 50.953736 - ], - [ - 3.1096755, - 50.9543051 - ], - [ - 3.1047466, - 50.9543051 - ], - [ - 3.1047466, - 50.953736 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90995407 - } - }, - { - "id": 90995382, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1047466, - 50.953736 - ], - [ - 3.1096755, - 50.953736 - ], - [ - 3.1096755, - 50.9543051 - ], - [ - 3.1047466, - 50.9543051 - ], - [ - 3.1047466, - 50.953736 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90995382 - } - }, - { - "id": 90995270, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4734739, - 51.1566004 - ], - [ - 4.4821242, - 51.1566004 - ], - [ - 4.4821242, - 51.1626805 - ], - [ - 4.4734739, - 51.1626805 - ], - [ - 4.4734739, - 51.1566004 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90995270 - } - }, - { - "id": 90995245, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4734739, - 51.1566004 - ], - [ - 4.4821242, - 51.1566004 - ], - [ - 4.4821242, - 51.1626805 - ], - [ - 4.4734739, - 51.1626805 - ], - [ - 4.4734739, - 51.1566004 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90995245 - } - }, - { - "id": 90995213, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1276953, - 50.918704 - ], - [ - 3.1331254, - 50.918704 - ], - [ - 3.1331254, - 50.9204977 - ], - [ - 3.1276953, - 50.9204977 - ], - [ - 3.1276953, - 50.918704 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90995213 - } - }, - { - "id": 90995177, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1276953, - 50.91576 - ], - [ - 3.1389099, - 50.91576 - ], - [ - 3.1389099, - 50.9233331 - ], - [ - 3.1276953, - 50.9233331 - ], - [ - 3.1276953, - 50.91576 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90995177 - } - }, - { - "id": 90995087, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1351726, - 50.9208923 - ], - [ - 3.1389099, - 50.9208923 - ], - [ - 3.1389099, - 50.9233331 - ], - [ - 3.1351726, - 50.9233331 - ], - [ - 3.1351726, - 50.9208923 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90995087 - } - }, - { - "id": 90995053, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1351726, - 50.9208923 - ], - [ - 3.1389099, - 50.9208923 - ], - [ - 3.1389099, - 50.9233331 - ], - [ - 3.1351726, - 50.9233331 - ], - [ - 3.1351726, - 50.9208923 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90995053 - } - }, - { - "id": 90994933, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1351726, - 50.9208923 - ], - [ - 3.1389099, - 50.9208923 - ], - [ - 3.1389099, - 50.9233331 - ], - [ - 3.1351726, - 50.9233331 - ], - [ - 3.1351726, - 50.9208923 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90994933 - } - }, - { - "id": 90994905, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1351726, - 50.9208923 - ], - [ - 3.1389099, - 50.9208923 - ], - [ - 3.1389099, - 50.9233331 - ], - [ - 3.1351726, - 50.9233331 - ], - [ - 3.1351726, - 50.9208923 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90994905 - } - }, - { - "id": 90994883, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1351726, - 50.9208923 - ], - [ - 3.1389099, - 50.9208923 - ], - [ - 3.1389099, - 50.9233331 - ], - [ - 3.1351726, - 50.9233331 - ], - [ - 3.1351726, - 50.9208923 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90994883 - } - }, - { - "id": 90994846, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1351726, - 50.9208923 - ], - [ - 3.1389099, - 50.9208923 - ], - [ - 3.1389099, - 50.9233331 - ], - [ - 3.1351726, - 50.9233331 - ], - [ - 3.1351726, - 50.9208923 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90994846 - } - }, - { - "id": 90992147, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.045695, - 51.1400868 - ], - [ - 4.0560966, - 51.1400868 - ], - [ - 4.0560966, - 51.1464938 - ], - [ - 4.045695, - 51.1464938 - ], - [ - 4.045695, - 51.1400868 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90992147 - } - }, - { - "id": 90992125, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.045695, - 51.1400868 - ], - [ - 4.0560966, - 51.1400868 - ], - [ - 4.0560966, - 51.1464938 - ], - [ - 4.045695, - 51.1464938 - ], - [ - 4.045695, - 51.1400868 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90992125 - } - }, - { - "id": 90989855, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4936733, - 50.7890049 - ], - [ - 4.5386574, - 50.7890049 - ], - [ - 4.5386574, - 50.8025129 - ], - [ - 4.4936733, - 50.8025129 - ], - [ - 4.4936733, - 50.7890049 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90989855 - } - }, - { - "id": 90989775, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5086432, - 50.8180837 - ], - [ - 4.5087719, - 50.8180837 - ], - [ - 4.5087719, - 50.8181461 - ], - [ - 4.5086432, - 50.8181461 - ], - [ - 4.5086432, - 50.8180837 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90989775 - } - }, - { - "id": 90989632, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5164069, - 50.8306858 - ], - [ - 4.5197953, - 50.8306858 - ], - [ - 4.5197953, - 50.832054 - ], - [ - 4.5164069, - 50.832054 - ], - [ - 4.5164069, - 50.8306858 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90989632 - } - }, - { - "id": 90989585, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5448226, - 50.8306064 - ], - [ - 4.5621025, - 50.8306064 - ], - [ - 4.5621025, - 50.8345047 - ], - [ - 4.5448226, - 50.8345047 - ], - [ - 4.5448226, - 50.8306064 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90989585 - } - }, - { - "id": 90989561, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4860716, - 50.817088 - ], - [ - 4.5621025, - 50.817088 - ], - [ - 4.5621025, - 50.8407114 - ], - [ - 4.4860716, - 50.8407114 - ], - [ - 4.4860716, - 50.817088 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90989561 - } - }, - { - "id": 90989501, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4996261, - 50.8122513 - ], - [ - 4.5136739, - 50.8122513 - ], - [ - 4.5136739, - 50.8303801 - ], - [ - 4.4996261, - 50.8303801 - ], - [ - 4.4996261, - 50.8122513 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90989501 - } - }, - { - "id": 90989462, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4743745, - 50.7984445 - ], - [ - 4.5322238, - 50.7984445 - ], - [ - 4.5322238, - 50.8330665 - ], - [ - 4.4743745, - 50.8330665 - ], - [ - 4.4743745, - 50.7984445 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90989462 - } - }, - { - "id": 90987807, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7479443, - 51.031303 - ], - [ - 3.7503096, - 51.031303 - ], - [ - 3.7503096, - 51.0340232 - ], - [ - 3.7479443, - 51.0340232 - ], - [ - 3.7479443, - 51.031303 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90987807 - } - }, - { - "id": 90983747, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6907924, - 51.0398917 - ], - [ - 3.7130301, - 51.0398917 - ], - [ - 3.7130301, - 51.0603303 - ], - [ - 3.6907924, - 51.0603303 - ], - [ - 3.6907924, - 51.0398917 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90983747 - } - }, - { - "id": 90983527, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4579344, - 51.1406801 - ], - [ - 3.466341, - 51.1406801 - ], - [ - 3.466341, - 51.143557 - ], - [ - 3.4579344, - 51.143557 - ], - [ - 3.4579344, - 51.1406801 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90983527 - } - }, - { - "id": 90983465, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4267346, - 51.2104348 - ], - [ - 3.4334531, - 51.2104348 - ], - [ - 3.4334531, - 51.2150864 - ], - [ - 3.4267346, - 51.2150864 - ], - [ - 3.4267346, - 51.2104348 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90983465 - } - }, - { - "id": 90983409, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4266195, - 51.2063523 - ], - [ - 3.4338906, - 51.2063523 - ], - [ - 3.4338906, - 51.2150864 - ], - [ - 3.4266195, - 51.2150864 - ], - [ - 3.4266195, - 51.2063523 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90983409 - } - }, - { - "id": 90983264, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7274563, - 51.0440723 - ], - [ - 3.7282041, - 51.0440723 - ], - [ - 3.7282041, - 51.0446336 - ], - [ - 3.7274563, - 51.0446336 - ], - [ - 3.7274563, - 51.0440723 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90983264 - } - }, - { - "id": 90983212, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7096104, - 51.0167826 - ], - [ - 3.7190018, - 51.0167826 - ], - [ - 3.7190018, - 51.0193224 - ], - [ - 3.7096104, - 51.0193224 - ], - [ - 3.7096104, - 51.0167826 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90983212 - } - }, - { - "id": 90982722, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3518588, - 51.118407 - ], - [ - 4.3600757, - 51.118407 - ], - [ - 4.3600757, - 51.1206451 - ], - [ - 4.3518588, - 51.1206451 - ], - [ - 4.3518588, - 51.118407 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90982722 - } - }, - { - "id": 90981224, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4735948, - 50.9742342 - ], - [ - 3.4735948, - 50.9742342 - ], - [ - 3.4735948, - 50.9742342 - ], - [ - 3.4735948, - 50.9742342 - ], - [ - 3.4735948, - 50.9742342 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90981224 - } - }, - { - "id": 90981197, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4738859, - 50.9718704 - ], - [ - 3.4740466, - 50.9718704 - ], - [ - 3.4740466, - 50.9722319 - ], - [ - 3.4738859, - 50.9722319 - ], - [ - 3.4738859, - 50.9718704 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90981197 - } - }, - { - "id": 90981148, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4738859, - 50.9718704 - ], - [ - 3.4740466, - 50.9718704 - ], - [ - 3.4740466, - 50.9722319 - ], - [ - 3.4738859, - 50.9722319 - ], - [ - 3.4738859, - 50.9718704 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90981148 - } - }, - { - "id": 90981096, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4736947, - 50.9707571 - ], - [ - 3.4761636, - 50.9707571 - ], - [ - 3.4761636, - 50.9780017 - ], - [ - 3.4736947, - 50.9780017 - ], - [ - 3.4736947, - 50.9707571 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90981096 - } - }, - { - "id": 90981058, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4735681, - 50.975257 - ], - [ - 3.4738067, - 50.975257 - ], - [ - 3.4738067, - 50.9754089 - ], - [ - 3.4735681, - 50.9754089 - ], - [ - 3.4735681, - 50.975257 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90981058 - } - }, - { - "id": 90981038, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4735681, - 50.975257 - ], - [ - 3.4738067, - 50.975257 - ], - [ - 3.4738067, - 50.9754089 - ], - [ - 3.4735681, - 50.9754089 - ], - [ - 3.4735681, - 50.975257 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90981038 - } - }, - { - "id": 90981009, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4735681, - 50.975257 - ], - [ - 3.4738067, - 50.975257 - ], - [ - 3.4738067, - 50.9754089 - ], - [ - 3.4735681, - 50.9754089 - ], - [ - 3.4735681, - 50.975257 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90981009 - } - }, - { - "id": 90980121, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7014585, - 50.8772179 - ], - [ - 4.7021032, - 50.8772179 - ], - [ - 4.7021032, - 50.8776797 - ], - [ - 4.7014585, - 50.8776797 - ], - [ - 4.7014585, - 50.8772179 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90980121 - } - }, - { - "id": 90980033, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7056017, - 50.8769716 - ], - [ - 4.7066819, - 50.8769716 - ], - [ - 4.7066819, - 50.8778602 - ], - [ - 4.7056017, - 50.8778602 - ], - [ - 4.7056017, - 50.8769716 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90980033 - } - }, - { - "id": 90979502, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1795854, - 50.8430944 - ], - [ - 5.18502, - 50.8430944 - ], - [ - 5.18502, - 50.8451089 - ], - [ - 5.1795854, - 50.8451089 - ], - [ - 5.1795854, - 50.8430944 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90979502 - } - }, - { - "id": 90979432, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2953452, - 51.1028374 - ], - [ - 4.2964466, - 51.1028374 - ], - [ - 4.2964466, - 51.1033455 - ], - [ - 4.2953452, - 51.1033455 - ], - [ - 4.2953452, - 51.1028374 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90979432 - } - }, - { - "id": 90950672, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3159181, - 50.8393283 - ], - [ - 4.3159181, - 50.8393283 - ], - [ - 4.3159181, - 50.8393283 - ], - [ - 4.3159181, - 50.8393283 - ], - [ - 4.3159181, - 50.8393283 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90950672 - } - }, - { - "id": 90949407, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.1687966, - 52.5199081 - ], - [ - 13.1733677, - 52.5199081 - ], - [ - 13.1733677, - 52.523034 - ], - [ - 13.1687966, - 52.523034 - ], - [ - 13.1687966, - 52.5199081 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90949407 - } - }, - { - "id": 90949013, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2350853, - 51.2254433 - ], - [ - 3.2356119, - 51.2254433 - ], - [ - 3.2356119, - 51.2257413 - ], - [ - 3.2350853, - 51.2257413 - ], - [ - 3.2350853, - 51.2254433 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90949013 - } - }, - { - "id": 90948937, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.7127857, - 41.2184744 - ], - [ - 1.7127857, - 41.2184744 - ], - [ - 1.7127857, - 41.2184744 - ], - [ - 1.7127857, - 41.2184744 - ], - [ - 1.7127857, - 41.2184744 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "id", - "theme-creator": "" - }, - "id": 90948937 - } - }, - { - "id": 90944045, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.2617957, - 52.3009814 - ], - [ - 13.2617957, - 52.3009814 - ], - [ - 13.2617957, - 52.3009814 - ], - [ - 13.2617957, - 52.3009814 - ], - [ - 13.2617957, - 52.3009814 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90944045 - } - }, - { - "id": 90940565, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1034159, - 51.3006834 - ], - [ - 3.1034768, - 51.3006834 - ], - [ - 3.1034768, - 51.3007257 - ], - [ - 3.1034159, - 51.3007257 - ], - [ - 3.1034159, - 51.3006834 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "natuurpunt" - }, - "id": 90940565 - } - }, - { - "id": 90938570, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0801791, - 51.3022149 - ], - [ - 3.0812067, - 51.3022149 - ], - [ - 3.0812067, - 51.3025859 - ], - [ - 3.0801791, - 51.3025859 - ], - [ - 3.0801791, - 51.3022149 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90938570 - } - }, - { - "id": 90937613, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.108585, - 51.2960513 - ], - [ - 3.1086768, - 51.2960513 - ], - [ - 3.1086768, - 51.296106 - ], - [ - 3.108585, - 51.296106 - ], - [ - 3.108585, - 51.2960513 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "natuurpunt" - }, - "id": 90937613 - } - }, - { - "id": 90937509, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.104352, - 51.2756347 - ], - [ - 3.1522026, - 51.2756347 - ], - [ - 3.1522026, - 51.3071476 - ], - [ - 3.104352, - 51.3071476 - ], - [ - 3.104352, - 51.2756347 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "natuurpunt" - }, - "id": 90937509 - } - }, - { - "id": 90928529, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198104, - 51.216471 - ], - [ - 3.2198104, - 51.216471 - ], - [ - 3.2198104, - 51.216471 - ], - [ - 3.2198104, - 51.216471 - ], - [ - 3.2198104, - 51.216471 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90928529 - } - }, - { - "id": 90888933, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -79.63879, - 43.5829 - ], - [ - -79.63879, - 43.5829 - ], - [ - -79.63879, - 43.5829 - ], - [ - -79.63879, - 43.5829 - ], - [ - -79.63879, - 43.5829 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "mcac_cyclofix" - }, - "id": 90888933 - } - }, - { - "id": 90881057, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0722033, - 51.2134005 - ], - [ - 3.0726153, - 51.2134005 - ], - [ - 3.0726153, - 51.2139989 - ], - [ - 3.0722033, - 51.2139989 - ], - [ - 3.0722033, - 51.2134005 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "fietsstraten", - "theme-creator": "MapComlete" - }, - "id": 90881057 - } - }, - { - "id": 90850604, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2413995, - 50.8975156 - ], - [ - 4.2454397, - 50.8975156 - ], - [ - 4.2454397, - 50.8992916 - ], - [ - 4.2413995, - 50.8992916 - ], - [ - 4.2413995, - 50.8975156 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "fietsstraten", - "theme-creator": "MapComlete" - }, - "id": 90850604 - } - }, - { - "id": 90823549, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.0282936, - 50.4268354 - ], - [ - 6.0282936, - 50.4268354 - ], - [ - 6.0282936, - 50.4268354 - ], - [ - 6.0282936, - 50.4268354 - ], - [ - 6.0282936, - 50.4268354 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "metamap" - }, - "id": 90823549 - } - }, - { - "id": 90822349, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0973786, - 51.2009547 - ], - [ - 3.1226284, - 51.2009547 - ], - [ - 3.1226284, - 51.2082642 - ], - [ - 3.0973786, - 51.2082642 - ], - [ - 3.0973786, - 51.2009547 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "natuurpunt" - }, - "id": 90822349 - } - }, - { - "id": 90820369, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0384395, - 51.2138733 - ], - [ - 3.0440887, - 51.2138733 - ], - [ - 3.0440887, - 51.2163462 - ], - [ - 3.0384395, - 51.2163462 - ], - [ - 3.0384395, - 51.2138733 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "natuurpunt" - }, - "id": 90820369 - } - }, - { - "id": 90817864, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0298474, - 51.2048197 - ], - [ - 3.1571638, - 51.2048197 - ], - [ - 3.1571638, - 51.2295839 - ], - [ - 3.0298474, - 51.2295839 - ], - [ - 3.0298474, - 51.2048197 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "natuurpunt" - }, - "id": 90817864 - } - }, - { - "id": 90804365, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.783046, - 48.868994 - ], - [ - 2.785886, - 48.868994 - ], - [ - 2.785886, - 48.8691832 - ], - [ - 2.783046, - 48.8691832 - ], - [ - 2.783046, - 48.868994 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "MapComplete" - }, - "id": 90804365 - } - }, - { - "id": 90798265, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0611928, - 51.2168591 - ], - [ - 3.2002039, - 51.2168591 - ], - [ - 3.2002039, - 51.2625939 - ], - [ - 3.0611928, - 51.2625939 - ], - [ - 3.0611928, - 51.2168591 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "natuurpunt" - }, - "id": 90798265 - } - }, - { - "id": 90795847, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -79.63879, - 43.5829 - ], - [ - -79.6381133, - 43.5829 - ], - [ - -79.6381133, - 43.5839109 - ], - [ - -79.63879, - 43.5839109 - ], - [ - -79.63879, - 43.5829 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90795847 - } - }, - { - "id": 90794795, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0905322, - 51.2934469 - ], - [ - 3.0983311, - 51.2934469 - ], - [ - 3.0983311, - 51.2974987 - ], - [ - 3.0905322, - 51.2974987 - ], - [ - 3.0905322, - 51.2934469 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur" - }, - "id": 90794795 - } - }, - { - "id": 90794775, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0930319, - 51.2872258 - ], - [ - 3.1380583, - 51.2872258 - ], - [ - 3.1380583, - 51.2949496 - ], - [ - 3.0930319, - 51.2949496 - ], - [ - 3.0930319, - 51.2872258 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "natuurpunt" - }, - "id": 90794775 - } - }, - { - "id": 90790543, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.7129347, - 41.2189164 - ], - [ - 1.7129347, - 41.2189164 - ], - [ - 1.7129347, - 41.2189164 - ], - [ - 1.7129347, - 41.2189164 - ], - [ - 1.7129347, - 41.2189164 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "arbres", - "theme-creator": "" - }, - "id": 90790543 - } - }, - { - "id": 90787182, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.7129347, - 41.2189164 - ], - [ - 1.7129347, - 41.2189164 - ], - [ - 1.7129347, - 41.2189164 - ], - [ - 1.7129347, - 41.2189164 - ], - [ - 1.7129347, - 41.2189164 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "arbres", - "theme-creator": "" - }, - "id": 90787182 - } - }, - { - "id": 90786503, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.7129347, - 41.2189164 - ], - [ - 1.7129347, - 41.2189164 - ], - [ - 1.7129347, - 41.2189164 - ], - [ - 1.7129347, - 41.2189164 - ], - [ - 1.7129347, - 41.2189164 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "id", - "theme-creator": "" - }, - "id": 90786503 - } - }, - { - "id": 90764596, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3127427, - 50.9974897 - ], - [ - 3.3127427, - 50.9974897 - ], - [ - 3.3127427, - 50.9974897 - ], - [ - 3.3127427, - 50.9974897 - ], - [ - 3.3127427, - 50.9974897 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90764596 - } - }, - { - "id": 90762633, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5999932, - 52.370244 - ], - [ - 6.5999932, - 52.370244 - ], - [ - 6.5999932, - 52.370244 - ], - [ - 6.5999932, - 52.370244 - ], - [ - 6.5999932, - 52.370244 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "MapComplete" - }, - "id": 90762633 - } - }, - { - "id": 90754649, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3127427, - 50.9974897 - ], - [ - 3.3127427, - 50.9974897 - ], - [ - 3.3127427, - 50.9974897 - ], - [ - 3.3127427, - 50.9974897 - ], - [ - 3.3127427, - 50.9974897 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90754649 - } - }, - { - "id": 90711850, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.5959271, - -33.0486028 - ], - [ - -71.3698071, - -33.0486028 - ], - [ - -71.3698071, - -33.0100645 - ], - [ - -71.5959271, - -33.0100645 - ], - [ - -71.5959271, - -33.0486028 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90711850 - } - }, - { - "id": 90661800, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2224005, - 51.2067593 - ], - [ - 3.2282317, - 51.2067593 - ], - [ - 3.2282317, - 51.2086872 - ], - [ - 3.2224005, - 51.2086872 - ], - [ - 3.2224005, - 51.2067593 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90661800 - } - }, - { - "id": 90652529, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.2973613, - 47.0467053 - ], - [ - 8.3086603, - 47.0467053 - ], - [ - 8.3086603, - 47.0495842 - ], - [ - 8.2973613, - 47.0495842 - ], - [ - 8.2973613, - 47.0467053 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90652529 - } - }, - { - "id": 90604385, - "type": "Feature", - "geometry": null, - "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:01:50Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "cyclofix" - }, - "id": 90604385 - } - }, - { - "id": 90604349, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2464424, - -39.8147245 - ], - [ - -73.2464424, - -39.8147245 - ], - [ - -73.2464424, - -39.8147245 - ], - [ - -73.2464424, - -39.8147245 - ], - [ - -73.2464424, - -39.8147245 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90604349 - } - }, - { - "id": 90604182, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2578793, - -39.8176759 - ], - [ - -73.2449672, - -39.8176759 - ], - [ - -73.2449672, - -39.8063609 - ], - [ - -73.2578793, - -39.8063609 - ], - [ - -73.2578793, - -39.8176759 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90604182 - } - }, - { - "id": 90604181, - "type": "Feature", - "geometry": null, - "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": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "cyclofix" - }, - "id": 90604181 - } - }, - { - "id": 90604111, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2518088, - -39.8113305 - ], - [ - -73.241389, - -39.8113305 - ], - [ - -73.241389, - -39.8063432 - ], - [ - -73.2518088, - -39.8063432 - ], - [ - -73.2518088, - -39.8113305 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90604111 - } - }, - { - "id": 90604050, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.241389, - -39.8163547 - ], - [ - -73.2353919, - -39.8163547 - ], - [ - -73.2353919, - -39.8113305 - ], - [ - -73.241389, - -39.8113305 - ], - [ - -73.241389, - -39.8163547 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90604050 - } - }, - { - "id": 90604049, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "cyclofix" - }, - "id": 90604049 - } - }, - { - "id": 90604044, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2353919, - -39.8163547 - ], - [ - -73.2353919, - -39.8163547 - ], - [ - -73.2353919, - -39.8163547 - ], - [ - -73.2353919, - -39.8163547 - ], - [ - -73.2353919, - -39.8163547 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90604044 - } - }, - { - "id": 90603787, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2480776, - -39.8418411 - ], - [ - -73.2353919, - -39.8418411 - ], - [ - -73.2353919, - -39.8163547 - ], - [ - -73.2480776, - -39.8163547 - ], - [ - -73.2480776, - -39.8418411 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90603787 - } - }, - { - "id": 90603171, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2494621, - -39.8246937 - ], - [ - -73.2455967, - -39.8246937 - ], - [ - -73.2455967, - -39.8177069 - ], - [ - -73.2494621, - -39.8177069 - ], - [ - -73.2494621, - -39.8246937 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90603171 - } - }, - { - "id": 90603167, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2475689, - -39.8148325 - ], - [ - -73.2475689, - -39.8148325 - ], - [ - -73.2475689, - -39.8148325 - ], - [ - -73.2475689, - -39.8148325 - ], - [ - -73.2475689, - -39.8148325 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90603167 - } - }, - { - "id": 90603151, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2475689, - -39.8148325 - ], - [ - -73.2475689, - -39.8148325 - ], - [ - -73.2475689, - -39.8148325 - ], - [ - -73.2475689, - -39.8148325 - ], - [ - -73.2475689, - -39.8148325 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90603151 - } - }, - { - "id": 90603089, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2345805, - 51.2031733 - ], - [ - 3.2345805, - 51.2031733 - ], - [ - 3.2345805, - 51.2031733 - ], - [ - 3.2345805, - 51.2031733 - ], - [ - 3.2345805, - 51.2031733 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90603089 - } - }, - { - "id": 90603030, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2507734, - -39.8148325 - ], - [ - -73.2475689, - -39.8148325 - ], - [ - -73.2475689, - -39.8131987 - ], - [ - -73.2507734, - -39.8131987 - ], - [ - -73.2507734, - -39.8148325 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90603030 - } - }, - { - "id": 90602768, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2538817, - -39.8163043 - ], - [ - -73.2459963, - -39.8163043 - ], - [ - -73.2459963, - -39.8099498 - ], - [ - -73.2538817, - -39.8099498 - ], - [ - -73.2538817, - -39.8163043 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90602768 - } - }, - { - "id": 90601225, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2484126, - 51.2111854 - ], - [ - 3.2484126, - 51.2111854 - ], - [ - 3.2484126, - 51.2111854 - ], - [ - 3.2484126, - 51.2111854 - ], - [ - 3.2484126, - 51.2111854 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "artworks", - "theme-creator": "MapComplete" - }, - "id": 90601225 - } - }, - { - "id": 90601201, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2482271, - 51.2104183 - ], - [ - 3.2540758, - 51.2104183 - ], - [ - 3.2540758, - 51.211164 - ], - [ - 3.2482271, - 51.211164 - ], - [ - 3.2482271, - 51.2104183 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "fietsstraten", - "theme-creator": "MapComlete" - }, - "id": 90601201 - } - }, - { - "id": 90600775, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2358062, - 51.2114287 - ], - [ - 3.2358062, - 51.2114287 - ], - [ - 3.2358062, - 51.2114287 - ], - [ - 3.2358062, - 51.2114287 - ], - [ - 3.2358062, - 51.2114287 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "artworks", - "theme-creator": "MapComplete" - }, - "id": 90600775 - } - }, - { - "id": 90595733, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2215959, - 51.2212911 - ], - [ - 3.2334049, - 51.2212911 - ], - [ - 3.2334049, - 51.2300056 - ], - [ - 3.2215959, - 51.2300056 - ], - [ - 3.2215959, - 51.2212911 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "artworks", - "theme-creator": "MapComplete" - }, - "id": 90595733 - } - }, - { - "id": 90595520, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2208985, - 51.216683 - ], - [ - 3.2215959, - 51.216683 - ], - [ - 3.2215959, - 51.2212911 - ], - [ - 3.2208985, - 51.2212911 - ], - [ - 3.2208985, - 51.216683 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "artworks", - "theme-creator": "MapComplete" - }, - "id": 90595520 - } - }, - { - "id": 90577730, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.5607954, - 50.001676 - ], - [ - 14.5607954, - 50.001676 - ], - [ - 14.5607954, - 50.001676 - ], - [ - 14.5607954, - 50.001676 - ], - [ - 14.5607954, - 50.001676 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "theme-creator": "MapComplete" - }, - "id": 90577730 - } - }, - { - "id": 90551017, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -79.6735588, - 43.5652092 - ], - [ - -79.6735588, - 43.5652092 - ], - [ - -79.6735588, - 43.5652092 - ], - [ - -79.6735588, - 43.5652092 - ], - [ - -79.6735588, - 43.5652092 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90551017 - } - }, - { - "id": 90548086, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -79.6278, - 43.57749 - ], - [ - -79.60326, - 43.57749 - ], - [ - -79.60326, - 43.60304 - ], - [ - -79.6278, - 43.60304 - ], - [ - -79.6278, - 43.57749 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90548086 - } - }, - { - "id": 90545395, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.8328018, - 48.0944493 - ], - [ - 11.8328018, - 48.0944493 - ], - [ - 11.8328018, - 48.0944493 - ], - [ - 11.8328018, - 48.0944493 - ], - [ - 11.8328018, - 48.0944493 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "MapComplete" - }, - "id": 90545395 - } - }, - { - "id": 90544563, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2067016, - 51.2297585 - ], - [ - 3.2067016, - 51.2297585 - ], - [ - 3.2067016, - 51.2297585 - ], - [ - 3.2067016, - 51.2297585 - ], - [ - 3.2067016, - 51.2297585 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "toilets", - "theme-creator": "MapComplete" - }, - "id": 90544563 - } - }, - { - "id": 90502031, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2313484, - -39.8499905 - ], - [ - -73.2258036, - -39.8499905 - ], - [ - -73.2258036, - -39.8461406 - ], - [ - -73.2313484, - -39.8461406 - ], - [ - -73.2313484, - -39.8499905 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90502031 - } - }, - { - "id": 90496495, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.1942815, - 44.0447939 - ], - [ - -73.1942815, - 44.0447939 - ], - [ - -73.1942815, - 44.0447939 - ], - [ - -73.1942815, - 44.0447939 - ], - [ - -73.1942815, - 44.0447939 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "theme-creator": "MapComplete" - }, - "id": 90496495 - } - }, - { - "id": 90491879, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -79.5897301, - 43.5507798 - ], - [ - -79.5897301, - 43.5507798 - ], - [ - -79.5897301, - 43.5507798 - ], - [ - -79.5897301, - 43.5507798 - ], - [ - -79.5897301, - 43.5507798 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90491879 - } - }, - { - "id": 90491318, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2343784, - -39.856532 - ], - [ - -73.2343784, - -39.856532 - ], - [ - -73.2343784, - -39.856532 - ], - [ - -73.2343784, - -39.856532 - ], - [ - -73.2343784, - -39.856532 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90491318 - } - }, - { - "id": 90488367, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2310726, - -39.8484284 - ], - [ - -73.2310726, - -39.8484284 - ], - [ - -73.2310726, - -39.8484284 - ], - [ - -73.2310726, - -39.8484284 - ], - [ - -73.2310726, - -39.8484284 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90488367 - } - }, - { - "id": 90485445, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -79.6308805, - 43.7138655 - ], - [ - -79.6308805, - 43.7138655 - ], - [ - -79.6308805, - 43.7138655 - ], - [ - -79.6308805, - 43.7138655 - ], - [ - -79.6308805, - 43.7138655 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90485445 - } - }, - { - "id": 90484657, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.135143, - 51.1197075 - ], - [ - 3.1997142, - 51.1197075 - ], - [ - 3.1997142, - 51.1367595 - ], - [ - 3.135143, - 51.1367595 - ], - [ - 3.135143, - 51.1197075 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90484657 - } - }, - { - "id": 90484603, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1979343, - 51.184002 - ], - [ - 3.1994966, - 51.184002 - ], - [ - 3.1994966, - 51.1842709 - ], - [ - 3.1979343, - 51.1842709 - ], - [ - 3.1979343, - 51.184002 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90484603 - } - }, - { - "id": 90484579, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1817716, - 51.1709922 - ], - [ - 3.2146575, - 51.1709922 - ], - [ - 3.2146575, - 51.1875987 - ], - [ - 3.1817716, - 51.1875987 - ], - [ - 3.1817716, - 51.1709922 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90484579 - } - }, - { - "id": 90484524, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.213119, - 51.1853752 - ], - [ - 3.2146575, - 51.1853752 - ], - [ - 3.2146575, - 51.1875987 - ], - [ - 3.213119, - 51.1875987 - ], - [ - 3.213119, - 51.1853752 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90484524 - } - }, - { - "id": 90484484, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2134655, - 51.182406 - ], - [ - 3.2135419, - 51.182406 - ], - [ - 3.2135419, - 51.1825662 - ], - [ - 3.2134655, - 51.1825662 - ], - [ - 3.2134655, - 51.182406 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90484484 - } - }, - { - "id": 90484476, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2127303, - 51.1816169 - ], - [ - 3.2144406, - 51.1816169 - ], - [ - 3.2144406, - 51.1821582 - ], - [ - 3.2127303, - 51.1821582 - ], - [ - 3.2127303, - 51.1816169 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90484476 - } - }, - { - "id": 90484462, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2127303, - 51.1805617 - ], - [ - 3.216322, - 51.1805617 - ], - [ - 3.216322, - 51.1819418 - ], - [ - 3.2127303, - 51.1819418 - ], - [ - 3.2127303, - 51.1805617 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90484462 - } - }, - { - "id": 90484441, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2131034, - 51.1801253 - ], - [ - 3.2180084, - 51.1801253 - ], - [ - 3.2180084, - 51.1812005 - ], - [ - 3.2131034, - 51.1812005 - ], - [ - 3.2131034, - 51.1801253 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90484441 - } - }, - { - "id": 90484416, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2132431, - 51.1810062 - ], - [ - 3.2167892, - 51.1810062 - ], - [ - 3.2167892, - 51.1833427 - ], - [ - 3.2132431, - 51.1833427 - ], - [ - 3.2132431, - 51.1810062 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90484416 - } - }, - { - "id": 90484407, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2128136, - 51.1808161 - ], - [ - 3.213658, - 51.1808161 - ], - [ - 3.213658, - 51.1832297 - ], - [ - 3.2128136, - 51.1832297 - ], - [ - 3.2128136, - 51.1808161 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90484407 - } - }, - { - "id": 90484386, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2125179, - 51.1808161 - ], - [ - 3.2139766, - 51.1808161 - ], - [ - 3.2139766, - 51.1814128 - ], - [ - 3.2125179, - 51.1814128 - ], - [ - 3.2125179, - 51.1808161 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90484386 - } - }, - { - "id": 90484362, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2121273, - 51.1797192 - ], - [ - 3.2190593, - 51.1797192 - ], - [ - 3.2190593, - 51.1818576 - ], - [ - 3.2121273, - 51.1818576 - ], - [ - 3.2121273, - 51.1797192 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90484362 - } - }, - { - "id": 90484347, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1758932, - 51.1777163 - ], - [ - 3.2190593, - 51.1777163 - ], - [ - 3.2190593, - 51.1933781 - ], - [ - 3.1758932, - 51.1933781 - ], - [ - 3.1758932, - 51.1777163 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90484347 - } - }, - { - "id": 90484292, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1484465, - 51.1637434 - ], - [ - 3.1856273, - 51.1637434 - ], - [ - 3.1856273, - 51.1849085 - ], - [ - 3.1484465, - 51.1849085 - ], - [ - 3.1484465, - 51.1637434 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90484292 - } - }, - { - "id": 90484263, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1373467, - 51.1628085 - ], - [ - 3.1634803, - 51.1628085 - ], - [ - 3.1634803, - 51.1744478 - ], - [ - 3.1373467, - 51.1744478 - ], - [ - 3.1373467, - 51.1628085 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90484263 - } - }, - { - "id": 90484234, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1322364, - 51.1528016 - ], - [ - 3.1669482, - 51.1528016 - ], - [ - 3.1669482, - 51.1701009 - ], - [ - 3.1322364, - 51.1701009 - ], - [ - 3.1322364, - 51.1528016 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90484234 - } - }, - { - "id": 90484202, - "type": "Feature", - "geometry": null, - "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:21:55Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 90484202 - } - }, - { - "id": 90484112, - "type": "Feature", - "geometry": null, - "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:19:25Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": {}, - "id": 90484112 - } - }, - { - "id": 90484052, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0914494, - 51.1387412 - ], - [ - 3.2119075, - 51.1387412 - ], - [ - 3.2119075, - 51.1918369 - ], - [ - 3.0914494, - 51.1918369 - ], - [ - 3.0914494, - 51.1387412 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90484052 - } - }, - { - "id": 90483985, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2169645, - 51.2003021 - ], - [ - 3.2345812, - 51.2003021 - ], - [ - 3.2345812, - 51.2159391 - ], - [ - 3.2169645, - 51.2159391 - ], - [ - 3.2169645, - 51.2003021 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90483985 - } - }, - { - "id": 90483916, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2243683, - 51.2151123 - ], - [ - 3.2248167, - 51.2151123 - ], - [ - 3.2248167, - 51.2156745 - ], - [ - 3.2243683, - 51.2156745 - ], - [ - 3.2243683, - 51.2151123 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90483916 - } - }, - { - "id": 90483843, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2232676, - 51.2138109 - ], - [ - 3.2234975, - 51.2138109 - ], - [ - 3.2234975, - 51.2140895 - ], - [ - 3.2232676, - 51.2140895 - ], - [ - 3.2232676, - 51.2138109 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90483843 - } - }, - { - "id": 90482341, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.6545139, - 48.8350604 - ], - [ - 2.6545139, - 48.8350604 - ], - [ - 2.6545139, - 48.8350604 - ], - [ - 2.6545139, - 48.8350604 - ], - [ - 2.6545139, - 48.8350604 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "MapComplete" - }, - "id": 90482341 - } - }, - { - "id": 90479608, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4582219, - 50.7655275 - ], - [ - 4.4613716, - 50.7655275 - ], - [ - 4.4613716, - 50.7667158 - ], - [ - 4.4582219, - 50.7667158 - ], - [ - 4.4582219, - 50.7655275 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90479608 - } - }, - { - "id": 90479591, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3789383, - 50.7247746 - ], - [ - 4.4928758, - 50.7247746 - ], - [ - 4.4928758, - 50.8236192 - ], - [ - 4.3789383, - 50.8236192 - ], - [ - 4.3789383, - 50.7247746 - ] - ] - ] - }, - "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, - "metadata": {}, - "id": 90479591 - } - }, - { - "id": 90478757, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -38.4611039, - -12.9941605 - ], - [ - -38.4402808, - -12.9941605 - ], - [ - -38.4402808, - -12.9910504 - ], - [ - -38.4611039, - -12.9910504 - ], - [ - -38.4611039, - -12.9941605 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90478757 - } - }, - { - "id": 90476470, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.4465184, - 53.7564267 - ], - [ - -0.4463608, - 53.7564267 - ], - [ - -0.4463608, - 53.7565181 - ], - [ - -0.4465184, - 53.7565181 - ], - [ - -0.4465184, - 53.7564267 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "toilets", - "theme-creator": "MapComplete" - }, - "id": 90476470 - } - }, - { - "id": 90473079, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.2999192, - 50.6319916 - ], - [ - -1.1659971, - 50.6319916 - ], - [ - -1.1659971, - 50.6716628 - ], - [ - -1.2999192, - 50.6716628 - ], - [ - -1.2999192, - 50.6319916 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90473079 - } - }, - { - "id": 90460448, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.7244354, - 41.2244861 - ], - [ - 1.7245436, - 41.2244861 - ], - [ - 1.7245436, - 41.2245204 - ], - [ - 1.7244354, - 41.2245204 - ], - [ - 1.7244354, - 41.2244861 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "velocidad", - "theme-creator": "" - }, - "id": 90460448 - } - }, - { - "id": 90454739, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4636974, - 50.9247651 - ], - [ - 4.4636974, - 50.9247651 - ], - [ - 4.4636974, - 50.9247651 - ], - [ - 4.4636974, - 50.9247651 - ], - [ - 4.4636974, - 50.9247651 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "theme-creator": "MapComplete" - }, - "id": 90454739 - } - }, - { - "id": 90451385, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4636974, - 50.9247651 - ], - [ - 4.4636974, - 50.9247651 - ], - [ - 4.4636974, - 50.9247651 - ], - [ - 4.4636974, - 50.9247651 - ], - [ - 4.4636974, - 50.9247651 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "ghostbikes", - "theme-creator": "MapComplete" - }, - "id": 90451385 - } - }, - { - "id": 90435151, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2180207, - 51.197203 - ], - [ - 3.2180207, - 51.197203 - ], - [ - 3.2180207, - 51.197203 - ], - [ - 3.2180207, - 51.197203 - ], - [ - 3.2180207, - 51.197203 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "MapComplete" - }, - "id": 90435151 - } - }, - { - "id": 90374163, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3383041, - 50.8361895 - ], - [ - 4.3383041, - 50.8361895 - ], - [ - 4.3383041, - 50.8361895 - ], - [ - 4.3383041, - 50.8361895 - ], - [ - 4.3383041, - 50.8361895 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "MapComplete" - }, - "id": 90374163 - } - }, - { - "id": 90358508, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2114893, - 51.2100257 - ], - [ - 3.2114893, - 51.2100257 - ], - [ - 3.2114893, - 51.2100257 - ], - [ - 3.2114893, - 51.2100257 - ], - [ - 3.2114893, - 51.2100257 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "artworks", - "theme-creator": "MapComplete" - }, - "id": 90358508 - } - }, - { - "id": 90327941, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198712, - 51.2156964 - ], - [ - 3.2198712, - 51.2156964 - ], - [ - 3.2198712, - 51.2156964 - ], - [ - 3.2198712, - 51.2156964 - ], - [ - 3.2198712, - 51.2156964 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix" - }, - "id": 90327941 - } - }, - { - "id": 90325360, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2384697, - 51.2020032 - ], - [ - 3.2384697, - 51.2020032 - ], - [ - 3.2384697, - 51.2020032 - ], - [ - 3.2384697, - 51.2020032 - ], - [ - 3.2384697, - 51.2020032 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "artworks", - "theme-creator": "MapComplete" - }, - "id": 90325360 - } - }, - { - "id": 90317681, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2114893, - 51.2100257 - ], - [ - 3.2114893, - 51.2100257 - ], - [ - 3.2114893, - 51.2100257 - ], - [ - 3.2114893, - 51.2100257 - ], - [ - 3.2114893, - 51.2100257 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "artworks", - "theme-creator": "Not logged in" - }, - "id": 90317681 - } - }, - { - "id": 90296993, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2147589, - 51.2024284 - ], - [ - 3.2147589, - 51.2024284 - ], - [ - 3.2147589, - 51.2024284 - ], - [ - 3.2147589, - 51.2024284 - ], - [ - 3.2147589, - 51.2024284 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "artworks", - "theme-creator": "MapComplete" - }, - "id": 90296993 - } - }, - { - "id": 90292472, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2206893, - 51.2188868 - ], - [ - 3.2206893, - 51.2188868 - ], - [ - 3.2206893, - 51.2188868 - ], - [ - 3.2206893, - 51.2188868 - ], - [ - 3.2206893, - 51.2188868 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "bookcases", - "theme-creator": "MapComplete" - }, - "id": 90292472 - } - }, - { - "id": 90263965, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.147864, - 45.6065378 - ], - [ - 5.1574179, - 45.6065378 - ], - [ - 5.1574179, - 45.6130243 - ], - [ - 5.147864, - 45.6130243 - ], - [ - 5.147864, - 45.6065378 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "aed", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 90263965 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2021-1.json b/Docs/Tools/stats/stats.2021-1.json deleted file mode 100644 index b710c326a8..0000000000 --- a/Docs/Tools/stats/stats.2021-1.json +++ /dev/null @@ -1,9592 +0,0 @@ -{ - "features": [ - { - "id": 98467725, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.7796857, - 51.8088695 - ], - [ - 5.7809308, - 51.8088695 - ], - [ - 5.7809308, - 51.8122713 - ], - [ - 5.7796857, - 51.8122713 - ], - [ - 5.7796857, - 51.8088695 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 98467725 - } - }, - { - "id": 98467603, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.0409462, - 53.0849773 - ], - [ - 6.0684117, - 53.0849773 - ], - [ - 6.0684117, - 53.0979698 - ], - [ - 6.0409462, - 53.0979698 - ], - [ - 6.0409462, - 53.0849773 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 98467603 - } - }, - { - "id": 98460295, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5669108, - 52.7998573 - ], - [ - 6.1194893, - 52.7998573 - ], - [ - 6.1194893, - 53.150287 - ], - [ - 5.5669108, - 53.150287 - ], - [ - 5.5669108, - 52.7998573 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 98460295 - } - }, - { - "id": 98456272, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0687313, - 49.0363479 - ], - [ - 9.0687313, - 49.0363479 - ], - [ - 9.0687313, - 49.0363479 - ], - [ - 9.0687313, - 49.0363479 - ], - [ - 9.0687313, - 49.0363479 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 98456272 - } - }, - { - "id": 98449135, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.053475, - 53.0956567 - ], - [ - 6.0586235, - 53.0956567 - ], - [ - 6.0586235, - 53.0992389 - ], - [ - 6.053475, - 53.0992389 - ], - [ - 6.053475, - 53.0956567 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 98449135 - } - }, - { - "id": 98448481, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.0510756, - 53.0961203 - ], - [ - 6.0513908, - 53.0961203 - ], - [ - 6.0513908, - 53.096341 - ], - [ - 6.0510756, - 53.096341 - ], - [ - 6.0510756, - 53.0961203 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 98448481 - } - }, - { - "id": 98448320, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.0378647, - 53.0978896 - ], - [ - 6.0378647, - 53.0978896 - ], - [ - 6.0378647, - 53.0978896 - ], - [ - 6.0378647, - 53.0978896 - ], - [ - 6.0378647, - 53.0978896 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "picnictable", - "imagery": "osm", - "language": "en" - }, - "id": 98448320 - } - }, - { - "id": 98437369, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 145.5554413, - -43.163457 - ], - [ - 147.4945273, - -43.163457 - ], - [ - 147.4945273, - -41.0035878 - ], - [ - 145.5554413, - -41.0035878 - ], - [ - 145.5554413, - -43.163457 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 98437369 - } - }, - { - "id": 98417963, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4986818, - 50.8026159 - ], - [ - 4.4986818, - 50.8026159 - ], - [ - 4.4986818, - 50.8026159 - ], - [ - 4.4986818, - 50.8026159 - ], - [ - 4.4986818, - 50.8026159 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 98417963 - } - }, - { - "id": 98416814, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4937944, - 50.8055185 - ], - [ - 4.4938105, - 50.8055185 - ], - [ - 4.4938105, - 50.8055897 - ], - [ - 4.4937944, - 50.8055897 - ], - [ - 4.4937944, - 50.8055185 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.braindeaddev.com", - "theme": "trees", - "imagery": "osm", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 98416814 - } - }, - { - "id": 98412650, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5107419, - 50.8179282 - ], - [ - 4.5107419, - 50.8179282 - ], - [ - 4.5107419, - 50.8179282 - ], - [ - 4.5107419, - 50.8179282 - ], - [ - 4.5107419, - 50.8179282 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "maps", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 98412650 - } - }, - { - "id": 98410641, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.408983, - 50.8379633 - ], - [ - 4.408983, - 50.8379633 - ], - [ - 4.408983, - 50.8379633 - ], - [ - 4.408983, - 50.8379633 - ], - [ - 4.408983, - 50.8379633 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 98410641 - } - }, - { - "id": 98374817, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7380204, - 51.048925 - ], - [ - 3.7380204, - 51.048925 - ], - [ - 3.7380204, - 51.048925 - ], - [ - 3.7380204, - 51.048925 - ], - [ - 3.7380204, - 51.048925 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98374817 - } - }, - { - "id": 98371877, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.0406789, - 53.0979354 - ], - [ - 6.0628247, - 53.0979354 - ], - [ - 6.0628247, - 53.1031484 - ], - [ - 6.0406789, - 53.1031484 - ], - [ - 6.0406789, - 53.0979354 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 98371877 - } - }, - { - "id": 98352985, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4290511, - 46.953448 - ], - [ - 7.4290511, - 46.953448 - ], - [ - 7.4290511, - 46.953448 - ], - [ - 7.4290511, - 46.953448 - ], - [ - 7.4290511, - 46.953448 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98352985 - } - }, - { - "id": 98322167, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6937297, - 51.0523542 - ], - [ - 3.6937297, - 51.0523542 - ], - [ - 3.6937297, - 51.0523542 - ], - [ - 3.6937297, - 51.0523542 - ], - [ - 3.6937297, - 51.0523542 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98322167 - } - }, - { - "id": 98322082, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6964649, - 51.051195 - ], - [ - 3.6964649, - 51.051195 - ], - [ - 3.6964649, - 51.051195 - ], - [ - 3.6964649, - 51.051195 - ], - [ - 3.6964649, - 51.051195 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98322082 - } - }, - { - "id": 98306989, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8408401, - 50.8815561 - ], - [ - 4.8416126, - 50.8815561 - ], - [ - 4.8416126, - 50.8848271 - ], - [ - 4.8408401, - 50.8848271 - ], - [ - 4.8408401, - 50.8815561 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "AGIV10cm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 98306989 - } - }, - { - "id": 98301641, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.9056929, - 45.3879524 - ], - [ - 10.9157418, - 45.3879524 - ], - [ - 10.9157418, - 45.3967236 - ], - [ - 10.9056929, - 45.3967236 - ], - [ - 10.9056929, - 45.3879524 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98301641 - } - }, - { - "id": 98229218, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9008009, - 51.092196 - ], - [ - 4.9008009, - 51.092196 - ], - [ - 4.9008009, - 51.092196 - ], - [ - 4.9008009, - 51.092196 - ], - [ - 4.9008009, - 51.092196 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 98229218 - } - }, - { - "id": 98229099, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9006078, - 51.0918961 - ], - [ - 4.9006078, - 51.0918961 - ], - [ - 4.9006078, - 51.0918961 - ], - [ - 4.9006078, - 51.0918961 - ], - [ - 4.9006078, - 51.0918961 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 98229099 - } - }, - { - "id": 98198969, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6955127, - 51.082431 - ], - [ - 3.6955127, - 51.082431 - ], - [ - 3.6955127, - 51.082431 - ], - [ - 3.6955127, - 51.082431 - ], - [ - 3.6955127, - 51.082431 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98198969 - } - }, - { - "id": 98183437, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4140841, - 50.8041069 - ], - [ - 4.4144167, - 50.8041069 - ], - [ - 4.4144167, - 50.8042984 - ], - [ - 4.4140841, - 50.8042984 - ], - [ - 4.4140841, - 50.8041069 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 98183437 - } - }, - { - "id": 98148467, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6898487, - 51.0655256 - ], - [ - 3.6898487, - 51.0655256 - ], - [ - 3.6898487, - 51.0655256 - ], - [ - 3.6898487, - 51.0655256 - ], - [ - 3.6898487, - 51.0655256 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98148467 - } - }, - { - "id": 98148236, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6898487, - 51.0655256 - ], - [ - 3.6898487, - 51.0655256 - ], - [ - 3.6898487, - 51.0655256 - ], - [ - 3.6898487, - 51.0655256 - ], - [ - 3.6898487, - 51.0655256 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98148236 - } - }, - { - "id": 98143845, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1300977, - 50.9478119 - ], - [ - 3.1300977, - 50.9478119 - ], - [ - 3.1300977, - 50.9478119 - ], - [ - 3.1300977, - 50.9478119 - ], - [ - 3.1300977, - 50.9478119 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 98143845 - } - }, - { - "id": 98134697, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.748073, - 51.1599763 - ], - [ - 4.748073, - 51.1599763 - ], - [ - 4.748073, - 51.1599763 - ], - [ - 4.748073, - 51.1599763 - ], - [ - 4.748073, - 51.1599763 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.braindeaddev.com", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98134697 - } - }, - { - "id": 98058241, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2304955, - 51.2069292 - ], - [ - 3.2304955, - 51.2069292 - ], - [ - 3.2304955, - 51.2069292 - ], - [ - 3.2304955, - 51.2069292 - ], - [ - 3.2304955, - 51.2069292 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98058241 - } - }, - { - "id": 98057411, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.239902, - 51.2126842 - ], - [ - 3.239902, - 51.2126842 - ], - [ - 3.239902, - 51.2126842 - ], - [ - 3.239902, - 51.2126842 - ], - [ - 3.239902, - 51.2126842 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98057411 - } - }, - { - "id": 98049808, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.349306, - 51.464882 - ], - [ - 4.35603, - 51.464882 - ], - [ - 4.35603, - 51.469799 - ], - [ - 4.349306, - 51.469799 - ], - [ - 4.349306, - 51.464882 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 98049808 - } - }, - { - "id": 98046838, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3193504, - 51.4732841 - ], - [ - 4.3352088, - 51.4732841 - ], - [ - 4.3352088, - 51.4844644 - ], - [ - 4.3193504, - 51.4844644 - ], - [ - 4.3193504, - 51.4732841 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 98046838 - } - }, - { - "id": 98046406, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3218066, - 51.4625673 - ], - [ - 4.3559635, - 51.4625673 - ], - [ - 4.3559635, - 51.4959413 - ], - [ - 4.3218066, - 51.4959413 - ], - [ - 4.3218066, - 51.4625673 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 98046406 - } - }, - { - "id": 98032028, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5590145, - 51.9723111 - ], - [ - 4.5708393, - 51.9723111 - ], - [ - 4.5708393, - 51.9747015 - ], - [ - 4.5590145, - 51.9747015 - ], - [ - 4.5590145, - 51.9723111 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 98032028 - } - }, - { - "id": 98022407, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5711225, - 51.9655167 - ], - [ - 4.6082261, - 51.9655167 - ], - [ - 4.6082261, - 51.9794666 - ], - [ - 4.5711225, - 51.9794666 - ], - [ - 4.5711225, - 51.9655167 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 98022407 - } - }, - { - "id": 98021252, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5708393, - 51.9655853 - ], - [ - 4.6037455, - 51.9655853 - ], - [ - 4.6037455, - 51.9818498 - ], - [ - 4.5708393, - 51.9818498 - ], - [ - 4.5708393, - 51.9655853 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 98021252 - } - }, - { - "id": 98019711, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7288127, - 51.048693 - ], - [ - 3.7288127, - 51.048693 - ], - [ - 3.7288127, - 51.048693 - ], - [ - 3.7288127, - 51.048693 - ], - [ - 3.7288127, - 51.048693 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 98019711 - } - }, - { - "id": 97999677, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6169093, - 51.9650231 - ], - [ - 4.6180586, - 51.9650231 - ], - [ - 4.6180586, - 51.9654147 - ], - [ - 4.6169093, - 51.9654147 - ], - [ - 4.6169093, - 51.9650231 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 97999677 - } - }, - { - "id": 97982572, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7035888, - 51.0489731 - ], - [ - 3.7035888, - 51.0489731 - ], - [ - 3.7035888, - 51.0489731 - ], - [ - 3.7035888, - 51.0489731 - ], - [ - 3.7035888, - 51.0489731 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 97982572 - } - }, - { - "id": 97981296, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.557152, - 51.185359 - ], - [ - 3.557152, - 51.185359 - ], - [ - 3.557152, - 51.185359 - ], - [ - 3.557152, - 51.185359 - ], - [ - 3.557152, - 51.185359 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97981296 - } - }, - { - "id": 97975013, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7035888, - 51.0489731 - ], - [ - 3.7035888, - 51.0489731 - ], - [ - 3.7035888, - 51.0489731 - ], - [ - 3.7035888, - 51.0489731 - ], - [ - 3.7035888, - 51.0489731 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 97975013 - } - }, - { - "id": 97971861, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6857978, - 51.0409827 - ], - [ - 3.6879086, - 51.0409827 - ], - [ - 3.6879086, - 51.0422746 - ], - [ - 3.6857978, - 51.0422746 - ], - [ - 3.6857978, - 51.0409827 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "imagery": "osm", - "language": "nl" - }, - "id": 97971861 - } - }, - { - "id": 97970141, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.692058, - 51.0418462 - ], - [ - 3.692058, - 51.0418462 - ], - [ - 3.692058, - 51.0418462 - ], - [ - 3.692058, - 51.0418462 - ], - [ - 3.692058, - 51.0418462 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "climbing", - "imagery": "osm", - "language": "nl", - "theme-creator": "Christian Neumann " - }, - "id": 97970141 - } - }, - { - "id": 97969812, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6912695, - 51.0419221 - ], - [ - 3.691299, - 51.0419221 - ], - [ - 3.691299, - 51.0419743 - ], - [ - 3.6912695, - 51.0419743 - ], - [ - 3.6912695, - 51.0419221 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "pingpong", - "imagery": "osm", - "language": "nl" - }, - "id": 97969812 - } - }, - { - "id": 97969122, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5752049, - 51.9259902 - ], - [ - 4.645034, - 51.9259902 - ], - [ - 4.645034, - 51.9681904 - ], - [ - 4.5752049, - 51.9681904 - ], - [ - 4.5752049, - 51.9259902 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 97969122 - } - }, - { - "id": 97968558, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6060044, - 51.9365429 - ], - [ - 4.6278942, - 51.9365429 - ], - [ - 4.6278942, - 51.962617 - ], - [ - 4.6060044, - 51.962617 - ], - [ - 4.6060044, - 51.9365429 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 97968558 - } - }, - { - "id": 97953003, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4462985, - 52.4736401 - ], - [ - 13.4474803, - 52.4736401 - ], - [ - 13.4474803, - 52.4740318 - ], - [ - 13.4462985, - 52.4740318 - ], - [ - 13.4462985, - 52.4736401 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 97953003 - } - }, - { - "id": 97918475, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6169093, - 51.9650231 - ], - [ - 4.6180586, - 51.9650231 - ], - [ - 4.6180586, - 51.9654147 - ], - [ - 4.6169093, - 51.9654147 - ], - [ - 4.6169093, - 51.9650231 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 97918475 - } - }, - { - "id": 97905093, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.044655, - 50.6176232 - ], - [ - 3.0840117, - 50.6176232 - ], - [ - 3.0840117, - 50.6323187 - ], - [ - 3.044655, - 50.6323187 - ], - [ - 3.044655, - 50.6176232 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97905093 - } - }, - { - "id": 97905043, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6037455, - 51.9491391 - ], - [ - 4.6529281, - 51.9491391 - ], - [ - 4.6529281, - 51.9837 - ], - [ - 4.6037455, - 51.9837 - ], - [ - 4.6037455, - 51.9491391 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 97905043 - } - }, - { - "id": 97897996, - "type": "Feature", - "geometry": null, - "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-21T10:45:04Z", - "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": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 97897996 - } - }, - { - "id": 97890693, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9080803, - 52.3707729 - ], - [ - 4.911768, - 52.3707729 - ], - [ - 4.911768, - 52.3732069 - ], - [ - 4.9080803, - 52.3732069 - ], - [ - 4.9080803, - 52.3707729 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97890693 - } - }, - { - "id": 97850636, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6712294, - 51.0579776 - ], - [ - 3.6713705, - 51.0579776 - ], - [ - 3.6713705, - 51.0580749 - ], - [ - 3.6712294, - 51.0580749 - ], - [ - 3.6712294, - 51.0579776 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "imagery": "osm", - "language": "nl" - }, - "id": 97850636 - } - }, - { - "id": 97845480, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -77.0738197, - 39.0286883 - ], - [ - -77.0738197, - 39.0286883 - ], - [ - -77.0738197, - 39.0286883 - ], - [ - -77.0738197, - 39.0286883 - ], - [ - -77.0738197, - 39.0286883 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97845480 - } - }, - { - "id": 97827779, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -108.558409, - 39.0674318 - ], - [ - -108.558409, - 39.0674318 - ], - [ - -108.558409, - 39.0674318 - ], - [ - -108.558409, - 39.0674318 - ], - [ - -108.558409, - 39.0674318 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "surveillance", - "imagery": "Stadia.AlidadeSmoothDark", - "language": "en" - }, - "id": 97827779 - } - }, - { - "id": 97744035, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.859826, - 52.2101753 - ], - [ - 6.8649511, - 52.2101753 - ], - [ - 6.8649511, - 52.2122352 - ], - [ - 6.859826, - 52.2122352 - ], - [ - 6.859826, - 52.2101753 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97744035 - } - }, - { - "id": 97722280, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3796824, - 50.9687349 - ], - [ - 4.5067759, - 50.9687349 - ], - [ - 4.5067759, - 51.0450298 - ], - [ - 4.3796824, - 51.0450298 - ], - [ - 4.3796824, - 50.9687349 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97722280 - } - }, - { - "id": 97720781, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -68.1551733, - -16.5252003 - ], - [ - -68.1551733, - -16.5252003 - ], - [ - -68.1551733, - -16.5252003 - ], - [ - -68.1551733, - -16.5252003 - ], - [ - -68.1551733, - -16.5252003 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97720781 - } - }, - { - "id": 97720603, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -68.1556568, - -16.5280225 - ], - [ - -68.1544062, - -16.5280225 - ], - [ - -68.1544062, - -16.5240741 - ], - [ - -68.1556568, - -16.5240741 - ], - [ - -68.1556568, - -16.5280225 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 97720603 - } - }, - { - "id": 97720228, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -68.1514727, - -16.5199953 - ], - [ - -68.1514727, - -16.5199953 - ], - [ - -68.1514727, - -16.5199953 - ], - [ - -68.1514727, - -16.5199953 - ], - [ - -68.1514727, - -16.5199953 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 97720228 - } - }, - { - "id": 97706983, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4929643, - 51.0986615 - ], - [ - 3.4929643, - 51.0986615 - ], - [ - 3.4929643, - 51.0986615 - ], - [ - 3.4929643, - 51.0986615 - ], - [ - 3.4929643, - 51.0986615 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wiki:User:joost_schouppe/campersite", - "imagery": "osm", - "language": "en" - }, - "id": 97706983 - } - }, - { - "id": 97701599, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9787593, - 51.3347346 - ], - [ - 4.9787593, - 51.3347346 - ], - [ - 4.9787593, - 51.3347346 - ], - [ - 4.9787593, - 51.3347346 - ], - [ - 4.9787593, - 51.3347346 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97701599 - } - }, - { - "id": 97700317, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9168459, - 51.1042226 - ], - [ - 4.9168459, - 51.1042226 - ], - [ - 4.9168459, - 51.1042226 - ], - [ - 4.9168459, - 51.1042226 - ], - [ - 4.9168459, - 51.1042226 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97700317 - } - }, - { - "id": 97692703, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.9362466, - 51.003765 - ], - [ - -0.9362466, - 51.003765 - ], - [ - -0.9362466, - 51.003765 - ], - [ - -0.9362466, - 51.003765 - ], - [ - -0.9362466, - 51.003765 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97692703 - } - }, - { - "id": 97686456, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2586477, - 51.822221 - ], - [ - 4.2586477, - 51.822221 - ], - [ - 4.2586477, - 51.822221 - ], - [ - 4.2586477, - 51.822221 - ], - [ - 4.2586477, - 51.822221 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97686456 - } - }, - { - "id": 97682765, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8668709, - 51.1136799 - ], - [ - 4.8668709, - 51.1136799 - ], - [ - 4.8668709, - 51.1136799 - ], - [ - 4.8668709, - 51.1136799 - ], - [ - 4.8668709, - 51.1136799 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97682765 - } - }, - { - "id": 97678655, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.8928745, - 52.7546404 - ], - [ - 6.8928745, - 52.7546404 - ], - [ - 6.8928745, - 52.7546404 - ], - [ - 6.8928745, - 52.7546404 - ], - [ - 6.8928745, - 52.7546404 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 97678655 - } - }, - { - "id": 97676779, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.8904708, - 52.7510038 - ], - [ - 6.8904708, - 52.7510038 - ], - [ - 6.8904708, - 52.7510038 - ], - [ - 6.8904708, - 52.7510038 - ], - [ - 6.8904708, - 52.7510038 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fritures", - "imagery": "osm", - "language": "nl" - }, - "id": 97676779 - } - }, - { - "id": 97646137, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4804918, - 49.105972 - ], - [ - 8.4804918, - 49.105972 - ], - [ - 8.4804918, - 49.105972 - ], - [ - 8.4804918, - 49.105972 - ], - [ - 8.4804918, - 49.105972 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97646137 - } - }, - { - "id": 97640804, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2544342, - 51.1545476 - ], - [ - 3.2545767, - 51.1545476 - ], - [ - 3.2545767, - 51.1546378 - ], - [ - 3.2544342, - 51.1546378 - ], - [ - 3.2544342, - 51.1545476 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "imagery": "osm", - "language": "nl" - }, - "id": 97640804 - } - }, - { - "id": 97629850, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0639534, - 14.6280472 - ], - [ - 121.0639534, - 14.6280472 - ], - [ - 121.0639534, - 14.6280472 - ], - [ - 121.0639534, - 14.6280472 - ], - [ - 121.0639534, - 14.6280472 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97629850 - } - }, - { - "id": 97619137, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 30.2696915, - 59.8516481 - ], - [ - 30.2983058, - 59.8516481 - ], - [ - 30.2983058, - 59.9073316 - ], - [ - 30.2696915, - 59.9073316 - ], - [ - 30.2696915, - 59.8516481 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97619137 - } - }, - { - "id": 97619006, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 29.845945, - 58.737332 - ], - [ - 29.8510097, - 58.737332 - ], - [ - 29.8510097, - 58.7411377 - ], - [ - 29.845945, - 58.7411377 - ], - [ - 29.845945, - 58.737332 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97619006 - } - }, - { - "id": 97611926, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4499198, - 52.4740304 - ], - [ - 13.4499198, - 52.4740304 - ], - [ - 13.4499198, - 52.4740304 - ], - [ - 13.4499198, - 52.4740304 - ], - [ - 13.4499198, - 52.4740304 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97611926 - } - }, - { - "id": 97596920, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6079358, - 51.9639581 - ], - [ - 4.6106646, - 51.9639581 - ], - [ - 4.6106646, - 51.9657951 - ], - [ - 4.6079358, - 51.9657951 - ], - [ - 4.6079358, - 51.9639581 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 97596920 - } - }, - { - "id": 97584579, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.1865878, - 42.4237168 - ], - [ - 14.186721, - 42.4237168 - ], - [ - 14.186721, - 42.4237306 - ], - [ - 14.1865878, - 42.4237306 - ], - [ - 14.1865878, - 42.4237168 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97584579 - } - }, - { - "id": 97584125, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6079358, - 51.9639581 - ], - [ - 4.6106646, - 51.9639581 - ], - [ - 4.6106646, - 51.9657951 - ], - [ - 4.6079358, - 51.9657951 - ], - [ - 4.6079358, - 51.9639581 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 97584125 - } - }, - { - "id": 97581736, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -82.4793836, - 38.4080825 - ], - [ - -82.4360232, - 38.4080825 - ], - [ - -82.4360232, - 38.4111073 - ], - [ - -82.4793836, - 38.4111073 - ], - [ - -82.4793836, - 38.4080825 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97581736 - } - }, - { - "id": 97581678, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -82.4796988, - 38.4110317 - ], - [ - -82.4795389, - 38.4110317 - ], - [ - -82.4795389, - 38.4111126 - ], - [ - -82.4796988, - 38.4111126 - ], - [ - -82.4796988, - 38.4110317 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 97581678 - } - }, - { - "id": 97581595, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -82.479396, - 38.4110452 - ], - [ - -82.4791489, - 38.4110452 - ], - [ - -82.4791489, - 38.4112681 - ], - [ - -82.479396, - 38.4112681 - ], - [ - -82.479396, - 38.4110452 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97581595 - } - }, - { - "id": 97580462, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6079358, - 51.9639581 - ], - [ - 4.6106646, - 51.9639581 - ], - [ - 4.6106646, - 51.9657951 - ], - [ - 4.6079358, - 51.9657951 - ], - [ - 4.6079358, - 51.9639581 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 97580462 - } - }, - { - "id": 97572054, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7210901, - 51.0539222 - ], - [ - 3.7210901, - 51.0539222 - ], - [ - 3.7210901, - 51.0539222 - ], - [ - 3.7210901, - 51.0539222 - ], - [ - 3.7210901, - 51.0539222 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97572054 - } - }, - { - "id": 97571925, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7211144, - 51.0539043 - ], - [ - 3.7211593, - 51.0539043 - ], - [ - 3.7211593, - 51.0539359 - ], - [ - 3.7211144, - 51.0539359 - ], - [ - 3.7211144, - 51.0539043 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 97571925 - } - }, - { - "id": 97558341, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8684052, - 51.1178203 - ], - [ - 4.8684052, - 51.1178203 - ], - [ - 4.8684052, - 51.1178203 - ], - [ - 4.8684052, - 51.1178203 - ], - [ - 4.8684052, - 51.1178203 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "ghostbikes", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97558341 - } - }, - { - "id": 97557058, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6675155, - 51.0339258 - ], - [ - 3.6784182, - 51.0339258 - ], - [ - 3.6784182, - 51.0497257 - ], - [ - 3.6675155, - 51.0497257 - ], - [ - 3.6675155, - 51.0339258 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "imagery": "osm", - "language": "nl" - }, - "id": 97557058 - } - }, - { - "id": 97555565, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9053767, - 43.0772952 - ], - [ - 5.9053767, - 43.0772952 - ], - [ - 5.9053767, - 43.0772952 - ], - [ - 5.9053767, - 43.0772952 - ], - [ - 5.9053767, - 43.0772952 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wiki-User-joost_schouppe-campersite", - "imagery": "osm", - "language": "en" - }, - "id": 97555565 - } - }, - { - "id": 97543181, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6079358, - 51.9639581 - ], - [ - 4.6106646, - 51.9639581 - ], - [ - 4.6106646, - 51.9657951 - ], - [ - 4.6079358, - 51.9657951 - ], - [ - 4.6079358, - 51.9639581 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 97543181 - } - }, - { - "id": 97518237, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4172431, - 46.9347469 - ], - [ - 7.4203849, - 46.9347469 - ], - [ - 7.4203849, - 46.9374101 - ], - [ - 7.4172431, - 46.9374101 - ], - [ - 7.4172431, - 46.9347469 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97518237 - } - }, - { - "id": 97494238, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2799706, - 51.1978669 - ], - [ - 3.2895145, - 51.1978669 - ], - [ - 3.2895145, - 51.2011485 - ], - [ - 3.2799706, - 51.2011485 - ], - [ - 3.2799706, - 51.1978669 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "imagery": "osm", - "language": "nl" - }, - "id": 97494238 - } - }, - { - "id": 97492404, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7080829, - 51.0402474 - ], - [ - 3.7080829, - 51.0402474 - ], - [ - 3.7080829, - 51.0402474 - ], - [ - 3.7080829, - 51.0402474 - ], - [ - 3.7080829, - 51.0402474 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97492404 - } - }, - { - "id": 97466773, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4166263, - 46.935583 - ], - [ - 7.4166263, - 46.935583 - ], - [ - 7.4166263, - 46.935583 - ], - [ - 7.4166263, - 46.935583 - ], - [ - 7.4166263, - 46.935583 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97466773 - } - }, - { - "id": 97461822, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -104.827921, - 38.8674445 - ], - [ - -104.827921, - 38.8674445 - ], - [ - -104.827921, - 38.8674445 - ], - [ - -104.827921, - 38.8674445 - ], - [ - -104.827921, - 38.8674445 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97461822 - } - }, - { - "id": 97460300, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 22.2733092, - 60.448227 - ], - [ - 22.2814729, - 60.448227 - ], - [ - 22.2814729, - 60.4539385 - ], - [ - 22.2733092, - 60.4539385 - ], - [ - 22.2733092, - 60.448227 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97460300 - } - }, - { - "id": 97443981, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1319288, - 52.0674761 - ], - [ - 5.1319288, - 52.0674761 - ], - [ - 5.1319288, - 52.0674761 - ], - [ - 5.1319288, - 52.0674761 - ], - [ - 5.1319288, - 52.0674761 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "en", - "theme-creator": "Peter Elderson" - }, - "id": 97443981 - } - }, - { - "id": 97439355, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5930763, - 43.2923569 - ], - [ - 5.5930763, - 43.2923569 - ], - [ - 5.5930763, - 43.2923569 - ], - [ - 5.5930763, - 43.2923569 - ], - [ - 5.5930763, - 43.2923569 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wiki:User:joost_schouppe/campersite", - "imagery": "osm", - "language": "en" - }, - "id": 97439355 - } - }, - { - "id": 97395648, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9166128, - 51.0986437 - ], - [ - 3.9463161, - 51.0986437 - ], - [ - 3.9463161, - 51.1040438 - ], - [ - 3.9166128, - 51.1040438 - ], - [ - 3.9166128, - 51.0986437 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 97395648 - } - }, - { - "id": 97393566, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.345046, - 50.8443827 - ], - [ - 4.345046, - 50.8443827 - ], - [ - 4.345046, - 50.8443827 - ], - [ - 4.345046, - 50.8443827 - ], - [ - 4.345046, - 50.8443827 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97393566 - } - }, - { - "id": 97390528, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1268258, - 52.0674413 - ], - [ - 5.1268258, - 52.0674413 - ], - [ - 5.1268258, - 52.0674413 - ], - [ - 5.1268258, - 52.0674413 - ], - [ - 5.1268258, - 52.0674413 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 97390528 - } - }, - { - "id": 97385016, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6186067, - 51.9409202 - ], - [ - 5.1311394, - 51.9409202 - ], - [ - 5.1311394, - 52.0821779 - ], - [ - 4.6186067, - 52.0821779 - ], - [ - 4.6186067, - 51.9409202 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 97385016 - } - }, - { - "id": 97380227, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1891035, - 43.3552972 - ], - [ - 5.1891035, - 43.3552972 - ], - [ - 5.1891035, - 43.3552972 - ], - [ - 5.1891035, - 43.3552972 - ], - [ - 5.1891035, - 43.3552972 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wiki:User:joost_schouppe/campersite", - "imagery": "osm", - "language": "en" - }, - "id": 97380227 - } - }, - { - "id": 97380110, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1891035, - 43.3552972 - ], - [ - 5.1891035, - 43.3552972 - ], - [ - 5.1891035, - 43.3552972 - ], - [ - 5.1891035, - 43.3552972 - ], - [ - 5.1891035, - 43.3552972 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wiki:User:joost_schouppe/campersite", - "imagery": "osm", - "language": "en" - }, - "id": 97380110 - } - }, - { - "id": 97375834, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7288407, - 51.0483444 - ], - [ - 3.7288407, - 51.0483444 - ], - [ - 3.7288407, - 51.0483444 - ], - [ - 3.7288407, - 51.0483444 - ], - [ - 3.7288407, - 51.0483444 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97375834 - } - }, - { - "id": 97371956, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.2000838, - 40.9241603 - ], - [ - 14.2000838, - 40.9241603 - ], - [ - 14.2000838, - 40.9241603 - ], - [ - 14.2000838, - 40.9241603 - ], - [ - 14.2000838, - 40.9241603 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97371956 - } - }, - { - "id": 97371774, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0494273, - 43.0161961 - ], - [ - 3.0494273, - 43.0161961 - ], - [ - 3.0494273, - 43.0161961 - ], - [ - 3.0494273, - 43.0161961 - ], - [ - 3.0494273, - 43.0161961 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wiki:User:joost_schouppe/campersite", - "imagery": "osm", - "language": "en" - }, - "id": 97371774 - } - }, - { - "id": 97337096, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6891342, - -33.4534636 - ], - [ - -70.6891342, - -33.4534636 - ], - [ - -70.6891342, - -33.4534636 - ], - [ - -70.6891342, - -33.4534636 - ], - [ - -70.6891342, - -33.4534636 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "ghostbikes", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97337096 - } - }, - { - "id": 97332769, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.6786135, - 40.403126 - ], - [ - -3.6786135, - 40.403126 - ], - [ - -3.6786135, - 40.403126 - ], - [ - -3.6786135, - 40.403126 - ], - [ - -3.6786135, - 40.403126 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97332769 - } - }, - { - "id": 97327412, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2160458, - 51.2193779 - ], - [ - 3.216644, - 51.2193779 - ], - [ - 3.216644, - 51.219777 - ], - [ - 3.2160458, - 51.219777 - ], - [ - 3.2160458, - 51.2193779 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97327412 - } - }, - { - "id": 97313582, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0423988, - 51.152854 - ], - [ - 4.0423988, - 51.152854 - ], - [ - 4.0423988, - 51.152854 - ], - [ - 4.0423988, - 51.152854 - ], - [ - 4.0423988, - 51.152854 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "AGIV", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 97313582 - } - }, - { - "id": 97263926, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.217728, - 51.2045141 - ], - [ - 3.2183307, - 51.2045141 - ], - [ - 3.2183307, - 51.2058585 - ], - [ - 3.217728, - 51.2058585 - ], - [ - 3.217728, - 51.2045141 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97263926 - } - }, - { - "id": 97256687, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7348366, - 43.7906494 - ], - [ - 3.7348366, - 43.7906494 - ], - [ - 3.7348366, - 43.7906494 - ], - [ - 3.7348366, - 43.7906494 - ], - [ - 3.7348366, - 43.7906494 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wiki:User:joost_schouppe/campersite", - "imagery": "osm", - "language": "en" - }, - "id": 97256687 - } - }, - { - "id": 97231513, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5476183, - 51.0202767 - ], - [ - 4.5575847, - 51.0202767 - ], - [ - 4.5575847, - 51.0224275 - ], - [ - 4.5476183, - 51.0224275 - ], - [ - 4.5476183, - 51.0202767 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97231513 - } - }, - { - "id": 97221773, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6307477, - 49.4007457 - ], - [ - 8.6639434, - 49.4007457 - ], - [ - 8.6639434, - 49.4778001 - ], - [ - 8.6307477, - 49.4778001 - ], - [ - 8.6307477, - 49.4007457 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97221773 - } - }, - { - "id": 97217616, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2895117, - 51.1408107 - ], - [ - 3.2895117, - 51.1408107 - ], - [ - 3.2895117, - 51.1408107 - ], - [ - 3.2895117, - 51.1408107 - ], - [ - 3.2895117, - 51.1408107 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97217616 - } - }, - { - "id": 97211787, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3434648, - 50.8484042 - ], - [ - 4.3434648, - 50.8484042 - ], - [ - 4.3434648, - 50.8484042 - ], - [ - 4.3434648, - 50.8484042 - ], - [ - 4.3434648, - 50.8484042 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97211787 - } - }, - { - "id": 97210462, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0459655, - 51.027303 - ], - [ - 3.0459655, - 51.027303 - ], - [ - 3.0459655, - 51.027303 - ], - [ - 3.0459655, - 51.027303 - ], - [ - 3.0459655, - 51.027303 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wiki:User:joost_schouppe/campersite", - "imagery": "osm", - "language": "en" - }, - "id": 97210462 - } - }, - { - "id": 97195966, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7287819, - 51.0483444 - ], - [ - 3.7288407, - 51.0483444 - ], - [ - 3.7288407, - 51.0484209 - ], - [ - 3.7287819, - 51.0484209 - ], - [ - 3.7287819, - 51.0483444 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97195966 - } - }, - { - "id": 97185967, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0494273, - 43.0161961 - ], - [ - 5.2373465, - 43.0161961 - ], - [ - 5.2373465, - 49.7767968 - ], - [ - 3.0494273, - 49.7767968 - ], - [ - 3.0494273, - 43.0161961 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "en" - }, - "id": 97185967 - } - }, - { - "id": 97183915, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7870996, - 48.1047027 - ], - [ - 11.7872034, - 48.1047027 - ], - [ - 11.7872034, - 48.1047951 - ], - [ - 11.7870996, - 48.1047951 - ], - [ - 11.7870996, - 48.1047027 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 97183915 - } - }, - { - "id": 97182987, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1382084, - 43.9849817 - ], - [ - 3.1383224, - 43.9849817 - ], - [ - 3.1383224, - 43.9850245 - ], - [ - 3.1382084, - 43.9850245 - ], - [ - 3.1382084, - 43.9849817 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "en" - }, - "id": 97182987 - } - }, - { - "id": 97137285, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7593564, - 51.0597109 - ], - [ - 3.7594004, - 51.0597109 - ], - [ - 3.7594004, - 51.0597453 - ], - [ - 3.7593564, - 51.0597453 - ], - [ - 3.7593564, - 51.0597109 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97137285 - } - }, - { - "id": 97136113, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.9162189, - 45.7930622 - ], - [ - 15.9241227, - 45.7930622 - ], - [ - 15.9241227, - 45.8052733 - ], - [ - 15.9162189, - 45.8052733 - ], - [ - 15.9162189, - 45.7930622 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97136113 - } - }, - { - "id": 97123454, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7036656, - 50.8737235 - ], - [ - 4.7083427, - 50.8737235 - ], - [ - 4.7083427, - 50.8762384 - ], - [ - 4.7036656, - 50.8762384 - ], - [ - 4.7036656, - 50.8737235 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97123454 - } - }, - { - "id": 97106307, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -6.9410681, - 37.2531231 - ], - [ - -6.9286447, - 37.2531231 - ], - [ - -6.9286447, - 37.2685193 - ], - [ - -6.9410681, - 37.2685193 - ], - [ - -6.9410681, - 37.2531231 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "crossingtime", - "imagery": "osm", - "language": "es" - }, - "id": 97106307 - } - }, - { - "id": 97083191, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.736922, - 48.1147527 - ], - [ - 11.736922, - 48.1147527 - ], - [ - 11.736922, - 48.1147527 - ], - [ - 11.736922, - 48.1147527 - ], - [ - 11.736922, - 48.1147527 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97083191 - } - }, - { - "id": 97077181, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.5929557, - -33.6050764 - ], - [ - -70.5929557, - -33.6050764 - ], - [ - -70.5929557, - -33.6050764 - ], - [ - -70.5929557, - -33.6050764 - ], - [ - -70.5929557, - -33.6050764 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "ghostbikes", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97077181 - } - }, - { - "id": 97026167, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7250991, - 51.0433637 - ], - [ - 3.7391259, - 51.0433637 - ], - [ - 3.7391259, - 51.0539851 - ], - [ - 3.7250991, - 51.0539851 - ], - [ - 3.7250991, - 51.0433637 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 97026167 - } - }, - { - "id": 97025792, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6955127, - 51.082431 - ], - [ - 3.6955127, - 51.082431 - ], - [ - 3.6955127, - 51.082431 - ], - [ - 3.6955127, - 51.082431 - ], - [ - 3.6955127, - 51.082431 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 97025792 - } - }, - { - "id": 97019882, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0196266, - 14.5561595 - ], - [ - 121.0196266, - 14.5561595 - ], - [ - 121.0196266, - 14.5561595 - ], - [ - 121.0196266, - 14.5561595 - ], - [ - 121.0196266, - 14.5561595 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97019882 - } - }, - { - "id": 97010957, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2948094, - 50.7984269 - ], - [ - 4.3477026, - 50.7984269 - ], - [ - 4.3477026, - 50.8732276 - ], - [ - 4.2948094, - 50.8732276 - ], - [ - 4.2948094, - 50.7984269 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "bicyclelib", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 97010957 - } - }, - { - "id": 97008704, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3463856, - 50.7984269 - ], - [ - 4.3477026, - 50.7984269 - ], - [ - 4.3477026, - 50.8732276 - ], - [ - 4.3463856, - 50.8732276 - ], - [ - 4.3463856, - 50.7984269 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 97008704 - } - }, - { - "id": 96940791, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9867941, - 51.1845669 - ], - [ - 3.9867941, - 51.1845669 - ], - [ - 3.9867941, - 51.1845669 - ], - [ - 3.9867941, - 51.1845669 - ], - [ - 3.9867941, - 51.1845669 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 96940791 - } - }, - { - "id": 96936300, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7051901, - 51.0528149 - ], - [ - 3.7053162, - 51.0528149 - ], - [ - 3.7053162, - 51.0528638 - ], - [ - 3.7051901, - 51.0528638 - ], - [ - 3.7051901, - 51.0528149 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "AGIV", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 96936300 - } - }, - { - "id": 96932914, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1830342, - 50.9805626 - ], - [ - 4.1852155, - 50.9805626 - ], - [ - 4.1852155, - 50.9828414 - ], - [ - 4.1830342, - 50.9828414 - ], - [ - 4.1830342, - 50.9805626 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 96932914 - } - }, - { - "id": 96932821, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1877814, - 50.9741084 - ], - [ - 4.1884329, - 50.9741084 - ], - [ - 4.1884329, - 50.9744068 - ], - [ - 4.1877814, - 50.9744068 - ], - [ - 4.1877814, - 50.9741084 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96932821 - } - }, - { - "id": 96932361, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7041112, - 51.0526766 - ], - [ - 3.7047898, - 51.0526766 - ], - [ - 3.7047898, - 51.0527454 - ], - [ - 3.7041112, - 51.0527454 - ], - [ - 3.7041112, - 51.0526766 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "AGIV", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 96932361 - } - }, - { - "id": 96913831, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.1617935, - 51.4192001 - ], - [ - -0.1617935, - 51.4192001 - ], - [ - -0.1617935, - 51.4192001 - ], - [ - -0.1617935, - 51.4192001 - ], - [ - -0.1617935, - 51.4192001 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96913831 - } - }, - { - "id": 96911158, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.3140013, - 51.5752672 - ], - [ - -1.3140013, - 51.5752672 - ], - [ - -1.3140013, - 51.5752672 - ], - [ - -1.3140013, - 51.5752672 - ], - [ - -1.3140013, - 51.5752672 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96911158 - } - }, - { - "id": 96896162, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.3075243, - 51.5788969 - ], - [ - -1.271697, - 51.5788969 - ], - [ - -1.271697, - 51.604625 - ], - [ - -1.3075243, - 51.604625 - ], - [ - -1.3075243, - 51.5788969 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96896162 - } - }, - { - "id": 96891171, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.305209, - 51.5812212 - ], - [ - -1.305209, - 51.5812212 - ], - [ - -1.305209, - 51.5812212 - ], - [ - -1.305209, - 51.5812212 - ], - [ - -1.305209, - 51.5812212 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96891171 - } - }, - { - "id": 96817720, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4011954, - 50.8255878 - ], - [ - 4.4011954, - 50.8255878 - ], - [ - 4.4011954, - 50.8255878 - ], - [ - 4.4011954, - 50.8255878 - ], - [ - 4.4011954, - 50.8255878 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96817720 - } - }, - { - "id": 96815194, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -82.9817991, - 39.3364634 - ], - [ - -82.9817642, - 39.3364634 - ], - [ - -82.9817642, - 39.3366065 - ], - [ - -82.9817991, - 39.3366065 - ], - [ - -82.9817991, - 39.3364634 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "charging_stations", - "language": "en", - "theme-creator": "" - }, - "id": 96815194 - } - }, - { - "id": 96814012, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -82.9849819, - 39.3390597 - ], - [ - -82.9822498, - 39.3390597 - ], - [ - -82.9822498, - 39.3392992 - ], - [ - -82.9849819, - 39.3392992 - ], - [ - -82.9849819, - 39.3390597 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "toilets", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96814012 - } - }, - { - "id": 96807227, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.785389, - 48.0977364 - ], - [ - 11.7930457, - 48.0977364 - ], - [ - 11.7930457, - 48.1049886 - ], - [ - 11.785389, - 48.1049886 - ], - [ - 11.785389, - 48.0977364 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "benches", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 96807227 - } - }, - { - "id": 96801175, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.1115655, - 51.4864637 - ], - [ - -0.1115655, - 51.4864637 - ], - [ - -0.1115655, - 51.4864637 - ], - [ - -0.1115655, - 51.4864637 - ], - [ - -0.1115655, - 51.4864637 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96801175 - } - }, - { - "id": 96794904, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -84.514378, - 39.1074765 - ], - [ - -84.2574094, - 39.1074765 - ], - [ - -84.2574094, - 39.2701177 - ], - [ - -84.514378, - 39.2701177 - ], - [ - -84.514378, - 39.1074765 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96794904 - } - }, - { - "id": 96792786, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.1036943, - 51.5700264 - ], - [ - -0.1035434, - 51.5700264 - ], - [ - -0.1035434, - 51.5701598 - ], - [ - -0.1036943, - 51.5701598 - ], - [ - -0.1036943, - 51.5700264 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "toilets", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96792786 - } - }, - { - "id": 96788183, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -79.9806833, - 32.778471 - ], - [ - -79.8114359, - 32.778471 - ], - [ - -79.8114359, - 33.1343439 - ], - [ - -79.9806833, - 33.1343439 - ], - [ - -79.9806833, - 32.778471 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96788183 - } - }, - { - "id": 96784719, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.111376, - 51.496571 - ], - [ - -0.111376, - 51.496571 - ], - [ - -0.111376, - 51.496571 - ], - [ - -0.111376, - 51.496571 - ], - [ - -0.111376, - 51.496571 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96784719 - } - }, - { - "id": 96776774, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2183307, - 51.2045141 - ], - [ - 3.2183307, - 51.2045141 - ], - [ - 3.2183307, - 51.2045141 - ], - [ - 3.2183307, - 51.2045141 - ], - [ - 3.2183307, - 51.2045141 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "toilets", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96776774 - } - }, - { - "id": 96772551, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.4381678, - 46.6138132 - ], - [ - 9.4381678, - 46.6138132 - ], - [ - 9.4381678, - 46.6138132 - ], - [ - 9.4381678, - 46.6138132 - ], - [ - 9.4381678, - 46.6138132 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96772551 - } - }, - { - "id": 96768531, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3104002, - 43.7173113 - ], - [ - 5.3104002, - 43.7173113 - ], - [ - 5.3104002, - 43.7173113 - ], - [ - 5.3104002, - 43.7173113 - ], - [ - 5.3104002, - 43.7173113 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96768531 - } - }, - { - "id": 96755150, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -118.0975895, - 34.1459056 - ], - [ - -118.097589, - 34.1459056 - ], - [ - -118.097589, - 34.1459056 - ], - [ - -118.0975895, - 34.1459056 - ], - [ - -118.0975895, - 34.1459056 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96755150 - } - }, - { - "id": 96754404, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.4630854, - 53.3774792 - ], - [ - -1.4627624, - 53.3774792 - ], - [ - -1.4627624, - 53.377605 - ], - [ - -1.4630854, - 53.377605 - ], - [ - -1.4630854, - 53.3774792 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "cyclofix", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 96754404 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2021-10.json b/Docs/Tools/stats/stats.2021-10.json deleted file mode 100644 index 87ef4a2b87..0000000000 --- a/Docs/Tools/stats/stats.2021-10.json +++ /dev/null @@ -1,27816 +0,0 @@ -{ - "features": [ - { - "id": 113211661, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.9095044, - 53.5645886 - ], - [ - 9.9164151, - 53.5645886 - ], - [ - 9.9164151, - 53.5717645 - ], - [ - 9.9095044, - 53.5717645 - ], - [ - 9.9095044, - 53.5645886 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "waste_basket", - "answer": 7, - "create": 7, - "imagery": "osm", - "language": "en" - }, - "id": 113211661 - } - }, - { - "id": 113209361, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9337197, - 52.3969249 - ], - [ - 4.9435275, - 52.3969249 - ], - [ - 4.9435275, - 52.4011842 - ], - [ - 4.9337197, - 52.4011842 - ], - [ - 4.9337197, - 52.3969249 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 24, - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 113209361 - } - }, - { - "id": 113208196, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9099, - 52.3871644 - ], - [ - 4.9435275, - 52.3871644 - ], - [ - 4.9435275, - 52.4097372 - ], - [ - 4.9099, - 52.4097372 - ], - [ - 4.9099, - 52.3871644 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 263, - "imagery": "osm", - "language": "en" - }, - "id": 113208196 - } - }, - { - "id": 113206794, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8502412, - 50.9537904 - ], - [ - 2.8502412, - 50.9537904 - ], - [ - 2.8502412, - 50.9537904 - ], - [ - 2.8502412, - 50.9537904 - ], - [ - 2.8502412, - 50.9537904 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "add-image": 1 - }, - "id": 113206794 - } - }, - { - "id": 113203637, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.5216465, - 41.6315787 - ], - [ - -4.5216465, - 41.6315787 - ], - [ - -4.5216465, - 41.6315787 - ], - [ - -4.5216465, - 41.6315787 - ], - [ - -4.5216465, - 41.6315787 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "answer": 2, - "create": 1, - "imagery": "osm", - "language": "nl", - "add-image": 1 - }, - "id": 113203637 - } - }, - { - "id": 113200439, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7104317, - 52.5146233 - ], - [ - 13.7104317, - 52.5146233 - ], - [ - 13.7104317, - 52.5146233 - ], - [ - 13.7104317, - 52.5146233 - ], - [ - 13.7104317, - 52.5146233 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cycle_infra", - "answer": 1, - "imagery": "CartoDB.Voyager", - "language": "de" - }, - "id": 113200439 - } - }, - { - "id": 113197196, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8608721, - 50.9958993 - ], - [ - 2.86106, - 50.9958993 - ], - [ - 2.86106, - 50.9960111 - ], - [ - 2.8608721, - 50.9960111 - ], - [ - 2.8608721, - 50.9958993 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 1, - "imagery": "CartoDB.Voyager", - "language": "nl", - "add-image": 1 - }, - "id": 113197196 - } - }, - { - "id": 113196838, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8571554, - 50.9910854 - ], - [ - 2.8571554, - 50.9910854 - ], - [ - 2.8571554, - 50.9910854 - ], - [ - 2.8571554, - 50.9910854 - ], - [ - 2.8571554, - 50.9910854 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "observation_towers", - "imagery": "osm", - "language": "nl", - "add-image": 1 - }, - "id": 113196838 - } - }, - { - "id": 113194894, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.4289005, - 51.8548566 - ], - [ - 14.4817972, - 51.8548566 - ], - [ - 14.4817972, - 51.8690621 - ], - [ - 14.4289005, - 51.8690621 - ], - [ - 14.4289005, - 51.8548566 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 113194894 - } - }, - { - "id": 113194138, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.4977152, - 52.9971236 - ], - [ - 6.5030112, - 52.9971236 - ], - [ - 6.5030112, - 53.0018162 - ], - [ - 6.4977152, - 53.0018162 - ], - [ - 6.4977152, - 52.9971236 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 32, - "imagery": "osm", - "language": "nl" - }, - "id": 113194138 - } - }, - { - "id": 113193868, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.878581, - 49.7459743 - ], - [ - 8.8877531, - 49.7459743 - ], - [ - 8.8877531, - 49.7540876 - ], - [ - 8.878581, - 49.7540876 - ], - [ - 8.878581, - 49.7459743 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 21, - "imagery": "osm", - "language": "de" - }, - "id": 113193868 - } - }, - { - "id": 113193213, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5738892, - 53.0084482 - ], - [ - 6.5935458, - 53.0084482 - ], - [ - 6.5935458, - 53.0139706 - ], - [ - 6.5738892, - 53.0139706 - ], - [ - 6.5738892, - 53.0084482 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 29, - "imagery": "osm", - "language": "nl" - }, - "id": 113193213 - } - }, - { - "id": 113192072, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1877101, - 50.8138998 - ], - [ - 5.1877101, - 50.8138998 - ], - [ - 5.1877101, - 50.8138998 - ], - [ - 5.1877101, - 50.8138998 - ], - [ - 5.1877101, - 50.8138998 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "aed", - "answer": 4, - "create": 1, - "imagery": "osm", - "language": "en", - "add-image": 1 - }, - "id": 113192072 - } - }, - { - "id": 113191871, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1803919, - 50.815788 - ], - [ - 5.1803919, - 50.815788 - ], - [ - 5.1803919, - 50.815788 - ], - [ - 5.1803919, - 50.815788 - ], - [ - 5.1803919, - 50.815788 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "shops", - "answer": 1, - "imagery": "osm", - "language": "en", - "add-image": 1 - }, - "id": 113191871 - } - }, - { - "id": 113188983, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5867669, - 53.0080644 - ], - [ - 6.6021286, - 53.0080644 - ], - [ - 6.6021286, - 53.016889 - ], - [ - 6.5867669, - 53.016889 - ], - [ - 6.5867669, - 53.0080644 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 112, - "imagery": "osm", - "language": "nl" - }, - "id": 113188983 - } - }, - { - "id": 113185480, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.8815533, - 49.7526375 - ], - [ - 8.88963, - 49.7526375 - ], - [ - 8.88963, - 49.7556928 - ], - [ - 8.8815533, - 49.7556928 - ], - [ - 8.8815533, - 49.7526375 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 5, - "imagery": "osm", - "language": "de" - }, - "id": 113185480 - } - }, - { - "id": 113183368, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8711039, - 50.9838572 - ], - [ - 2.8711039, - 50.9838572 - ], - [ - 2.8711039, - 50.9838572 - ], - [ - 2.8711039, - 50.9838572 - ], - [ - 2.8711039, - 50.9838572 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "add-image": 1 - }, - "id": 113183368 - } - }, - { - "id": 113178247, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -98.782857, - 38.51376 - ], - [ - -98.766009, - 38.51376 - ], - [ - -98.766009, - 38.527112 - ], - [ - -98.782857, - 38.527112 - ], - [ - -98.782857, - 38.51376 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 11, - "imagery": "osm", - "language": "en" - }, - "id": 113178247 - } - }, - { - "id": 113178210, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -98.7761413, - 38.511638 - ], - [ - -98.774729, - 38.511638 - ], - [ - -98.774729, - 38.5215561 - ], - [ - -98.7761413, - 38.5215561 - ], - [ - -98.7761413, - 38.511638 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 5, - "imagery": "osm", - "language": "en" - }, - "id": 113178210 - } - }, - { - "id": 113174278, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.725044, - 41.2232003 - ], - [ - 1.7251596, - 41.2232003 - ], - [ - 1.7251596, - 41.2238835 - ], - [ - 1.725044, - 41.2238835 - ], - [ - 1.725044, - 41.2232003 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "amenity", - "answer": 1, - "create": 1, - "imagery": "osm", - "language": "ca" - }, - "id": 113174278 - } - }, - { - "id": 113171049, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2134379, - 51.273909 - ], - [ - 3.2135355, - 51.273909 - ], - [ - 3.2135355, - 51.2739099 - ], - [ - 3.2134379, - 51.2739099 - ], - [ - 3.2134379, - 51.273909 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 1, - "theme": "ghostbikes", - "imagery": "CartoDB.Positron", - "language": "en", - "move:node/9212378672": "improve_accuracy" - }, - "id": 113171049 - } - }, - { - "id": 113170848, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.242573, - 50.7396755 - ], - [ - 4.2426287, - 50.7396755 - ], - [ - 4.2426287, - 50.7401915 - ], - [ - 4.242573, - 50.7401915 - ], - [ - 4.242573, - 50.7396755 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 12, - "create": 2, - "imagery": "osm", - "language": "en" - }, - "id": 113170848 - } - }, - { - "id": 113167174, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.5439431, - 52.5199993 - ], - [ - 14.5439431, - 52.5199993 - ], - [ - 14.5439431, - 52.5199993 - ], - [ - 14.5439431, - 52.5199993 - ], - [ - 14.5439431, - 52.5199993 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 113167174 - } - }, - { - "id": 113166817, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2135355, - 51.2739099 - ], - [ - 3.2135355, - 51.2739099 - ], - [ - 3.2135355, - 51.2739099 - ], - [ - 3.2135355, - 51.2739099 - ], - [ - 3.2135355, - 51.2739099 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "ghostbikes", - "answer": 3, - "create": 1, - "imagery": "CartoDB.Positron", - "language": "nl", - "add-image": 1 - }, - "id": 113166817 - } - }, - { - "id": 113164317, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2482913, - -39.8174256 - ], - [ - -73.2482913, - -39.8174256 - ], - [ - -73.2482913, - -39.8174256 - ], - [ - -73.2482913, - -39.8174256 - ], - [ - -73.2482913, - -39.8174256 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "add-image": 1 - }, - "id": 113164317 - } - }, - { - "id": 113162656, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.8069881, - 48.2709046 - ], - [ - 11.84047, - 48.2709046 - ], - [ - 11.84047, - 48.2830966 - ], - [ - 11.8069881, - 48.2830966 - ], - [ - 11.8069881, - 48.2709046 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 37, - "imagery": "osm", - "language": "de" - }, - "id": 113162656 - } - }, - { - "id": 113156911, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2057786, - 51.2166419 - ], - [ - 3.2057786, - 51.2166419 - ], - [ - 3.2057786, - 51.2166419 - ], - [ - 3.2057786, - 51.2166419 - ], - [ - 3.2057786, - 51.2166419 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "climbing", - "answer": 7, - "imagery": "osm", - "language": "en" - }, - "id": 113156911 - } - }, - { - "id": 113154144, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 149.1017236, - -35.3107329 - ], - [ - 149.1059657, - -35.3107329 - ], - [ - 149.1059657, - -35.3044144 - ], - [ - 149.1017236, - -35.3044144 - ], - [ - 149.1017236, - -35.3107329 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 7, - "imagery": "osm", - "language": "en" - }, - "id": 113154144 - } - }, - { - "id": 113151688, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6125637, - 49.7658392 - ], - [ - 8.8852268, - 49.7658392 - ], - [ - 8.8852268, - 50.1391625 - ], - [ - 8.6125637, - 50.1391625 - ], - [ - 8.6125637, - 49.7658392 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 41, - "imagery": "osm", - "language": "de" - }, - "id": 113151688 - } - }, - { - "id": 113150555, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.8225646, - 45.818017 - ], - [ - 8.822574, - 45.818017 - ], - [ - 8.822574, - 45.8180296 - ], - [ - 8.8225646, - 45.8180296 - ], - [ - 8.8225646, - 45.818017 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 1, - "theme": "bookcases", - "answer": 4, - "create": 1, - "imagery": "osm", - "language": "en", - "move:node/9211743706": "improve_accuracy" - }, - "id": 113150555 - } - }, - { - "id": 113146384, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.3195168, - 51.5108692 - ], - [ - -0.3195168, - 51.5108692 - ], - [ - -0.3195168, - 51.5108692 - ], - [ - -0.3195168, - 51.5108692 - ], - [ - -0.3195168, - 51.5108692 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 1, - "create": 1, - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 113146384 - } - }, - { - "id": 113145619, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.197621, - 50.8796176 - ], - [ - 4.6890499, - 50.8796176 - ], - [ - 4.6890499, - 51.2205874 - ], - [ - 3.197621, - 51.2205874 - ], - [ - 3.197621, - 50.8796176 - ] - ] - ] - }, - "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, - "metadata": { - "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" - }, - "id": 113145619 - } - }, - { - "id": 113141592, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1913033, - 50.9108255 - ], - [ - 4.2109015, - 50.9108255 - ], - [ - 4.2109015, - 50.9441389 - ], - [ - 4.1913033, - 50.9441389 - ], - [ - 4.1913033, - 50.9108255 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclestreets", - "answer": 7, - "imagery": "osm", - "language": "en" - }, - "id": 113141592 - } - }, - { - "id": 113133260, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2311544, - 50.7306946 - ], - [ - 4.2311544, - 50.7306946 - ], - [ - 4.2311544, - 50.7306946 - ], - [ - 4.2311544, - 50.7306946 - ], - [ - 4.2311544, - 50.7306946 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 4, - "create": 1, - "imagery": "osm", - "language": "en" - }, - "id": 113133260 - } - }, - { - "id": 113132316, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.6684818, - 48.7547809 - ], - [ - 10.6727032, - 48.7547809 - ], - [ - 10.6727032, - 48.7554915 - ], - [ - 10.6684818, - 48.7554915 - ], - [ - 10.6684818, - 48.7547809 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 3, - "imagery": "osm", - "language": "de" - }, - "id": 113132316 - } - }, - { - "id": 113131130, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2155456, - 51.2139071 - ], - [ - 3.2189444, - 51.2139071 - ], - [ - 3.2189444, - 51.2161619 - ], - [ - 3.2155456, - 51.2161619 - ], - [ - 3.2155456, - 51.2139071 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "grb", - "answer": 13, - "imagery": "AGIVFlandersGRB", - "language": "nl" - }, - "id": 113131130 - } - }, - { - "id": 113128981, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.7113688, - 48.7561252 - ], - [ - 10.7130667, - 48.7561252 - ], - [ - 10.7130667, - 48.7610853 - ], - [ - 10.7113688, - 48.7610853 - ], - [ - 10.7113688, - 48.7561252 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 1, - "imagery": "osm", - "language": "de" - }, - "id": 113128981 - } - }, - { - "id": 113127802, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.3513466, - 50.8198358 - ], - [ - 6.3552404, - 50.8198358 - ], - [ - 6.3552404, - 50.8227711 - ], - [ - 6.3513466, - 50.8227711 - ], - [ - 6.3513466, - 50.8198358 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "etymology", - "answer": 13, - "imagery": "osm", - "language": "en" - }, - "id": 113127802 - } - }, - { - "id": 113125295, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.6505992, - -34.6548127 - ], - [ - -58.6465868, - -34.6548127 - ], - [ - -58.6465868, - -34.6536174 - ], - [ - -58.6505992, - -34.6536174 - ], - [ - -58.6505992, - -34.6548127 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "answer": 6, - "create": 1, - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 113125295 - } - }, - { - "id": 113125083, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2158276, - 51.2131309 - ], - [ - 3.2163805, - 51.2131309 - ], - [ - 3.2163805, - 51.2132829 - ], - [ - 3.2158276, - 51.2132829 - ], - [ - 3.2158276, - 51.2131309 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "grb", - "import": 3, - "imagery": "osm", - "language": "nl" - }, - "id": 113125083 - } - }, - { - "id": 113120672, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.0475642, - 52.3835208 - ], - [ - 13.0945203, - 52.3835208 - ], - [ - 13.0945203, - 52.39681 - ], - [ - 13.0475642, - 52.39681 - ], - [ - 13.0475642, - 52.3835208 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "answer": 16, - "imagery": "osm", - "language": "en", - "add-image": 1 - }, - "id": 113120672 - } - }, - { - "id": 113120671, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.0475642, - 52.3835208 - ], - [ - 13.0475642, - 52.3835208 - ], - [ - 13.0475642, - 52.3835208 - ], - [ - 13.0475642, - 52.3835208 - ], - [ - 13.0475642, - 52.3835208 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "create": 1, - "imagery": "osm", - "language": "en" - }, - "id": 113120671 - } - }, - { - "id": 113116149, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7228588, - 51.0560322 - ], - [ - 13.7228588, - 51.0560322 - ], - [ - 13.7228588, - 51.0560322 - ], - [ - 13.7228588, - 51.0560322 - ], - [ - 13.7228588, - 51.0560322 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cyclofix", - "answer": 2, - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 113116149 - } - }, - { - "id": 113108382, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.6407026, - 48.7462049 - ], - [ - 10.9539847, - 48.7462049 - ], - [ - 10.9539847, - 48.8161167 - ], - [ - 10.6407026, - 48.8161167 - ], - [ - 10.6407026, - 48.7462049 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 124, - "imagery": "osm", - "language": "de" - }, - "id": 113108382 - } - }, - { - "id": 113092656, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.8957393, - 48.7454436 - ], - [ - 10.9028802, - 48.7454436 - ], - [ - 10.9028802, - 48.7496609 - ], - [ - 10.8957393, - 48.7496609 - ], - [ - 10.8957393, - 48.7454436 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 5, - "imagery": "osm", - "language": "de" - }, - "id": 113092656 - } - }, - { - "id": 113088240, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.9093188, - 48.7382601 - ], - [ - 10.9765043, - 48.7382601 - ], - [ - 10.9765043, - 48.7533429 - ], - [ - 10.9093188, - 48.7533429 - ], - [ - 10.9093188, - 48.7382601 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 24, - "imagery": "osm", - "language": "de" - }, - "id": 113088240 - } - }, - { - "id": 113082716, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7642102, - -34.657644 - ], - [ - -58.6464098, - -34.657644 - ], - [ - -58.6464098, - -34.6536122 - ], - [ - -58.7642102, - -34.6536122 - ], - [ - -58.7642102, - -34.657644 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "answer": 4, - "create": 1, - "imagery": "osm", - "language": "es" - }, - "id": 113082716 - } - }, - { - "id": 113082381, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2165198, - 51.1951634 - ], - [ - 3.2165198, - 51.1951634 - ], - [ - 3.2165198, - 51.1951634 - ], - [ - 3.2165198, - 51.1951634 - ], - [ - 3.2165198, - 51.1951634 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "answer": 1, - "create": 1, - "imagery": "osm", - "language": "nl" - }, - "id": 113082381 - } - }, - { - "id": 113082319, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2167532, - 51.1952601 - ], - [ - 3.2167532, - 51.1952601 - ], - [ - 3.2167532, - 51.1952601 - ], - [ - 3.2167532, - 51.1952601 - ], - [ - 3.2167532, - 51.1952601 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 1, - "theme": "charging_stations", - "answer": 7, - "create": 1, - "imagery": "osm", - "language": "nl", - "add-image": 1, - "move:node/-1": "improve_accuracy" - }, - "id": 113082319 - } - }, - { - "id": 113082105, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2051478, - 51.1908592 - ], - [ - 3.2097987, - 51.1908592 - ], - [ - 3.2097987, - 51.1946604 - ], - [ - 3.2051478, - 51.1946604 - ], - [ - 3.2051478, - 51.1908592 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 2, - "imagery": "osm", - "language": "nl", - "add-image": 2 - }, - "id": 113082105 - } - }, - { - "id": 113077093, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7169707, - 51.0405579 - ], - [ - 3.7246605, - 51.0405579 - ], - [ - 3.7246605, - 51.0589922 - ], - [ - 3.7169707, - 51.0589922 - ], - [ - 3.7169707, - 51.0405579 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 1, - "theme": "food", - "answer": 13, - "imagery": "osm", - "language": "en", - "move:node/4227045139": "improve_accuracy" - }, - "id": 113077093 - } - }, - { - "id": 113059829, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -80.4202249, - 37.2173421 - ], - [ - -80.41916, - 37.2173421 - ], - [ - -80.41916, - 37.2226129 - ], - [ - -80.4202249, - 37.2226129 - ], - [ - -80.4202249, - 37.2173421 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "etymology", - "answer": 1, - "imagery": "osm", - "language": "en" - }, - "id": 113059829 - } - }, - { - "id": 113059588, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7619062, - -34.658618 - ], - [ - -58.7617117, - -34.658618 - ], - [ - -58.7617117, - -34.6585706 - ], - [ - -58.7619062, - -34.6585706 - ], - [ - -58.7619062, - -34.658618 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "answer": 2, - "create": 2, - "imagery": "osm", - "language": "es" - }, - "id": 113059588 - } - }, - { - "id": 113058608, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2144808, - 51.2119677 - ], - [ - 3.2209435, - 51.2119677 - ], - [ - 3.2209435, - 51.2199112 - ], - [ - 3.2144808, - 51.2199112 - ], - [ - 3.2144808, - 51.2119677 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "sidewalks", - "answer": 7, - "imagery": "osm", - "language": "en" - }, - "id": 113058608 - } - }, - { - "id": 113051034, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.9484684, - 48.2694872 - ], - [ - 11.8058149, - 48.2694872 - ], - [ - 11.8058149, - 48.7835411 - ], - [ - 10.9484684, - 48.7835411 - ], - [ - 10.9484684, - 48.2694872 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 35, - "imagery": "osm", - "language": "de" - }, - "id": 113051034 - } - }, - { - "id": 113050669, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4836779, - 51.1044175 - ], - [ - 3.4836779, - 51.1044175 - ], - [ - 3.4836779, - 51.1044175 - ], - [ - 3.4836779, - 51.1044175 - ], - [ - 3.4836779, - 51.1044175 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/VerkeerdeBordenDatabank/VerkeerdeBordenDatabank.json", - "answer": 1, - "imagery": "Stamen.TonerLite", - "language": "en" - }, - "id": 113050669 - } - }, - { - "id": 113044898, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.5990696, - 46.6687776 - ], - [ - 11.5990776, - 46.6687776 - ], - [ - 11.5990776, - 46.6687901 - ], - [ - 11.5990696, - 46.6687901 - ], - [ - 11.5990696, - 46.6687776 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 1, - "theme": "toilets", - "answer": 4, - "create": 1, - "imagery": "osm", - "language": "en", - "move:node/9205242210": "improve_accuracy" - }, - "id": 113044898 - } - }, - { - "id": 113038656, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 35.9156074, - 31.9560911 - ], - [ - 35.922555, - 31.9560911 - ], - [ - 35.922555, - 31.9577128 - ], - [ - 35.9156074, - 31.9577128 - ], - [ - 35.9156074, - 31.9560911 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 8, - "imagery": "osm", - "language": "en" - }, - "id": 113038656 - } - }, - { - "id": 113037755, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5251221, - -34.6388335 - ], - [ - -58.4099628, - -34.6388335 - ], - [ - -58.4099628, - -34.6087172 - ], - [ - -58.5251221, - -34.6087172 - ], - [ - -58.5251221, - -34.6388335 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "answer": 28, - "create": 6, - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 113037755 - } - }, - { - "id": 113034431, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.090876, - 52.5058044 - ], - [ - 6.090876, - 52.5058044 - ], - [ - 6.090876, - 52.5058044 - ], - [ - 6.090876, - 52.5058044 - ], - [ - 6.090876, - 52.5058044 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "answer": 1, - "imagery": "CartoDB.Voyager", - "language": "nl", - "add-image": 1 - }, - "id": 113034431 - } - }, - { - "id": 113030047, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.544858, - 52.2558548 - ], - [ - 10.544858, - 52.2558548 - ], - [ - 10.544858, - 52.2558548 - ], - [ - 10.544858, - 52.2558548 - ], - [ - 10.544858, - 52.2558548 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "answer": 3, - "create": 1, - "imagery": "osm", - "language": "de" - }, - "id": 113030047 - } - }, - { - "id": 113028520, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9171064, - 52.5588591 - ], - [ - 5.9171064, - 52.5588591 - ], - [ - 5.9171064, - 52.5588591 - ], - [ - 5.9171064, - 52.5588591 - ], - [ - 5.9171064, - 52.5588591 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "answer": 1, - "imagery": "CartoDB.Voyager", - "language": "nl", - "add-image": 1 - }, - "id": 113028520 - } - }, - { - "id": 113024531, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9216479, - 52.5599441 - ], - [ - 5.9216479, - 52.5599441 - ], - [ - 5.9216479, - 52.5599441 - ], - [ - 5.9216479, - 52.5599441 - ], - [ - 5.9216479, - 52.5599441 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "answer": 1, - "create": 1, - "imagery": "CartoDB.Voyager", - "language": "nl", - "add-image": 1 - }, - "id": 113024531 - } - }, - { - "id": 113019941, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -99.3152435, - 38.870964 - ], - [ - -99.3099275, - 38.870964 - ], - [ - -99.3099275, - 38.882604 - ], - [ - -99.3152435, - 38.882604 - ], - [ - -99.3152435, - 38.870964 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 12, - "imagery": "osm", - "language": "en" - }, - "id": 113019941 - } - }, - { - "id": 113010848, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5712079, - 53.0125167 - ], - [ - 6.5962516, - 53.0125167 - ], - [ - 6.5962516, - 53.0317972 - ], - [ - 6.5712079, - 53.0317972 - ], - [ - 6.5712079, - 53.0125167 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 23, - "imagery": "osm", - "language": "nl" - }, - "id": 113010848 - } - }, - { - "id": 113008229, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -9.1353143, - 53.2613781 - ], - [ - -9.0778064, - 53.2613781 - ], - [ - -9.0778064, - 53.2765148 - ], - [ - -9.1353143, - 53.2765148 - ], - [ - -9.1353143, - 53.2613781 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "answer": 36, - "imagery": "osm", - "language": "en" - }, - "id": 113008229 - } - }, - { - "id": 113005319, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3665548, - 50.8442926 - ], - [ - 4.3665548, - 50.8442926 - ], - [ - 4.3665548, - 50.8442926 - ], - [ - 4.3665548, - 50.8442926 - ], - [ - 4.3665548, - 50.8442926 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "answer": 1, - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 113005319 - } - }, - { - "id": 113001200, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.5689426, - 46.6417558 - ], - [ - 11.5689426, - 46.6417558 - ], - [ - 11.5689426, - 46.6417558 - ], - [ - 11.5689426, - 46.6417558 - ], - [ - 11.5689426, - 46.6417558 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "answer": 2, - "create": 1, - "imagery": "osm", - "language": "en" - }, - "id": 113001200 - } - }, - { - "id": 112999964, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -93.2370498, - 44.9152733 - ], - [ - -93.2134446, - 44.9152733 - ], - [ - -93.2134446, - 44.9465752 - ], - [ - -93.2370498, - 44.9465752 - ], - [ - -93.2370498, - 44.9152733 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 12, - "imagery": "osm", - "language": "en" - }, - "id": 112999964 - } - }, - { - "id": 112999873, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3349443, - 50.8784486 - ], - [ - 4.3358089, - 50.8784486 - ], - [ - 4.3358089, - 50.8785855 - ], - [ - 4.3349443, - 50.8785855 - ], - [ - 4.3349443, - 50.8784486 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "imagery": "osm", - "language": "nl", - "add-image": 1 - }, - "id": 112999873 - } - }, - { - "id": 112993571, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.6497979, - -34.6545584 - ], - [ - -58.6477319, - -34.6545584 - ], - [ - -58.6477319, - -34.6538188 - ], - [ - -58.6497979, - -34.6538188 - ], - [ - -58.6497979, - -34.6545584 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "answer": 3, - "imagery": "osm", - "language": "es" - }, - "id": 112993571 - } - }, - { - "id": 112993400, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9755905, - 51.3370068 - ], - [ - 4.9755905, - 51.3370068 - ], - [ - 4.9755905, - 51.3370068 - ], - [ - 4.9755905, - 51.3370068 - ], - [ - 4.9755905, - 51.3370068 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "answer": 5, - "imagery": "osm", - "language": "nl" - }, - "id": 112993400 - } - }, - { - "id": 112986442, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.0567635, - 49.6987406 - ], - [ - 11.0688524, - 49.6987406 - ], - [ - 11.0688524, - 49.7189375 - ], - [ - 11.0567635, - 49.7189375 - ], - [ - 11.0567635, - 49.6987406 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 154, - "imagery": "osm", - "language": "en" - }, - "id": 112986442 - } - }, - { - "id": 112977842, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5714162, - 53.018317 - ], - [ - 6.5715001, - 53.018317 - ], - [ - 6.5715001, - 53.0186347 - ], - [ - 6.5714162, - 53.0186347 - ], - [ - 6.5714162, - 53.018317 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/theme/street_lighting/", - "theme": "street_lighting", - "answer": 14, - "imagery": "osm", - "language": "nl" - }, - "id": 112977842 - } - }, - { - "id": 112977275, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.7512944, - 49.4243983 - ], - [ - 7.7512944, - 49.4243983 - ], - [ - 7.7512944, - 49.4243983 - ], - [ - 7.7512944, - 49.4243983 - ], - [ - 7.7512944, - 49.4243983 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "create": 1, - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 112977275 - } - }, - { - "id": 112972777, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -118.4686247, - 33.9686292 - ], - [ - -104.7828575, - 33.9686292 - ], - [ - -104.7828575, - 41.1460903 - ], - [ - -118.4686247, - 41.1460903 - ], - [ - -118.4686247, - 33.9686292 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 53, - "imagery": "osm", - "language": "en" - }, - "id": 112972777 - } - }, - { - "id": 112970293, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2207445, - 51.2170027 - ], - [ - 3.2207445, - 51.2170027 - ], - [ - 3.2207445, - 51.2170027 - ], - [ - 3.2207445, - 51.2170027 - ], - [ - 3.2207445, - 51.2170027 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/theme/street_lighting/", - "theme": "street_lighting", - "answer": 5, - "imagery": "osm", - "language": "nl" - }, - "id": 112970293 - } - }, - { - "id": 112966235, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.7626281, - 53.1568885 - ], - [ - 12.7819019, - 53.1568885 - ], - [ - 12.7819019, - 53.1635895 - ], - [ - 12.7626281, - 53.1635895 - ], - [ - 12.7626281, - 53.1568885 - ] - ] - ] - }, - "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, - "metadata": { - "host": "www.waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 112966235 - } - }, - { - "id": 112965511, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.8934615, - 48.3073035 - ], - [ - 11.9133314, - 48.3073035 - ], - [ - 11.9133314, - 48.3162689 - ], - [ - 11.8934615, - 48.3162689 - ], - [ - 11.8934615, - 48.3073035 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 32, - "imagery": "osm", - "language": "en" - }, - "id": 112965511 - } - }, - { - "id": 112965061, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.9775518, - 45.7945704 - ], - [ - 16.0042866, - 45.7945704 - ], - [ - 16.0042866, - 45.8122995 - ], - [ - 15.9775518, - 45.8122995 - ], - [ - 15.9775518, - 45.7945704 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 180, - "imagery": "osm", - "language": "en" - }, - "id": 112965061 - } - }, - { - "id": 112964829, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.1557531, - 52.957285 - ], - [ - -1.1487258, - 52.957285 - ], - [ - -1.1487258, - 52.9583613 - ], - [ - -1.1557531, - 52.9583613 - ], - [ - -1.1557531, - 52.957285 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 11, - "imagery": "osm", - "language": "en" - }, - "id": 112964829 - } - }, - { - "id": 112964711, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.5797011, - 54.8337195 - ], - [ - -1.5432268, - 54.8337195 - ], - [ - -1.5432268, - 54.8517436 - ], - [ - -1.5797011, - 54.8517436 - ], - [ - -1.5797011, - 54.8337195 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 18, - "imagery": "osm", - "language": "en" - }, - "id": 112964711 - } - }, - { - "id": 112953730, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2014525, - 51.1928237 - ], - [ - 3.2209386, - 51.1928237 - ], - [ - 3.2209386, - 51.2240655 - ], - [ - 3.2014525, - 51.2240655 - ], - [ - 3.2014525, - 51.1928237 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "grb", - "answer": 22, - "imagery": "AGIVFlandersGRB", - "language": "nl" - }, - "id": 112953730 - } - }, - { - "id": 112953572, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5365292, - 53.0175187 - ], - [ - 6.5714173, - 53.0175187 - ], - [ - 6.5714173, - 53.2170679 - ], - [ - 6.5365292, - 53.2170679 - ], - [ - 6.5365292, - 53.0175187 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 48, - "imagery": "osm", - "language": "nl" - }, - "id": 112953572 - } - }, - { - "id": 112953457, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1752036, - 51.1897954 - ], - [ - 3.1764975, - 51.1897954 - ], - [ - 3.1764975, - 51.1906827 - ], - [ - 3.1752036, - 51.1906827 - ], - [ - 3.1752036, - 51.1897954 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 4, - "imagery": "osm", - "language": "nl" - }, - "id": 112953457 - } - }, - { - "id": 112952854, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.336863, - 51.538337 - ], - [ - 13.336863, - 51.538337 - ], - [ - 13.336863, - 51.538337 - ], - [ - 13.336863, - 51.538337 - ], - [ - 13.336863, - 51.538337 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 112952854 - } - }, - { - "id": 112952535, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.7572405, - 53.1569431 - ], - [ - 12.780268, - 53.1569431 - ], - [ - 12.780268, - 53.1602461 - ], - [ - 12.7572405, - 53.1602461 - ], - [ - 12.7572405, - 53.1569431 - ] - ] - ] - }, - "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, - "metadata": { - "host": "www.waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 112952535 - } - }, - { - "id": 112949077, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5703946, - 53.0177149 - ], - [ - 6.5716844, - 53.0177149 - ], - [ - 6.5716844, - 53.0210938 - ], - [ - 6.5703946, - 53.0210938 - ], - [ - 6.5703946, - 53.0177149 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 6, - "imagery": "osm", - "language": "nl" - }, - "id": 112949077 - } - }, - { - "id": 112945227, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5108545, - 53.0012411 - ], - [ - 6.5108608, - 53.0012411 - ], - [ - 6.5108608, - 53.001251 - ], - [ - 6.5108545, - 53.001251 - ], - [ - 6.5108545, - 53.0012411 - ] - ] - ] - }, - "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, - "metadata": { - "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" - }, - "id": 112945227 - } - }, - { - "id": 112928541, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.325695, - 50.820308 - ], - [ - 4.4017357, - 50.820308 - ], - [ - 4.4017357, - 50.8228884 - ], - [ - 4.325695, - 50.8228884 - ], - [ - 4.325695, - 50.820308 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 3, - "imagery": "CartoDB.Voyager", - "deletion": 1, - "language": "fr", - "deletion:node/9119877457": "duplicate" - }, - "id": 112928541 - } - }, - { - "id": 112918213, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.9118367, - 53.7358953 - ], - [ - 9.912337, - 53.7358953 - ], - [ - 9.912337, - 53.7361236 - ], - [ - 9.9118367, - 53.7361236 - ], - [ - 9.9118367, - 53.7358953 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "answer": 2, - "imagery": "osm", - "language": "en" - }, - "id": 112918213 - } - }, - { - "id": 112916108, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2174595, - 50.8954504 - ], - [ - 4.2297978, - 50.8954504 - ], - [ - 4.2297978, - 50.8981129 - ], - [ - 4.2174595, - 50.8981129 - ], - [ - 4.2174595, - 50.8954504 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclestreets", - "answer": 4, - "imagery": "osm", - "language": "en" - }, - "id": 112916108 - } - }, - { - "id": 112913626, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.9183158, - 43.3116971 - ], - [ - -3.9183158, - 43.3116971 - ], - [ - -3.9183158, - 43.3116971 - ], - [ - -3.9183158, - 43.3116971 - ], - [ - -3.9183158, - 43.3116971 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "answer": 2, - "create": 1, - "imagery": "osm", - "language": "en", - "add-image": 1 - }, - "id": 112913626 - } - }, - { - "id": 112910601, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5911317, - 50.8997234 - ], - [ - 3.5911317, - 50.8997234 - ], - [ - 3.5911317, - 50.8997234 - ], - [ - 3.5911317, - 50.8997234 - ], - [ - 3.5911317, - 50.8997234 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "answer": 7, - "create": 1, - "imagery": "AGIVFlandersGRB", - "language": "nl" - }, - "id": 112910601 - } - }, - { - "id": 112908415, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5520187, - 53.0127475 - ], - [ - 6.5730496, - 53.0127475 - ], - [ - 6.5730496, - 53.0209128 - ], - [ - 6.5520187, - 53.0209128 - ], - [ - 6.5520187, - 53.0127475 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "move": 9, - "path": "mc/theme/street_lighting/", - "theme": "street_lighting_assen", - "answer": 54, - "create": 18, - "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" - }, - "id": 112908415 - } - }, - { - "id": 112908056, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2551906, - 50.8356085 - ], - [ - 3.2551906, - 50.8356085 - ], - [ - 3.2551906, - 50.8356085 - ], - [ - 3.2551906, - 50.8356085 - ], - [ - 3.2551906, - 50.8356085 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cyclofix", - "answer": 4, - "create": 1, - "imagery": "CartoDB.Voyager", - "language": "nl", - "add-image": 2 - }, - "id": 112908056 - } - }, - { - "id": 112902452, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.9058252, - 53.60786 - ], - [ - 9.9058252, - 53.60786 - ], - [ - 9.9058252, - 53.60786 - ], - [ - 9.9058252, - 53.60786 - ], - [ - 9.9058252, - 53.60786 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "answer": 5, - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 112902452 - } - }, - { - "id": 112902215, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.3855936, - 47.721562 - ], - [ - 9.3855936, - 47.721562 - ], - [ - 9.3855936, - 47.721562 - ], - [ - 9.3855936, - 47.721562 - ], - [ - 9.3855936, - 47.721562 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "answer": 7, - "create": 1, - "imagery": "osm", - "language": "de", - "add-image": 1 - }, - "id": 112902215 - } - }, - { - "id": 112900519, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1401296, - 51.1689705 - ], - [ - 4.1405659, - 51.1689705 - ], - [ - 4.1405659, - 51.1700828 - ], - [ - 4.1401296, - 51.1700828 - ], - [ - 4.1401296, - 51.1689705 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclestreets", - "answer": 1, - "imagery": "osm", - "language": "nl", - "add-image": 1 - }, - "id": 112900519 - } - }, - { - "id": 112900339, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.7575386, - 49.4237877 - ], - [ - 7.7575386, - 49.4237877 - ], - [ - 7.7575386, - 49.4237877 - ], - [ - 7.7575386, - 49.4237877 - ], - [ - 7.7575386, - 49.4237877 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 2, - "create": 1, - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 112900339 - } - }, - { - "id": 112899746, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5613364, - 53.0158959 - ], - [ - 6.5725856, - 53.0158959 - ], - [ - 6.5725856, - 53.0183791 - ], - [ - 6.5613364, - 53.0183791 - ], - [ - 6.5613364, - 53.0158959 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/theme/street_lighting/", - "theme": "street_lighting_assen", - "answer": 11, - "create": 4, - "imagery": "Actueel_ortho25_WMS", - "language": "en" - }, - "id": 112899746 - } - }, - { - "id": 112893211, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.5884734, - 47.5827878 - ], - [ - 7.5884734, - 47.5827878 - ], - [ - 7.5884734, - 47.5827878 - ], - [ - 7.5884734, - 47.5827878 - ], - [ - 7.5884734, - 47.5827878 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "answer": 1, - "imagery": "CartoDB.Voyager", - "language": "en", - "add-image": 1 - }, - "id": 112893211 - } - }, - { - "id": 112892700, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 149.0714362, - -35.2370494 - ], - [ - 149.0747314, - -35.2370494 - ], - [ - 149.0747314, - -35.2358935 - ], - [ - 149.0714362, - -35.2358935 - ], - [ - 149.0714362, - -35.2370494 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "toilets", - "answer": 8, - "create": 1, - "imagery": "osm", - "language": "en", - "add-image": 1 - }, - "id": 112892700 - } - }, - { - "id": 112890047, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.1321904, - 43.6495348 - ], - [ - 7.1321904, - 43.6495348 - ], - [ - 7.1321904, - 43.6495348 - ], - [ - 7.1321904, - 43.6495348 - ], - [ - 7.1321904, - 43.6495348 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "ghostbikes", - "answer": 1, - "imagery": "CartoDB.Positron", - "language": "fr" - }, - "id": 112890047 - } - }, - { - "id": 112888673, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3029667, - 51.6403353 - ], - [ - 13.3029667, - 51.6403353 - ], - [ - 13.3029667, - 51.6403353 - ], - [ - 13.3029667, - 51.6403353 - ], - [ - 13.3029667, - 51.6403353 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 112888673 - } - }, - { - "id": 112886005, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.3719196, - 47.6787492 - ], - [ - -122.371919, - 47.6787492 - ], - [ - -122.371919, - 47.6787492 - ], - [ - -122.3719196, - 47.6787492 - ], - [ - -122.3719196, - 47.6787492 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "answer": 3, - "imagery": "osm", - "language": "en" - }, - "id": 112886005 - } - }, - { - "id": 112885975, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2370934, - 41.4647994 - ], - [ - 2.237784, - 41.4647994 - ], - [ - 2.237784, - 41.4671778 - ], - [ - 2.2370934, - 41.4671778 - ], - [ - 2.2370934, - 41.4647994 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "answer": 14, - "create": 3, - "imagery": "HDM_HOT", - "language": "ca", - "add-image": 6 - }, - "id": 112885975 - } - }, - { - "id": 112883053, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7526418, - 50.8032604 - ], - [ - 3.7526418, - 50.8032604 - ], - [ - 3.7526418, - 50.8032604 - ], - [ - 3.7526418, - 50.8032604 - ], - [ - 3.7526418, - 50.8032604 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "answer": 9, - "create": 1, - "imagery": "CartoDB.Voyager", - "language": "nl" - }, - "id": 112883053 - } - }, - { - "id": 112881713, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.548624, - 53.0176741 - ], - [ - 6.5665897, - 53.0176741 - ], - [ - 6.5665897, - 53.0218875 - ], - [ - 6.548624, - 53.0218875 - ], - [ - 6.548624, - 53.0176741 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/theme/street_lighting/", - "theme": "street_lighting", - "answer": 39, - "imagery": "osm", - "language": "nl" - }, - "id": 112881713 - } - }, - { - "id": 112879502, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5661162, - 49.8604591 - ], - [ - 8.566118, - 49.8604591 - ], - [ - 8.566118, - 49.8605158 - ], - [ - 8.5661162, - 49.8605158 - ], - [ - 8.5661162, - 49.8604591 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "answer": 2, - "imagery": "osm", - "language": "de" - }, - "id": 112879502 - } - }, - { - "id": 112879289, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3162739, - 51.633032 - ], - [ - 13.3169092, - 51.633032 - ], - [ - 13.3169092, - 51.653971 - ], - [ - 13.3162739, - 51.653971 - ], - [ - 13.3162739, - 51.633032 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 112879289 - } - }, - { - "id": 112879190, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5660771, - 49.8604105 - ], - [ - 8.5660771, - 49.8604105 - ], - [ - 8.5660771, - 49.8604105 - ], - [ - 8.5660771, - 49.8604105 - ], - [ - 8.5660771, - 49.8604105 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "create": 1, - "imagery": "osm", - "language": "de" - }, - "id": 112879190 - } - }, - { - "id": 112877710, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5701013, - 53.0198683 - ], - [ - 6.5705211, - 53.0198683 - ], - [ - 6.5705211, - 53.0200266 - ], - [ - 6.5701013, - 53.0200266 - ], - [ - 6.5701013, - 53.0198683 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/theme/street_lighting/", - "theme": "street_lighting", - "answer": 12, - "imagery": "osm", - "language": "nl" - }, - "id": 112877710 - } - }, - { - "id": 112875924, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.5652936, - 51.9702387 - ], - [ - 13.5652936, - 51.9702387 - ], - [ - 13.5652936, - 51.9702387 - ], - [ - 13.5652936, - 51.9702387 - ], - [ - 13.5652936, - 51.9702387 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 112875924 - } - }, - { - "id": 112873649, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.560159, - 53.0218087 - ], - [ - 6.560159, - 53.0218087 - ], - [ - 6.560159, - 53.0218087 - ], - [ - 6.560159, - 53.0218087 - ], - [ - 6.560159, - 53.0218087 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/theme/street_lighting/", - "theme": "street_lighting", - "answer": 7, - "imagery": "osm", - "language": "nl" - }, - "id": 112873649 - } - }, - { - "id": 112868634, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2261381, - 51.215136 - ], - [ - 3.2263112, - 51.215136 - ], - [ - 3.2263112, - 51.2161355 - ], - [ - 3.2261381, - 51.2161355 - ], - [ - 3.2261381, - 51.215136 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "grb", - "answer": 4, - "imagery": "AGIVFlandersGRB", - "language": "nl" - }, - "id": 112868634 - } - }, - { - "id": 112868128, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2773693, - 51.1411478 - ], - [ - 6.2773693, - 51.1411478 - ], - [ - 6.2773693, - 51.1411478 - ], - [ - 6.2773693, - 51.1411478 - ], - [ - 6.2773693, - 51.1411478 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "answer": 3, - "imagery": "osm", - "language": "de" - }, - "id": 112868128 - } - }, - { - "id": 112867160, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1004699, - 52.0988985 - ], - [ - 5.1011539, - 52.0988985 - ], - [ - 5.1011539, - 52.0992181 - ], - [ - 5.1004699, - 52.0992181 - ], - [ - 5.1004699, - 52.0988985 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artwork", - "answer": 8, - "create": 4, - "imagery": "osm", - "language": "en", - "add-image": 4 - }, - "id": 112867160 - } - }, - { - "id": 112866456, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0910025, - 52.1017588 - ], - [ - 5.0954407, - 52.1017588 - ], - [ - 5.0954407, - 52.1030985 - ], - [ - 5.0910025, - 52.1030985 - ], - [ - 5.0910025, - 52.1017588 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "answer": 6, - "create": 2, - "imagery": "osm", - "language": "en", - "add-image": 2 - }, - "id": 112866456 - } - }, - { - "id": 112865466, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.8729827, - 45.4682787 - ], - [ - 7.8800102, - 45.4682787 - ], - [ - 7.8800102, - 45.4707397 - ], - [ - 7.8729827, - 45.4707397 - ], - [ - 7.8729827, - 45.4682787 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "answer": 8, - "imagery": "osm", - "language": "en" - }, - "id": 112865466 - } - }, - { - "id": 112864730, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1485138, - 55.6929421 - ], - [ - 9.1485138, - 55.6929421 - ], - [ - 9.1485138, - 55.6929421 - ], - [ - 9.1485138, - 55.6929421 - ], - [ - 9.1485138, - 55.6929421 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 2, - "create": 1, - "imagery": "osm", - "language": "nl" - }, - "id": 112864730 - } - }, - { - "id": 112861808, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -76.6471508, - 39.3191368 - ], - [ - -76.6471508, - 39.3191368 - ], - [ - -76.6471508, - 39.3191368 - ], - [ - -76.6471508, - 39.3191368 - ], - [ - -76.6471508, - 39.3191368 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "artwork", - "answer": 3, - "create": 1, - "imagery": "geodata.md.gov-MD_SixInchImagery", - "language": "en" - }, - "id": 112861808 - } - }, - { - "id": 112861396, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "SherbetS", - "uid": "12163682", - "editor": "MapComplete 0.11.0", - "comment": "Adding data with #MapComplete for theme #test", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2021-10-23T02:52:43Z", - "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": "CartoDB.Voyager", - "language": "en" - }, - "id": 112861396 - } - }, - { - "id": 112861395, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -85.4725958, - 32.5885088 - ], - [ - -85.4725958, - 32.5885088 - ], - [ - -85.4725958, - 32.5885088 - ], - [ - -85.4725958, - 32.5885088 - ], - [ - -85.4725958, - 32.5885088 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "add-image": 1 - }, - "id": 112861395 - } - }, - { - "id": 112856442, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.1164614, - 52.8052704 - ], - [ - -2.1164555, - 52.8052704 - ], - [ - -2.1164555, - 52.8052925 - ], - [ - -2.1164614, - 52.8052925 - ], - [ - -2.1164614, - 52.8052704 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 5, - "create": 1, - "imagery": "EsriWorldImageryClarity", - "language": "nl" - }, - "id": 112856442 - } - }, - { - "id": 112856106, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.224992, - 51.212664 - ], - [ - 3.2353575, - 51.212664 - ], - [ - 3.2353575, - 51.2143991 - ], - [ - 3.224992, - 51.2143991 - ], - [ - 3.224992, - 51.212664 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "grb", - "answer": 15, - "imagery": "AGIVFlandersGRB", - "language": "nl" - }, - "id": 112856106 - } - }, - { - "id": 112856017, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2376945, - 51.2149454 - ], - [ - 3.2376945, - 51.2149454 - ], - [ - 3.2376945, - 51.2149454 - ], - [ - 3.2376945, - 51.2149454 - ], - [ - 3.2376945, - 51.2149454 - ] - ] - ] - }, - "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": 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": 3, - "create": 2, - "imagery": "osm", - "language": "nl" - }, - "id": 112856017 - } - }, - { - "id": 112852101, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5488267, - 53.0015413 - ], - [ - 6.5491077, - 53.0015413 - ], - [ - 6.5491077, - 53.0015956 - ], - [ - 6.5488267, - 53.0015956 - ], - [ - 6.5488267, - 53.0015413 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/theme/street_lighting/", - "theme": "street_lighting", - "answer": 1, - "imagery": "osm", - "language": "en" - }, - "id": 112852101 - } - }, - { - "id": 112849606, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2226879, - 51.2133141 - ], - [ - 3.2259155, - 51.2133141 - ], - [ - 3.2259155, - 51.2150424 - ], - [ - 3.2226879, - 51.2150424 - ], - [ - 3.2226879, - 51.2133141 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "grb", - "answer": 2, - "imagery": "AGIVFlandersGRB", - "language": "nl" - }, - "id": 112849606 - } - }, - { - "id": 112847851, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2399328, - 51.2127007 - ], - [ - 3.2399328, - 51.2127007 - ], - [ - 3.2399328, - 51.2127007 - ], - [ - 3.2399328, - 51.2127007 - ], - [ - 3.2399328, - 51.2127007 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 1, - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 112847851 - } - }, - { - "id": 112844464, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2398742, - 51.2126842 - ], - [ - 3.2399395, - 51.2126842 - ], - [ - 3.2399395, - 51.2127761 - ], - [ - 3.2398742, - 51.2127761 - ], - [ - 3.2398742, - 51.2126842 - ] - ] - ] - }, - "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, - "metadata": { - "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" - }, - "id": 112844464 - } - }, - { - "id": 112843053, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2315469, - 51.2137869 - ], - [ - 3.2372412, - 51.2137869 - ], - [ - 3.2372412, - 51.2147707 - ], - [ - 3.2315469, - 51.2147707 - ], - [ - 3.2315469, - 51.2137869 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artwork", - "answer": 2, - "create": 1, - "imagery": "osm", - "language": "en", - "add-image": 2 - }, - "id": 112843053 - } - }, - { - "id": 112840556, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2369476, - 50.7326341 - ], - [ - 4.2369476, - 50.7326341 - ], - [ - 4.2369476, - 50.7326341 - ], - [ - 4.2369476, - 50.7326341 - ], - [ - 4.2369476, - 50.7326341 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "answer": 1, - "imagery": "osm", - "language": "nl" - }, - "id": 112840556 - } - }, - { - "id": 112840419, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.6420013, - 52.0122072 - ], - [ - 14.6420013, - 52.0122072 - ], - [ - 14.6420013, - 52.0122072 - ], - [ - 14.6420013, - 52.0122072 - ], - [ - 14.6420013, - 52.0122072 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 112840419 - } - }, - { - "id": 112838739, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.1687169, - 50.6640325 - ], - [ - 6.191557, - 50.6640325 - ], - [ - 6.191557, - 50.6763457 - ], - [ - 6.1687169, - 50.6763457 - ], - [ - 6.1687169, - 50.6640325 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "openwindpowermap", - "answer": 21, - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 112838739 - } - }, - { - "id": 112838646, - "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.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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 4, - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 112838646 - } - }, - { - "id": 112838009, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.1834043, - 50.6375631 - ], - [ - 6.2011342, - 50.6375631 - ], - [ - 6.2011342, - 50.657581 - ], - [ - 6.1834043, - 50.657581 - ], - [ - 6.1834043, - 50.6375631 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "food", - "answer": 21, - "imagery": "osm", - "language": "en" - }, - "id": 112838009 - } - }, - { - "id": 112837641, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.1838972, - 50.6458567 - ], - [ - 6.1858414, - 50.6458567 - ], - [ - 6.1858414, - 50.6472039 - ], - [ - 6.1838972, - 50.6472039 - ], - [ - 6.1838972, - 50.6458567 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "answer": 7, - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 112837641 - } - }, - { - "id": 112837241, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.1839155, - 50.6357237 - ], - [ - 6.2081823, - 50.6357237 - ], - [ - 6.2081823, - 50.6478957 - ], - [ - 6.1839155, - 50.6478957 - ], - [ - 6.1839155, - 50.6357237 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 18, - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 112837241 - } - }, - { - "id": 112837065, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.1838941, - 50.6471167 - ], - [ - 6.1838941, - 50.6471167 - ], - [ - 6.1838941, - 50.6471167 - ], - [ - 6.1838941, - 50.6471167 - ], - [ - 6.1838941, - 50.6471167 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "answer": 4, - "imagery": "osm", - "language": "en" - }, - "id": 112837065 - } - }, - { - "id": 112831683, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1450558, - 51.1829237 - ], - [ - 4.178697, - 51.1829237 - ], - [ - 4.178697, - 51.195708 - ], - [ - 4.1450558, - 51.195708 - ], - [ - 4.1450558, - 51.1829237 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 112831683 - } - }, - { - "id": 112828266, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2376713, - 41.4647223 - ], - [ - 2.2378787, - 41.4647223 - ], - [ - 2.2378787, - 41.4648308 - ], - [ - 2.2376713, - 41.4648308 - ], - [ - 2.2376713, - 41.4647223 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "answer": 6, - "create": 5, - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 112828266 - } - }, - { - "id": 112827018, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.127738, - 51.1055311 - ], - [ - 4.6483799, - 51.1055311 - ], - [ - 4.6483799, - 51.2199188 - ], - [ - 4.127738, - 51.2199188 - ], - [ - 4.127738, - 51.1055311 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "answer": 17, - "imagery": "osm", - "language": "nl" - }, - "id": 112827018 - } - }, - { - "id": 112825777, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1567132, - 51.1771083 - ], - [ - 4.1567132, - 51.1771083 - ], - [ - 4.1567132, - 51.1771083 - ], - [ - 4.1567132, - 51.1771083 - ], - [ - 4.1567132, - 51.1771083 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "answer": 1, - "create": 1, - "imagery": "AGIV", - "language": "nl" - }, - "id": 112825777 - } - }, - { - "id": 112805789, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.6371402, - 52.0175094 - ], - [ - 14.6371402, - 52.0175094 - ], - [ - 14.6371402, - 52.0175094 - ], - [ - 14.6371402, - 52.0175094 - ], - [ - 14.6371402, - 52.0175094 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 112805789 - } - }, - { - "id": 112799378, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2042052, - 51.1989816 - ], - [ - 3.2071848, - 51.1989816 - ], - [ - 3.2071848, - 51.2002878 - ], - [ - 3.2042052, - 51.2002878 - ], - [ - 3.2042052, - 51.1989816 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 5, - "imagery": "osm", - "language": "nl", - "add-image": 1 - }, - "id": 112799378 - } - }, - { - "id": 112796853, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2013154, - 51.1990973 - ], - [ - 3.2089586, - 51.1990973 - ], - [ - 3.2089586, - 51.2024421 - ], - [ - 3.2013154, - 51.2024421 - ], - [ - 3.2013154, - 51.1990973 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "grb", - "answer": 18, - "imagery": "osm", - "language": "nl" - }, - "id": 112796853 - } - }, - { - "id": 112788625, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2426755, - 50.7355206 - ], - [ - 4.2560441, - 50.7355206 - ], - [ - 4.2560441, - 50.7406058 - ], - [ - 4.2426755, - 50.7406058 - ], - [ - 4.2426755, - 50.7355206 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 10, - "create": 2, - "imagery": "CartoDB.Voyager", - "language": "nl", - "add-image": 1 - }, - "id": 112788625 - } - }, - { - "id": 112777915, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3294368, - 50.9907606 - ], - [ - 3.3294368, - 50.9907606 - ], - [ - 3.3294368, - 50.9907606 - ], - [ - 3.3294368, - 50.9907606 - ], - [ - 3.3294368, - 50.9907606 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "answer": 2, - "create": 1, - "imagery": "osm", - "language": "nl" - }, - "id": 112777915 - } - }, - { - "id": 112769664, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0318265, - 14.6058164 - ], - [ - 121.0319555, - 14.6058164 - ], - [ - 121.0319555, - 14.6059818 - ], - [ - 121.0318265, - 14.6059818 - ], - [ - 121.0318265, - 14.6058164 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "postboxes", - "answer": 1, - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 112769664 - } - }, - { - "id": 112768775, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.8219139, - 47.6452408 - ], - [ - 7.8219139, - 47.6452408 - ], - [ - 7.8219139, - 47.6452408 - ], - [ - 7.8219139, - 47.6452408 - ], - [ - 7.8219139, - 47.6452408 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "answer": 4, - "imagery": "CartoDB.Voyager", - "language": "de" - }, - "id": 112768775 - } - }, - { - "id": 112768712, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.8237334, - 47.6456871 - ], - [ - 7.8237334, - 47.6456871 - ], - [ - 7.8237334, - 47.6456871 - ], - [ - 7.8237334, - 47.6456871 - ], - [ - 7.8237334, - 47.6456871 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cycle_infra", - "answer": 1, - "imagery": "CartoDB.Voyager", - "language": "de" - }, - "id": 112768712 - } - }, - { - "id": 112763424, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.8224244, - 47.6483941 - ], - [ - 7.8233899, - 47.6483941 - ], - [ - 7.8233899, - 47.6488233 - ], - [ - 7.8224244, - 47.6488233 - ], - [ - 7.8224244, - 47.6483941 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 112763424 - } - }, - { - "id": 112761963, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5595136, - 53.0192929 - ], - [ - 6.5625272, - 53.0192929 - ], - [ - 6.5625272, - 53.0210558 - ], - [ - 6.5595136, - 53.0210558 - ], - [ - 6.5595136, - 53.0192929 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/theme/street_lighting/", - "theme": "street_lighting", - "answer": 88, - "create": 1, - "imagery": "osm", - "language": "nl" - }, - "id": 112761963 - } - }, - { - "id": 112757603, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.8910801, - 53.1005661 - ], - [ - 12.8910801, - 53.1005661 - ], - [ - 12.8910801, - 53.1005661 - ], - [ - 12.8910801, - 53.1005661 - ], - [ - 12.8910801, - 53.1005661 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "food", - "imagery": "osm", - "language": "en" - }, - "id": 112757603 - } - }, - { - "id": 112756229, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2392313, - 50.7322621 - ], - [ - 4.2392313, - 50.7322621 - ], - [ - 4.2392313, - 50.7322621 - ], - [ - 4.2392313, - 50.7322621 - ], - [ - 4.2392313, - 50.7322621 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 112756229 - } - }, - { - "id": 112753161, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.57581, - 53.2152218 - ], - [ - 6.6148031, - 53.2152218 - ], - [ - 6.6148031, - 53.2244879 - ], - [ - 6.57581, - 53.2244879 - ], - [ - 6.57581, - 53.2152218 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "etymology", - "answer": 253, - "imagery": "osm", - "language": "nl" - }, - "id": 112753161 - } - }, - { - "id": 112752015, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5131358, - 52.975784 - ], - [ - 6.5812529, - 52.975784 - ], - [ - 6.5812529, - 52.9940098 - ], - [ - 6.5131358, - 52.9940098 - ], - [ - 6.5131358, - 52.975784 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "etymology", - "answer": 155, - "imagery": "osm", - "language": "nl" - }, - "id": 112752015 - } - }, - { - "id": 112748629, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7673063, - 50.8715807 - ], - [ - 4.8836353, - 50.8715807 - ], - [ - 4.8836353, - 50.895814 - ], - [ - 4.7673063, - 50.895814 - ], - [ - 4.7673063, - 50.8715807 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "CartoDB.Voyager", - "language": "nl" - }, - "id": 112748629 - } - }, - { - "id": 112748388, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5702664, - 53.0177802 - ], - [ - 6.5718454, - 53.0177802 - ], - [ - 6.5718454, - 53.0210592 - ], - [ - 6.5702664, - 53.0210592 - ], - [ - 6.5702664, - 53.0177802 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/theme/street_lighting/", - "theme": "street_lighting", - "answer": 205, - "imagery": "osm", - "language": "nl" - }, - "id": 112748388 - } - }, - { - "id": 112747371, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -9.1238252, - 53.2601483 - ], - [ - -9.1038125, - 53.2601483 - ], - [ - -9.1038125, - 53.2692424 - ], - [ - -9.1238252, - 53.2692424 - ], - [ - -9.1238252, - 53.2601483 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112747371 - } - }, - { - "id": 112745665, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2694622, - 47.7112794 - ], - [ - 9.2694622, - 47.7112794 - ], - [ - 9.2694622, - 47.7112794 - ], - [ - 9.2694622, - 47.7112794 - ], - [ - 9.2694622, - 47.7112794 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 112745665 - } - }, - { - "id": 112745041, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2202656, - 51.2152235 - ], - [ - 3.2212079, - 51.2152235 - ], - [ - 3.2212079, - 51.2181563 - ], - [ - 3.2202656, - 51.2181563 - ], - [ - 3.2202656, - 51.2152235 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/alpha/", - "theme": "etymology", - "answer": 3, - "imagery": "osm", - "language": "nl" - }, - "id": 112745041 - } - }, - { - "id": 112740347, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5804162, - 53.2129721 - ], - [ - 6.6004165, - 53.2129721 - ], - [ - 6.6004165, - 53.2180528 - ], - [ - 6.5804162, - 53.2180528 - ], - [ - 6.5804162, - 53.2129721 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "etymology", - "answer": 130, - "imagery": "osm", - "language": "nl" - }, - "id": 112740347 - } - }, - { - "id": 112738677, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2084243, - 51.2081959 - ], - [ - 3.2338334, - 51.2081959 - ], - [ - 3.2338334, - 51.218774 - ], - [ - 3.2084243, - 51.218774 - ], - [ - 3.2084243, - 51.2081959 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "grb", - "answer": 18, - "imagery": "AGIVFlandersGRB", - "language": "nl" - }, - "id": 112738677 - } - }, - { - "id": 112738403, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2143236, - 51.2098348 - ], - [ - 3.2382683, - 51.2098348 - ], - [ - 3.2382683, - 51.2156301 - ], - [ - 3.2143236, - 51.2156301 - ], - [ - 3.2143236, - 51.2098348 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/alpha/", - "theme": "etymology", - "answer": 8, - "imagery": "osm", - "language": "nl" - }, - "id": 112738403 - } - }, - { - "id": 112733217, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8807272, - 51.0598072 - ], - [ - 4.8807272, - 51.0598072 - ], - [ - 4.8807272, - 51.0598072 - ], - [ - 4.8807272, - 51.0598072 - ], - [ - 4.8807272, - 51.0598072 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112733217 - } - }, - { - "id": 112729830, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7175022, - 51.0432208 - ], - [ - 3.7178813, - 51.0432208 - ], - [ - 3.7178813, - 51.043388 - ], - [ - 3.7175022, - 51.043388 - ], - [ - 3.7175022, - 51.0432208 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 112729830 - } - }, - { - "id": 112729580, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7110539, - 51.0423597 - ], - [ - 3.7110539, - 51.0423597 - ], - [ - 3.7110539, - 51.0423597 - ], - [ - 3.7110539, - 51.0423597 - ], - [ - 3.7110539, - 51.0423597 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "CartoDB.Voyager", - "language": "nl" - }, - "id": 112729580 - } - }, - { - "id": 112728248, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5757919, - 50.6486646 - ], - [ - 5.5757919, - 50.6486646 - ], - [ - 5.5757919, - 50.6486646 - ], - [ - 5.5757919, - 50.6486646 - ], - [ - 5.5757919, - 50.6486646 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112728248 - } - }, - { - "id": 112718253, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.5874942, - 47.6678007 - ], - [ - 9.5900852, - 47.6678007 - ], - [ - 9.5900852, - 47.6704703 - ], - [ - 9.5874942, - 47.6704703 - ], - [ - 9.5874942, - 47.6678007 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 112718253 - } - }, - { - "id": 112712386, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2185596, - 51.2131485 - ], - [ - 3.2185596, - 51.2131485 - ], - [ - 3.2185596, - 51.2131485 - ], - [ - 3.2185596, - 51.2131485 - ], - [ - 3.2185596, - 51.2131485 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 112712386 - } - }, - { - "id": 112710590, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2308717, - 41.4470097 - ], - [ - 2.232173, - 41.4470097 - ], - [ - 2.232173, - 41.4472648 - ], - [ - 2.2308717, - 41.4472648 - ], - [ - 2.2308717, - 41.4470097 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 112710590 - } - }, - { - "id": 112710210, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2157495, - 51.2089829 - ], - [ - 3.2167779, - 51.2089829 - ], - [ - 3.2167779, - 51.2092374 - ], - [ - 3.2157495, - 51.2092374 - ], - [ - 3.2157495, - 51.2089829 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "etymology", - "answer": 3, - "imagery": "osm", - "language": "nl" - }, - "id": 112710210 - } - }, - { - "id": 112709992, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2147004, - 51.2078665 - ], - [ - 3.2197883, - 51.2078665 - ], - [ - 3.2197883, - 51.21868 - ], - [ - 3.2147004, - 51.21868 - ], - [ - 3.2147004, - 51.2078665 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "grb", - "answer": 55, - "imagery": "AGIVFlandersGRB", - "language": "nl" - }, - "id": 112709992 - } - }, - { - "id": 112705847, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.6043359, - 53.2170286 - ], - [ - 6.6043359, - 53.2170286 - ], - [ - 6.6043359, - 53.2170286 - ], - [ - 6.6043359, - 53.2170286 - ], - [ - 6.6043359, - 53.2170286 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/theme/street_lighting/", - "theme": "street_lighting", - "answer": 3, - "create": 1, - "imagery": "Actueel_ortho25_WMS", - "language": "nl" - }, - "id": 112705847 - } - }, - { - "id": 112701458, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5562924, - 53.0150928 - ], - [ - 6.5576007, - 53.0150928 - ], - [ - 6.5576007, - 53.0161698 - ], - [ - 6.5562924, - 53.0161698 - ], - [ - 6.5562924, - 53.0150928 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/theme/street_lighting/", - "theme": "street_lighting", - "answer": 35, - "imagery": "osm", - "language": "nl" - }, - "id": 112701458 - } - }, - { - "id": 112699968, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8807272, - 51.0598072 - ], - [ - 4.8807272, - 51.0598072 - ], - [ - 4.8807272, - 51.0598072 - ], - [ - 4.8807272, - 51.0598072 - ], - [ - 4.8807272, - 51.0598072 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112699968 - } - }, - { - "id": 112697990, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2358518, - 50.7362727 - ], - [ - 4.243543, - 50.7362727 - ], - [ - 4.243543, - 50.7387704 - ], - [ - 4.2358518, - 50.7387704 - ], - [ - 4.2358518, - 50.7362727 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "toerisme_vlaanderen", - "answer": 11, - "imagery": "osm", - "language": "nl" - }, - "id": 112697990 - } - }, - { - "id": 112695953, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2228096, - 51.2147707 - ], - [ - 3.2372412, - 51.2147707 - ], - [ - 3.2372412, - 51.2157972 - ], - [ - 3.2228096, - 51.2157972 - ], - [ - 3.2228096, - 51.2147707 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "artwork", - "answer": 2, - "create": 2, - "imagery": "osm", - "language": "nl", - "add-image": 3 - }, - "id": 112695953 - } - }, - { - "id": 112694872, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5722951, - 50.6552402 - ], - [ - 5.5722951, - 50.6552402 - ], - [ - 5.5722951, - 50.6552402 - ], - [ - 5.5722951, - 50.6552402 - ], - [ - 5.5722951, - 50.6552402 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112694872 - } - }, - { - "id": 112694402, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.2906018, - 51.4654127 - ], - [ - 7.307979, - 51.4654127 - ], - [ - 7.307979, - 51.4713082 - ], - [ - 7.2906018, - 51.4713082 - ], - [ - 7.2906018, - 51.4654127 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "Metropole_Ruhr_RVR-DOP10", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 112694402 - } - }, - { - "id": 112693435, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5575847, - 53.0159111 - ], - [ - 6.5724179, - 53.0159111 - ], - [ - 6.5724179, - 53.0265072 - ], - [ - 6.5575847, - 53.0265072 - ], - [ - 6.5575847, - 53.0159111 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/theme/street_lighting/", - "theme": "street_lighting", - "answer": 229, - "create": 3, - "imagery": "osm", - "language": "en" - }, - "id": 112693435 - } - }, - { - "id": 112690492, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -9.0755173, - 53.2752413 - ], - [ - -9.0755173, - 53.2752413 - ], - [ - -9.0755173, - 53.2752413 - ], - [ - -9.0755173, - 53.2752413 - ], - [ - -9.0755173, - 53.2752413 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112690492 - } - }, - { - "id": 112690102, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -9.1028462, - 53.2630503 - ], - [ - -9.074794, - 53.2630503 - ], - [ - -9.074794, - 53.2764646 - ], - [ - -9.1028462, - 53.2764646 - ], - [ - -9.1028462, - 53.2630503 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "food", - "imagery": "osm", - "language": "en" - }, - "id": 112690102 - } - }, - { - "id": 112689371, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -9.0455576, - 53.2748582 - ], - [ - -9.0455576, - 53.2748582 - ], - [ - -9.0455576, - 53.2748582 - ], - [ - -9.0455576, - 53.2748582 - ], - [ - -9.0455576, - 53.2748582 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112689371 - } - }, - { - "id": 112685292, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2694676, - 45.5034727 - ], - [ - 9.2694676, - 45.5034727 - ], - [ - 9.2694676, - 45.5034727 - ], - [ - 9.2694676, - 45.5034727 - ], - [ - 9.2694676, - 45.5034727 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112685292 - } - }, - { - "id": 112673477, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2137117, - 51.2153253 - ], - [ - 3.2225958, - 51.2153253 - ], - [ - 3.2225958, - 51.2199112 - ], - [ - 3.2137117, - 51.2199112 - ], - [ - 3.2137117, - 51.2153253 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112673477 - } - }, - { - "id": 112670419, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -75.5066331, - 5.0159707 - ], - [ - -75.4994317, - 5.0159707 - ], - [ - -75.4994317, - 5.0209574 - ], - [ - -75.5066331, - 5.0209574 - ], - [ - -75.5066331, - 5.0159707 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 112670419 - } - }, - { - "id": 112668948, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5719056, - 52.9881679 - ], - [ - 6.5719056, - 52.9881679 - ], - [ - 6.5719056, - 52.9881679 - ], - [ - 6.5719056, - 52.9881679 - ], - [ - 6.5719056, - 52.9881679 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "Actueel_ortho25_WMS", - "language": "nl" - }, - "id": 112668948 - } - }, - { - "id": 112668843, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5606219, - 53.0192702 - ], - [ - 6.5617339, - 53.0192702 - ], - [ - 6.5617339, - 53.0196606 - ], - [ - 6.5606219, - 53.0196606 - ], - [ - 6.5606219, - 53.0192702 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://gist.githubusercontent.com/RobinLinde/d22223ebe86469b0ff08e7f308ab109c/raw/774eb9ea5e8ad150b1d01868b4d51f5ca219101e/street_lighting.json", - "imagery": "osm", - "language": "nl" - }, - "id": 112668843 - } - }, - { - "id": 112668565, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2153406, - 51.2156295 - ], - [ - 3.2154107, - 51.2156295 - ], - [ - 3.2154107, - 51.2156721 - ], - [ - 3.2153406, - 51.2156721 - ], - [ - 3.2153406, - 51.2156295 - ] - ] - ] - }, - "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, - "metadata": { - "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" - }, - "id": 112668565 - } - }, - { - "id": 112667042, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.916905, - 57.6772701 - ], - [ - 11.9462415, - 57.6772701 - ], - [ - 11.9462415, - 57.6967646 - ], - [ - 11.916905, - 57.6967646 - ], - [ - 11.916905, - 57.6772701 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 112667042 - } - }, - { - "id": 112663580, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.4781727, - 51.9319697 - ], - [ - 14.481883, - 51.9319697 - ], - [ - 14.481883, - 51.935301 - ], - [ - 14.4781727, - 51.935301 - ], - [ - 14.4781727, - 51.9319697 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 112663580 - } - }, - { - "id": 112658974, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2655221, - 47.6993178 - ], - [ - 9.2967618, - 47.6993178 - ], - [ - 9.2967618, - 47.7218128 - ], - [ - 9.2655221, - 47.7218128 - ], - [ - 9.2655221, - 47.6993178 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 112658974 - } - }, - { - "id": 112658231, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2660263, - 47.6875214 - ], - [ - 9.2821142, - 47.6875214 - ], - [ - 9.2821142, - 47.6966894 - ], - [ - 9.2660263, - 47.6966894 - ], - [ - 9.2660263, - 47.6875214 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 112658231 - } - }, - { - "id": 112657372, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0720514, - 50.8425665 - ], - [ - 4.0720514, - 50.8425665 - ], - [ - 4.0720514, - 50.8425665 - ], - [ - 4.0720514, - 50.8425665 - ], - [ - 4.0720514, - 50.8425665 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "nl", - "theme-creator": "joost schouppe" - }, - "id": 112657372 - } - }, - { - "id": 112654375, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2027742, - 51.2162595 - ], - [ - 3.2036648, - 51.2162595 - ], - [ - 3.2036648, - 51.2170519 - ], - [ - 3.2027742, - 51.2170519 - ], - [ - 3.2027742, - 51.2162595 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "etymology", - "answer": 3, - "imagery": "osm", - "language": "nl" - }, - "id": 112654375 - } - }, - { - "id": 112652820, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2723456, - 47.6947613 - ], - [ - 9.2723456, - 47.6947613 - ], - [ - 9.2723456, - 47.6947613 - ], - [ - 9.2723456, - 47.6947613 - ], - [ - 9.2723456, - 47.6947613 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 112652820 - } - }, - { - "id": 112649426, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7449888, - 50.2991705 - ], - [ - 2.7449888, - 50.2991705 - ], - [ - 2.7449888, - 50.2991705 - ], - [ - 2.7449888, - 50.2991705 - ], - [ - 2.7449888, - 50.2991705 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "fr", - "theme-creator": "Erwin Olario" - }, - "id": 112649426 - } - }, - { - "id": 112641505, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0869942, - 45.4881026 - ], - [ - 9.2262606, - 45.4881026 - ], - [ - 9.2262606, - 45.6564621 - ], - [ - 9.0869942, - 45.6564621 - ], - [ - 9.0869942, - 45.4881026 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "vets", - "imagery": "osm", - "language": "en" - }, - "id": 112641505 - } - }, - { - "id": 112638273, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.7411764, - 45.1478361 - ], - [ - 5.7496431, - 45.1478361 - ], - [ - 5.7496431, - 45.1525931 - ], - [ - 5.7411764, - 45.1525931 - ], - [ - 5.7411764, - 45.1478361 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "fr" - }, - "id": 112638273 - } - }, - { - "id": 112637945, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.616621, - 44.827888 - ], - [ - 5.616621, - 44.827888 - ], - [ - 5.616621, - 44.827888 - ], - [ - 5.616621, - 44.827888 - ], - [ - 5.616621, - 44.827888 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 112637945 - } - }, - { - "id": 112637933, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.2266209, - 49.0068452 - ], - [ - 8.4461766, - 49.0068452 - ], - [ - 8.4461766, - 50.0194721 - ], - [ - 8.2266209, - 50.0194721 - ], - [ - 8.2266209, - 49.0068452 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 112637933 - } - }, - { - "id": 112636966, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1226001, - 52.078219 - ], - [ - 5.1227028, - 52.078219 - ], - [ - 5.1227028, - 52.0784914 - ], - [ - 5.1226001, - 52.0784914 - ], - [ - 5.1226001, - 52.078219 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artwork", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112636966 - } - }, - { - "id": 112635876, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.3341011, - 52.275169 - ], - [ - -3.3341011, - 52.275169 - ], - [ - -3.3341011, - 52.275169 - ], - [ - -3.3341011, - 52.275169 - ], - [ - -3.3341011, - 52.275169 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112635876 - } - }, - { - "id": 112630581, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.3713472, - 47.6895039 - ], - [ - -122.371347, - 47.6895039 - ], - [ - -122.371347, - 47.6895039 - ], - [ - -122.3713472, - 47.6895039 - ], - [ - -122.3713472, - 47.6895039 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112630581 - } - }, - { - "id": 112628013, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4455502, - 49.0258263 - ], - [ - 8.4461766, - 49.0258263 - ], - [ - 8.4461766, - 49.0261599 - ], - [ - 8.4455502, - 49.0261599 - ], - [ - 8.4455502, - 49.0258263 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 112628013 - } - }, - { - "id": 112625573, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5603149, - 49.7179279 - ], - [ - 5.5603149, - 49.7179279 - ], - [ - 5.5603149, - 49.7179279 - ], - [ - 5.5603149, - 49.7179279 - ], - [ - 5.5603149, - 49.7179279 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artwork", - "imagery": "osm", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 112625573 - } - }, - { - "id": 112623519, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.0297728, - 49.7231956 - ], - [ - 8.0312295, - 49.7231956 - ], - [ - 8.0312295, - 49.7255962 - ], - [ - 8.0297728, - 49.7255962 - ], - [ - 8.0297728, - 49.7231956 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 112623519 - } - }, - { - "id": 112622176, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2097007, - 41.536822 - ], - [ - 2.2097007, - 41.536822 - ], - [ - 2.2097007, - 41.536822 - ], - [ - 2.2097007, - 41.536822 - ], - [ - 2.2097007, - 41.536822 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 112622176 - } - }, - { - "id": 112621911, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2860721, - 51.3408964 - ], - [ - 3.2860721, - 51.3408964 - ], - [ - 3.2860721, - 51.3408964 - ], - [ - 3.2860721, - 51.3408964 - ], - [ - 3.2860721, - 51.3408964 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artwork", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 112621911 - } - }, - { - "id": 112621112, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4012481, - 50.8360901 - ], - [ - 4.4066974, - 50.8360901 - ], - [ - 4.4066974, - 50.8385235 - ], - [ - 4.4012481, - 50.8385235 - ], - [ - 4.4012481, - 50.8360901 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclestreets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112621112 - } - }, - { - "id": 112619905, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.6153278, - 51.9250815 - ], - [ - 7.6153278, - 51.9250815 - ], - [ - 7.6153278, - 51.9250815 - ], - [ - 7.6153278, - 51.9250815 - ], - [ - 7.6153278, - 51.9250815 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cyclofix", - "answer": 4, - "create": 1, - "imagery": "CartoDB.Voyager", - "language": "de" - }, - "id": 112619905 - } - }, - { - "id": 112619236, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.6187158, - 51.9263368 - ], - [ - 7.6196777, - 51.9263368 - ], - [ - 7.6196777, - 51.9280086 - ], - [ - 7.6187158, - 51.9280086 - ], - [ - 7.6187158, - 51.9263368 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "benches", - "answer": 12, - "create": 3, - "imagery": "osm", - "language": "de" - }, - "id": 112619236 - } - }, - { - "id": 112618493, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4213985, - 47.3818429 - ], - [ - 8.4237779, - 47.3818429 - ], - [ - 8.4237779, - 47.3843273 - ], - [ - 8.4213985, - 47.3843273 - ], - [ - 8.4213985, - 47.3818429 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 112618493 - } - }, - { - "id": 112618387, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.6206011, - 51.9316626 - ], - [ - 7.6207861, - 51.9316626 - ], - [ - 7.6207861, - 51.9318794 - ], - [ - 7.6206011, - 51.9318794 - ], - [ - 7.6206011, - 51.9316626 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "benches", - "answer": 11, - "create": 3, - "imagery": "osm", - "language": "de" - }, - "id": 112618387 - } - }, - { - "id": 112613205, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.9882162, - 51.1523834 - ], - [ - 14.9882162, - 51.1523834 - ], - [ - 14.9882162, - 51.1523834 - ], - [ - 14.9882162, - 51.1523834 - ], - [ - 14.9882162, - 51.1523834 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 112613205 - } - }, - { - "id": 112609243, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.5655974, - 47.548397 - ], - [ - 7.5916798, - 47.548397 - ], - [ - 7.5916798, - 47.5600495 - ], - [ - 7.5655974, - 47.5600495 - ], - [ - 7.5655974, - 47.548397 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112609243 - } - }, - { - "id": 112609034, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.7507024, - 49.4242671 - ], - [ - 7.751568, - 49.4242671 - ], - [ - 7.751568, - 49.4261699 - ], - [ - 7.7507024, - 49.4261699 - ], - [ - 7.7507024, - 49.4242671 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112609034 - } - }, - { - "id": 112608864, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.7597241, - 49.4281582 - ], - [ - 7.7597241, - 49.4281582 - ], - [ - 7.7597241, - 49.4281582 - ], - [ - 7.7597241, - 49.4281582 - ], - [ - 7.7597241, - 49.4281582 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112608864 - } - }, - { - "id": 112607574, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.234271, - -39.8222353 - ], - [ - -73.2342086, - -39.8222353 - ], - [ - -73.2342086, - -39.8221857 - ], - [ - -73.234271, - -39.8221857 - ], - [ - -73.234271, - -39.8222353 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "climbing", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 112607574 - } - }, - { - "id": 112605904, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2327807, - 48.8234134 - ], - [ - 2.3892111, - 48.8234134 - ], - [ - 2.3892111, - 48.8419175 - ], - [ - 2.2327807, - 48.8419175 - ], - [ - 2.2327807, - 48.8234134 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "climbing", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 112605904 - } - }, - { - "id": 112604326, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 18.5302743, - 54.5212696 - ], - [ - 18.5302743, - 54.5212696 - ], - [ - 18.5302743, - 54.5212696 - ], - [ - 18.5302743, - 54.5212696 - ], - [ - 18.5302743, - 54.5212696 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "pl", - "theme-creator": "MapComplete" - }, - "id": 112604326 - } - }, - { - "id": 112597311, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.7825092, - -36.85054 - ], - [ - 174.7825092, - -36.85054 - ], - [ - 174.7825092, - -36.85054 - ], - [ - 174.7825092, - -36.85054 - ], - [ - 174.7825092, - -36.85054 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "vets", - "imagery": "osm", - "language": "en" - }, - "id": 112597311 - } - }, - { - "id": 112594776, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2186897, - 51.2131816 - ], - [ - 3.2186897, - 51.2131816 - ], - [ - 3.2186897, - 51.2131816 - ], - [ - 3.2186897, - 51.2131816 - ], - [ - 3.2186897, - 51.2131816 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cafes_and_pubs", - "answer": 6, - "imagery": "osm", - "language": "en" - }, - "id": 112594776 - } - }, - { - "id": 112589924, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4250032, - 51.1032661 - ], - [ - 3.4250032, - 51.1032661 - ], - [ - 3.4250032, - 51.1032661 - ], - [ - 3.4250032, - 51.1032661 - ], - [ - 3.4250032, - 51.1032661 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", - "imagery": "osm", - "language": "en", - "theme-creator": "L'imaginaire" - }, - "id": 112589924 - } - }, - { - "id": 112588973, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3940572, - 51.0837174 - ], - [ - 3.3993392, - 51.0837174 - ], - [ - 3.3993392, - 51.1047399 - ], - [ - 3.3940572, - 51.1047399 - ], - [ - 3.3940572, - 51.0837174 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 112588973 - } - }, - { - "id": 112588967, - "type": "Feature", - "geometry": null, - "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:17Z", - "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": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 112588967 - } - }, - { - "id": 112588960, - "type": "Feature", - "geometry": null, - "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:06Z", - "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": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 112588960 - } - }, - { - "id": 112588071, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3313568, - 51.0988663 - ], - [ - 3.427917, - 51.0988663 - ], - [ - 3.427917, - 51.1116026 - ], - [ - 3.3313568, - 51.1116026 - ], - [ - 3.3313568, - 51.0988663 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", - "imagery": "osm", - "language": "en", - "theme-creator": "L'imaginaire" - }, - "id": 112588071 - } - }, - { - "id": 112583752, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1877896, - 51.2036996 - ], - [ - 3.1921263, - 51.2036996 - ], - [ - 3.1921263, - 51.205987 - ], - [ - 3.1877896, - 51.205987 - ], - [ - 3.1877896, - 51.2036996 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "etymology", - "answer": 13, - "imagery": "osm", - "language": "nl" - }, - "id": 112583752 - } - }, - { - "id": 112582519, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2469264, - 50.8334362 - ], - [ - 3.2469264, - 50.8334362 - ], - [ - 3.2469264, - 50.8334362 - ], - [ - 3.2469264, - 50.8334362 - ], - [ - 3.2469264, - 50.8334362 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112582519 - } - }, - { - "id": 112582263, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2815003, - 50.7995864 - ], - [ - 3.2828758, - 50.7995864 - ], - [ - 3.2828758, - 50.8003675 - ], - [ - 3.2815003, - 50.8003675 - ], - [ - 3.2815003, - 50.7995864 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112582263 - } - }, - { - "id": 112577212, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.40153, - 51.1450524 - ], - [ - 3.403009, - 51.1450524 - ], - [ - 3.403009, - 51.1461005 - ], - [ - 3.40153, - 51.1461005 - ], - [ - 3.40153, - 51.1450524 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 112577212 - } - }, - { - "id": 112577079, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4033236, - 51.1453697 - ], - [ - 3.4033236, - 51.1453697 - ], - [ - 3.4033236, - 51.1453697 - ], - [ - 3.4033236, - 51.1453697 - ], - [ - 3.4033236, - 51.1453697 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 112577079 - } - }, - { - "id": 112576927, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2059765, - 51.2149522 - ], - [ - 3.2093767, - 51.2149522 - ], - [ - 3.2093767, - 51.218591 - ], - [ - 3.2059765, - 51.218591 - ], - [ - 3.2059765, - 51.2149522 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "grb", - "answer": 2, - "imagery": "AGIV", - "language": "nl" - }, - "id": 112576927 - } - }, - { - "id": 112572303, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2681958, - 48.7223225 - ], - [ - 2.4023078, - 48.7223225 - ], - [ - 2.4023078, - 48.8511883 - ], - [ - 2.2681958, - 48.8511883 - ], - [ - 2.2681958, - 48.7223225 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "climbing", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 112572303 - } - }, - { - "id": 112572196, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5973957, - 53.2267181 - ], - [ - 6.59923, - 53.2267181 - ], - [ - 6.59923, - 53.22721 - ], - [ - 6.5973957, - 53.22721 - ], - [ - 6.5973957, - 53.2267181 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "etymology", - "answer": 2, - "imagery": "osm", - "language": "nl" - }, - "id": 112572196 - } - }, - { - "id": 112571724, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0846405, - 52.025511 - ], - [ - 5.0902783, - 52.025511 - ], - [ - 5.0902783, - 52.0323279 - ], - [ - 5.0846405, - 52.0323279 - ], - [ - 5.0846405, - 52.025511 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artwork", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112571724 - } - }, - { - "id": 112560800, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5537951, - 47.4627301 - ], - [ - -0.5537951, - 47.4627301 - ], - [ - -0.5537951, - 47.4627301 - ], - [ - -0.5537951, - 47.4627301 - ], - [ - -0.5537951, - 47.4627301 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artwork", - "imagery": "osm", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 112560800 - } - }, - { - "id": 112558686, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5699108, - 53.0193048 - ], - [ - 6.5708965, - 53.0193048 - ], - [ - 6.5708965, - 53.0199216 - ], - [ - 6.5699108, - 53.0199216 - ], - [ - 6.5699108, - 53.0193048 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://gist.githubusercontent.com/RobinLinde/d22223ebe86469b0ff08e7f308ab109c/raw/425cd9fcbd0bacf96eb15d26f5ebe26c767d85ad/street_lighting.json", - "imagery": "osm", - "language": "nl" - }, - "id": 112558686 - } - }, - { - "id": 112557963, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3201027, - 50.9944528 - ], - [ - 3.3255985, - 50.9944528 - ], - [ - 3.3255985, - 51.0078178 - ], - [ - 3.3201027, - 51.0078178 - ], - [ - 3.3201027, - 50.9944528 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 112557963 - } - }, - { - "id": 112557918, - "type": "Feature", - "geometry": null, - "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:58:50Z", - "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": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 112557918 - } - }, - { - "id": 112557911, - "type": "Feature", - "geometry": null, - "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:58:41Z", - "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": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 112557911 - } - }, - { - "id": 112557906, - "type": "Feature", - "geometry": null, - "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:58:33Z", - "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": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 112557906 - } - }, - { - "id": 112557894, - "type": "Feature", - "geometry": null, - "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:58:15Z", - "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": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 112557894 - } - }, - { - "id": 112557189, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3431724, - 50.9826222 - ], - [ - 3.3518761, - 50.9826222 - ], - [ - 3.3518761, - 51.0058819 - ], - [ - 3.3431724, - 51.0058819 - ], - [ - 3.3431724, - 50.9826222 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 112557189 - } - }, - { - "id": 112553873, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1655667, - 41.3981923 - ], - [ - 2.1655667, - 41.3981923 - ], - [ - 2.1655667, - 41.3981923 - ], - [ - 2.1655667, - 41.3981923 - ], - [ - 2.1655667, - 41.3981923 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 112553873 - } - }, - { - "id": 112553700, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3933693, - 52.1552646 - ], - [ - 13.4056431, - 52.1552646 - ], - [ - 13.4056431, - 52.1733922 - ], - [ - 13.3933693, - 52.1733922 - ], - [ - 13.3933693, - 52.1552646 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 112553700 - } - }, - { - "id": 112548410, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1524539, - 51.2976371 - ], - [ - 3.1524539, - 51.2976371 - ], - [ - 3.1524539, - 51.2976371 - ], - [ - 3.1524539, - 51.2976371 - ], - [ - 3.1524539, - 51.2976371 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112548410 - } - }, - { - "id": 112547351, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1667116, - 51.2322968 - ], - [ - 3.1693588, - 51.2322968 - ], - [ - 3.1693588, - 51.2324852 - ], - [ - 3.1667116, - 51.2324852 - ], - [ - 3.1667116, - 51.2322968 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "etymology", - "imagery": "osm", - "language": "nl", - "add-image": 1 - }, - "id": 112547351 - } - }, - { - "id": 112544664, - "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": [], - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 112544664 - } - }, - { - "id": 112543270, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1823955, - 41.4108702 - ], - [ - 2.1823955, - 41.4108702 - ], - [ - 2.1823955, - 41.4108702 - ], - [ - 2.1823955, - 41.4108702 - ], - [ - 2.1823955, - 41.4108702 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 112543270 - } - }, - { - "id": 112536982, - "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": [], - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 112536982 - } - }, - { - "id": 112531350, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5659728, - 49.917949 - ], - [ - 8.5661727, - 49.917949 - ], - [ - 8.5661727, - 49.918155 - ], - [ - 8.5659728, - 49.918155 - ], - [ - 8.5659728, - 49.917949 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112531350 - } - }, - { - "id": 112531308, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5816781, - 53.2027361 - ], - [ - 6.59813, - 53.2027361 - ], - [ - 6.59813, - 53.2257401 - ], - [ - 6.5816781, - 53.2257401 - ], - [ - 6.5816781, - 53.2027361 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "etymology", - "answer": 76, - "imagery": "osm", - "language": "nl" - }, - "id": 112531308 - } - }, - { - "id": 112531267, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.585205, - 53.187398 - ], - [ - 6.5853081, - 53.187398 - ], - [ - 6.5853081, - 53.1875452 - ], - [ - 6.585205, - 53.1875452 - ], - [ - 6.585205, - 53.187398 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "etymology", - "answer": 1, - "imagery": "osm", - "language": "nl" - }, - "id": 112531267 - } - }, - { - "id": 112530341, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.3430698, - 51.7722682 - ], - [ - 14.4289139, - 51.7722682 - ], - [ - 14.4289139, - 51.8871271 - ], - [ - 14.3430698, - 51.8871271 - ], - [ - 14.3430698, - 51.7722682 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 112530341 - } - }, - { - "id": 112526460, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.6943982, - -36.5886805 - ], - [ - 174.695598, - -36.5886805 - ], - [ - 174.695598, - -36.5879676 - ], - [ - 174.6943982, - -36.5879676 - ], - [ - 174.6943982, - -36.5886805 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112526460 - } - }, - { - "id": 112526420, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.6937966, - -36.5924409 - ], - [ - 174.6937966, - -36.5924409 - ], - [ - 174.6937966, - -36.5924409 - ], - [ - 174.6937966, - -36.5924409 - ], - [ - 174.6937966, - -36.5924409 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112526420 - } - }, - { - "id": 112515540, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198739, - 51.2157048 - ], - [ - 3.2198739, - 51.2157048 - ], - [ - 3.2198739, - 51.2157048 - ], - [ - 3.2198739, - 51.2157048 - ], - [ - 3.2198739, - 51.2157048 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "charging_stations", - "create": 1, - "imagery": "CartoDB.Voyager", - "language": "nl" - }, - "id": 112515540 - } - }, - { - "id": 112515535, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-10-14T18:21:14Z", - "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": "charging_stations", - "create": 1, - "imagery": "CartoDB.Voyager", - "language": "nl" - }, - "id": 112515535 - } - }, - { - "id": 112512636, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.9414981, - 49.9173607 - ], - [ - 16.9414981, - 49.9173607 - ], - [ - 16.9414981, - 49.9173607 - ], - [ - 16.9414981, - 49.9173607 - ], - [ - 16.9414981, - 49.9173607 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112512636 - } - }, - { - "id": 112505740, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1361715, - 41.3775915 - ], - [ - 2.1361715, - 41.3775915 - ], - [ - 2.1361715, - 41.3775915 - ], - [ - 2.1361715, - 41.3775915 - ], - [ - 2.1361715, - 41.3775915 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cafes_and_pubs", - "imagery": "osm", - "language": "en" - }, - "id": 112505740 - } - }, - { - "id": 112491571, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5488, - 50.78225 - ], - [ - 3.5488, - 50.78225 - ], - [ - 3.5488, - 50.78225 - ], - [ - 3.5488, - 50.78225 - ], - [ - 3.5488, - 50.78225 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 112491571 - } - }, - { - "id": 112489507, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7323385, - 45.2198702 - ], - [ - 14.0093413, - 45.2198702 - ], - [ - 14.0093413, - 45.6096481 - ], - [ - 13.7323385, - 45.6096481 - ], - [ - 13.7323385, - 45.2198702 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "nl" - }, - "id": 112489507 - } - }, - { - "id": 112482378, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2131281, - 51.2111918 - ], - [ - 3.2132495, - 51.2111918 - ], - [ - 3.2132495, - 51.2114176 - ], - [ - 3.2131281, - 51.2114176 - ], - [ - 3.2131281, - 51.2111918 - ] - ] - ] - }, - "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, - "metadata": { - "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" - }, - "id": 112482378 - } - }, - { - "id": 112482374, - "type": "Feature", - "geometry": null, - "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:04Z", - "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", - "move": 1, - "theme": "./assets/themes/benches/bench_poi.svg", - "imagery": "osm", - "language": "en", - "move:node/2410018174": "The location of this object is inaccurate and should be moved a few meter" - }, - "id": 112482374 - } - }, - { - "id": 112482373, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2131332, - 51.2113153 - ], - [ - 3.2131332, - 51.2113153 - ], - [ - 3.2131332, - 51.2113153 - ], - [ - 3.2131332, - 51.2113153 - ], - [ - 3.2131332, - 51.2113153 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "benches", - "answer": 1, - "imagery": "osm", - "language": "en" - }, - "id": 112482373 - } - }, - { - "id": 112479766, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3265132, - 51.0002378 - ], - [ - 3.3278543, - 51.0002378 - ], - [ - 3.3278543, - 51.0030515 - ], - [ - 3.3265132, - 51.0030515 - ], - [ - 3.3265132, - 51.0002378 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 112479766 - } - }, - { - "id": 112475285, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.4991331, - 52.990847 - ], - [ - 6.5490554, - 52.990847 - ], - [ - 6.5490554, - 53.0277812 - ], - [ - 6.4991331, - 53.0277812 - ], - [ - 6.4991331, - 52.990847 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "etymology", - "answer": 218, - "imagery": "osm", - "language": "nl" - }, - "id": 112475285 - } - }, - { - "id": 112473004, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5885959, - 53.0198109 - ], - [ - 6.5919779, - 53.0198109 - ], - [ - 6.5919779, - 53.0244714 - ], - [ - 6.5885959, - 53.0244714 - ], - [ - 6.5885959, - 53.0198109 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "etymology", - "answer": 1, - "imagery": "osm", - "language": "nl" - }, - "id": 112473004 - } - }, - { - "id": 112472850, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5937507, - 53.1964011 - ], - [ - 6.6223705, - 53.1964011 - ], - [ - 6.6223705, - 53.2021953 - ], - [ - 6.5937507, - 53.2021953 - ], - [ - 6.5937507, - 53.1964011 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/alpha/", - "theme": "etymology", - "answer": 14, - "imagery": "osm", - "language": "nl" - }, - "id": 112472850 - } - }, - { - "id": 112468967, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.570766, - 53.2209117 - ], - [ - 6.591801, - 53.2209117 - ], - [ - 6.591801, - 53.2314353 - ], - [ - 6.570766, - 53.2314353 - ], - [ - 6.570766, - 53.2209117 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/alpha/", - "theme": "etymology", - "answer": 121, - "imagery": "osm", - "language": "nl" - }, - "id": 112468967 - } - }, - { - "id": 112468748, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2057308, - 51.209294 - ], - [ - 3.238052, - 51.209294 - ], - [ - 3.238052, - 51.2346276 - ], - [ - 3.2057308, - 51.2346276 - ], - [ - 3.2057308, - 51.209294 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "etymology", - "answer": 16, - "imagery": "osm", - "language": "en" - }, - "id": 112468748 - } - }, - { - "id": 112468176, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3265132, - 51.0019611 - ], - [ - 3.3265132, - 51.0019611 - ], - [ - 3.3265132, - 51.0019611 - ], - [ - 3.3265132, - 51.0019611 - ], - [ - 3.3265132, - 51.0019611 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 112468176 - } - }, - { - "id": 112468152, - "type": "Feature", - "geometry": null, - "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:45: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": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 112468152 - } - }, - { - "id": 112468142, - "type": "Feature", - "geometry": null, - "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:45: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": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 112468142 - } - }, - { - "id": 112468132, - "type": "Feature", - "geometry": null, - "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:45:29Z", - "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": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 112468132 - } - }, - { - "id": 112468117, - "type": "Feature", - "geometry": null, - "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:45:07Z", - "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": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 112468117 - } - }, - { - "id": 112468072, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21768, - 51.2134037 - ], - [ - 3.2182353, - 51.2134037 - ], - [ - 3.2182353, - 51.2138139 - ], - [ - 3.21768, - 51.2138139 - ], - [ - 3.21768, - 51.2134037 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "postboxes", - "imagery": "CartoDB.Voyager", - "deletion": 1, - "language": "en", - "add-image": 1, - "deletion:node/1603226228": "not found" - }, - "id": 112468072 - } - }, - { - "id": 112467810, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3268619, - 51.0006378 - ], - [ - 3.3283371, - 51.0006378 - ], - [ - 3.3283371, - 51.0026194 - ], - [ - 3.3268619, - 51.0026194 - ], - [ - 3.3268619, - 51.0006378 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 112467810 - } - }, - { - "id": 112464085, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4827612, - 51.022074 - ], - [ - 4.4827612, - 51.022074 - ], - [ - 4.4827612, - 51.022074 - ], - [ - 4.4827612, - 51.022074 - ], - [ - 4.4827612, - 51.022074 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hackerspaces", - "imagery": "AGIVFlandersGRB", - "language": "en" - }, - "id": 112464085 - } - }, - { - "id": 112461207, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5224371, - 53.2087782 - ], - [ - 6.5531738, - 53.2087782 - ], - [ - 6.5531738, - 53.238666 - ], - [ - 6.5224371, - 53.238666 - ], - [ - 6.5224371, - 53.2087782 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/alpha/", - "theme": "etymology", - "answer": 204, - "imagery": "osm", - "language": "nl" - }, - "id": 112461207 - } - }, - { - "id": 112459522, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.17503, - 51.1890146 - ], - [ - 3.2113059, - 51.1890146 - ], - [ - 3.2113059, - 51.2043574 - ], - [ - 3.17503, - 51.2043574 - ], - [ - 3.17503, - 51.1890146 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/alpha/", - "theme": "etymology", - "answer": 52, - "imagery": "osm", - "language": "nl" - }, - "id": 112459522 - } - }, - { - "id": 112459018, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7544185, - 51.8197083 - ], - [ - 13.7897457, - 51.8197083 - ], - [ - 13.7897457, - 51.8245708 - ], - [ - 13.7544185, - 51.8245708 - ], - [ - 13.7544185, - 51.8197083 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 112459018 - } - }, - { - "id": 112453960, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.435083, - 51.8153141 - ], - [ - 14.435083, - 51.8153141 - ], - [ - 14.435083, - 51.8153141 - ], - [ - 14.435083, - 51.8153141 - ], - [ - 14.435083, - 51.8153141 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 112453960 - } - }, - { - "id": 112450541, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.6617411, - -36.6032731 - ], - [ - 174.6946759, - -36.6032731 - ], - [ - 174.6946759, - -36.5853683 - ], - [ - 174.6617411, - -36.5853683 - ], - [ - 174.6617411, - -36.6032731 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 112450541 - } - }, - { - "id": 112450408, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.6941944, - -36.5988329 - ], - [ - 174.6976535, - -36.5988329 - ], - [ - 174.6976535, - -36.5869174 - ], - [ - 174.6941944, - -36.5869174 - ], - [ - 174.6941944, - -36.5988329 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112450408 - } - }, - { - "id": 112450212, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.694553, - -36.5987947 - ], - [ - 174.6976082, - -36.5987947 - ], - [ - 174.6976082, - -36.5867489 - ], - [ - 174.694553, - -36.5867489 - ], - [ - 174.694553, - -36.5987947 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112450212 - } - }, - { - "id": 112450049, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.4397905, - 55.0427593 - ], - [ - -1.4394087, - 55.0427593 - ], - [ - -1.4394087, - 55.0431771 - ], - [ - -1.4397905, - 55.0431771 - ], - [ - -1.4397905, - 55.0427593 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "uk_addresses", - "imagery": "osm", - "language": "en", - "theme-creator": "Pieter Vander Vennet, Rob Nickerson, Russ Garrett" - }, - "id": 112450049 - } - }, - { - "id": 112449329, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.6935928, - -36.5865098 - ], - [ - 174.6935928, - -36.5865098 - ], - [ - 174.6935928, - -36.5865098 - ], - [ - 174.6935928, - -36.5865098 - ], - [ - 174.6935928, - -36.5865098 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112449329 - } - }, - { - "id": 112449036, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.6935928, - -36.5882349 - ], - [ - 174.6953657, - -36.5882349 - ], - [ - 174.6953657, - -36.5865098 - ], - [ - 174.6935928, - -36.5865098 - ], - [ - 174.6935928, - -36.5882349 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112449036 - } - }, - { - "id": 112448844, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.676169, - -36.6298802 - ], - [ - 174.766558, - -36.6298802 - ], - [ - 174.766558, - -36.605928 - ], - [ - 174.676169, - -36.605928 - ], - [ - 174.676169, - -36.6298802 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 112448844 - } - }, - { - "id": 112430185, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2908692, - 49.9150414 - ], - [ - 4.2908692, - 49.9150414 - ], - [ - 4.2908692, - 49.9150414 - ], - [ - 4.2908692, - 49.9150414 - ], - [ - 4.2908692, - 49.9150414 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "maps", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 112430185 - } - }, - { - "id": 112428336, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.0695743, - 52.6214429 - ], - [ - 10.0695743, - 52.6214429 - ], - [ - 10.0695743, - 52.6214429 - ], - [ - 10.0695743, - 52.6214429 - ], - [ - 10.0695743, - 52.6214429 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112428336 - } - }, - { - "id": 112428113, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.3559964, - 48.2092979 - ], - [ - 16.4000009, - 48.2092979 - ], - [ - 16.4000009, - 48.2280187 - ], - [ - 16.3559964, - 48.2280187 - ], - [ - 16.3559964, - 48.2092979 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hackerspaces", - "imagery": "osm", - "language": "en" - }, - "id": 112428113 - } - }, - { - "id": 112418276, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5152127, - 51.0183344 - ], - [ - 4.5158315, - 51.0183344 - ], - [ - 4.5158315, - 51.0230011 - ], - [ - 4.5152127, - 51.0230011 - ], - [ - 4.5152127, - 51.0183344 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "natuurpunt", - "imagery": "osmfr-basque", - "language": "nl" - }, - "id": 112418276 - } - }, - { - "id": 112418058, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2162699, - 51.2135767 - ], - [ - 3.2184309, - 51.2135767 - ], - [ - 3.2184309, - 51.2148073 - ], - [ - 3.2162699, - 51.2148073 - ], - [ - 3.2162699, - 51.2135767 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/alpha/", - "theme": "etymology", - "answer": 13, - "imagery": "osm", - "language": "nl" - }, - "id": 112418058 - } - }, - { - "id": 112414153, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.8143435, - 52.850333 - ], - [ - 13.8159682, - 52.850333 - ], - [ - 13.8159682, - 52.8510552 - ], - [ - 13.8143435, - 52.8510552 - ], - [ - 13.8143435, - 52.850333 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 112414153 - } - }, - { - "id": 112411027, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.383805, - 50.8459642 - ], - [ - 4.383805, - 50.8459642 - ], - [ - 4.383805, - 50.8459642 - ], - [ - 4.383805, - 50.8459642 - ], - [ - 4.383805, - 50.8459642 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 112411027 - } - }, - { - "id": 112410942, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3297305, - 50.842323 - ], - [ - 4.3297305, - 50.842323 - ], - [ - 4.3297305, - 50.842323 - ], - [ - 4.3297305, - 50.842323 - ], - [ - 4.3297305, - 50.842323 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artwork", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112410942 - } - }, - { - "id": 112410842, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5715597, - 50.9811194 - ], - [ - 4.5715597, - 50.9811194 - ], - [ - 4.5715597, - 50.9811194 - ], - [ - 4.5715597, - 50.9811194 - ], - [ - 4.5715597, - 50.9811194 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112410842 - } - }, - { - "id": 112410216, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4238725, - 50.8124514 - ], - [ - 4.4238725, - 50.8124514 - ], - [ - 4.4238725, - 50.8124514 - ], - [ - 4.4238725, - 50.8124514 - ], - [ - 4.4238725, - 50.8124514 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 112410216 - } - }, - { - "id": 112410148, - "type": "Feature", - "geometry": null, - "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:57:00Z", - "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": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 112410148 - } - }, - { - "id": 112410137, - "type": "Feature", - "geometry": null, - "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:56:51Z", - "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": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 112410137 - } - }, - { - "id": 112409961, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4078178, - 50.8110805 - ], - [ - 4.4368672, - 50.8110805 - ], - [ - 4.4368672, - 50.8228886 - ], - [ - 4.4078178, - 50.8228886 - ], - [ - 4.4078178, - 50.8110805 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 112409961 - } - }, - { - "id": 112408152, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.4459996, - 51.9267885 - ], - [ - 14.5508458, - 51.9267885 - ], - [ - 14.5508458, - 51.9407744 - ], - [ - 14.4459996, - 51.9407744 - ], - [ - 14.4459996, - 51.9267885 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 112408152 - } - }, - { - "id": 112407680, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9473215, - 50.5150959 - ], - [ - 5.9473215, - 50.5150959 - ], - [ - 5.9473215, - 50.5150959 - ], - [ - 5.9473215, - 50.5150959 - ], - [ - 5.9473215, - 50.5150959 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "nl" - }, - "id": 112407680 - } - }, - { - "id": 112407555, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.533052, - 51.9740796 - ], - [ - 14.533052, - 51.9740796 - ], - [ - 14.533052, - 51.9740796 - ], - [ - 14.533052, - 51.9740796 - ], - [ - 14.533052, - 51.9740796 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 112407555 - } - }, - { - "id": 112405230, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.4791678, - 51.9322283 - ], - [ - 14.4791678, - 51.9322283 - ], - [ - 14.4791678, - 51.9322283 - ], - [ - 14.4791678, - 51.9322283 - ], - [ - 14.4791678, - 51.9322283 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 112405230 - } - }, - { - "id": 112404738, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1356432, - 51.312556 - ], - [ - 3.1356432, - 51.312556 - ], - [ - 3.1356432, - 51.312556 - ], - [ - 3.1356432, - 51.312556 - ], - [ - 3.1356432, - 51.312556 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112404738 - } - }, - { - "id": 112404698, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4284397, - 50.8101924 - ], - [ - 4.4305265, - 50.8101924 - ], - [ - 4.4305265, - 50.814165 - ], - [ - 4.4284397, - 50.814165 - ], - [ - 4.4284397, - 50.8101924 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 112404698 - } - }, - { - "id": 112403540, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3456802, - 50.7447245 - ], - [ - 4.3456802, - 50.7447245 - ], - [ - 4.3456802, - 50.7447245 - ], - [ - 4.3456802, - 50.7447245 - ], - [ - 4.3456802, - 50.7447245 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 112403540 - } - }, - { - "id": 112398731, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4167612, - 46.9492863 - ], - [ - 7.4167612, - 46.9492863 - ], - [ - 7.4167612, - 46.9492863 - ], - [ - 7.4167612, - 46.9492863 - ], - [ - 7.4167612, - 46.9492863 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112398731 - } - }, - { - "id": 112394950, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1929849, - 51.2096227 - ], - [ - 3.2403466, - 51.2096227 - ], - [ - 3.2403466, - 51.2338201 - ], - [ - 3.1929849, - 51.2338201 - ], - [ - 3.1929849, - 51.2096227 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "etymology", - "answer": 63, - "imagery": "osm", - "language": "en" - }, - "id": 112394950 - } - }, - { - "id": 112385386, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0968034, - 50.6463039 - ], - [ - 3.0968034, - 50.6463039 - ], - [ - 3.0968034, - 50.6463039 - ], - [ - 3.0968034, - 50.6463039 - ], - [ - 3.0968034, - 50.6463039 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "fr" - }, - "id": 112385386 - } - }, - { - "id": 112384671, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 44.7825969, - 48.7736867 - ], - [ - 44.8026444, - 48.7736867 - ], - [ - 44.8026444, - 48.7854702 - ], - [ - 44.7825969, - 48.7854702 - ], - [ - 44.7825969, - 48.7736867 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cafes_and_pubs", - "imagery": "osm", - "language": "nl" - }, - "id": 112384671 - } - }, - { - "id": 112384656, - "type": "Feature", - "geometry": null, - "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:27:36Z", - "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", - "imagery": "osm", - "language": "nl" - }, - "id": 112384656 - } - }, - { - "id": 112384422, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 44.8022324, - 48.7736867 - ], - [ - 44.8026444, - 48.7736867 - ], - [ - 44.8026444, - 48.7739933 - ], - [ - 44.8022324, - 48.7739933 - ], - [ - 44.8022324, - 48.7736867 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cafes_and_pubs", - "imagery": "osm", - "language": "nl" - }, - "id": 112384422 - } - }, - { - "id": 112384352, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 44.79038, - 48.7663974 - ], - [ - 44.8092774, - 48.7663974 - ], - [ - 44.8092774, - 48.7772057 - ], - [ - 44.79038, - 48.7772057 - ], - [ - 44.79038, - 48.7663974 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "ru", - "theme-creator": "MapComplete" - }, - "id": 112384352 - } - }, - { - "id": 112383897, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 44.7865927, - 48.7834766 - ], - [ - 44.7892052, - 48.7834766 - ], - [ - 44.7892052, - 48.7841623 - ], - [ - 44.7865927, - 48.7841623 - ], - [ - 44.7865927, - 48.7834766 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "ru" - }, - "id": 112383897 - } - }, - { - "id": 112383586, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 44.7875503, - 48.785539 - ], - [ - 44.7875503, - 48.785539 - ], - [ - 44.7875503, - 48.785539 - ], - [ - 44.7875503, - 48.785539 - ], - [ - 44.7875503, - 48.785539 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "ru" - }, - "id": 112383586 - } - }, - { - "id": 112383135, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 44.7883523, - 48.7660937 - ], - [ - 44.8058027, - 48.7660937 - ], - [ - 44.8058027, - 48.7829075 - ], - [ - 44.7883523, - 48.7829075 - ], - [ - 44.7883523, - 48.7660937 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "ru", - "theme-creator": "MapComplete" - }, - "id": 112383135 - } - }, - { - "id": 112381580, - "type": "Feature", - "geometry": null, - "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 #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2021-10-11T16:05: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": "grb", - "imagery": "AGIVFlandersGRB", - "language": "nl" - }, - "id": 112381580 - } - }, - { - "id": 112378407, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 44.7507557, - 48.7750776 - ], - [ - 44.79038, - 48.7750776 - ], - [ - 44.79038, - 48.7891211 - ], - [ - 44.7507557, - 48.7891211 - ], - [ - 44.7507557, - 48.7750776 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "ru", - "theme-creator": "MapComplete" - }, - "id": 112378407 - } - }, - { - "id": 112378399, - "type": "Feature", - "geometry": null, - "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:39: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": "personal", - "imagery": "osm", - "language": "ru", - "theme-creator": "MapComplete" - }, - "id": 112378399 - } - }, - { - "id": 112377559, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 44.7628444, - 48.7736847 - ], - [ - 44.8096868, - 48.7736847 - ], - [ - 44.8096868, - 48.785539 - ], - [ - 44.7628444, - 48.785539 - ], - [ - 44.7628444, - 48.7736847 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "ru", - "theme-creator": "MapComplete" - }, - "id": 112377559 - } - }, - { - "id": 112376494, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3375155, - 50.7941529 - ], - [ - 4.4039619, - 50.7941529 - ], - [ - 4.4039619, - 50.8654123 - ], - [ - 4.3375155, - 50.8654123 - ], - [ - 4.3375155, - 50.7941529 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 112376494 - } - }, - { - "id": 112375123, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 44.7799046, - 48.7736341 - ], - [ - 44.7911063, - 48.7736341 - ], - [ - 44.7911063, - 48.7841623 - ], - [ - 44.7799046, - 48.7841623 - ], - [ - 44.7799046, - 48.7736341 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "ru" - }, - "id": 112375123 - } - }, - { - "id": 112370013, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1884894, - 51.1638771 - ], - [ - 3.1892818, - 51.1638771 - ], - [ - 3.1892818, - 51.1668085 - ], - [ - 3.1884894, - 51.1668085 - ], - [ - 3.1884894, - 51.1638771 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/alpha/", - "theme": "etymology", - "answer": 1, - "imagery": "osm", - "language": "nl" - }, - "id": 112370013 - } - }, - { - "id": 112367451, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.2562439, - 44.5028704 - ], - [ - 11.2562439, - 44.5028704 - ], - [ - 11.2562439, - 44.5028704 - ], - [ - 11.2562439, - 44.5028704 - ], - [ - 11.2562439, - 44.5028704 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112367451 - } - }, - { - "id": 112367104, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5725876, - 53.0181578 - ], - [ - 6.5725876, - 53.0181578 - ], - [ - 6.5725876, - 53.0181578 - ], - [ - 6.5725876, - 53.0181578 - ], - [ - 6.5725876, - 53.0181578 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "CartoDB.Voyager", - "language": "nl" - }, - "id": 112367104 - } - }, - { - "id": 112363104, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5619627, - 53.0172196 - ], - [ - 7.3817454, - 53.0172196 - ], - [ - 7.3817454, - 53.0841046 - ], - [ - 6.5619627, - 53.0841046 - ], - [ - 6.5619627, - 53.0172196 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "CartoDB.Voyager", - "language": "nl" - }, - "id": 112363104 - } - }, - { - "id": 112357387, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 44.7397614, - 48.7565778 - ], - [ - 44.8024714, - 48.7565778 - ], - [ - 44.8024714, - 48.8051959 - ], - [ - 44.7397614, - 48.8051959 - ], - [ - 44.7397614, - 48.7565778 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "ru", - "theme-creator": "MapComplete" - }, - "id": 112357387 - } - }, - { - "id": 112347491, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.481934, - 51.9319846 - ], - [ - 14.481934, - 51.9319846 - ], - [ - 14.481934, - 51.9319846 - ], - [ - 14.481934, - 51.9319846 - ], - [ - 14.481934, - 51.9319846 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 112347491 - } - }, - { - "id": 112345814, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7277752, - 51.0756768 - ], - [ - 3.7281119, - 51.0756768 - ], - [ - 3.7281119, - 51.0759406 - ], - [ - 3.7277752, - 51.0759406 - ], - [ - 3.7277752, - 51.0756768 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 112345814 - } - }, - { - "id": 112345632, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.72862, - 51.0771495 - ], - [ - 3.7288439, - 51.0771495 - ], - [ - 3.7288439, - 51.077377 - ], - [ - 3.72862, - 51.077377 - ], - [ - 3.72862, - 51.0771495 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 112345632 - } - }, - { - "id": 112342965, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2253848, - 51.2112851 - ], - [ - 3.226277, - 51.2112851 - ], - [ - 3.226277, - 51.2118503 - ], - [ - 3.2253848, - 51.2118503 - ], - [ - 3.2253848, - 51.2112851 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/alpha/", - "theme": "etymology", - "answer": 1, - "imagery": "osm", - "language": "nl" - }, - "id": 112342965 - } - }, - { - "id": 112340366, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5040001, - 52.9863548 - ], - [ - 6.5817279, - 52.9863548 - ], - [ - 6.5817279, - 53.0172196 - ], - [ - 6.5040001, - 53.0172196 - ], - [ - 6.5040001, - 52.9863548 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "Actueel_ortho25_WMS", - "language": "nl" - }, - "id": 112340366 - } - }, - { - "id": 112338978, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.5002472, - 53.6822347 - ], - [ - -1.4952049, - 53.6822347 - ], - [ - -1.4952049, - 53.6839695 - ], - [ - -1.5002472, - 53.6839695 - ], - [ - -1.5002472, - 53.6822347 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112338978 - } - }, - { - "id": 112337671, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1967489, - 51.1698643 - ], - [ - 3.209931, - 51.1698643 - ], - [ - 3.209931, - 51.1962686 - ], - [ - 3.1967489, - 51.1962686 - ], - [ - 3.1967489, - 51.1698643 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 112337671 - } - }, - { - "id": 112334732, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5203321, - 52.9736596 - ], - [ - 6.5934867, - 52.9736596 - ], - [ - 6.5934867, - 53.0197271 - ], - [ - 6.5203321, - 53.0197271 - ], - [ - 6.5203321, - 52.9736596 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "Actueel_ortho25_WMS", - "language": "nl" - }, - "id": 112334732 - } - }, - { - "id": 112332930, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1143612, - 50.6645466 - ], - [ - 3.1169307, - 50.6645466 - ], - [ - 3.1169307, - 50.672268 - ], - [ - 3.1143612, - 50.672268 - ], - [ - 3.1143612, - 50.6645466 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "fr" - }, - "id": 112332930 - } - }, - { - "id": 112330699, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5109149, - 52.9833807 - ], - [ - 6.5690276, - 52.9833807 - ], - [ - 6.5690276, - 53.0068226 - ], - [ - 6.5109149, - 53.0068226 - ], - [ - 6.5109149, - 52.9833807 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "Actueel_ortho25_WMS", - "language": "nl" - }, - "id": 112330699 - } - }, - { - "id": 112330574, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1884894, - 51.1638771 - ], - [ - 3.1892818, - 51.1638771 - ], - [ - 3.1892818, - 51.1668085 - ], - [ - 3.1884894, - 51.1668085 - ], - [ - 3.1884894, - 51.1638771 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/alpha/", - "theme": "etymology", - "imagery": "osm", - "language": "en", - "add-image": 1 - }, - "id": 112330574 - } - }, - { - "id": 112328716, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3486243, - 50.8625862 - ], - [ - 4.3564932, - 50.8625862 - ], - [ - 4.3564932, - 50.8648082 - ], - [ - 4.3486243, - 50.8648082 - ], - [ - 4.3486243, - 50.8625862 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 112328716 - } - }, - { - "id": 112328411, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2225945, - 51.21239 - ], - [ - 3.22538, - 51.21239 - ], - [ - 3.22538, - 51.2133553 - ], - [ - 3.2225945, - 51.2133553 - ], - [ - 3.2225945, - 51.21239 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/alpha/", - "theme": "etymology", - "answer": 3, - "imagery": "osm", - "language": "en" - }, - "id": 112328411 - } - }, - { - "id": 112316572, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5770944, - 52.9886576 - ], - [ - 6.5801438, - 52.9886576 - ], - [ - 6.5801438, - 53.0267266 - ], - [ - 6.5770944, - 53.0267266 - ], - [ - 6.5770944, - 52.9886576 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "charging_stations", - "imagery": "CartoDB.Voyager", - "language": "nl" - }, - "id": 112316572 - } - }, - { - "id": 112316272, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2181338, - 51.206688 - ], - [ - 3.2279908, - 51.206688 - ], - [ - 3.2279908, - 51.2122027 - ], - [ - 3.2181338, - 51.2122027 - ], - [ - 3.2181338, - 51.206688 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/alpha/", - "theme": "etymology", - "answer": 6, - "imagery": "osm", - "language": "nl" - }, - "id": 112316272 - } - }, - { - "id": 112314658, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2232012, - 51.2102347 - ], - [ - 3.2244218, - 51.2102347 - ], - [ - 3.2244218, - 51.2105162 - ], - [ - 3.2232012, - 51.2105162 - ], - [ - 3.2232012, - 51.2102347 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "etymology", - "answer": 1, - "imagery": "osm", - "language": "nl" - }, - "id": 112314658 - } - }, - { - "id": 112314551, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.313838, - 47.6025881 - ], - [ - -122.3138219, - 47.6025881 - ], - [ - -122.3138219, - 47.6025882 - ], - [ - -122.313838, - 47.6025882 - ], - [ - -122.313838, - 47.6025881 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112314551 - } - }, - { - "id": 112309536, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -7.2546593, - 52.649824 - ], - [ - -7.2428647, - 52.649824 - ], - [ - -7.2428647, - 52.6553197 - ], - [ - -7.2546593, - 52.6553197 - ], - [ - -7.2546593, - 52.649824 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artwork", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112309536 - } - }, - { - "id": 112309468, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.5215392, - 41.6880243 - ], - [ - -4.5215392, - 41.6880243 - ], - [ - -4.5215392, - 41.6880243 - ], - [ - -4.5215392, - 41.6880243 - ], - [ - -4.5215392, - 41.6880243 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 112309468 - } - }, - { - "id": 112298065, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.5016688, - 51.8705095 - ], - [ - 14.5016733, - 51.8705095 - ], - [ - 14.5016733, - 51.8705454 - ], - [ - 14.5016688, - 51.8705454 - ], - [ - 14.5016688, - 51.8705095 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 112298065 - } - }, - { - "id": 112297552, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0701776, - 52.0486685 - ], - [ - 5.0701776, - 52.0486685 - ], - [ - 5.0701776, - 52.0486685 - ], - [ - 5.0701776, - 52.0486685 - ], - [ - 5.0701776, - 52.0486685 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112297552 - } - }, - { - "id": 112297440, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5748669, - 50.9809876 - ], - [ - 4.5748669, - 50.9809876 - ], - [ - 4.5748669, - 50.9809876 - ], - [ - 4.5748669, - 50.9809876 - ], - [ - 4.5748669, - 50.9809876 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "AGIV", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 112297440 - } - }, - { - "id": 112296202, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5721611, - 52.9886576 - ], - [ - 6.5801438, - 52.9886576 - ], - [ - 6.5801438, - 53.025998 - ], - [ - 6.5721611, - 53.025998 - ], - [ - 6.5721611, - 52.9886576 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "charging_stations", - "imagery": "CartoDB.Voyager", - "language": "nl" - }, - "id": 112296202 - } - }, - { - "id": 112296054, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5661985, - 53.2326844 - ], - [ - 6.5668286, - 53.2326844 - ], - [ - 6.5668286, - 53.2332506 - ], - [ - 6.5661985, - 53.2332506 - ], - [ - 6.5661985, - 53.2326844 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/alpha/", - "theme": "etymology", - "answer": 2, - "imagery": "osm", - "language": "nl" - }, - "id": 112296054 - } - }, - { - "id": 112290463, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2305253, - 51.2122046 - ], - [ - 3.2336344, - 51.2122046 - ], - [ - 3.2336344, - 51.2135618 - ], - [ - 3.2305253, - 51.2135618 - ], - [ - 3.2305253, - 51.2122046 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/alpha/", - "theme": "etymology", - "answer": 2, - "imagery": "osm", - "language": "nl" - }, - "id": 112290463 - } - }, - { - "id": 112281434, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3912611, - 52.1552646 - ], - [ - 13.4180671, - 52.1552646 - ], - [ - 13.4180671, - 52.1733395 - ], - [ - 13.3912611, - 52.1733395 - ], - [ - 13.3912611, - 52.1552646 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 112281434 - } - }, - { - "id": 112279328, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5357195, - 53.236412 - ], - [ - 6.537462, - 53.236412 - ], - [ - 6.537462, - 53.2370692 - ], - [ - 6.5357195, - 53.2370692 - ], - [ - 6.5357195, - 53.236412 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/alpha/", - "theme": "etymology", - "answer": 1, - "imagery": "osm", - "language": "nl" - }, - "id": 112279328 - } - }, - { - "id": 112278882, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 44.7374398, - 48.7754865 - ], - [ - 44.7742541, - 48.7754865 - ], - [ - 44.7742541, - 48.8046729 - ], - [ - 44.7374398, - 48.8046729 - ], - [ - 44.7374398, - 48.7754865 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "ru", - "theme-creator": "MapComplete" - }, - "id": 112278882 - } - }, - { - "id": 112278613, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 44.7497553, - 48.7809245 - ], - [ - 44.753741, - 48.7809245 - ], - [ - 44.753741, - 48.7867248 - ], - [ - 44.7497553, - 48.7867248 - ], - [ - 44.7497553, - 48.7809245 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "ru", - "theme-creator": "Midgard" - }, - "id": 112278613 - } - }, - { - "id": 112276370, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5519956, - 53.2197925 - ], - [ - 6.5670057, - 53.2197925 - ], - [ - 6.5670057, - 53.2330885 - ], - [ - 6.5519956, - 53.2330885 - ], - [ - 6.5519956, - 53.2197925 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/alpha/", - "theme": "etymology", - "answer": 12, - "imagery": "osm", - "language": "nl" - }, - "id": 112276370 - } - }, - { - "id": 112257164, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.4369829, - 51.8141893 - ], - [ - 14.5121884, - 51.8141893 - ], - [ - 14.5121884, - 51.9411299 - ], - [ - 14.4369829, - 51.9411299 - ], - [ - 14.4369829, - 51.8141893 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 112257164 - } - }, - { - "id": 112254501, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7231669, - 51.0358134 - ], - [ - 3.7248698, - 51.0358134 - ], - [ - 3.7248698, - 51.0364881 - ], - [ - 3.7231669, - 51.0364881 - ], - [ - 3.7231669, - 51.0358134 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/alpha/", - "theme": "etymology", - "answer": 1, - "imagery": "osm", - "language": "en" - }, - "id": 112254501 - } - }, - { - "id": 112248115, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.616224, - 48.5778044 - ], - [ - 9.616224, - 48.5778044 - ], - [ - 9.616224, - 48.5778044 - ], - [ - 9.616224, - 48.5778044 - ], - [ - 9.616224, - 48.5778044 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "nl", - "theme-creator": "joost schouppe" - }, - "id": 112248115 - } - }, - { - "id": 112240027, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.207706, - 51.2070685 - ], - [ - 3.2248464, - 51.2070685 - ], - [ - 3.2248464, - 51.2181714 - ], - [ - 3.207706, - 51.2181714 - ], - [ - 3.207706, - 51.2070685 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "etymology", - "answer": 10, - "imagery": "osm", - "language": "nl" - }, - "id": 112240027 - } - }, - { - "id": 112234645, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.21494, - 51.2129291 - ], - [ - 3.2174645, - 51.2129291 - ], - [ - 3.2174645, - 51.213151 - ], - [ - 3.21494, - 51.213151 - ], - [ - 3.21494, - 51.2129291 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "etymology", - "answer": 2, - "imagery": "osm", - "language": "nl" - }, - "id": 112234645 - } - }, - { - "id": 112229544, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3878257, - 50.8516135 - ], - [ - 4.3878257, - 50.8516135 - ], - [ - 4.3878257, - 50.8516135 - ], - [ - 4.3878257, - 50.8516135 - ], - [ - 4.3878257, - 50.8516135 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "UrbISOrtho", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112229544 - } - }, - { - "id": 112224009, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.0928876, - 46.6108569 - ], - [ - 12.0928876, - 46.6108569 - ], - [ - 12.0928876, - 46.6108569 - ], - [ - 12.0928876, - 46.6108569 - ], - [ - 12.0928876, - 46.6108569 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 112224009 - } - }, - { - "id": 112212373, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3865651, - 50.8507597 - ], - [ - 4.3869406, - 50.8507597 - ], - [ - 4.3869406, - 50.8508532 - ], - [ - 4.3865651, - 50.8508532 - ], - [ - 4.3865651, - 50.8507597 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "UrbISOrtho", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 112212373 - } - }, - { - "id": 112211689, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1235262, - 52.0891773 - ], - [ - 5.1359158, - 52.0891773 - ], - [ - 5.1359158, - 52.0969212 - ], - [ - 5.1235262, - 52.0969212 - ], - [ - 5.1235262, - 52.0891773 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112211689 - } - }, - { - "id": 112211183, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1190225, - 52.099802 - ], - [ - 5.1190225, - 52.099802 - ], - [ - 5.1190225, - 52.099802 - ], - [ - 5.1190225, - 52.099802 - ], - [ - 5.1190225, - 52.099802 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artwork", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112211183 - } - }, - { - "id": 112209084, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.0928876, - 46.6108569 - ], - [ - 12.0928876, - 46.6108569 - ], - [ - 12.0928876, - 46.6108569 - ], - [ - 12.0928876, - 46.6108569 - ], - [ - 12.0928876, - 46.6108569 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 112209084 - } - }, - { - "id": 112208365, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.613513, - 13.938413 - ], - [ - 121.613513, - 13.938413 - ], - [ - 121.613513, - 13.938413 - ], - [ - 121.613513, - 13.938413 - ], - [ - 121.613513, - 13.938413 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 112208365 - } - }, - { - "id": 112205719, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.9333324, - 43.3501677 - ], - [ - -3.9333324, - 43.3501677 - ], - [ - -3.9333324, - 43.3501677 - ], - [ - -3.9333324, - 43.3501677 - ], - [ - -3.9333324, - 43.3501677 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 112205719 - } - }, - { - "id": 112191771, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.3490529, - 47.6627929 - ], - [ - -122.349052, - 47.6627929 - ], - [ - -122.349052, - 47.6627929 - ], - [ - -122.3490529, - 47.6627929 - ], - [ - -122.3490529, - 47.6627929 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112191771 - } - }, - { - "id": 112186493, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.0874161, - 51.521625 - ], - [ - -0.0874161, - 51.521625 - ], - [ - -0.0874161, - 51.521625 - ], - [ - -0.0874161, - 51.521625 - ], - [ - -0.0874161, - 51.521625 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "uk_addresses", - "imagery": "osm", - "language": "en", - "theme-creator": "Pieter Vander Vennet, Rob Nickerson, Russ Garrett" - }, - "id": 112186493 - } - }, - { - "id": 112185465, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5671927, - 47.4614071 - ], - [ - -0.5671625, - 47.4614071 - ], - [ - -0.5671625, - 47.4614408 - ], - [ - -0.5671927, - 47.4614408 - ], - [ - -0.5671927, - 47.4614071 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "fr" - }, - "id": 112185465 - } - }, - { - "id": 112179831, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3705592, - 50.8681773 - ], - [ - 4.3705592, - 50.8681773 - ], - [ - 4.3705592, - 50.8681773 - ], - [ - 4.3705592, - 50.8681773 - ], - [ - 4.3705592, - 50.8681773 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 112179831 - } - }, - { - "id": 112179174, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3683395, - 50.8662114 - ], - [ - 4.3697932, - 50.8662114 - ], - [ - 4.3697932, - 50.8677163 - ], - [ - 4.3683395, - 50.8677163 - ], - [ - 4.3683395, - 50.8662114 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 112179174 - } - }, - { - "id": 112178507, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.3144417, - 45.9802635 - ], - [ - 12.3144417, - 45.9802635 - ], - [ - 12.3144417, - 45.9802635 - ], - [ - 12.3144417, - 45.9802635 - ], - [ - 12.3144417, - 45.9802635 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "nl", - "theme-creator": "joost schouppe" - }, - "id": 112178507 - } - }, - { - "id": 112178005, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.7686174, - -33.4876903 - ], - [ - -70.7686174, - -33.4876903 - ], - [ - -70.7686174, - -33.4876903 - ], - [ - -70.7686174, - -33.4876903 - ], - [ - -70.7686174, - -33.4876903 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 112178005 - } - }, - { - "id": 112163110, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.356575, - 52.0068472 - ], - [ - 4.356575, - 52.0068472 - ], - [ - 4.356575, - 52.0068472 - ], - [ - 4.356575, - 52.0068472 - ], - [ - 4.356575, - 52.0068472 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112163110 - } - }, - { - "id": 112128443, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.0093413, - 45.2198702 - ], - [ - 14.0093413, - 45.2198702 - ], - [ - 14.0093413, - 45.2198702 - ], - [ - 14.0093413, - 45.2198702 - ], - [ - 14.0093413, - 45.2198702 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "toerisme_vlaanderen", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 112128443 - } - }, - { - "id": 112127869, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.0084396, - 45.2196975 - ], - [ - 14.0084396, - 45.2196975 - ], - [ - 14.0084396, - 45.2196975 - ], - [ - 14.0084396, - 45.2196975 - ], - [ - 14.0084396, - 45.2196975 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 112127869 - } - }, - { - "id": 112126523, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.8333693, - 51.8019113 - ], - [ - 13.8333693, - 51.8019113 - ], - [ - 13.8333693, - 51.8019113 - ], - [ - 13.8333693, - 51.8019113 - ], - [ - 13.8333693, - 51.8019113 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 112126523 - } - }, - { - "id": 112126121, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 44.7397665, - 48.7963799 - ], - [ - 44.7397665, - 48.7963799 - ], - [ - 44.7397665, - 48.7963799 - ], - [ - 44.7397665, - 48.7963799 - ], - [ - 44.7397665, - 48.7963799 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "ru", - "theme-creator": "MapComplete" - }, - "id": 112126121 - } - }, - { - "id": 112114876, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.5613152, - 13.9638488 - ], - [ - 121.5613152, - 13.9638488 - ], - [ - 121.5613152, - 13.9638488 - ], - [ - 121.5613152, - 13.9638488 - ], - [ - 121.5613152, - 13.9638488 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "streetlamps", - "imagery": "osm", - "language": "en" - }, - "id": 112114876 - } - }, - { - "id": 112111343, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.5121813, - 51.8986043 - ], - [ - 14.5121813, - 51.8986043 - ], - [ - 14.5121813, - 51.8986043 - ], - [ - 14.5121813, - 51.8986043 - ], - [ - 14.5121813, - 51.8986043 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 112111343 - } - }, - { - "id": 112108235, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.4718829, - 51.935301 - ], - [ - 14.4781727, - 51.935301 - ], - [ - 14.4781727, - 51.9361526 - ], - [ - 14.4718829, - 51.9361526 - ], - [ - 14.4718829, - 51.935301 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 112108235 - } - }, - { - "id": 112107663, - "type": "Feature", - "geometry": null, - "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:22:48Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "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": 112107663 - } - }, - { - "id": 112107662, - "type": "Feature", - "geometry": null, - "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:22:48Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "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": 112107662 - } - }, - { - "id": 112104949, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.5063305, - 51.8606347 - ], - [ - 14.5063305, - 51.8606347 - ], - [ - 14.5063305, - 51.8606347 - ], - [ - 14.5063305, - 51.8606347 - ], - [ - 14.5063305, - 51.8606347 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 112104949 - } - }, - { - "id": 112093739, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6021236, - 52.2929288 - ], - [ - 5.6025675, - 52.2929288 - ], - [ - 5.6025675, - 52.2929941 - ], - [ - 5.6021236, - 52.2929941 - ], - [ - 5.6021236, - 52.2929288 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wheelchairsidewalks", - "imagery": "osm", - "language": "en" - }, - "id": 112093739 - } - }, - { - "id": 112093106, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5990231, - 52.280644 - ], - [ - 5.6184138, - 52.280644 - ], - [ - 5.6184138, - 52.3007136 - ], - [ - 5.5990231, - 52.3007136 - ], - [ - 5.5990231, - 52.280644 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "imagery": "osm", - "language": "nl" - }, - "id": 112093106 - } - }, - { - "id": 112092983, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5990231, - 52.280644 - ], - [ - 5.6184138, - 52.280644 - ], - [ - 5.6184138, - 52.2892049 - ], - [ - 5.5990231, - 52.2892049 - ], - [ - 5.5990231, - 52.280644 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "imagery": "osm", - "language": "nl" - }, - "id": 112092983 - } - }, - { - "id": 112092780, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.597782, - 52.2855021 - ], - [ - 5.6040589, - 52.2855021 - ], - [ - 5.6040589, - 52.2926943 - ], - [ - 5.597782, - 52.2926943 - ], - [ - 5.597782, - 52.2855021 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "nl" - }, - "id": 112092780 - } - }, - { - "id": 112088657, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 44.7424866, - 48.7610719 - ], - [ - 44.8048761, - 48.7610719 - ], - [ - 44.8048761, - 48.8046729 - ], - [ - 44.7424866, - 48.8046729 - ], - [ - 44.7424866, - 48.7610719 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "ru", - "theme-creator": "MapComplete" - }, - "id": 112088657 - } - }, - { - "id": 112076269, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.8819718, - 43.3059589 - ], - [ - -3.8819718, - 43.3059589 - ], - [ - -3.8819718, - 43.3059589 - ], - [ - -3.8819718, - 43.3059589 - ], - [ - -3.8819718, - 43.3059589 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 112076269 - } - }, - { - "id": 112073969, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7384556, - 52.8513858 - ], - [ - 13.739342, - 52.8513858 - ], - [ - 13.739342, - 52.8517698 - ], - [ - 13.7384556, - 52.8517698 - ], - [ - 13.7384556, - 52.8513858 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 112073969 - } - }, - { - "id": 112073624, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7607566, - 51.8019113 - ], - [ - 13.8333693, - 51.8019113 - ], - [ - 13.8333693, - 51.8245708 - ], - [ - 13.7607566, - 51.8245708 - ], - [ - 13.7607566, - 51.8019113 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 112073624 - } - }, - { - "id": 112068300, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.724899, - 51.0499839 - ], - [ - 3.724899, - 51.0499839 - ], - [ - 3.724899, - 51.0499839 - ], - [ - 3.724899, - 51.0499839 - ], - [ - 3.724899, - 51.0499839 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 112068300 - } - }, - { - "id": 112063015, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.8743329, - 43.3103309 - ], - [ - -3.8553536, - 43.3103309 - ], - [ - -3.8553536, - 43.3499376 - ], - [ - -3.8743329, - 43.3499376 - ], - [ - -3.8743329, - 43.3103309 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 112063015 - } - }, - { - "id": 112058690, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 44.8006153, - 48.7537343 - ], - [ - 44.8006153, - 48.7537343 - ], - [ - 44.8006153, - 48.7537343 - ], - [ - 44.8006153, - 48.7537343 - ], - [ - 44.8006153, - 48.7537343 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "ru", - "theme-creator": "MapComplete" - }, - "id": 112058690 - } - }, - { - "id": 112042373, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0532899, - 38.8306279 - ], - [ - 0.0544554, - 38.8306279 - ], - [ - 0.0544554, - 38.8317617 - ], - [ - 0.0532899, - 38.8317617 - ], - [ - 0.0532899, - 38.8306279 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 112042373 - } - }, - { - "id": 112037485, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.130217, - 50.9493178 - ], - [ - 3.130217, - 50.9493178 - ], - [ - 3.130217, - 50.9493178 - ], - [ - 3.130217, - 50.9493178 - ], - [ - 3.130217, - 50.9493178 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 112037485 - } - }, - { - "id": 112035851, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.1227551, - 45.0855077 - ], - [ - 14.1227551, - 45.0855077 - ], - [ - 14.1227551, - 45.0855077 - ], - [ - 14.1227551, - 45.0855077 - ], - [ - 14.1227551, - 45.0855077 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "CartoDB.Voyager", - "language": "nl" - }, - "id": 112035851 - } - }, - { - "id": 112035466, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0860232, - 38.8385174 - ], - [ - 0.1130726, - 38.8385174 - ], - [ - 0.1130726, - 38.8414511 - ], - [ - 0.0860232, - 38.8414511 - ], - [ - 0.0860232, - 38.8385174 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 112035466 - } - }, - { - "id": 112034198, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 44.7844895, - 48.7686502 - ], - [ - 44.7844895, - 48.7686502 - ], - [ - 44.7844895, - 48.7686502 - ], - [ - 44.7844895, - 48.7686502 - ], - [ - 44.7844895, - 48.7686502 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "ru", - "theme-creator": "MapComplete" - }, - "id": 112034198 - } - }, - { - "id": 112030042, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1528399, - 51.1201925 - ], - [ - 3.157638, - 51.1201925 - ], - [ - 3.157638, - 51.124276 - ], - [ - 3.1528399, - 51.124276 - ], - [ - 3.1528399, - 51.1201925 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cyclestreets", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 112030042 - } - }, - { - "id": 112026025, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.75222, - 51.0222208 - ], - [ - 3.75222, - 51.0222208 - ], - [ - 3.75222, - 51.0222208 - ], - [ - 3.75222, - 51.0222208 - ], - [ - 3.75222, - 51.0222208 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "food", - "imagery": "osm", - "language": "nl" - }, - "id": 112026025 - } - }, - { - "id": 112025893, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7423676, - 51.0350283 - ], - [ - 3.7423676, - 51.0350283 - ], - [ - 3.7423676, - 51.0350283 - ], - [ - 3.7423676, - 51.0350283 - ], - [ - 3.7423676, - 51.0350283 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "AGIV", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 112025893 - } - }, - { - "id": 112025734, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7459369, - 51.0385867 - ], - [ - 3.7459369, - 51.0385867 - ], - [ - 3.7459369, - 51.0385867 - ], - [ - 3.7459369, - 51.0385867 - ], - [ - 3.7459369, - 51.0385867 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "CartoDB.Voyager", - "language": "nl" - }, - "id": 112025734 - } - }, - { - "id": 112023175, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 113.8590666, - 22.2547684 - ], - [ - 114.2249093, - 22.2547684 - ], - [ - 114.2249093, - 22.5055716 - ], - [ - 113.8590666, - 22.5055716 - ], - [ - 113.8590666, - 22.2547684 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112023175 - } - }, - { - "id": 112022340, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.0403029, - 47.8228046 - ], - [ - 13.0403029, - 47.8228046 - ], - [ - 13.0403029, - 47.8228046 - ], - [ - 13.0403029, - 47.8228046 - ], - [ - 13.0403029, - 47.8228046 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112022340 - } - }, - { - "id": 112022181, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.0719458, - 47.7212103 - ], - [ - 13.0721148, - 47.7212103 - ], - [ - 13.0721148, - 47.7213131 - ], - [ - 13.0719458, - 47.7213131 - ], - [ - 13.0719458, - 47.7212103 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 112022181 - } - }, - { - "id": 112022086, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3081072, - 51.1069925 - ], - [ - 3.3081072, - 51.1069925 - ], - [ - 3.3081072, - 51.1069925 - ], - [ - 3.3081072, - 51.1069925 - ], - [ - 3.3081072, - 51.1069925 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 112022086 - } - }, - { - "id": 112022070, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.01785, - 47.83914 - ], - [ - 13.01785, - 47.83914 - ], - [ - 13.01785, - 47.83914 - ], - [ - 13.01785, - 47.83914 - ], - [ - 13.01785, - 47.83914 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112022070 - } - }, - { - "id": 112020043, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 113.8603762, - 22.255137 - ], - [ - 113.8603762, - 22.255137 - ], - [ - 113.8603762, - 22.255137 - ], - [ - 113.8603762, - 22.255137 - ], - [ - 113.8603762, - 22.255137 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "zh_Hant", - "theme-creator": "MapComplete" - }, - "id": 112020043 - } - }, - { - "id": 112016293, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9788847, - 51.2002839 - ], - [ - 4.9788867, - 51.2002839 - ], - [ - 4.9788867, - 51.2003633 - ], - [ - 4.9788847, - 51.2003633 - ], - [ - 4.9788847, - 51.2002839 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "AGIV", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 112016293 - } - }, - { - "id": 112015290, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.2998665, - 46.5030342 - ], - [ - 11.2998665, - 46.5030342 - ], - [ - 11.2998665, - 46.5030342 - ], - [ - 11.2998665, - 46.5030342 - ], - [ - 11.2998665, - 46.5030342 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "nl", - "theme-creator": "joost schouppe" - }, - "id": 112015290 - } - }, - { - "id": 112014103, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2997585, - 51.1061834 - ], - [ - 3.3117403, - 51.1061834 - ], - [ - 3.3117403, - 51.1125441 - ], - [ - 3.2997585, - 51.1125441 - ], - [ - 3.2997585, - 51.1061834 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/walkingnodenetworks/walkingnodenetworks.json", - "imagery": "osm", - "language": "en", - "theme-creator": "L'imaginaire" - }, - "id": 112014103 - } - }, - { - "id": 112008969, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2431738, - 50.7283904 - ], - [ - 4.2715941, - 50.7283904 - ], - [ - 4.2715941, - 50.7513094 - ], - [ - 4.2431738, - 50.7513094 - ], - [ - 4.2431738, - 50.7283904 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete, joost schouppe" - }, - "id": 112008969 - } - }, - { - "id": 112007497, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3145472, - 51.1094451 - ], - [ - 3.3146333, - 51.1094451 - ], - [ - 3.3146333, - 51.1094979 - ], - [ - 3.3145472, - 51.1094979 - ], - [ - 3.3145472, - 51.1094451 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "maps", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112007497 - } - }, - { - "id": 112006165, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3005826, - 51.1119062 - ], - [ - 3.3005826, - 51.1119062 - ], - [ - 3.3005826, - 51.1119062 - ], - [ - 3.3005826, - 51.1119062 - ], - [ - 3.3005826, - 51.1119062 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 112006165 - } - }, - { - "id": 112005129, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.0191546, - 51.822791 - ], - [ - -3.0191546, - 51.822791 - ], - [ - -3.0191546, - 51.822791 - ], - [ - -3.0191546, - 51.822791 - ], - [ - -3.0191546, - 51.822791 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cafes_and_pubs", - "imagery": "osm", - "language": "en" - }, - "id": 112005129 - } - }, - { - "id": 112004831, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.0195017, - 51.8228291 - ], - [ - -3.019464, - 51.8228291 - ], - [ - -3.019464, - 51.8229308 - ], - [ - -3.0195017, - 51.8229308 - ], - [ - -3.0195017, - 51.8228291 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112004831 - } - }, - { - "id": 112003493, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.91486, - 44.7949588 - ], - [ - 13.91486, - 44.7949588 - ], - [ - 13.91486, - 44.7949588 - ], - [ - 13.91486, - 44.7949588 - ], - [ - 13.91486, - 44.7949588 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 112003493 - } - }, - { - "id": 112002831, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0010506, - 48.5000099 - ], - [ - 9.0014322, - 48.5000099 - ], - [ - 9.0014322, - 48.5010055 - ], - [ - 9.0010506, - 48.5010055 - ], - [ - 9.0010506, - 48.5000099 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 112002831 - } - }, - { - "id": 112002251, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.301958, - 51.1063148 - ], - [ - 3.301958, - 51.1063148 - ], - [ - 3.301958, - 51.1063148 - ], - [ - 3.301958, - 51.1063148 - ], - [ - 3.301958, - 51.1063148 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", - "imagery": "osm", - "language": "en", - "theme-creator": "L'imaginaire" - }, - "id": 112002251 - } - }, - { - "id": 112001500, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3145418, - 51.1094571 - ], - [ - 3.3145418, - 51.1094571 - ], - [ - 3.3145418, - 51.1094571 - ], - [ - 3.3145418, - 51.1094571 - ], - [ - 3.3145418, - 51.1094571 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 112001500 - } - }, - { - "id": 112001382, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3081045, - 51.1070157 - ], - [ - 3.3081045, - 51.1070157 - ], - [ - 3.3081045, - 51.1070157 - ], - [ - 3.3081045, - 51.1070157 - ], - [ - 3.3081045, - 51.1070157 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "imagery": "osm", - "language": "nl" - }, - "id": 112001382 - } - }, - { - "id": 112000014, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3071047, - 51.1069017 - ], - [ - 3.3071047, - 51.1069017 - ], - [ - 3.3071047, - 51.1069017 - ], - [ - 3.3071047, - 51.1069017 - ], - [ - 3.3071047, - 51.1069017 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 112000014 - } - }, - { - "id": 111997577, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.8508368, - 43.4615596 - ], - [ - -3.8508368, - 43.4615596 - ], - [ - -3.8508368, - 43.4615596 - ], - [ - -3.8508368, - 43.4615596 - ], - [ - -3.8508368, - 43.4615596 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 111997577 - } - }, - { - "id": 111996531, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.9119353, - 44.7711474 - ], - [ - 13.9119353, - 44.7711474 - ], - [ - 13.9119353, - 44.7711474 - ], - [ - 13.9119353, - 44.7711474 - ], - [ - 13.9119353, - 44.7711474 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "toerisme_vlaanderen", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111996531 - } - }, - { - "id": 111973084, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.4385236, - 50.6269482 - ], - [ - -3.4385236, - 50.6269482 - ], - [ - -3.4385236, - 50.6269482 - ], - [ - -3.4385236, - 50.6269482 - ], - [ - -3.4385236, - 50.6269482 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111973084 - } - }, - { - "id": 111963945, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6381551, - 45.0809245 - ], - [ - 13.6381551, - 45.0809245 - ], - [ - 13.6381551, - 45.0809245 - ], - [ - 13.6381551, - 45.0809245 - ], - [ - 13.6381551, - 45.0809245 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111963945 - } - }, - { - "id": 111963037, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5701373, - 52.9922972 - ], - [ - 6.571494, - 52.9922972 - ], - [ - 6.571494, - 52.9953136 - ], - [ - 6.5701373, - 52.9953136 - ], - [ - 6.5701373, - 52.9922972 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111963037 - } - }, - { - "id": 111958971, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.4497672, - 51.8978716 - ], - [ - 14.4524074, - 51.8978716 - ], - [ - 14.4524074, - 51.8996514 - ], - [ - 14.4497672, - 51.8996514 - ], - [ - 14.4497672, - 51.8978716 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 111958971 - } - }, - { - "id": 111952857, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 44.7450022, - 48.7973659 - ], - [ - 44.7450022, - 48.7973659 - ], - [ - 44.7450022, - 48.7973659 - ], - [ - 44.7450022, - 48.7973659 - ], - [ - 44.7450022, - 48.7973659 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "ru", - "theme-creator": "MapComplete" - }, - "id": 111952857 - } - }, - { - "id": 111949930, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3524179, - 51.0101459 - ], - [ - 4.3951884, - 51.0101459 - ], - [ - 4.3951884, - 51.2073724 - ], - [ - 4.3524179, - 51.2073724 - ], - [ - 4.3524179, - 51.0101459 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 111949930 - } - }, - { - "id": 111948340, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.5591233, - 13.9638515 - ], - [ - 121.5591233, - 13.9638515 - ], - [ - 121.5591233, - 13.9638515 - ], - [ - 121.5591233, - 13.9638515 - ], - [ - 121.5591233, - 13.9638515 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "streetlamps", - "imagery": "osm", - "language": "en" - }, - "id": 111948340 - } - }, - { - "id": 111945546, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0779099, - 50.6225479 - ], - [ - 3.0779099, - 50.6225479 - ], - [ - 3.0779099, - 50.6225479 - ], - [ - 3.0779099, - 50.6225479 - ], - [ - 3.0779099, - 50.6225479 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "fr" - }, - "id": 111945546 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2021-11.json b/Docs/Tools/stats/stats.2021-11.json deleted file mode 100644 index 402f05fe6e..0000000000 --- a/Docs/Tools/stats/stats.2021-11.json +++ /dev/null @@ -1,39712 +0,0 @@ -{ - "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", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5463604, - 53.0115865 - ], - [ - 6.5463604, - 53.0115865 - ], - [ - 6.5463604, - 53.0115865 - ], - [ - 6.5463604, - 53.0115865 - ], - [ - 6.5463604, - 53.0115865 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cycle_infra", - "answer": 2, - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 113491702 - } - }, - { - "id": 113491295, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5454001, - 53.0104826 - ], - [ - 6.5481828, - 53.0104826 - ], - [ - 6.5481828, - 53.013161 - ], - [ - 6.5454001, - 53.013161 - ], - [ - 6.5454001, - 53.0104826 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 1, - "theme": "street_lighting_assen", - "answer": 61, - "create": 8, - "imagery": "osm", - "language": "en", - "move:node/-1": "improve_accuracy" - }, - "id": 113491295 - } - }, - { - "id": 113491238, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5486318, - 53.0134666 - ], - [ - 6.5486318, - 53.0134666 - ], - [ - 6.5486318, - 53.0134666 - ], - [ - 6.5486318, - 53.0134666 - ], - [ - 6.5486318, - 53.0134666 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "street_lighting", - "answer": 8, - "create": 1, - "imagery": "osm", - "language": "en" - }, - "id": 113491238 - } - }, - { - "id": 113489356, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3435891, - 50.8314757 - ], - [ - 4.3435891, - 50.8314757 - ], - [ - 4.3435891, - 50.8314757 - ], - [ - 4.3435891, - 50.8314757 - ], - [ - 4.3435891, - 50.8314757 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "ghostbikes", - "answer": 2, - "imagery": "CartoDB.Positron", - "language": "nl" - }, - "id": 113489356 - } - }, - { - "id": 113489134, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7124507, - 50.8657342 - ], - [ - 3.7124507, - 50.8657342 - ], - [ - 3.7124507, - 50.8657342 - ], - [ - 3.7124507, - 50.8657342 - ], - [ - 3.7124507, - 50.8657342 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artwork", - "imagery": "osm", - "language": "en", - "add-image": 1 - }, - "id": 113489134 - } - }, - { - "id": 113488340, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1439541, - 51.1716062 - ], - [ - 4.1439541, - 51.1716062 - ], - [ - 4.1439541, - 51.1716062 - ], - [ - 4.1439541, - 51.1716062 - ], - [ - 4.1439541, - 51.1716062 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "toilets", - "answer": 2, - "imagery": "osm", - "language": "nl" - }, - "id": 113488340 - } - }, - { - "id": 113481936, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5628899, - 53.0090367 - ], - [ - 6.590133, - 53.0090367 - ], - [ - 6.590133, - 53.0243704 - ], - [ - 6.5628899, - 53.0243704 - ], - [ - 6.5628899, - 53.0090367 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/post-partner/", - "theme": "postboxes", - "answer": 19, - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 113481936 - } - }, - { - "id": 113480631, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5695252, - 53.017952 - ], - [ - 6.5695252, - 53.017952 - ], - [ - 6.5695252, - 53.017952 - ], - [ - 6.5695252, - 53.017952 - ], - [ - 6.5695252, - 53.017952 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_infra", - "answer": 1, - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 113480631 - } - }, - { - "id": 113480016, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.0323045, - 49.0182418 - ], - [ - -0.0322911, - 49.0182418 - ], - [ - -0.0322911, - 49.0182676 - ], - [ - -0.0323045, - 49.0182676 - ], - [ - -0.0323045, - 49.0182418 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 1, - "theme": "toilets", - "answer": 5, - "create": 1, - "imagery": "osm", - "language": "fr", - "move:node/9233019525": "improve_accuracy" - }, - "id": 113480016 - } - }, - { - "id": 113477074, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.717778, - 44.3513939 - ], - [ - 11.7177824, - 44.3513939 - ], - [ - 11.7177824, - 44.3518562 - ], - [ - 11.717778, - 44.3518562 - ], - [ - 11.717778, - 44.3513939 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 1, - "imagery": "osm", - "language": "en" - }, - "id": 113477074 - } - }, - { - "id": 113472305, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2334872, - 50.7377122 - ], - [ - 4.2334872, - 50.7377122 - ], - [ - 4.2334872, - 50.7377122 - ], - [ - 4.2334872, - 50.7377122 - ], - [ - 4.2334872, - 50.7377122 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 6, - "create": 1, - "imagery": "CartoDB.Voyager", - "language": "nl", - "add-image": 1 - }, - "id": 113472305 - } - }, - { - "id": 113465263, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.20747, - 51.2193065 - ], - [ - 3.2093845, - 51.2193065 - ], - [ - 3.2093845, - 51.2208645 - ], - [ - 3.20747, - 51.2208645 - ], - [ - 3.20747, - 51.2193065 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 24, - "imagery": "osm", - "language": "en" - }, - "id": 113465263 - } - }, - { - "id": 113463623, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3507974, - 46.4987505 - ], - [ - 11.3569209, - 46.4987505 - ], - [ - 11.3569209, - 46.4997625 - ], - [ - 11.3507974, - 46.4997625 - ], - [ - 11.3507974, - 46.4987505 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "answer": 42, - "create": 8, - "imagery": "osm", - "language": "en" - }, - "id": 113463623 - } - }, - { - "id": 113463553, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9920731, - 48.4988367 - ], - [ - 8.9924969, - 48.4988367 - ], - [ - 8.9924969, - 48.4988847 - ], - [ - 8.9920731, - 48.4988847 - ], - [ - 8.9920731, - 48.4988367 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "answer": 6, - "imagery": "osm", - "language": "en" - }, - "id": 113463553 - } - }, - { - "id": 113463449, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9908201, - 48.4997284 - ], - [ - 9.0012241, - 48.4997284 - ], - [ - 9.0012241, - 48.503771 - ], - [ - 8.9908201, - 48.503771 - ], - [ - 8.9908201, - 48.4997284 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 5, - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 113463449 - } - }, - { - "id": 113450975, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5389581, - 51.2419872 - ], - [ - 4.5389581, - 51.2419872 - ], - [ - 4.5389581, - 51.2419872 - ], - [ - 4.5389581, - 51.2419872 - ], - [ - 4.5389581, - 51.2419872 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "answer": 1, - "create": 1, - "imagery": "osm", - "language": "nl" - }, - "id": 113450975 - } - }, - { - "id": 113450551, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.6865183, - 42.1972861 - ], - [ - 2.7431912, - 42.1972861 - ], - [ - 2.7431912, - 42.2230003 - ], - [ - 2.6865183, - 42.2230003 - ], - [ - 2.6865183, - 42.1972861 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 14, - "imagery": "osm", - "language": "en" - }, - "id": 113450551 - } - }, - { - "id": 113448373, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5614855, - 53.0029268 - ], - [ - 6.5614855, - 53.0029268 - ], - [ - 6.5614855, - 53.0029268 - ], - [ - 6.5614855, - 53.0029268 - ], - [ - 6.5614855, - 53.0029268 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "answer": 11, - "create": 1, - "imagery": "CartoDB.Voyager", - "language": "en", - "add-image": 1 - }, - "id": 113448373 - } - }, - { - "id": 113444561, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.6692221, - 44.7605103 - ], - [ - 10.6741377, - 44.7605103 - ], - [ - 10.6741377, - 44.7689517 - ], - [ - 10.6692221, - 44.7689517 - ], - [ - 10.6692221, - 44.7605103 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 9, - "imagery": "osm", - "language": "it" - }, - "id": 113444561 - } - }, - { - "id": 113442152, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.9679002, - 55.5981608 - ], - [ - 12.9967072, - 55.5981608 - ], - [ - 12.9967072, - 55.6145033 - ], - [ - 12.9679002, - 55.6145033 - ], - [ - 12.9679002, - 55.5981608 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 19, - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 113442152 - } - }, - { - "id": 113438716, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.9896861, - 55.6099415 - ], - [ - 12.9949835, - 55.6099415 - ], - [ - 12.9949835, - 55.6123863 - ], - [ - 12.9896861, - 55.6123863 - ], - [ - 12.9896861, - 55.6099415 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 3, - "create": 2, - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 113438716 - } - }, - { - "id": 113438500, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.2377422, - 40.9166827 - ], - [ - 14.2802702, - 40.9166827 - ], - [ - 14.2802702, - 40.9460374 - ], - [ - 14.2377422, - 40.9460374 - ], - [ - 14.2377422, - 40.9166827 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 121, - "imagery": "osm", - "language": "en" - }, - "id": 113438500 - } - }, - { - "id": 113429453, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7280077, - 51.0445407 - ], - [ - 3.7280077, - 51.0445407 - ], - [ - 3.7280077, - 51.0445407 - ], - [ - 3.7280077, - 51.0445407 - ], - [ - 3.7280077, - 51.0445407 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "drinking_water", - "answer": 1, - "create": 1, - "imagery": "CartoDB.Voyager", - "language": "en", - "add-image": 1 - }, - "id": 113429453 - } - }, - { - "id": 113428932, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.6368818, - 44.7198549 - ], - [ - 10.6473911, - 44.7198549 - ], - [ - 10.6473911, - 44.7202458 - ], - [ - 10.6368818, - 44.7202458 - ], - [ - 10.6368818, - 44.7198549 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "food", - "answer": 12, - "imagery": "osm", - "language": "it" - }, - "id": 113428932 - } - }, - { - "id": 113428858, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.6368944, - 44.7155991 - ], - [ - 10.6436293, - 44.7155991 - ], - [ - 10.6436293, - 44.7171254 - ], - [ - 10.6368944, - 44.7171254 - ], - [ - 10.6368944, - 44.7155991 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cafes_and_pubs", - "answer": 5, - "imagery": "osm", - "language": "it" - }, - "id": 113428858 - } - }, - { - "id": 113428835, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.6509034, - 44.7140631 - ], - [ - 10.6510766, - 44.7140631 - ], - [ - 10.6510766, - 44.7141882 - ], - [ - 10.6509034, - 44.7141882 - ], - [ - 10.6509034, - 44.7140631 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "answer": 4, - "imagery": "osm", - "language": "it" - }, - "id": 113428835 - } - }, - { - "id": 113428798, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3495687, - 46.4970481 - ], - [ - 11.3576022, - 46.4970481 - ], - [ - 11.3576022, - 46.5002866 - ], - [ - 11.3495687, - 46.5002866 - ], - [ - 11.3495687, - 46.4970481 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "answer": 33, - "create": 6, - "imagery": "osm", - "language": "en" - }, - "id": 113428798 - } - }, - { - "id": 113428563, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.9746711, - 55.5979214 - ], - [ - 12.9756195, - 55.5979214 - ], - [ - 12.9756195, - 55.597995 - ], - [ - 12.9746711, - 55.597995 - ], - [ - 12.9746711, - 55.5979214 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "answer": 8, - "imagery": "osm", - "language": "de" - }, - "id": 113428563 - } - }, - { - "id": 113428090, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.6665392, - 44.7445564 - ], - [ - 10.6911694, - 44.7445564 - ], - [ - 10.6911694, - 44.7640471 - ], - [ - 10.6665392, - 44.7640471 - ], - [ - 10.6665392, - 44.7445564 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 28, - "imagery": "osm", - "language": "it" - }, - "id": 113428090 - } - }, - { - "id": 113426608, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3487564, - 46.5002575 - ], - [ - 11.3492527, - 46.5002575 - ], - [ - 11.3492527, - 46.5003478 - ], - [ - 11.3487564, - 46.5003478 - ], - [ - 11.3487564, - 46.5002575 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "answer": 4, - "imagery": "osm", - "language": "en" - }, - "id": 113426608 - } - }, - { - "id": 113421595, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.9669906, - 55.5962 - ], - [ - 12.9957467, - 55.5962 - ], - [ - 12.9957467, - 55.6126643 - ], - [ - 12.9669906, - 55.6126643 - ], - [ - 12.9669906, - 55.5962 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 24, - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 113421595 - } - }, - { - "id": 113418491, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.9677728, - 55.5984981 - ], - [ - 12.9741669, - 55.5984981 - ], - [ - 12.9741669, - 55.6032872 - ], - [ - 12.9677728, - 55.6032872 - ], - [ - 12.9677728, - 55.5984981 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 5, - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 113418491 - } - }, - { - "id": 113413987, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 88.3509729, - 22.5620033 - ], - [ - 88.3571625, - 22.5620033 - ], - [ - 88.3571625, - 22.5855414 - ], - [ - 88.3509729, - 22.5855414 - ], - [ - 88.3509729, - 22.5620033 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 2, - "imagery": "osm", - "language": "en" - }, - "id": 113413987 - } - }, - { - "id": 113412065, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5494963, - 53.0001853 - ], - [ - 6.5494963, - 53.0001853 - ], - [ - 6.5494963, - 53.0001853 - ], - [ - 6.5494963, - 53.0001853 - ], - [ - 6.5494963, - 53.0001853 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "street_lighting", - "answer": 7, - "create": 1, - "imagery": "osm", - "language": "en" - }, - "id": 113412065 - } - }, - { - "id": 113411796, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4299429, - 46.9471541 - ], - [ - 7.4392904, - 46.9471541 - ], - [ - 7.4392904, - 46.9512033 - ], - [ - 7.4299429, - 46.9512033 - ], - [ - 7.4299429, - 46.9471541 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 14, - "create": 4, - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 113411796 - } - }, - { - "id": 113410685, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.0497048, - 52.3891526 - ], - [ - 13.0805059, - 52.3891526 - ], - [ - 13.0805059, - 52.402249 - ], - [ - 13.0497048, - 52.402249 - ], - [ - 13.0497048, - 52.3891526 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 115, - "imagery": "osm", - "language": "en" - }, - "id": 113410685 - } - }, - { - "id": 113410204, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.597413, - -34.6450639 - ], - [ - -58.5969946, - -34.6450639 - ], - [ - -58.5969946, - -34.6450606 - ], - [ - -58.597413, - -34.6450606 - ], - [ - -58.597413, - -34.6450639 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "answer": 2, - "imagery": "osm", - "language": "es" - }, - "id": 113410204 - } - }, - { - "id": 113409895, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9134751, - 51.2275968 - ], - [ - 2.9134751, - 51.2275968 - ], - [ - 2.9134751, - 51.2275968 - ], - [ - 2.9134751, - 51.2275968 - ], - [ - 2.9134751, - 51.2275968 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "answer": 6, - "create": 1, - "imagery": "osm", - "language": "nl", - "add-image": 1 - }, - "id": 113409895 - } - }, - { - "id": 113409798, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1439541, - 51.1716062 - ], - [ - 4.1439541, - 51.1716062 - ], - [ - 4.1439541, - 51.1716062 - ], - [ - 4.1439541, - 51.1716062 - ], - [ - 4.1439541, - 51.1716062 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "toilets", - "answer": 6, - "imagery": "osm", - "language": "en" - }, - "id": 113409798 - } - }, - { - "id": 113409011, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5640763, - 53.0198777 - ], - [ - 6.5640763, - 53.0198777 - ], - [ - 6.5640763, - 53.0198777 - ], - [ - 6.5640763, - 53.0198777 - ], - [ - 6.5640763, - 53.0198777 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "test", - "answer": 1, - "create": 1, - "imagery": "osm", - "language": "en", - "add-image": 2 - }, - "id": 113409011 - } - }, - { - "id": 113407314, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4219758, - 46.9305649 - ], - [ - 7.4260552, - 46.9305649 - ], - [ - 7.4260552, - 46.9477524 - ], - [ - 7.4219758, - 46.9477524 - ], - [ - 7.4219758, - 46.9305649 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 1, - "theme": "cyclofix", - "answer": 7, - "create": 1, - "imagery": "CartoDB.Voyager", - "language": "en", - "move:node/4568201391": "improve_accuracy" - }, - "id": 113407314 - } - }, - { - "id": 113405992, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8108884, - 41.9797913 - ], - [ - 2.8234898, - 41.9797913 - ], - [ - 2.8234898, - 41.9841272 - ], - [ - 2.8108884, - 41.9841272 - ], - [ - 2.8108884, - 41.9797913 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 6, - "imagery": "osm", - "language": "en" - }, - "id": 113405992 - } - }, - { - "id": 113404377, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.6381426, - 45.498189 - ], - [ - 9.6447824, - 45.498189 - ], - [ - 9.6447824, - 45.5074108 - ], - [ - 9.6381426, - 45.5074108 - ], - [ - 9.6381426, - 45.498189 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 64, - "imagery": "osm", - "language": "en" - }, - "id": 113404377 - } - }, - { - "id": 113404365, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.7391136, - 48.7976723 - ], - [ - 10.7630421, - 48.7976723 - ], - [ - 10.7630421, - 48.8240201 - ], - [ - 10.7391136, - 48.8240201 - ], - [ - 10.7391136, - 48.7976723 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 10, - "imagery": "osm", - "language": "de" - }, - "id": 113404365 - } - }, - { - "id": 113403407, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9132451, - 51.2274674 - ], - [ - 2.9132451, - 51.2274674 - ], - [ - 2.9132451, - 51.2274674 - ], - [ - 2.9132451, - 51.2274674 - ], - [ - 2.9132451, - 51.2274674 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "answer": 5, - "create": 1, - "imagery": "osm", - "language": "nl", - "add-image": 1 - }, - "id": 113403407 - } - }, - { - "id": 113401156, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.6284641, - 44.6969162 - ], - [ - 10.6489178, - 44.6969162 - ], - [ - 10.6489178, - 44.719423 - ], - [ - 10.6284641, - 44.719423 - ], - [ - 10.6284641, - 44.6969162 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 131, - "imagery": "osm", - "language": "it" - }, - "id": 113401156 - } - }, - { - "id": 113400546, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9319354, - 44.4054811 - ], - [ - 8.9399769, - 44.4054811 - ], - [ - 8.9399769, - 44.4083162 - ], - [ - 8.9319354, - 44.4083162 - ], - [ - 8.9319354, - 44.4054811 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 46, - "imagery": "osm", - "language": "it" - }, - "id": 113400546 - } - }, - { - "id": 113399744, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2303788, - 51.2099501 - ], - [ - 3.2304331, - 51.2099501 - ], - [ - 3.2304331, - 51.2099693 - ], - [ - 3.2303788, - 51.2099693 - ], - [ - 3.2303788, - 51.2099501 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 1, - "theme": "aed", - "answer": 1, - "imagery": "osm", - "language": "nl", - "move:node/9223875638": "improve_accuracy" - }, - "id": 113399744 - } - }, - { - "id": 113397481, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2245134, - 50.961555 - ], - [ - 4.2286112, - 50.961555 - ], - [ - 4.2286112, - 50.9640391 - ], - [ - 4.2245134, - 50.9640391 - ], - [ - 4.2245134, - 50.961555 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclestreets", - "answer": 2, - "imagery": "osm", - "language": "nl" - }, - "id": 113397481 - } - }, - { - "id": 113386555, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4413531, - 46.9488652 - ], - [ - 7.4432454, - 46.9488652 - ], - [ - 7.4432454, - 46.949116 - ], - [ - 7.4413531, - 46.949116 - ], - [ - 7.4413531, - 46.9488652 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 15, - "create": 4, - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 113386555 - } - }, - { - "id": 113385218, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2271092, - 41.4472158 - ], - [ - 2.2311097, - 41.4472158 - ], - [ - 2.2311097, - 41.4474897 - ], - [ - 2.2271092, - 41.4474897 - ], - [ - 2.2271092, - 41.4472158 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "answer": 40, - "create": 13, - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 113385218 - } - }, - { - "id": 113382487, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3925035, - 51.2058146 - ], - [ - 4.3932845, - 51.2058146 - ], - [ - 4.3932845, - 51.2083369 - ], - [ - 4.3925035, - 51.2083369 - ], - [ - 4.3925035, - 51.2058146 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "answer": 9, - "create": 2, - "imagery": "osm", - "language": "nl" - }, - "id": 113382487 - } - }, - { - "id": 113382251, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.5015844, - 48.7539323 - ], - [ - 10.5047665, - 48.7539323 - ], - [ - 10.5047665, - 48.7555277 - ], - [ - 10.5015844, - 48.7555277 - ], - [ - 10.5015844, - 48.7539323 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 3, - "imagery": "osm", - "language": "de" - }, - "id": 113382251 - } - }, - { - "id": 113376351, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1339296, - 51.1800377 - ], - [ - 3.1367892, - 51.1800377 - ], - [ - 3.1367892, - 51.1837119 - ], - [ - 3.1339296, - 51.1837119 - ], - [ - 3.1339296, - 51.1800377 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 2, - "imagery": "osm", - "language": "nl" - }, - "id": 113376351 - } - }, - { - "id": 113375792, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2031415, - 51.1837065 - ], - [ - 3.2068126, - 51.1837065 - ], - [ - 3.2068126, - 51.1857528 - ], - [ - 3.2031415, - 51.1857528 - ], - [ - 3.2031415, - 51.1837065 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "move": 14, - "theme": "grb", - "import": 16, - "imagery": "AGIV10cm", - "language": "en", - "conflation": 2 - }, - "id": 113375792 - } - }, - { - "id": 113375786, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2053807, - 51.183576 - ], - [ - 3.2057722, - 51.183576 - ], - [ - 3.2057722, - 51.1841127 - ], - [ - 3.2053807, - 51.1841127 - ], - [ - 3.2053807, - 51.183576 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "grb", - "answer": 1, - "import": 1, - "imagery": "AGIV10cm", - "language": "en" - }, - "id": 113375786 - } - }, - { - "id": 113375744, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2033105, - 51.1834603 - ], - [ - 3.2050276, - 51.1834603 - ], - [ - 3.2050276, - 51.1841974 - ], - [ - 3.2033105, - 51.1841974 - ], - [ - 3.2033105, - 51.1834603 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "grb", - "answer": 2, - "import": 4, - "imagery": "AGIV10cm", - "language": "en" - }, - "id": 113375744 - } - }, - { - "id": 113375602, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.4793327, - 48.7206269 - ], - [ - 10.4928985, - 48.7206269 - ], - [ - 10.4928985, - 48.7297374 - ], - [ - 10.4793327, - 48.7297374 - ], - [ - 10.4793327, - 48.7206269 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 22, - "imagery": "osm", - "language": "de" - }, - "id": 113375602 - } - }, - { - "id": 113375570, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2185596, - 51.2099383 - ], - [ - 3.230419, - 51.2099383 - ], - [ - 3.230419, - 51.2131485 - ], - [ - 3.2185596, - 51.2131485 - ], - [ - 3.2185596, - 51.2099383 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 2, - "theme": "aed", - "answer": 2, - "imagery": "osm", - "language": "nl", - "move:node/9223875638": "improve_accuracy" - }, - "id": 113375570 - } - }, - { - "id": 113374469, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2026258, - 51.1822476 - ], - [ - 3.2057241, - 51.1822476 - ], - [ - 3.2057241, - 51.1836308 - ], - [ - 3.2026258, - 51.1836308 - ], - [ - 3.2026258, - 51.1822476 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "move": 16, - "theme": "grb", - "answer": 2, - "import": 18, - "imagery": "osm", - "language": "en", - "conflation": 4 - }, - "id": 113374469 - } - }, - { - "id": 113374140, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4332193, - 46.9457835 - ], - [ - 7.4768843, - 46.9457835 - ], - [ - 7.4768843, - 46.9747147 - ], - [ - 7.4332193, - 46.9747147 - ], - [ - 7.4332193, - 46.9457835 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 1, - "theme": "cyclofix", - "answer": 11, - "create": 6, - "imagery": "CartoDB.Voyager", - "language": "en", - "move:node/9223995072": "improve_accuracy" - }, - "id": 113374140 - } - }, - { - "id": 113374077, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2174894, - 51.2146756 - ], - [ - 3.218301, - 51.2146756 - ], - [ - 3.218301, - 51.214947 - ], - [ - 3.2174894, - 51.214947 - ], - [ - 3.2174894, - 51.2146756 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "sidewalks", - "answer": 1, - "imagery": "osm", - "language": "en" - }, - "id": 113374077 - } - }, - { - "id": 113373022, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2185596, - 51.2100038 - ], - [ - 3.230419, - 51.2100038 - ], - [ - 3.230419, - 51.2131485 - ], - [ - 3.2185596, - 51.2131485 - ], - [ - 3.2185596, - 51.2100038 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 1, - "theme": "aed_brugge", - "answer": 14, - "create": 2, - "imagery": "HDM_HOT", - "language": "nl", - "add-image": 7, - "move:node/9223917538": "improve_accuracy" - }, - "id": 113373022 - } - }, - { - "id": 113368653, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7642102, - -34.6640938 - ], - [ - -58.5324473, - -34.6640938 - ], - [ - -58.5324473, - -34.6392679 - ], - [ - -58.7642102, - -34.6392679 - ], - [ - -58.7642102, - -34.6640938 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "answer": 11, - "imagery": "osm", - "language": "es" - }, - "id": 113368653 - } - }, - { - "id": 113367547, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8783306, - 50.7731883 - ], - [ - 4.2893237, - 50.7731883 - ], - [ - 4.2893237, - 50.789261 - ], - [ - 3.8783306, - 50.789261 - ], - [ - 3.8783306, - 50.7731883 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "grb", - "answer": 1, - "import": 2, - "imagery": "osm", - "language": "nl" - }, - "id": 113367547 - } - }, - { - "id": 113364948, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1797695, - 51.1910897 - ], - [ - 3.2177668, - 51.1910897 - ], - [ - 3.2177668, - 51.2013444 - ], - [ - 3.1797695, - 51.2013444 - ], - [ - 3.1797695, - 51.1910897 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "answer": 4, - "imagery": "osm", - "language": "nl" - }, - "id": 113364948 - } - }, - { - "id": 113364737, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4177076, - 46.9393474 - ], - [ - 7.4177076, - 46.9393474 - ], - [ - 7.4177076, - 46.9393474 - ], - [ - 7.4177076, - 46.9393474 - ], - [ - 7.4177076, - 46.9393474 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 3, - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 113364737 - } - }, - { - "id": 113360279, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4281942, - 46.951999 - ], - [ - 7.429485, - 46.951999 - ], - [ - 7.429485, - 46.953228 - ], - [ - 7.4281942, - 46.953228 - ], - [ - 7.4281942, - 46.951999 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 6, - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 113360279 - } - }, - { - "id": 113354339, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0106851, - 51.005699 - ], - [ - 4.0106851, - 51.005699 - ], - [ - 4.0106851, - 51.005699 - ], - [ - 4.0106851, - 51.005699 - ], - [ - 4.0106851, - 51.005699 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 4, - "create": 1, - "imagery": "osm", - "language": "en", - "add-image": 1 - }, - "id": 113354339 - } - }, - { - "id": 113353891, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.216794, - 51.2144849 - ], - [ - 3.2174567, - 51.2144849 - ], - [ - 3.2174567, - 51.2146271 - ], - [ - 3.216794, - 51.2146271 - ], - [ - 3.216794, - 51.2144849 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "grb", - "import": 3, - "imagery": "AGIVFlandersGRB", - "language": "nl" - }, - "id": 113353891 - } - }, - { - "id": 113353572, - "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.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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "answer": 1, - "create": 1, - "imagery": "osm", - "language": "en" - }, - "id": 113353572 - } - }, - { - "id": 113351309, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3499349, - 50.8533748 - ], - [ - 4.3499349, - 50.8533748 - ], - [ - 4.3499349, - 50.8533748 - ], - [ - 4.3499349, - 50.8533748 - ], - [ - 4.3499349, - 50.8533748 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 2, - "imagery": "osm", - "language": "en", - "add-image": 1 - }, - "id": 113351309 - } - }, - { - "id": 113351051, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.6106046, - 48.8341666 - ], - [ - 10.6558367, - 48.8341666 - ], - [ - 10.6558367, - 48.848085 - ], - [ - 10.6106046, - 48.848085 - ], - [ - 10.6106046, - 48.8341666 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 13, - "imagery": "osm", - "language": "de" - }, - "id": 113351051 - } - }, - { - "id": 113350305, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2192701, - 51.2156384 - ], - [ - 3.2197739, - 51.2156384 - ], - [ - 3.2197739, - 51.2164523 - ], - [ - 3.2192701, - 51.2164523 - ], - [ - 3.2192701, - 51.2156384 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "move": 13, - "theme": "grb", - "imagery": "AGIVFlandersGRB", - "language": "en", - "conflation": 4 - }, - "id": 113350305 - } - }, - { - "id": 113347810, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8604582, - 50.99566 - ], - [ - 2.8604582, - 50.99566 - ], - [ - 2.8604582, - 50.99566 - ], - [ - 2.8604582, - 50.99566 - ], - [ - 2.8604582, - 50.99566 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "CartoDB.Voyager", - "language": "en", - "add-image": 1 - }, - "id": 113347810 - } - }, - { - "id": 113347649, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2855174, - 41.6075347 - ], - [ - 2.2941506, - 41.6075347 - ], - [ - 2.2941506, - 41.6133433 - ], - [ - 2.2855174, - 41.6133433 - ], - [ - 2.2855174, - 41.6075347 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 3, - "imagery": "CartoDB.Voyager", - "language": "en", - "add-image": 3 - }, - "id": 113347649 - } - }, - { - "id": 113339240, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1775754, - 51.1128633 - ], - [ - 4.1775754, - 51.1128633 - ], - [ - 4.1775754, - 51.1128633 - ], - [ - 4.1775754, - 51.1128633 - ], - [ - 4.1775754, - 51.1128633 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "shops", - "answer": 3, - "create": 1, - "imagery": "osm", - "language": "en", - "add-image": 1 - }, - "id": 113339240 - } - }, - { - "id": 113337126, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5803687, - 53.2510803 - ], - [ - 6.5803687, - 53.2510803 - ], - [ - 6.5803687, - 53.2510803 - ], - [ - 6.5803687, - 53.2510803 - ], - [ - 6.5803687, - 53.2510803 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "answer": 2, - "create": 1, - "imagery": "CartoDB.Voyager", - "language": "en", - "add-image": 1 - }, - "id": 113337126 - } - }, - { - "id": 113337023, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2041788, - 51.182831 - ], - [ - 3.2041857, - 51.182831 - ], - [ - 3.2041857, - 51.1828523 - ], - [ - 3.2041788, - 51.1828523 - ], - [ - 3.2041788, - 51.182831 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 1, - "theme": "aed", - "imagery": "osm", - "language": "nl", - "move:node/8771441240": "improve_accuracy" - }, - "id": 113337023 - } - }, - { - "id": 113336834, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4316435, - 46.9458677 - ], - [ - 7.4469459, - 46.9458677 - ], - [ - 7.4469459, - 46.9607746 - ], - [ - 7.4316435, - 46.9607746 - ], - [ - 7.4316435, - 46.9458677 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 1, - "theme": "cyclofix", - "answer": 14, - "create": 3, - "imagery": "CartoDB.Voyager", - "language": "en", - "move:node/9221540197": "improve_accuracy" - }, - "id": 113336834 - } - }, - { - "id": 113335939, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2393978, - 41.4393645 - ], - [ - 2.2401582, - 41.4393645 - ], - [ - 2.2401582, - 41.4397848 - ], - [ - 2.2393978, - 41.4397848 - ], - [ - 2.2393978, - 41.4393645 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "answer": 9, - "create": 13, - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 113335939 - } - }, - { - "id": 113334874, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.148393, - 51.1531118 - ], - [ - 4.148393, - 51.1531118 - ], - [ - 4.148393, - 51.1531118 - ], - [ - 4.148393, - 51.1531118 - ], - [ - 4.148393, - 51.1531118 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "shops", - "answer": 2, - "create": 1, - "imagery": "osm", - "language": "en", - "add-image": 1 - }, - "id": 113334874 - } - }, - { - "id": 113331345, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4453056, - 46.9609191 - ], - [ - 7.4520359, - 46.9609191 - ], - [ - 7.4520359, - 46.9650122 - ], - [ - 7.4453056, - 46.9650122 - ], - [ - 7.4453056, - 46.9609191 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 14, - "create": 1, - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 113331345 - } - }, - { - "id": 113329273, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2254811, - 51.2084386 - ], - [ - 3.2254811, - 51.2084386 - ], - [ - 3.2254811, - 51.2084386 - ], - [ - 3.2254811, - 51.2084386 - ], - [ - 3.2254811, - 51.2084386 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "answer": 7, - "create": 1, - "imagery": "HDM_HOT", - "language": "nl", - "add-image": 1 - }, - "id": 113329273 - } - }, - { - "id": 113329108, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3413453, - 44.380366 - ], - [ - 11.3413453, - 44.380366 - ], - [ - 11.3413453, - 44.380366 - ], - [ - 11.3413453, - 44.380366 - ], - [ - 11.3413453, - 44.380366 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 5, - "create": 1, - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 113329108 - } - }, - { - "id": 113329026, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.6680694, - 52.103628 - ], - [ - 11.6761025, - 52.103628 - ], - [ - 11.6761025, - 52.1147279 - ], - [ - 11.6680694, - 52.1147279 - ], - [ - 11.6680694, - 52.103628 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 83, - "imagery": "osm", - "language": "de" - }, - "id": 113329026 - } - }, - { - "id": 113328646, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.6611054, - 52.1117208 - ], - [ - 11.6695121, - 52.1117208 - ], - [ - 11.6695121, - 52.1177406 - ], - [ - 11.6611054, - 52.1177406 - ], - [ - 11.6611054, - 52.1117208 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 11, - "imagery": "osm", - "language": "de" - }, - "id": 113328646 - } - }, - { - "id": 113328015, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1954819, - 51.2042282 - ], - [ - 3.2181358, - 51.2042282 - ], - [ - 3.2181358, - 51.256839 - ], - [ - 3.1954819, - 51.256839 - ], - [ - 3.1954819, - 51.2042282 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 2, - "theme": "aed", - "imagery": "osm", - "language": "nl", - "move:node/8789200971": "improve_accuracy", - "move:node/8823682990": "improve_accuracy" - }, - "id": 113328015 - } - }, - { - "id": 113305401, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.216693, - 51.2146968 - ], - [ - 3.217372, - 51.2146968 - ], - [ - 3.217372, - 51.2152696 - ], - [ - 3.216693, - 51.2152696 - ], - [ - 3.216693, - 51.2146968 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "move": 48, - "theme": "grb", - "import": 1, - "imagery": "AGIVFlandersGRB", - "language": "nl", - "conflation": 10 - }, - "id": 113305401 - } - }, - { - "id": 113302704, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.142372, - 48.6790244 - ], - [ - 2.3736781, - 48.6790244 - ], - [ - 2.3736781, - 48.8039911 - ], - [ - 2.142372, - 48.8039911 - ], - [ - 2.142372, - 48.6790244 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "climbing", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 113302704 - } - }, - { - "id": 113300229, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.956298, - 48.3955135 - ], - [ - 10.0077753, - 48.3955135 - ], - [ - 10.0077753, - 48.4246463 - ], - [ - 9.956298, - 48.4246463 - ], - [ - 9.956298, - 48.3955135 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 49, - "imagery": "osm", - "language": "en" - }, - "id": 113300229 - } - }, - { - "id": 113291887, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.1995771, - 44.419088 - ], - [ - 12.1995771, - 44.419088 - ], - [ - 12.1995771, - 44.419088 - ], - [ - 12.1995771, - 44.419088 - ], - [ - 12.1995771, - 44.419088 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "answer": 4, - "create": 1, - "imagery": "osm", - "language": "en" - }, - "id": 113291887 - } - }, - { - "id": 113284886, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4294065, - 46.9520501 - ], - [ - 7.4300408, - 46.9520501 - ], - [ - 7.4300408, - 46.9547718 - ], - [ - 7.4294065, - 46.9547718 - ], - [ - 7.4294065, - 46.9520501 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 1, - "theme": "cyclofix", - "answer": 18, - "create": 2, - "imagery": "CartoDB.Voyager", - "language": "en", - "move:node/9218593524": "improve_accuracy" - }, - "id": 113284886 - } - }, - { - "id": 113284013, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3023895, - 50.8330165 - ], - [ - 4.3032314, - 50.8330165 - ], - [ - 4.3032314, - 50.8348789 - ], - [ - 4.3023895, - 50.8348789 - ], - [ - 4.3023895, - 50.8330165 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "https://gist.githubusercontent.com/joostschouppe/e1190515ff5f8847beec6eb9a1b788bb/raw/aa9d3ed1959529eb3fbefe1857cc8616f53b7ccf/temp.json", - "answer": 1, - "imagery": "osm", - "language": "nl" - }, - "id": 113284013 - } - }, - { - "id": 113270690, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4298432, - 46.947855 - ], - [ - 7.4375363, - 46.947855 - ], - [ - 7.4375363, - 46.9519138 - ], - [ - 7.4298432, - 46.9519138 - ], - [ - 7.4298432, - 46.947855 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 5, - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 113270690 - } - }, - { - "id": 113259034, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8641211, - 51.0331532 - ], - [ - 2.8641211, - 51.0331532 - ], - [ - 2.8641211, - 51.0331532 - ], - [ - 2.8641211, - 51.0331532 - ], - [ - 2.8641211, - 51.0331532 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artwork", - "imagery": "osm", - "language": "nl", - "add-image": 1 - }, - "id": 113259034 - } - }, - { - "id": 113259014, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8595969, - 51.0339334 - ], - [ - 2.8595969, - 51.0339334 - ], - [ - 2.8595969, - 51.0339334 - ], - [ - 2.8595969, - 51.0339334 - ], - [ - 2.8595969, - 51.0339334 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "add-image": 1 - }, - "id": 113259014 - } - }, - { - "id": 113255395, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -9.1048793, - 53.2627567 - ], - [ - -9.0978532, - 53.2627567 - ], - [ - -9.0978532, - 53.2710607 - ], - [ - -9.1048793, - 53.2710607 - ], - [ - -9.1048793, - 53.2627567 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "answer": 3, - "imagery": "osm", - "language": "en" - }, - "id": 113255395 - } - }, - { - "id": 113251293, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 30.6013954, - 50.4284077 - ], - [ - 30.6013954, - 50.4284077 - ], - [ - 30.6013954, - 50.4284077 - ], - [ - 30.6013954, - 50.4284077 - ], - [ - 30.6013954, - 50.4284077 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cafes_and_pubs", - "imagery": "osm", - "deletion": 1, - "language": "en", - "deletion:node/2442953886": "disused" - }, - "id": 113251293 - } - }, - { - "id": 113250793, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 30.5944068, - 50.4282522 - ], - [ - 30.6015029, - 50.4282522 - ], - [ - 30.6015029, - 50.4299298 - ], - [ - 30.5944068, - 50.4299298 - ], - [ - 30.5944068, - 50.4282522 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 4, - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 113250793 - } - }, - { - "id": 113247252, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.615215, - 50.8515194 - ], - [ - 3.615215, - 50.8515194 - ], - [ - 3.615215, - 50.8515194 - ], - [ - 3.615215, - 50.8515194 - ], - [ - 3.615215, - 50.8515194 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "answer": 4, - "imagery": "osm", - "language": "en" - }, - "id": 113247252 - } - }, - { - "id": 113246649, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1863126, - 50.8154877 - ], - [ - 5.1863167, - 50.8154877 - ], - [ - 5.1863167, - 50.8155021 - ], - [ - 5.1863126, - 50.8155021 - ], - [ - 5.1863126, - 50.8154877 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "move": 1, - "path": "mc/develop/", - "theme": "charging_stations", - "answer": 6, - "create": 1, - "imagery": "CartoDB.Voyager", - "language": "nl", - "move:node/9216683715": "improve_accuracy" - }, - "id": 113246649 - } - }, - { - "id": 113242289, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1853377, - 50.814548 - ], - [ - 5.1853377, - 50.814548 - ], - [ - 5.1853377, - 50.814548 - ], - [ - 5.1853377, - 50.814548 - ], - [ - 5.1853377, - 50.814548 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "shops", - "answer": 3, - "create": 1, - "imagery": "osm", - "language": "en" - }, - "id": 113242289 - } - }, - { - "id": 113241377, - "type": "Feature", - "geometry": null, - "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": "Not reported", - "imagery_used": "Not reported", - "date": "2021-11-01T15:05:15Z", - "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": "personal", - "imagery": "osm", - "language": "en", - "add-image": 1 - }, - "id": 113241377 - } - }, - { - "id": 113241348, - "type": "Feature", - "geometry": null, - "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": "Not reported", - "imagery_used": "Not reported", - "date": "2021-11-01T15:04:55Z", - "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", - "move": 1, - "path": "mc/develop/", - "theme": "personal", - "imagery": "osm", - "language": "en", - "move:node/-2": "improve_accuracy" - }, - "id": 113241348 - } - }, - { - "id": 113241334, - "type": "Feature", - "geometry": null, - "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": "Not reported", - "imagery_used": "Not reported", - "date": "2021-11-01T15:04: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": "personal", - "answer": 1, - "imagery": "osm", - "language": "en" - }, - "id": 113241334 - } - }, - { - "id": 113241037, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.186322, - 50.8154538 - ], - [ - 5.1863247, - 50.8154538 - ], - [ - 5.1863247, - 50.8154818 - ], - [ - 5.186322, - 50.8154818 - ], - [ - 5.186322, - 50.8154538 - ] - ] - ] - }, - "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": 2, - "modify": 2, - "delete": 0, - "area": 7.5600000014029e-11, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "personal", - "answer": 7, - "create": 3, - "imagery": "osm", - "language": "en", - "add-image": 1 - }, - "id": 113241037 - } - }, - { - "id": 113238301, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.9102199, - 53.5662632 - ], - [ - 9.9102199, - 53.5662632 - ], - [ - 9.9102199, - 53.5662632 - ], - [ - 9.9102199, - 53.5662632 - ], - [ - 9.9102199, - 53.5662632 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "postboxes", - "imagery": "CartoDB.Voyager", - "language": "en", - "add-image": 4 - }, - "id": 113238301 - } - }, - { - "id": 113237148, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6454153, - 50.7714656 - ], - [ - 3.6454297, - 50.7714656 - ], - [ - 3.6454297, - 50.7714869 - ], - [ - 3.6454153, - 50.7714869 - ], - [ - 3.6454153, - 50.7714656 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 1, - "theme": "charging_stations", - "answer": 8, - "create": 1, - "imagery": "AGIV10cm", - "language": "en", - "move:node/9216279358": "improve_accuracy" - }, - "id": 113237148 - } - }, - { - "id": 113236656, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.6818637, - -34.6633769 - ], - [ - -58.6526531, - -34.6633769 - ], - [ - -58.6526531, - -34.655291 - ], - [ - -58.6818637, - -34.655291 - ], - [ - -58.6818637, - -34.6633769 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "answer": 2, - "imagery": "osm", - "language": "es" - }, - "id": 113236656 - } - }, - { - "id": 113234111, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.0076342, - 41.4572347 - ], - [ - 2.218046, - 41.4572347 - ], - [ - 2.218046, - 41.5701612 - ], - [ - 2.0076342, - 41.5701612 - ], - [ - 2.0076342, - 41.4572347 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 2, - "imagery": "CartoDB.Voyager", - "language": "en", - "add-image": 4 - }, - "id": 113234111 - } - }, - { - "id": 113227669, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 114.1728093, - 22.2773452 - ], - [ - 114.1728093, - 22.2773452 - ], - [ - 114.1728093, - 22.2773452 - ], - [ - 114.1728093, - 22.2773452 - ], - [ - 114.1728093, - 22.2773452 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "aed", - "answer": 1, - "imagery": "osm", - "language": "en" - }, - "id": 113227669 - } - }, - { - "id": 113225986, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.9033028, - 53.564361 - ], - [ - 9.9163121, - 53.564361 - ], - [ - 9.9163121, - 53.5777046 - ], - [ - 9.9033028, - 53.5777046 - ], - [ - 9.9033028, - 53.564361 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "waste_basket", - "answer": 4, - "create": 5, - "imagery": "osm", - "language": "en" - }, - "id": 113225986 - } - }, - { - "id": 113224286, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 114.1728093, - 22.2773452 - ], - [ - 114.1728093, - 22.2773452 - ], - [ - 114.1728093, - 22.2773452 - ], - [ - 114.1728093, - 22.2773452 - ], - [ - 114.1728093, - 22.2773452 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "aed", - "answer": 3, - "imagery": "osm", - "language": "en", - "add-image": 1 - }, - "id": 113224286 - } - }, - { - "id": 113220970, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.650008, - 52.1132121 - ], - [ - 11.6841875, - 52.1132121 - ], - [ - 11.6841875, - 52.1419745 - ], - [ - 11.650008, - 52.1419745 - ], - [ - 11.650008, - 52.1132121 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 519, - "imagery": "osm", - "language": "de" - }, - "id": 113220970 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2021-12.json b/Docs/Tools/stats/stats.2021-12.json deleted file mode 100644 index 14a167287d..0000000000 --- a/Docs/Tools/stats/stats.2021-12.json +++ /dev/null @@ -1,30917 +0,0 @@ -{ - "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 deleted file mode 100644 index e71131f5e7..0000000000 --- a/Docs/Tools/stats/stats.2021-2.json +++ /dev/null @@ -1,11976 +0,0 @@ -{ - "features": [ - { - "id": 100158849, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3388758, - 51.1265656 - ], - [ - 3.3693851, - 51.1265656 - ], - [ - 3.3693851, - 51.1323359 - ], - [ - 3.3388758, - 51.1323359 - ], - [ - 3.3388758, - 51.1265656 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "imagery": "osm", - "language": "nl" - }, - "id": 100158849 - } - }, - { - "id": 100158594, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198273, - 51.1821166 - ], - [ - 3.2199931, - 51.1821166 - ], - [ - 3.2199931, - 51.1821841 - ], - [ - 3.2198273, - 51.1821841 - ], - [ - 3.2198273, - 51.1821166 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "allotments", - "imagery": "osm", - "language": "en" - }, - "id": 100158594 - } - }, - { - "id": 100157822, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4733506, - 51.0203947 - ], - [ - 4.5483264, - 51.0203947 - ], - [ - 4.5483264, - 51.0338428 - ], - [ - 4.4733506, - 51.0338428 - ], - [ - 4.4733506, - 51.0203947 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", - "imagery": "osm", - "language": "nl" - }, - "id": 100157822 - } - }, - { - "id": 100153982, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3451778, - 50.8755003 - ], - [ - 4.3455295, - 50.8755003 - ], - [ - 4.3455295, - 50.8757309 - ], - [ - 4.3451778, - 50.8757309 - ], - [ - 4.3451778, - 50.8755003 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "allotments", - "imagery": "osm", - "language": "en" - }, - "id": 100153982 - } - }, - { - "id": 100153839, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3451778, - 50.8755003 - ], - [ - 4.3455295, - 50.8755003 - ], - [ - 4.3455295, - 50.8757309 - ], - [ - 4.3451778, - 50.8757309 - ], - [ - 4.3451778, - 50.8755003 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "allotments", - "imagery": "osm", - "language": "en" - }, - "id": 100153839 - } - }, - { - "id": 100152747, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.2197793, - 50.0550399 - ], - [ - 10.2197793, - 50.0550399 - ], - [ - 10.2197793, - 50.0550399 - ], - [ - 10.2197793, - 50.0550399 - ], - [ - 10.2197793, - 50.0550399 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "ghostbikes", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100152747 - } - }, - { - "id": 100152683, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.1656045, - 50.0599135 - ], - [ - 10.1656546, - 50.0599135 - ], - [ - 10.1656546, - 50.0599464 - ], - [ - 10.1656045, - 50.0599464 - ], - [ - 10.1656045, - 50.0599135 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100152683 - } - }, - { - "id": 100151338, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2995657, - 48.7356271 - ], - [ - 9.3017826, - 48.7356271 - ], - [ - 9.3017826, - 48.7394008 - ], - [ - 9.2995657, - 48.7394008 - ], - [ - 9.2995657, - 48.7356271 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 100151338 - } - }, - { - "id": 100149067, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1369903, - 51.2911958 - ], - [ - 3.1370454, - 51.2911958 - ], - [ - 3.1370454, - 51.2912516 - ], - [ - 3.1369903, - 51.2912516 - ], - [ - 3.1369903, - 51.2911958 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100149067 - } - }, - { - "id": 100141367, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1780986, - 48.7380722 - ], - [ - 9.3078661, - 48.7380722 - ], - [ - 9.3078661, - 48.7711442 - ], - [ - 9.1780986, - 48.7711442 - ], - [ - 9.1780986, - 48.7380722 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100141367 - } - }, - { - "id": 100140075, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.2871762, - 52.6322618 - ], - [ - 13.2919707, - 52.6322618 - ], - [ - 13.2919707, - 52.6339943 - ], - [ - 13.2871762, - 52.6339943 - ], - [ - 13.2871762, - 52.6322618 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100140075 - } - }, - { - "id": 100126368, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1522336, - 45.1799458 - ], - [ - 9.1522336, - 45.1799458 - ], - [ - 9.1522336, - 45.1799458 - ], - [ - 9.1522336, - 45.1799458 - ], - [ - 9.1522336, - 45.1799458 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100126368 - } - }, - { - "id": 100126236, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1884112, - 45.1594003 - ], - [ - 9.1884112, - 45.1594003 - ], - [ - 9.1884112, - 45.1594003 - ], - [ - 9.1884112, - 45.1594003 - ], - [ - 9.1884112, - 45.1594003 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 100126236 - } - }, - { - "id": 100117757, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3460637, - 50.8181966 - ], - [ - 4.3460637, - 50.8181966 - ], - [ - 4.3460637, - 50.8181966 - ], - [ - 4.3460637, - 50.8181966 - ], - [ - 4.3460637, - 50.8181966 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "ghostbikes", - "imagery": "CartoDB.Positron", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 100117757 - } - }, - { - "id": 100117566, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6661284, - -33.4410426 - ], - [ - -70.6661284, - -33.4410426 - ], - [ - -70.6661284, - -33.4410426 - ], - [ - -70.6661284, - -33.4410426 - ], - [ - -70.6661284, - -33.4410426 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 100117566 - } - }, - { - "id": 100116843, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6662356, - -33.4405524 - ], - [ - -70.6662356, - -33.4405524 - ], - [ - -70.6662356, - -33.4405524 - ], - [ - -70.6662356, - -33.4405524 - ], - [ - -70.6662356, - -33.4405524 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 100116843 - } - }, - { - "id": 100116383, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5483264, - 51.0209132 - ], - [ - 4.5483264, - 51.0209132 - ], - [ - 4.5483264, - 51.0209132 - ], - [ - 4.5483264, - 51.0209132 - ], - [ - 4.5483264, - 51.0209132 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", - "imagery": "osm", - "language": "nl" - }, - "id": 100116383 - } - }, - { - "id": 100113908, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2324803, - 51.1870806 - ], - [ - 3.2324803, - 51.1870806 - ], - [ - 3.2324803, - 51.1870806 - ], - [ - 3.2324803, - 51.1870806 - ], - [ - 3.2324803, - 51.1870806 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100113908 - } - }, - { - "id": 100104366, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.10732, - 51.0191728 - ], - [ - 4.10732, - 51.0191728 - ], - [ - 4.10732, - 51.0191728 - ], - [ - 4.10732, - 51.0191728 - ], - [ - 4.10732, - 51.0191728 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 100104366 - } - }, - { - "id": 100104020, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.9626046, - 51.5099059 - ], - [ - 6.9627561, - 51.5099059 - ], - [ - 6.9627561, - 51.5102522 - ], - [ - 6.9626046, - 51.5102522 - ], - [ - 6.9626046, - 51.5099059 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 100104020 - } - }, - { - "id": 100103957, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6679583, - -33.4403528 - ], - [ - -70.6664268, - -33.4403528 - ], - [ - -70.6664268, - -33.4401056 - ], - [ - -70.6679583, - -33.4401056 - ], - [ - -70.6679583, - -33.4403528 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 100103957 - } - }, - { - "id": 100102164, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.3120827, - 52.0952965 - ], - [ - 6.3120827, - 52.0952965 - ], - [ - 6.3120827, - 52.0952965 - ], - [ - 6.3120827, - 52.0952965 - ], - [ - 6.3120827, - 52.0952965 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 100102164 - } - }, - { - "id": 100101616, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.0831776, - 53.0514086 - ], - [ - 6.0831776, - 53.0514086 - ], - [ - 6.0831776, - 53.0514086 - ], - [ - 6.0831776, - 53.0514086 - ], - [ - 6.0831776, - 53.0514086 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "en", - "theme-creator": "Peter Elderson" - }, - "id": 100101616 - } - }, - { - "id": 100081609, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.6376345, - -36.9080008 - ], - [ - 174.6376345, - -36.9080008 - ], - [ - 174.6376345, - -36.9080008 - ], - [ - 174.6376345, - -36.9080008 - ], - [ - 174.6376345, - -36.9080008 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 100081609 - } - }, - { - "id": 100077413, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -78.4966095, - 38.0292344 - ], - [ - -78.4966095, - 38.0292344 - ], - [ - -78.4966095, - 38.0292344 - ], - [ - -78.4966095, - 38.0292344 - ], - [ - -78.4966095, - 38.0292344 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100077413 - } - }, - { - "id": 100076620, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -78.4964685, - 38.0293527 - ], - [ - -78.4963536, - 38.0293527 - ], - [ - -78.4963536, - 38.0296752 - ], - [ - -78.4964685, - 38.0296752 - ], - [ - -78.4964685, - 38.0293527 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 100076620 - } - }, - { - "id": 100074776, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7454996, - 50.8815857 - ], - [ - 4.746999, - 50.8815857 - ], - [ - 4.746999, - 50.8825866 - ], - [ - 4.7454996, - 50.8825866 - ], - [ - 4.7454996, - 50.8815857 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "AGIV", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 100074776 - } - }, - { - "id": 100073938, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.3107016, - 48.8996671 - ], - [ - 2.3128983, - 48.8996671 - ], - [ - 2.3128983, - 48.905295 - ], - [ - 2.3107016, - 48.905295 - ], - [ - 2.3107016, - 48.8996671 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 100073938 - } - }, - { - "id": 100070322, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -43.9619181, - -19.8680519 - ], - [ - -43.9531258, - -19.8680519 - ], - [ - -43.9531258, - -19.8662483 - ], - [ - -43.9619181, - -19.8662483 - ], - [ - -43.9619181, - -19.8680519 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 100070322 - } - }, - { - "id": 100069116, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2785507, - 51.0602815 - ], - [ - 4.2785507, - 51.0602815 - ], - [ - 4.2785507, - 51.0602815 - ], - [ - 4.2785507, - 51.0602815 - ], - [ - 4.2785507, - 51.0602815 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 100069116 - } - }, - { - "id": 100060787, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.5900031, - 51.9658611 - ], - [ - 7.5908415, - 51.9658611 - ], - [ - 7.5908415, - 51.9665624 - ], - [ - 7.5900031, - 51.9665624 - ], - [ - 7.5900031, - 51.9658611 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 100060787 - } - }, - { - "id": 100058257, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7541618, - 50.8881994 - ], - [ - 4.7541618, - 50.8881994 - ], - [ - 4.7541618, - 50.8881994 - ], - [ - 4.7541618, - 50.8881994 - ], - [ - 4.7541618, - 50.8881994 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fritures", - "imagery": "osm", - "language": "nl" - }, - "id": 100058257 - } - }, - { - "id": 100057814, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.5933867, - 51.9655788 - ], - [ - 7.5933867, - 51.9655788 - ], - [ - 7.5933867, - 51.9655788 - ], - [ - 7.5933867, - 51.9655788 - ], - [ - 7.5933867, - 51.9655788 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 100057814 - } - }, - { - "id": 100057703, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.0831776, - 53.0514086 - ], - [ - 6.0831776, - 53.0514086 - ], - [ - 6.0831776, - 53.0514086 - ], - [ - 6.0831776, - 53.0514086 - ], - [ - 6.0831776, - 53.0514086 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 100057703 - } - }, - { - "id": 100054794, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8588967, - 51.1406772 - ], - [ - 4.9189847, - 51.1406772 - ], - [ - 4.9189847, - 51.1866246 - ], - [ - 4.8588967, - 51.1866246 - ], - [ - 4.8588967, - 51.1406772 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 100054794 - } - }, - { - "id": 100053936, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8420487, - 50.8816233 - ], - [ - 4.8420487, - 50.8816233 - ], - [ - 4.8420487, - 50.8816233 - ], - [ - 4.8420487, - 50.8816233 - ], - [ - 4.8420487, - 50.8816233 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 100053936 - } - }, - { - "id": 100053568, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8579108, - 51.141004 - ], - [ - 4.9033785, - 51.141004 - ], - [ - 4.9033785, - 51.1678477 - ], - [ - 4.8579108, - 51.1678477 - ], - [ - 4.8579108, - 51.141004 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 100053568 - } - }, - { - "id": 100053202, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.3277199, - 49.7047654 - ], - [ - 7.3277199, - 49.7047654 - ], - [ - 7.3277199, - 49.7047654 - ], - [ - 7.3277199, - 49.7047654 - ], - [ - 7.3277199, - 49.7047654 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100053202 - } - }, - { - "id": 100052822, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8415804, - 50.8810941 - ], - [ - 4.8415804, - 50.8810941 - ], - [ - 4.8415804, - 50.8810941 - ], - [ - 4.8415804, - 50.8810941 - ], - [ - 4.8415804, - 50.8810941 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 100052822 - } - }, - { - "id": 100052686, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3337069, - 50.9213363 - ], - [ - 3.3337069, - 50.9213363 - ], - [ - 3.3337069, - 50.9213363 - ], - [ - 3.3337069, - 50.9213363 - ], - [ - 3.3337069, - 50.9213363 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 100052686 - } - }, - { - "id": 100052329, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4676368, - 50.7789634 - ], - [ - 5.4676368, - 50.7789634 - ], - [ - 5.4676368, - 50.7789634 - ], - [ - 5.4676368, - 50.7789634 - ], - [ - 5.4676368, - 50.7789634 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 100052329 - } - }, - { - "id": 100050884, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6862591, - 50.9186731 - ], - [ - 3.6862591, - 50.9186731 - ], - [ - 3.6862591, - 50.9186731 - ], - [ - 3.6862591, - 50.9186731 - ], - [ - 3.6862591, - 50.9186731 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fritures", - "imagery": "osm", - "language": "nl" - }, - "id": 100050884 - } - }, - { - "id": 100035223, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.6619207, - 40.5548316 - ], - [ - -3.6619207, - 40.5548316 - ], - [ - -3.6619207, - 40.5548316 - ], - [ - -3.6619207, - 40.5548316 - ], - [ - -3.6619207, - 40.5548316 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "surveillance", - "imagery": "Stadia.AlidadeSmoothDark", - "language": "en" - }, - "id": 100035223 - } - }, - { - "id": 100005066, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.3093426, - 47.5717359 - ], - [ - -122.309342, - 47.5717359 - ], - [ - -122.309342, - 47.5717359 - ], - [ - -122.3093426, - 47.5717359 - ], - [ - -122.3093426, - 47.5717359 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "EsriWorldImagery", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 100005066 - } - }, - { - "id": 100005004, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.3103645, - 47.5737862 - ], - [ - -122.310364, - 47.5737862 - ], - [ - -122.310364, - 47.5737862 - ], - [ - -122.3103645, - 47.5737862 - ], - [ - -122.3103645, - 47.5737862 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100005004 - } - }, - { - "id": 100004851, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.3277379, - 47.5689129 - ], - [ - -122.284814, - 47.5689129 - ], - [ - -122.284814, - 47.6393933 - ], - [ - -122.3277379, - 47.6393933 - ], - [ - -122.3277379, - 47.5689129 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100004851 - } - }, - { - "id": 100001332, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.9871108, - -34.592627 - ], - [ - -70.9871108, - -34.592627 - ], - [ - -70.9871108, - -34.592627 - ], - [ - -70.9871108, - -34.592627 - ], - [ - -70.9871108, - -34.592627 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100001332 - } - }, - { - "id": 99995841, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5834972, - 51.128417 - ], - [ - 4.5834972, - 51.128417 - ], - [ - 4.5834972, - 51.128417 - ], - [ - 4.5834972, - 51.128417 - ], - [ - 4.5834972, - 51.128417 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fritures", - "imagery": "osm", - "language": "nl" - }, - "id": 99995841 - } - }, - { - "id": 99990530, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2663029, - 50.6493925 - ], - [ - 4.2663029, - 50.6493925 - ], - [ - 4.2663029, - 50.6493925 - ], - [ - 4.2663029, - 50.6493925 - ], - [ - 4.2663029, - 50.6493925 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "maps", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 99990530 - } - }, - { - "id": 99976196, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1585628, - 51.1181747 - ], - [ - 4.1585628, - 51.1181747 - ], - [ - 4.1585628, - 51.1181747 - ], - [ - 4.1585628, - 51.1181747 - ], - [ - 4.1585628, - 51.1181747 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 99976196 - } - }, - { - "id": 99966566, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2512738, - 50.7623324 - ], - [ - 4.2710333, - 50.7623324 - ], - [ - 4.2710333, - 50.7770447 - ], - [ - 4.2512738, - 50.7770447 - ], - [ - 4.2512738, - 50.7623324 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 99966566 - } - }, - { - "id": 99953165, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3565851, - 50.3915335 - ], - [ - 4.3993105, - 50.3915335 - ], - [ - 4.3993105, - 50.7874187 - ], - [ - 4.3565851, - 50.7874187 - ], - [ - 4.3565851, - 50.3915335 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "climbing", - "language": "de", - "theme-creator": "Christian Neumann " - }, - "id": 99953165 - } - }, - { - "id": 99936680, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7093556, - 51.025956 - ], - [ - 3.713482, - 51.025956 - ], - [ - 3.713482, - 51.0730919 - ], - [ - 3.7093556, - 51.0730919 - ], - [ - 3.7093556, - 51.025956 - ] - ] - ] - }, - "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, - "metadata": { - "host": "192.168.1.191:1234", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 99936680 - } - }, - { - "id": 99924541, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3311382, - 44.5064686 - ], - [ - 11.3311382, - 44.5064686 - ], - [ - 11.3311382, - 44.5064686 - ], - [ - 11.3311382, - 44.5064686 - ], - [ - 11.3311382, - 44.5064686 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 99924541 - } - }, - { - "id": 99914037, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.2987561, - 44.4912213 - ], - [ - 11.2987561, - 44.4912213 - ], - [ - 11.2987561, - 44.4912213 - ], - [ - 11.2987561, - 44.4912213 - ], - [ - 11.2987561, - 44.4912213 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 99914037 - } - }, - { - "id": 99910020, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.304569, - 44.4936399 - ], - [ - 11.3699374, - 44.4936399 - ], - [ - 11.3699374, - 44.5319522 - ], - [ - 11.304569, - 44.5319522 - ], - [ - 11.304569, - 44.4936399 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 99910020 - } - }, - { - "id": 99855005, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.7989668, - 51.2352485 - ], - [ - 6.7989668, - 51.2352485 - ], - [ - 6.7989668, - 51.2352485 - ], - [ - 6.7989668, - 51.2352485 - ], - [ - 6.7989668, - 51.2352485 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 99855005 - } - }, - { - "id": 99835912, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3876739, - 50.814662 - ], - [ - 4.3876739, - 50.814662 - ], - [ - 4.3876739, - 50.814662 - ], - [ - 4.3876739, - 50.814662 - ], - [ - 4.3876739, - 50.814662 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "fritures", - "imagery": "osm", - "language": "fr" - }, - "id": 99835912 - } - }, - { - "id": 99832025, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0417253, - 48.5106315 - ], - [ - 9.0417253, - 48.5106315 - ], - [ - 9.0417253, - 48.5106315 - ], - [ - 9.0417253, - 48.5106315 - ], - [ - 9.0417253, - 48.5106315 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "climbing", - "language": "de", - "theme-creator": "Christian Neumann " - }, - "id": 99832025 - } - }, - { - "id": 99820220, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7042041, - 51.0502646 - ], - [ - 3.7050874, - 51.0502646 - ], - [ - 3.7050874, - 51.0508656 - ], - [ - 3.7042041, - 51.0508656 - ], - [ - 3.7042041, - 51.0502646 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "buurtnatuur", - "imagery": "osm", - "language": "nl", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 99820220 - } - }, - { - "id": 99779479, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.3557941, - 47.6522841 - ], - [ - -122.355794, - 47.6522841 - ], - [ - -122.355794, - 47.6522841 - ], - [ - -122.3557941, - 47.6522841 - ], - [ - -122.3557941, - 47.6522841 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "Stamen.Watercolor", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 99779479 - } - }, - { - "id": 99778046, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -89.3968369, - 43.0758836 - ], - [ - -89.393625, - 43.0758836 - ], - [ - -89.393625, - 43.0759208 - ], - [ - -89.3968369, - 43.0759208 - ], - [ - -89.3968369, - 43.0758836 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "surveillance", - "imagery": "Stadia.AlidadeSmoothDark", - "language": "en" - }, - "id": 99778046 - } - }, - { - "id": 99771721, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4931266, - 51.0240137 - ], - [ - 4.4931266, - 51.0240137 - ], - [ - 4.4931266, - 51.0240137 - ], - [ - 4.4931266, - 51.0240137 - ], - [ - 4.4931266, - 51.0240137 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "climbing", - "imagery": "osm", - "language": "nl", - "theme-creator": "Christian Neumann " - }, - "id": 99771721 - } - }, - { - "id": 99770205, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6100709, - 51.9644565 - ], - [ - 4.6100709, - 51.9644565 - ], - [ - 4.6100709, - 51.9644565 - ], - [ - 4.6100709, - 51.9644565 - ], - [ - 4.6100709, - 51.9644565 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 99770205 - } - }, - { - "id": 99767714, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5483264, - 51.0209132 - ], - [ - 4.5483264, - 51.0209132 - ], - [ - 4.5483264, - 51.0209132 - ], - [ - 4.5483264, - 51.0209132 - ], - [ - 4.5483264, - 51.0209132 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "geveltuintjes", - "imagery": "osm", - "language": "nl" - }, - "id": 99767714 - } - }, - { - "id": 99766646, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.5790945, - -33.5983521 - ], - [ - -70.56949, - -33.5983521 - ], - [ - -70.56949, - -33.5904447 - ], - [ - -70.5790945, - -33.5904447 - ], - [ - -70.5790945, - -33.5983521 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 99766646 - } - }, - { - "id": 99764594, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4784087, - 51.0338428 - ], - [ - 4.4784087, - 51.0338428 - ], - [ - 4.4784087, - 51.0338428 - ], - [ - 4.4784087, - 51.0338428 - ], - [ - 4.4784087, - 51.0338428 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "geveltuintjes", - "imagery": "osm", - "language": "nl" - }, - "id": 99764594 - } - }, - { - "id": 99760617, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -78.4683707, - 38.0246363 - ], - [ - -78.4683707, - 38.0246363 - ], - [ - -78.4683707, - 38.0246363 - ], - [ - -78.4683707, - 38.0246363 - ], - [ - -78.4683707, - 38.0246363 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 99760617 - } - }, - { - "id": 99759346, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3459252, - 44.5016229 - ], - [ - 11.3459252, - 44.5016229 - ], - [ - 11.3459252, - 44.5016229 - ], - [ - 11.3459252, - 44.5016229 - ], - [ - 11.3459252, - 44.5016229 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 99759346 - } - }, - { - "id": 99757412, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.7684019, - -33.4860963 - ], - [ - -70.7681582, - -33.4860963 - ], - [ - -70.7681582, - -33.4854396 - ], - [ - -70.7684019, - -33.4854396 - ], - [ - -70.7684019, - -33.4860963 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 99757412 - } - }, - { - "id": 99738539, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5968305, - 50.6004888 - ], - [ - 5.6284744, - 50.6004888 - ], - [ - 5.6284744, - 50.6067056 - ], - [ - 5.5968305, - 50.6067056 - ], - [ - 5.5968305, - 50.6004888 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "imagery": "osm", - "language": "nl" - }, - "id": 99738539 - } - }, - { - "id": 99736106, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6039661, - 50.5217799 - ], - [ - 5.6039661, - 50.5217799 - ], - [ - 5.6039661, - 50.5217799 - ], - [ - 5.6039661, - 50.5217799 - ], - [ - 5.6039661, - 50.5217799 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 99736106 - } - }, - { - "id": 99726454, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.232254, - 50.0042881 - ], - [ - 8.2323056, - 50.0042881 - ], - [ - 8.2323056, - 50.0043238 - ], - [ - 8.232254, - 50.0043238 - ], - [ - 8.232254, - 50.0042881 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 99726454 - } - }, - { - "id": 99723129, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8973677, - 52.0601757 - ], - [ - 4.9227108, - 52.0601757 - ], - [ - 4.9227108, - 52.0939944 - ], - [ - 4.8973677, - 52.0939944 - ], - [ - 4.8973677, - 52.0601757 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 99723129 - } - }, - { - "id": 99697887, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4834706, - 51.1263994 - ], - [ - 4.4834706, - 51.1263994 - ], - [ - 4.4834706, - 51.1263994 - ], - [ - 4.4834706, - 51.1263994 - ], - [ - 4.4834706, - 51.1263994 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 99697887 - } - }, - { - "id": 99676146, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198444, - 51.2156765 - ], - [ - 3.2198444, - 51.2156765 - ], - [ - 3.2198444, - 51.2156765 - ], - [ - 3.2198444, - 51.2156765 - ], - [ - 3.2198444, - 51.2156765 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 99676146 - } - }, - { - "id": 99675091, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.9781808, - 51.4519865 - ], - [ - 6.9787542, - 51.4519865 - ], - [ - 6.9787542, - 51.4523228 - ], - [ - 6.9781808, - 51.4523228 - ], - [ - 6.9781808, - 51.4519865 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 99675091 - } - }, - { - "id": 99673436, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.9790241, - 51.4497432 - ], - [ - 6.9834418, - 51.4497432 - ], - [ - 6.9834418, - 51.4511778 - ], - [ - 6.9790241, - 51.4511778 - ], - [ - 6.9790241, - 51.4497432 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 99673436 - } - }, - { - "id": 99665427, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.3500467, - 47.6504853 - ], - [ - -122.350046, - 47.6504853 - ], - [ - -122.350046, - 47.6504853 - ], - [ - -122.3500467, - 47.6504853 - ], - [ - -122.3500467, - 47.6504853 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 99665427 - } - }, - { - "id": 99656265, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8816997, - 52.0487934 - ], - [ - 4.9432807, - 52.0487934 - ], - [ - 4.9432807, - 52.1052146 - ], - [ - 4.8816997, - 52.1052146 - ], - [ - 4.8816997, - 52.0487934 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 99656265 - } - }, - { - "id": 99644899, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4122499, - 50.9198635 - ], - [ - 4.4122499, - 50.9198635 - ], - [ - 4.4122499, - 50.9198635 - ], - [ - 4.4122499, - 50.9198635 - ], - [ - 4.4122499, - 50.9198635 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "klimbomen", - "imagery": "osm", - "language": "nl" - }, - "id": 99644899 - } - }, - { - "id": 99622784, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7043881, - 51.0527373 - ], - [ - 3.7043881, - 51.0527373 - ], - [ - 3.7043881, - 51.0527373 - ], - [ - 3.7043881, - 51.0527373 - ], - [ - 3.7043881, - 51.0527373 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 99622784 - } - }, - { - "id": 99615501, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5483264, - 51.0209132 - ], - [ - 4.5483264, - 51.0209132 - ], - [ - 4.5483264, - 51.0209132 - ], - [ - 4.5483264, - 51.0209132 - ], - [ - 4.5483264, - 51.0209132 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "geveltuintjes", - "imagery": "osm", - "language": "nl" - }, - "id": 99615501 - } - }, - { - "id": 99615186, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 151.1473668, - -33.877031 - ], - [ - 151.1473668, - -33.877031 - ], - [ - 151.1473668, - -33.877031 - ], - [ - 151.1473668, - -33.877031 - ], - [ - 151.1473668, - -33.877031 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "NSW_LPI_Imagery", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 99615186 - } - }, - { - "id": 99606292, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.9437802, - 51.4145483 - ], - [ - 6.9437802, - 51.4145483 - ], - [ - 6.9437802, - 51.4145483 - ], - [ - 6.9437802, - 51.4145483 - ], - [ - 6.9437802, - 51.4145483 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "maps", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 99606292 - } - }, - { - "id": 99606276, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4861886, - 51.0302155 - ], - [ - 4.4861886, - 51.0302155 - ], - [ - 4.4861886, - 51.0302155 - ], - [ - 4.4861886, - 51.0302155 - ], - [ - 4.4861886, - 51.0302155 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "geveltuintjes", - "imagery": "osm", - "language": "nl" - }, - "id": 99606276 - } - }, - { - "id": 99601546, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.96777, - 51.1985414 - ], - [ - 2.9678448, - 51.1985414 - ], - [ - 2.9678448, - 51.1985953 - ], - [ - 2.96777, - 51.1985953 - ], - [ - 2.96777, - 51.1985414 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "imagery": "osm", - "language": "nl" - }, - "id": 99601546 - } - }, - { - "id": 99599094, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2305511, - 50.7368853 - ], - [ - 4.2909041, - 50.7368853 - ], - [ - 4.2909041, - 50.8105552 - ], - [ - 4.2305511, - 50.8105552 - ], - [ - 4.2305511, - 50.7368853 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 99599094 - } - }, - { - "id": 99598899, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4485697, - 51.0836764 - ], - [ - 3.4503636, - 51.0836764 - ], - [ - 3.4503636, - 51.0929136 - ], - [ - 3.4485697, - 51.0929136 - ], - [ - 3.4485697, - 51.0836764 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 99598899 - } - }, - { - "id": 99578370, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4476318, - 51.0836246 - ], - [ - 3.4486015, - 51.0836246 - ], - [ - 3.4486015, - 51.0865948 - ], - [ - 3.4476318, - 51.0865948 - ], - [ - 3.4476318, - 51.0836246 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 99578370 - } - }, - { - "id": 99569813, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.1487347, - 10.3023581 - ], - [ - 123.8946944, - 10.3023581 - ], - [ - 123.8946944, - 14.5382952 - ], - [ - 121.1487347, - 14.5382952 - ], - [ - 121.1487347, - 10.3023581 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 99569813 - } - }, - { - "id": 99563927, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.5916481, - -33.6048667 - ], - [ - -70.5916481, - -33.6048667 - ], - [ - -70.5916481, - -33.6048667 - ], - [ - -70.5916481, - -33.6048667 - ], - [ - -70.5916481, - -33.6048667 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 99563927 - } - }, - { - "id": 99554379, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6809309, - 51.0533349 - ], - [ - 3.6809309, - 51.0533349 - ], - [ - 3.6809309, - 51.0533349 - ], - [ - 3.6809309, - 51.0533349 - ], - [ - 3.6809309, - 51.0533349 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "imagery": "osm", - "language": "nl" - }, - "id": 99554379 - } - }, - { - "id": 99548215, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1169699, - 51.1853225 - ], - [ - 5.1169699, - 51.1853225 - ], - [ - 5.1169699, - 51.1853225 - ], - [ - 5.1169699, - 51.1853225 - ], - [ - 5.1169699, - 51.1853225 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 99548215 - } - }, - { - "id": 99527340, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0784276, - 50.9282274 - ], - [ - 4.0784276, - 50.9282274 - ], - [ - 4.0784276, - 50.9282274 - ], - [ - 4.0784276, - 50.9282274 - ], - [ - 4.0784276, - 50.9282274 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 99527340 - } - }, - { - "id": 99527268, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.718829, - 51.9723273 - ], - [ - 6.718829, - 51.9723273 - ], - [ - 6.718829, - 51.9723273 - ], - [ - 6.718829, - 51.9723273 - ], - [ - 6.718829, - 51.9723273 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "Actueel_ortho25_WMS", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 99527268 - } - }, - { - "id": 99467653, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.77087, - -33.4847322 - ], - [ - -70.7703547, - -33.4847322 - ], - [ - -70.7703547, - -33.4845189 - ], - [ - -70.77087, - -33.4845189 - ], - [ - -70.77087, - -33.4847322 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 99467653 - } - }, - { - "id": 99466463, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.730679, - 51.0570573 - ], - [ - 3.730679, - 51.0570573 - ], - [ - 3.730679, - 51.0570573 - ], - [ - 3.730679, - 51.0570573 - ], - [ - 3.730679, - 51.0570573 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 99466463 - } - }, - { - "id": 99457652, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3189133, - 50.7844049 - ], - [ - 4.3189133, - 50.7844049 - ], - [ - 4.3189133, - 50.7844049 - ], - [ - 4.3189133, - 50.7844049 - ], - [ - 4.3189133, - 50.7844049 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 99457652 - } - }, - { - "id": 99400869, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.9783645, - 51.4469767 - ], - [ - 6.9783645, - 51.4469767 - ], - [ - 6.9783645, - 51.4469767 - ], - [ - 6.9783645, - 51.4469767 - ], - [ - 6.9783645, - 51.4469767 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 99400869 - } - }, - { - "id": 99400802, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.9776831, - 51.4467987 - ], - [ - 6.9776831, - 51.4467987 - ], - [ - 6.9776831, - 51.4467987 - ], - [ - 6.9776831, - 51.4467987 - ], - [ - 6.9776831, - 51.4467987 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 99400802 - } - }, - { - "id": 99400332, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.973136, - 51.4473616 - ], - [ - 6.9777222, - 51.4473616 - ], - [ - 6.9777222, - 51.4495519 - ], - [ - 6.973136, - 51.4495519 - ], - [ - 6.973136, - 51.4473616 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 99400332 - } - }, - { - "id": 99399352, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.7685697, - -33.4852773 - ], - [ - -70.7685697, - -33.4852773 - ], - [ - -70.7685697, - -33.4852773 - ], - [ - -70.7685697, - -33.4852773 - ], - [ - -70.7685697, - -33.4852773 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 99399352 - } - }, - { - "id": 99398917, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6361571, - 50.8671482 - ], - [ - 3.6361571, - 50.8671482 - ], - [ - 3.6361571, - 50.8671482 - ], - [ - 3.6361571, - 50.8671482 - ], - [ - 3.6361571, - 50.8671482 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 99398917 - } - }, - { - "id": 99398824, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.7686301, - -33.4853954 - ], - [ - -70.7683192, - -33.4853954 - ], - [ - -70.7683192, - -33.4851879 - ], - [ - -70.7686301, - -33.4851879 - ], - [ - -70.7686301, - -33.4853954 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 99398824 - } - }, - { - "id": 99398790, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.9784762, - 51.4496466 - ], - [ - 6.9818518, - 51.4496466 - ], - [ - 6.9818518, - 51.4534716 - ], - [ - 6.9784762, - 51.4534716 - ], - [ - 6.9784762, - 51.4496466 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 99398790 - } - }, - { - "id": 99385395, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6776224, - 51.0531321 - ], - [ - 3.6776251, - 51.0531321 - ], - [ - 3.6776251, - 51.0531894 - ], - [ - 3.6776224, - 51.0531894 - ], - [ - 3.6776224, - 51.0531321 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 99385395 - } - }, - { - "id": 99383785, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6923423, - 51.0522571 - ], - [ - 3.6923423, - 51.0522571 - ], - [ - 3.6923423, - 51.0522571 - ], - [ - 3.6923423, - 51.0522571 - ], - [ - 3.6923423, - 51.0522571 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "imagery": "osm", - "language": "nl" - }, - "id": 99383785 - } - }, - { - "id": 99383257, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.677507, - 51.0509504 - ], - [ - 3.6972213, - 51.0509504 - ], - [ - 3.6972213, - 51.0529198 - ], - [ - 3.677507, - 51.0529198 - ], - [ - 3.677507, - 51.0509504 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "en", - "theme-creator": "Peter Elderson" - }, - "id": 99383257 - } - }, - { - "id": 99369933, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.8836749, - 51.3929233 - ], - [ - 6.8836749, - 51.3929233 - ], - [ - 6.8836749, - 51.3929233 - ], - [ - 6.8836749, - 51.3929233 - ], - [ - 6.8836749, - 51.3929233 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "maps", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 99369933 - } - }, - { - "id": 99342577, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.7686669, - -33.4856223 - ], - [ - -70.7684668, - -33.4856223 - ], - [ - -70.7684668, - -33.4855645 - ], - [ - -70.7686669, - -33.4855645 - ], - [ - -70.7686669, - -33.4856223 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 99342577 - } - }, - { - "id": 99342326, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.7686711, - -33.4855645 - ], - [ - -70.7682037, - -33.4855645 - ], - [ - -70.7682037, - -33.4853663 - ], - [ - -70.7686711, - -33.4853663 - ], - [ - -70.7686711, - -33.4855645 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 99342326 - } - }, - { - "id": 99333909, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6067814, - 52.0607209 - ], - [ - 4.6522996, - 52.0607209 - ], - [ - 4.6522996, - 52.0742674 - ], - [ - 4.6067814, - 52.0742674 - ], - [ - 4.6067814, - 52.0607209 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 99333909 - } - }, - { - "id": 99333011, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6069569, - 52.043783 - ], - [ - 4.6594241, - 52.043783 - ], - [ - 4.6594241, - 52.0859855 - ], - [ - 4.6069569, - 52.0859855 - ], - [ - 4.6069569, - 52.043783 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 99333011 - } - }, - { - "id": 99320724, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5003356, - 50.8024306 - ], - [ - 4.5003356, - 50.8024306 - ], - [ - 4.5003356, - 50.8024306 - ], - [ - 4.5003356, - 50.8024306 - ], - [ - 4.5003356, - 50.8024306 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 99320724 - } - }, - { - "id": 99316602, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.331597, - -27.3667738 - ], - [ - -70.331597, - -27.3667738 - ], - [ - -70.331597, - -27.3667738 - ], - [ - -70.331597, - -27.3667738 - ], - [ - -70.331597, - -27.3667738 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 99316602 - } - }, - { - "id": 99231088, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -6.935646, - 37.2644681 - ], - [ - -6.9283905, - 37.2644681 - ], - [ - -6.9283905, - 37.2719866 - ], - [ - -6.935646, - 37.2719866 - ], - [ - -6.935646, - 37.2644681 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "1roadAlllanes", - "imagery": "osm", - "language": "es" - }, - "id": 99231088 - } - }, - { - "id": 99199529, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.0180568, - 41.3102945 - ], - [ - 2.0224052, - 41.3102945 - ], - [ - 2.0224052, - 41.3134927 - ], - [ - 2.0180568, - 41.3134927 - ], - [ - 2.0180568, - 41.3102945 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "1roadAlllanes", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 99199529 - } - }, - { - "id": 99199139, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1768435, - 41.4300466 - ], - [ - 2.1836411, - 41.4300466 - ], - [ - 2.1836411, - 41.4329886 - ], - [ - 2.1768435, - 41.4329886 - ], - [ - 2.1768435, - 41.4300466 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "crossingtime", - "imagery": "osm", - "language": "ca" - }, - "id": 99199139 - } - }, - { - "id": 99198918, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1783346, - 41.4315121 - ], - [ - 2.1783346, - 41.4315121 - ], - [ - 2.1783346, - 41.4315121 - ], - [ - 2.1783346, - 41.4315121 - ], - [ - 2.1783346, - 41.4315121 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "restaurants", - "imagery": "osm", - "language": "ca" - }, - "id": 99198918 - } - }, - { - "id": 99198737, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1790404, - 41.4303222 - ], - [ - 2.180873, - 41.4303222 - ], - [ - 2.180873, - 41.4308877 - ], - [ - 2.1790404, - 41.4308877 - ], - [ - 2.1790404, - 41.4303222 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wherethesidewalkshavenoname", - "imagery": "osm", - "language": "en" - }, - "id": 99198737 - } - }, - { - "id": 99160858, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9446624, - 53.0660188 - ], - [ - 5.9541735, - 53.0660188 - ], - [ - 5.9541735, - 53.0965772 - ], - [ - 5.9446624, - 53.0965772 - ], - [ - 5.9446624, - 53.0660188 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "en", - "theme-creator": "Peter Elderson" - }, - "id": 99160858 - } - }, - { - "id": 99142059, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.6323415, - -33.0487834 - ], - [ - -71.6323415, - -33.0487834 - ], - [ - -71.6323415, - -33.0487834 - ], - [ - -71.6323415, - -33.0487834 - ], - [ - -71.6323415, - -33.0487834 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 99142059 - } - }, - { - "id": 99129884, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.6298409, - -33.044419 - ], - [ - -71.6298409, - -33.044419 - ], - [ - -71.6298409, - -33.044419 - ], - [ - -71.6298409, - -33.044419 - ], - [ - -71.6298409, - -33.044419 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 99129884 - } - }, - { - "id": 99117277, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.1549186, - 46.3511896 - ], - [ - 7.1549186, - 46.3511896 - ], - [ - 7.1549186, - 46.3511896 - ], - [ - 7.1549186, - 46.3511896 - ], - [ - 7.1549186, - 46.3511896 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 99117277 - } - }, - { - "id": 99062508, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7511256, - 51.1837616 - ], - [ - 4.7511256, - 51.1837616 - ], - [ - 4.7511256, - 51.1837616 - ], - [ - 4.7511256, - 51.1837616 - ], - [ - 4.7511256, - 51.1837616 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "vaccination_centres", - "imagery": "osm", - "language": "nl" - }, - "id": 99062508 - } - }, - { - "id": 99062399, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.5700547, - -33.5921539 - ], - [ - -70.5700547, - -33.5921539 - ], - [ - -70.5700547, - -33.5921539 - ], - [ - -70.5700547, - -33.5921539 - ], - [ - -70.5700547, - -33.5921539 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 99062399 - } - }, - { - "id": 99003014, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.8782964, - 41.6271045 - ], - [ - -0.8627146, - 41.6271045 - ], - [ - -0.8627146, - 41.6407065 - ], - [ - -0.8782964, - 41.6407065 - ], - [ - -0.8782964, - 41.6271045 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wherethesidewalkshavenoname", - "imagery": "osm", - "language": "es" - }, - "id": 99003014 - } - }, - { - "id": 98988313, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.5705244, - -33.591813 - ], - [ - -70.5705244, - -33.591813 - ], - [ - -70.5705244, - -33.591813 - ], - [ - -70.5705244, - -33.591813 - ], - [ - -70.5705244, - -33.591813 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 98988313 - } - }, - { - "id": 98985394, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2936882, - 50.7900105 - ], - [ - 4.2936882, - 50.7900105 - ], - [ - 4.2936882, - 50.7900105 - ], - [ - 4.2936882, - 50.7900105 - ], - [ - 4.2936882, - 50.7900105 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 98985394 - } - }, - { - "id": 98983488, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.689931, - 51.0679906 - ], - [ - 3.6924738, - 51.0679906 - ], - [ - 3.6924738, - 51.0696523 - ], - [ - 3.689931, - 51.0696523 - ], - [ - 3.689931, - 51.0679906 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "picnictable", - "imagery": "osm", - "language": "en" - }, - "id": 98983488 - } - }, - { - "id": 98915231, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9192733, - 51.2994693 - ], - [ - 4.970446, - 51.2994693 - ], - [ - 4.970446, - 51.4024757 - ], - [ - 4.9192733, - 51.4024757 - ], - [ - 4.9192733, - 51.2994693 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "vaccination_centres", - "imagery": "AGIV", - "language": "nl" - }, - "id": 98915231 - } - }, - { - "id": 98910316, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9689829, - 51.4017441 - ], - [ - 4.970446, - 51.4017441 - ], - [ - 4.970446, - 51.4024757 - ], - [ - 4.9689829, - 51.4024757 - ], - [ - 4.9689829, - 51.4017441 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "vaccination_centres", - "imagery": "osm", - "language": "nl" - }, - "id": 98910316 - } - }, - { - "id": 98908195, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1240626, - 52.0733029 - ], - [ - 5.1254283, - 52.0733029 - ], - [ - 5.1254283, - 52.0800196 - ], - [ - 5.1240626, - 52.0800196 - ], - [ - 5.1240626, - 52.0733029 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98908195 - } - }, - { - "id": 98908194, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98908194 - } - }, - { - "id": 98908156, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1254283, - 52.0800196 - ], - [ - 5.1254283, - 52.0800196 - ], - [ - 5.1254283, - 52.0800196 - ], - [ - 5.1254283, - 52.0800196 - ], - [ - 5.1254283, - 52.0800196 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98908156 - } - }, - { - "id": 98890818, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9689829, - 51.4017441 - ], - [ - 4.970446, - 51.4017441 - ], - [ - 4.970446, - 51.4024757 - ], - [ - 4.9689829, - 51.4024757 - ], - [ - 4.9689829, - 51.4017441 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "vaccination_centres", - "imagery": "osm", - "language": "nl" - }, - "id": 98890818 - } - }, - { - "id": 98870697, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6703281, - -33.4378348 - ], - [ - -70.6703281, - -33.4378348 - ], - [ - -70.6703281, - -33.4378348 - ], - [ - -70.6703281, - -33.4378348 - ], - [ - -70.6703281, - -33.4378348 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98870697 - } - }, - { - "id": 98870223, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6650885, - -33.4414107 - ], - [ - -70.6650756, - -33.4414107 - ], - [ - -70.6650756, - -33.4412221 - ], - [ - -70.6650885, - -33.4412221 - ], - [ - -70.6650885, - -33.4414107 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 98870223 - } - }, - { - "id": 98858480, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4155033, - 46.9354862 - ], - [ - 7.4155033, - 46.9354862 - ], - [ - 7.4155033, - 46.9354862 - ], - [ - 7.4155033, - 46.9354862 - ], - [ - 7.4155033, - 46.9354862 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98858480 - } - }, - { - "id": 98855499, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1240626, - 52.0733029 - ], - [ - 5.1240626, - 52.0733029 - ], - [ - 5.1240626, - 52.0733029 - ], - [ - 5.1240626, - 52.0733029 - ], - [ - 5.1240626, - 52.0733029 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98855499 - } - }, - { - "id": 98855258, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Koen Rijnsent", - "uid": "4569696", - "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-07T15:54:55Z", - "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": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98855258 - } - }, - { - "id": 98833004, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7815682, - 48.095611 - ], - [ - 11.7819679, - 48.095611 - ], - [ - 11.7819679, - 48.0975152 - ], - [ - 11.7815682, - 48.0975152 - ], - [ - 11.7815682, - 48.095611 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "EsriWorldImagery", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 98833004 - } - }, - { - "id": 98824212, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1574925, - 41.4362807 - ], - [ - 2.1606272, - 41.4362807 - ], - [ - 2.1606272, - 41.4380538 - ], - [ - 2.1574925, - 41.4380538 - ], - [ - 2.1574925, - 41.4362807 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wherethesidewalkshavenoname", - "imagery": "osm", - "language": "ca" - }, - "id": 98824212 - } - }, - { - "id": 98823177, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -6.0187215, - 38.2405954 - ], - [ - -6.0168841, - 38.2405954 - ], - [ - -6.0168841, - 38.2410094 - ], - [ - -6.0187215, - 38.2410094 - ], - [ - -6.0187215, - 38.2405954 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "containeronvas", - "imagery": "osm", - "language": "es" - }, - "id": 98823177 - } - }, - { - "id": 98808335, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1850213, - 48.9201129 - ], - [ - 2.1850213, - 48.9201129 - ], - [ - 2.1850213, - 48.9201129 - ], - [ - 2.1850213, - 48.9201129 - ], - [ - 2.1850213, - 48.9201129 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "aed", - "imagery": "osm", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 98808335 - } - }, - { - "id": 98808325, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1850213, - 48.9201129 - ], - [ - 2.1850213, - 48.9201129 - ], - [ - 2.1850213, - 48.9201129 - ], - [ - 2.1850213, - 48.9201129 - ], - [ - 2.1850213, - 48.9201129 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "aed", - "imagery": "osm", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 98808325 - } - }, - { - "id": 98777544, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6264324, - 51.9577978 - ], - [ - 4.6420047, - 51.9577978 - ], - [ - 4.6420047, - 51.9648939 - ], - [ - 4.6264324, - 51.9648939 - ], - [ - 4.6264324, - 51.9577978 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 98777544 - } - }, - { - "id": 98775172, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6179772, - 51.9491391 - ], - [ - 4.6421739, - 51.9491391 - ], - [ - 4.6421739, - 51.9718186 - ], - [ - 4.6179772, - 51.9718186 - ], - [ - 4.6179772, - 51.9491391 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 98775172 - } - }, - { - "id": 98774403, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2471988, - -39.8127249 - ], - [ - -73.2438245, - -39.8127249 - ], - [ - -73.2438245, - -39.810943 - ], - [ - -73.2471988, - -39.810943 - ], - [ - -73.2471988, - -39.8127249 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "EsriWorldImageryClarity", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 98774403 - } - }, - { - "id": 98770620, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6314213, - 51.9586447 - ], - [ - 4.6314213, - 51.9586447 - ], - [ - 4.6314213, - 51.9586447 - ], - [ - 4.6314213, - 51.9586447 - ], - [ - 4.6314213, - 51.9586447 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 98770620 - } - }, - { - "id": 98758800, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2644413, - 51.9566396 - ], - [ - 6.2644413, - 51.9566396 - ], - [ - 6.2644413, - 51.9566396 - ], - [ - 6.2644413, - 51.9566396 - ], - [ - 6.2644413, - 51.9566396 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98758800 - } - }, - { - "id": 98740296, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.666665, - -33.4405009 - ], - [ - -70.666665, - -33.4405009 - ], - [ - -70.666665, - -33.4405009 - ], - [ - -70.666665, - -33.4405009 - ], - [ - -70.666665, - -33.4405009 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "EsriWorldImageryClarity", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 98740296 - } - }, - { - "id": 98726086, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6656658, - -33.4408377 - ], - [ - -70.6653087, - -33.4408377 - ], - [ - -70.6653087, - -33.4404972 - ], - [ - -70.6656658, - -33.4404972 - ], - [ - -70.6656658, - -33.4408377 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 98726086 - } - }, - { - "id": 98725717, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6649823, - -33.44123 - ], - [ - -70.6649823, - -33.44123 - ], - [ - -70.6649823, - -33.44123 - ], - [ - -70.6649823, - -33.44123 - ], - [ - -70.6649823, - -33.44123 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98725717 - } - }, - { - "id": 98713865, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2327756, - 50.710189 - ], - [ - 4.2339745, - 50.710189 - ], - [ - 4.2339745, - 50.7109713 - ], - [ - 4.2327756, - 50.7109713 - ], - [ - 4.2327756, - 50.710189 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "paden", - "imagery": "osm", - "language": "nl" - }, - "id": 98713865 - } - }, - { - "id": 98709530, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4937944, - 50.8055185 - ], - [ - 4.4937944, - 50.8055185 - ], - [ - 4.4937944, - 50.8055185 - ], - [ - 4.4937944, - 50.8055185 - ], - [ - 4.4937944, - 50.8055185 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "AGIV", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 98709530 - } - }, - { - "id": 98705104, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.419711, - 46.932459 - ], - [ - 7.419711, - 46.932459 - ], - [ - 7.419711, - 46.932459 - ], - [ - 7.419711, - 46.932459 - ], - [ - 7.419711, - 46.932459 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98705104 - } - }, - { - "id": 98672493, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 123.9427891, - 10.3279113 - ], - [ - 123.9427891, - 10.3279113 - ], - [ - 123.9427891, - 10.3279113 - ], - [ - 123.9427891, - 10.3279113 - ], - [ - 123.9427891, - 10.3279113 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98672493 - } - }, - { - "id": 98670888, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.212412, - 51.1812564 - ], - [ - 3.212412, - 51.1812564 - ], - [ - 3.212412, - 51.1812564 - ], - [ - 3.212412, - 51.1812564 - ], - [ - 3.212412, - 51.1812564 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "vaccination_centres", - "imagery": "osm", - "language": "nl" - }, - "id": 98670888 - } - }, - { - "id": 98665284, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198417, - 51.2156931 - ], - [ - 3.2198417, - 51.2156931 - ], - [ - 3.2198417, - 51.2156931 - ], - [ - 3.2198417, - 51.2156931 - ], - [ - 3.2198417, - 51.2156931 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 98665284 - } - }, - { - "id": 98663251, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2243352, - 51.2043211 - ], - [ - 3.2243352, - 51.2043211 - ], - [ - 3.2243352, - 51.2043211 - ], - [ - 3.2243352, - 51.2043211 - ], - [ - 3.2243352, - 51.2043211 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98663251 - } - }, - { - "id": 98663183, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2244503, - 51.2051514 - ], - [ - 3.225731, - 51.2051514 - ], - [ - 3.225731, - 51.2053642 - ], - [ - 3.2244503, - 51.2053642 - ], - [ - 3.2244503, - 51.2051514 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98663183 - } - }, - { - "id": 98663172, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2244503, - 51.2051514 - ], - [ - 3.2244503, - 51.2051514 - ], - [ - 3.2244503, - 51.2051514 - ], - [ - 3.2244503, - 51.2051514 - ], - [ - 3.2244503, - 51.2051514 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98663172 - } - }, - { - "id": 98659703, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.542557, - 51.9728518 - ], - [ - 4.5559085, - 51.9728518 - ], - [ - 4.5559085, - 52.0132582 - ], - [ - 4.542557, - 52.0132582 - ], - [ - 4.542557, - 51.9728518 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 98659703 - } - }, - { - "id": 98656940, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5480679, - 51.9716756 - ], - [ - 4.5480679, - 51.9716756 - ], - [ - 4.5480679, - 51.9716756 - ], - [ - 4.5480679, - 51.9716756 - ], - [ - 4.5480679, - 51.9716756 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 98656940 - } - }, - { - "id": 98655231, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5441378, - 51.9728984 - ], - [ - 4.5562251, - 51.9728984 - ], - [ - 4.5562251, - 52.0149646 - ], - [ - 4.5441378, - 52.0149646 - ], - [ - 4.5441378, - 51.9728984 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 98655231 - } - }, - { - "id": 98644606, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6375207, - 50.9306339 - ], - [ - 3.6375207, - 50.9306339 - ], - [ - 3.6375207, - 50.9306339 - ], - [ - 3.6375207, - 50.9306339 - ], - [ - 3.6375207, - 50.9306339 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98644606 - } - }, - { - "id": 98640403, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7787793, - 50.2859246 - ], - [ - 2.7908733, - 50.2859246 - ], - [ - 2.7908733, - 50.2910032 - ], - [ - 2.7787793, - 50.2910032 - ], - [ - 2.7787793, - 50.2859246 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "fritures", - "imagery": "osm", - "language": "fr" - }, - "id": 98640403 - } - }, - { - "id": 98634108, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.8717445, - 50.3763515 - ], - [ - 5.8717445, - 50.3763515 - ], - [ - 5.8717445, - 50.3763515 - ], - [ - 5.8717445, - 50.3763515 - ], - [ - 5.8717445, - 50.3763515 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "imagery": "osm", - "language": "nl" - }, - "id": 98634108 - } - }, - { - "id": 98632402, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5441378, - 51.9725041 - ], - [ - 4.5490537, - 51.9725041 - ], - [ - 4.5490537, - 51.9880645 - ], - [ - 4.5441378, - 51.9880645 - ], - [ - 4.5441378, - 51.9725041 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 98632402 - } - }, - { - "id": 98631263, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.8759797, - 50.393442 - ], - [ - 5.8759797, - 50.393442 - ], - [ - 5.8759797, - 50.393442 - ], - [ - 5.8759797, - 50.393442 - ], - [ - 5.8759797, - 50.393442 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98631263 - } - }, - { - "id": 98626175, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.063949, - 50.9178564 - ], - [ - 4.063949, - 50.9178564 - ], - [ - 4.063949, - 50.9178564 - ], - [ - 4.063949, - 50.9178564 - ], - [ - 4.063949, - 50.9178564 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "vaccination_centres", - "imagery": "osm", - "language": "nl" - }, - "id": 98626175 - } - }, - { - "id": 98603682, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.0036505, - 51.2636486 - ], - [ - 4.7857046, - 51.2636486 - ], - [ - 4.7857046, - 51.5622435 - ], - [ - -0.0036505, - 51.5622435 - ], - [ - -0.0036505, - 51.2636486 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98603682 - } - }, - { - "id": 98592602, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.8458316, - 47.9957557 - ], - [ - 7.8458316, - 47.9957557 - ], - [ - 7.8458316, - 47.9957557 - ], - [ - 7.8458316, - 47.9957557 - ], - [ - 7.8458316, - 47.9957557 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "openinghourscovid19", - "imagery": "osm", - "language": "es" - }, - "id": 98592602 - } - }, - { - "id": 98587768, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Koen Rijnsent", - "uid": "4569696", - "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-02T15:39:12Z", - "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": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98587768 - } - }, - { - "id": 98587566, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Koen Rijnsent", - "uid": "4569696", - "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-02T15:35: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": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98587566 - } - }, - { - "id": 98585917, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Koen Rijnsent", - "uid": "4569696", - "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-02T15:01:42Z", - "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": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98585917 - } - }, - { - "id": 98585631, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Koen Rijnsent", - "uid": "4569696", - "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-02T14:56:11Z", - "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": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98585631 - } - }, - { - "id": 98585501, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Koen Rijnsent", - "uid": "4569696", - "editor": "MapComplete 0.4.9", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2021-02-02T14:53:10Z", - "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": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98585501 - } - }, - { - "id": 98576734, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Koen Rijnsent", - "uid": "4569696", - "editor": "MapComplete 0.4.9", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2021-02-02T11:58:09Z", - "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": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98576734 - } - }, - { - "id": 98576584, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Koen Rijnsent", - "uid": "4569696", - "editor": "MapComplete 0.4.9", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2021-02-02T11:56: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": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98576584 - } - }, - { - "id": 98569828, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8655851, - 50.4656655 - ], - [ - 4.8655851, - 50.4656655 - ], - [ - 4.8655851, - 50.4656655 - ], - [ - 4.8655851, - 50.4656655 - ], - [ - 4.8655851, - 50.4656655 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98569828 - } - }, - { - "id": 98568686, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.7434571, - 50.4684935 - ], - [ - 5.7434571, - 50.4684935 - ], - [ - 5.7434571, - 50.4684935 - ], - [ - 5.7434571, - 50.4684935 - ], - [ - 5.7434571, - 50.4684935 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 98568686 - } - }, - { - "id": 98566470, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6952149, - 51.0429887 - ], - [ - 4.6952149, - 51.0429887 - ], - [ - 4.6952149, - 51.0429887 - ], - [ - 4.6952149, - 51.0429887 - ], - [ - 4.6952149, - 51.0429887 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 98566470 - } - }, - { - "id": 98566286, - "type": "Feature", - "geometry": null, - "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 #personal", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2021-02-02T09:33:50Z", - "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": "personal", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 98566286 - } - }, - { - "id": 98565848, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7170431, - 51.0453548 - ], - [ - 4.7297169, - 51.0453548 - ], - [ - 4.7297169, - 51.1029107 - ], - [ - 4.7170431, - 51.1029107 - ], - [ - 4.7170431, - 51.0453548 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 98565848 - } - }, - { - "id": 98559761, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.231886, - 51.1979163 - ], - [ - 3.2340203, - 51.1979163 - ], - [ - 3.2340203, - 51.199055 - ], - [ - 3.231886, - 51.199055 - ], - [ - 3.231886, - 51.1979163 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wiki-User-joost_schouppe-geveltuintjes", - "imagery": "osm", - "language": "nl" - }, - "id": 98559761 - } - }, - { - "id": 98530962, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9614821, - 43.0922626 - ], - [ - 2.9628847, - 43.0922626 - ], - [ - 2.9628847, - 43.0940439 - ], - [ - 2.9614821, - 43.0940439 - ], - [ - 2.9614821, - 43.0922626 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "en" - }, - "id": 98530962 - } - }, - { - "id": 98529536, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4247319, - 51.0182201 - ], - [ - 3.762333, - 51.0182201 - ], - [ - 3.762333, - 51.1420131 - ], - [ - 3.4247319, - 51.1420131 - ], - [ - 3.4247319, - 51.0182201 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98529536 - } - }, - { - "id": 98519285, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1249256, - 52.0723886 - ], - [ - 5.1249256, - 52.0723886 - ], - [ - 5.1249256, - 52.0723886 - ], - [ - 5.1249256, - 52.0723886 - ], - [ - 5.1249256, - 52.0723886 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98519285 - } - }, - { - "id": 98519021, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6856499, - 50.4803465 - ], - [ - 5.6856499, - 50.4803465 - ], - [ - 5.6856499, - 50.4803465 - ], - [ - 5.6856499, - 50.4803465 - ], - [ - 5.6856499, - 50.4803465 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "imagery": "osm", - "language": "nl" - }, - "id": 98519021 - } - }, - { - "id": 98517414, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1289433, - 52.0751935 - ], - [ - 5.1289433, - 52.0751935 - ], - [ - 5.1289433, - 52.0751935 - ], - [ - 5.1289433, - 52.0751935 - ], - [ - 5.1289433, - 52.0751935 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 98517414 - } - }, - { - "id": 98512905, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9011496, - 51.0901087 - ], - [ - 4.9011496, - 51.0901087 - ], - [ - 4.9011496, - 51.0901087 - ], - [ - 4.9011496, - 51.0901087 - ], - [ - 4.9011496, - 51.0901087 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 98512905 - } - }, - { - "id": 98502118, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7549933, - 51.1682088 - ], - [ - 4.7549933, - 51.1682088 - ], - [ - 4.7549933, - 51.1682088 - ], - [ - 4.7549933, - 51.1682088 - ], - [ - 4.7549933, - 51.1682088 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 98502118 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2021-3.json b/Docs/Tools/stats/stats.2021-3.json deleted file mode 100644 index 7552e466f6..0000000000 --- a/Docs/Tools/stats/stats.2021-3.json +++ /dev/null @@ -1,15679 +0,0 @@ -{ - "features": [ - { - "id": 102082219, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2314527, - -39.8450065 - ], - [ - -73.2305664, - -39.8450065 - ], - [ - -73.2305664, - -39.8449581 - ], - [ - -73.2314527, - -39.8449581 - ], - [ - -73.2314527, - -39.8450065 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 102082219 - } - }, - { - "id": 102081437, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3452181, - 44.4918527 - ], - [ - 11.3452181, - 44.4918527 - ], - [ - 11.3452181, - 44.4918527 - ], - [ - 11.3452181, - 44.4918527 - ], - [ - 11.3452181, - 44.4918527 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102081437 - } - }, - { - "id": 102070461, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.478824, - 51.1636222 - ], - [ - 4.4792639, - 51.1636222 - ], - [ - 4.4792639, - 51.1641 - ], - [ - 4.478824, - 51.1641 - ], - [ - 4.478824, - 51.1636222 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "speelplekken", - "imagery": "CartoDB.Positron", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 102070461 - } - }, - { - "id": 102066153, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3301696, - 44.4815382 - ], - [ - 11.3557652, - 44.4815382 - ], - [ - 11.3557652, - 44.4995701 - ], - [ - 11.3301696, - 44.4995701 - ], - [ - 11.3301696, - 44.4815382 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102066153 - } - }, - { - "id": 102065964, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3308821, - 44.479943 - ], - [ - 11.3551763, - 44.479943 - ], - [ - 11.3551763, - 44.5000664 - ], - [ - 11.3308821, - 44.5000664 - ], - [ - 11.3308821, - 44.479943 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102065964 - } - }, - { - "id": 102061652, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2375047, - 50.7354977 - ], - [ - 4.2381958, - 50.7354977 - ], - [ - 4.2381958, - 50.7358041 - ], - [ - 4.2375047, - 50.7358041 - ], - [ - 4.2375047, - 50.7354977 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 102061652 - } - }, - { - "id": 102059060, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6991739, - 51.0368914 - ], - [ - 3.7455601, - 51.0368914 - ], - [ - 3.7455601, - 51.0836267 - ], - [ - 3.6991739, - 51.0836267 - ], - [ - 3.6991739, - 51.0368914 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102059060 - } - }, - { - "id": 102053164, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6992061, - 51.014323 - ], - [ - 3.7526148, - 51.014323 - ], - [ - 3.7526148, - 51.0742722 - ], - [ - 3.6992061, - 51.0742722 - ], - [ - 3.6992061, - 51.014323 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 102053164 - } - }, - { - "id": 102051867, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3286231, - 44.4962299 - ], - [ - 11.3379889, - 44.4962299 - ], - [ - 11.3379889, - 44.5024655 - ], - [ - 11.3286231, - 44.5024655 - ], - [ - 11.3286231, - 44.4962299 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102051867 - } - }, - { - "id": 102050957, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3300606, - 44.5013109 - ], - [ - 11.3393455, - 44.5013109 - ], - [ - 11.3393455, - 44.5042446 - ], - [ - 11.3300606, - 44.5042446 - ], - [ - 11.3300606, - 44.5013109 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102050957 - } - }, - { - "id": 102050912, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3382193, - 44.5048172 - ], - [ - 11.3382193, - 44.5048172 - ], - [ - 11.3382193, - 44.5048172 - ], - [ - 11.3382193, - 44.5048172 - ], - [ - 11.3382193, - 44.5048172 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102050912 - } - }, - { - "id": 102049993, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.7202466, - 41.2190053 - ], - [ - 1.7233809, - 41.2190053 - ], - [ - 1.7233809, - 41.2211463 - ], - [ - 1.7202466, - 41.2211463 - ], - [ - 1.7202466, - 41.2190053 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "localrevision", - "imagery": "osm", - "language": "es" - }, - "id": 102049993 - } - }, - { - "id": 102049972, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4498481, - 51.1744195 - ], - [ - 4.4570976, - 51.1744195 - ], - [ - 4.4570976, - 51.1869372 - ], - [ - 4.4498481, - 51.1869372 - ], - [ - 4.4498481, - 51.1744195 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 102049972 - } - }, - { - "id": 102048412, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6808947, - 51.0407841 - ], - [ - 3.6911702, - 51.0407841 - ], - [ - 3.6911702, - 51.0452996 - ], - [ - 3.6808947, - 51.0452996 - ], - [ - 3.6808947, - 51.0407841 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fitness_station", - "imagery": "osm", - "language": "en" - }, - "id": 102048412 - } - }, - { - "id": 102046524, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6991739, - 51.0587016 - ], - [ - 3.7268168, - 51.0587016 - ], - [ - 3.7268168, - 51.0836267 - ], - [ - 3.6991739, - 51.0836267 - ], - [ - 3.6991739, - 51.0587016 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 102046524 - } - }, - { - "id": 102007350, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8825673, - 51.0015189 - ], - [ - 3.8938272, - 51.0015189 - ], - [ - 3.8938272, - 51.0038347 - ], - [ - 3.8825673, - 51.0038347 - ], - [ - 3.8825673, - 51.0015189 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 102007350 - } - }, - { - "id": 101996119, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.310816, - 44.4956116 - ], - [ - 11.310816, - 44.4956116 - ], - [ - 11.310816, - 44.4956116 - ], - [ - 11.310816, - 44.4956116 - ], - [ - 11.310816, - 44.4956116 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101996119 - } - }, - { - "id": 101995576, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.297307, - 44.4936399 - ], - [ - 11.3271781, - 44.4936399 - ], - [ - 11.3271781, - 44.5058042 - ], - [ - 11.297307, - 44.5058042 - ], - [ - 11.297307, - 44.4936399 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101995576 - } - }, - { - "id": 101993159, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -9.1330343, - 38.7351593 - ], - [ - -9.1330343, - 38.7351593 - ], - [ - -9.1330343, - 38.7351593 - ], - [ - -9.1330343, - 38.7351593 - ], - [ - -9.1330343, - 38.7351593 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bicyclelib", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101993159 - } - }, - { - "id": 101981953, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -9.1420259, - 38.7209127 - ], - [ - -9.1347544, - 38.7209127 - ], - [ - -9.1347544, - 38.7238195 - ], - [ - -9.1420259, - 38.7238195 - ], - [ - -9.1420259, - 38.7209127 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101981953 - } - }, - { - "id": 101981404, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -9.1330343, - 38.7351593 - ], - [ - -9.1330343, - 38.7351593 - ], - [ - -9.1330343, - 38.7351593 - ], - [ - -9.1330343, - 38.7351593 - ], - [ - -9.1330343, - 38.7351593 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bicyclelib", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101981404 - } - }, - { - "id": 101973779, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1266858, - 52.0797566 - ], - [ - 5.1478844, - 52.0797566 - ], - [ - 5.1478844, - 52.0903765 - ], - [ - 5.1266858, - 52.0903765 - ], - [ - 5.1266858, - 52.0797566 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101973779 - } - }, - { - "id": 101942872, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8812487, - 50.9428726 - ], - [ - 4.0565622, - 50.9428726 - ], - [ - 4.0565622, - 51.0074926 - ], - [ - 3.8812487, - 51.0074926 - ], - [ - 3.8812487, - 50.9428726 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 101942872 - } - }, - { - "id": 101930669, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3484902, - 44.5312221 - ], - [ - 11.3587932, - 44.5312221 - ], - [ - 11.3587932, - 44.5465393 - ], - [ - 11.3484902, - 44.5465393 - ], - [ - 11.3484902, - 44.5312221 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101930669 - } - }, - { - "id": 101919443, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0956068, - 50.9956718 - ], - [ - 3.0960444, - 50.9956718 - ], - [ - 3.0960444, - 50.9968581 - ], - [ - 3.0956068, - 50.9968581 - ], - [ - 3.0956068, - 50.9956718 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 101919443 - } - }, - { - "id": 101918321, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0928207, - 50.9945133 - ], - [ - 3.0976564, - 50.9945133 - ], - [ - 3.0976564, - 50.9971053 - ], - [ - 3.0928207, - 50.9971053 - ], - [ - 3.0928207, - 50.9945133 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "nl" - }, - "id": 101918321 - } - }, - { - "id": 101892733, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.3716345, - 47.6802721 - ], - [ - -122.371634, - 47.6802721 - ], - [ - -122.371634, - 47.6802721 - ], - [ - -122.3716345, - 47.6802721 - ], - [ - -122.3716345, - 47.6802721 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101892733 - } - }, - { - "id": 101892444, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1751423, - 51.0178144 - ], - [ - 4.1768931, - 51.0178144 - ], - [ - 4.1768931, - 51.0179113 - ], - [ - 4.1751423, - 51.0179113 - ], - [ - 4.1751423, - 51.0178144 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 101892444 - } - }, - { - "id": 101892297, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.9604736, - 40.5828006 - ], - [ - -73.9209982, - 40.5828006 - ], - [ - -73.9209982, - 40.5913089 - ], - [ - -73.9604736, - 40.5913089 - ], - [ - -73.9604736, - 40.5828006 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101892297 - } - }, - { - "id": 101891909, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.457116, - 51.1779098 - ], - [ - 4.4647489, - 51.1779098 - ], - [ - 4.4647489, - 51.180808 - ], - [ - 4.457116, - 51.180808 - ], - [ - 4.457116, - 51.1779098 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "imagery": "osm", - "language": "nl" - }, - "id": 101891909 - } - }, - { - "id": 101890254, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 148.0752161, - -42.1237047 - ], - [ - 148.0752161, - -42.1237047 - ], - [ - 148.0752161, - -42.1237047 - ], - [ - 148.0752161, - -42.1237047 - ], - [ - 148.0752161, - -42.1237047 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 101890254 - } - }, - { - "id": 101889954, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1546715, - 51.0189521 - ], - [ - 4.15759, - 51.0189521 - ], - [ - 4.15759, - 51.0192184 - ], - [ - 4.1546715, - 51.0192184 - ], - [ - 4.1546715, - 51.0189521 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 101889954 - } - }, - { - "id": 101889823, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1755806, - 41.4278428 - ], - [ - 2.1835748, - 41.4278428 - ], - [ - 2.1835748, - 41.4393301 - ], - [ - 2.1755806, - 41.4393301 - ], - [ - 2.1755806, - 41.4278428 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wherethesidewalkshavenoname", - "imagery": "osm", - "language": "en" - }, - "id": 101889823 - } - }, - { - "id": 101885043, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.163357, - 51.1860935 - ], - [ - 4.163357, - 51.1860935 - ], - [ - 4.163357, - 51.1860935 - ], - [ - 4.163357, - 51.1860935 - ], - [ - 4.163357, - 51.1860935 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "ghostbikes", - "imagery": "CartoDB.Positron", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 101885043 - } - }, - { - "id": 101884979, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -118.7136074, - 34.0915651 - ], - [ - -118.712607, - 34.0915651 - ], - [ - -118.712607, - 34.0944986 - ], - [ - -118.7136074, - 34.0944986 - ], - [ - -118.7136074, - 34.0915651 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 101884979 - } - }, - { - "id": 101881241, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6572492, - 45.5734327 - ], - [ - -73.6572492, - 45.5734327 - ], - [ - -73.6572492, - 45.5734327 - ], - [ - -73.6572492, - 45.5734327 - ], - [ - -73.6572492, - 45.5734327 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101881241 - } - }, - { - "id": 101880355, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.9090659, - 53.6083805 - ], - [ - 9.9092305, - 53.6083805 - ], - [ - 9.9092305, - 53.608483 - ], - [ - 9.9090659, - 53.608483 - ], - [ - 9.9090659, - 53.6083805 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 101880355 - } - }, - { - "id": 101879051, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -80.2696517, - 27.1695582 - ], - [ - -80.2696517, - 27.1695582 - ], - [ - -80.2696517, - 27.1695582 - ], - [ - -80.2696517, - 27.1695582 - ], - [ - -80.2696517, - 27.1695582 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "EsriWorldImagery", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101879051 - } - }, - { - "id": 101878531, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1264121, - 51.0238028 - ], - [ - 4.1268872, - 51.0238028 - ], - [ - 4.1268872, - 51.024185 - ], - [ - 4.1264121, - 51.024185 - ], - [ - 4.1264121, - 51.0238028 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 101878531 - } - }, - { - "id": 101876634, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1779045, - 45.437886 - ], - [ - 9.2145247, - 45.437886 - ], - [ - 9.2145247, - 45.4677957 - ], - [ - 9.1779045, - 45.4677957 - ], - [ - 9.1779045, - 45.437886 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101876634 - } - }, - { - "id": 101873402, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.138522, - 48.5536256 - ], - [ - 12.1646685, - 48.5536256 - ], - [ - 12.1646685, - 48.5644841 - ], - [ - 12.138522, - 48.5644841 - ], - [ - 12.138522, - 48.5536256 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 101873402 - } - }, - { - "id": 101873159, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1102693, - 45.4307345 - ], - [ - 9.1102693, - 45.4307345 - ], - [ - 9.1102693, - 45.4307345 - ], - [ - 9.1102693, - 45.4307345 - ], - [ - 9.1102693, - 45.4307345 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101873159 - } - }, - { - "id": 101872302, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.9139572, - 56.1184677 - ], - [ - -3.9139572, - 56.1184677 - ], - [ - -3.9139572, - 56.1184677 - ], - [ - -3.9139572, - 56.1184677 - ], - [ - -3.9139572, - 56.1184677 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101872302 - } - }, - { - "id": 101871590, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9504943, - 51.2173278 - ], - [ - 2.9698828, - 51.2173278 - ], - [ - 2.9698828, - 51.2210943 - ], - [ - 2.9504943, - 51.2210943 - ], - [ - 2.9504943, - 51.2173278 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 101871590 - } - }, - { - "id": 101870926, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2234761, - 51.2097992 - ], - [ - 3.2241118, - 51.2097992 - ], - [ - 3.2241118, - 51.2100278 - ], - [ - 3.2234761, - 51.2100278 - ], - [ - 3.2234761, - 51.2097992 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 101870926 - } - }, - { - "id": 101870809, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1896709, - 51.199113 - ], - [ - 3.2244705, - 51.199113 - ], - [ - 3.2244705, - 51.2124188 - ], - [ - 3.1896709, - 51.2124188 - ], - [ - 3.1896709, - 51.199113 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "grb", - "imagery": "AGIVFlandersGRB", - "language": "nl" - }, - "id": 101870809 - } - }, - { - "id": 101868814, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.1412286, - 50.8416757 - ], - [ - -0.1374243, - 50.8416757 - ], - [ - -0.1374243, - 50.8425217 - ], - [ - -0.1412286, - 50.8425217 - ], - [ - -0.1412286, - 50.8416757 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 101868814 - } - }, - { - "id": 101865315, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9083461, - 51.2149659 - ], - [ - 2.9391646, - 51.2149659 - ], - [ - 2.9391646, - 51.2345946 - ], - [ - 2.9083461, - 51.2345946 - ], - [ - 2.9083461, - 51.2149659 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 101865315 - } - }, - { - "id": 101852349, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6707891, - -33.435642 - ], - [ - -70.6707891, - -33.435642 - ], - [ - -70.6707891, - -33.435642 - ], - [ - -70.6707891, - -33.435642 - ], - [ - -70.6707891, - -33.435642 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101852349 - } - }, - { - "id": 101844159, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.473981, - 51.0323917 - ], - [ - 4.473981, - 51.0323917 - ], - [ - 4.473981, - 51.0323917 - ], - [ - 4.473981, - 51.0323917 - ], - [ - 4.473981, - 51.0323917 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "facadegardens", - "imagery": "osm", - "language": "nl", - "theme-creator": "joost schouppe; stla" - }, - "id": 101844159 - } - }, - { - "id": 101841292, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.2111698, - 51.5101707 - ], - [ - 7.2113705, - 51.5101707 - ], - [ - 7.2113705, - 51.5136333 - ], - [ - 7.2111698, - 51.5136333 - ], - [ - 7.2111698, - 51.5101707 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 101841292 - } - }, - { - "id": 101834425, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.3384026, - 51.4612635 - ], - [ - 7.3465521, - 51.4612635 - ], - [ - 7.3465521, - 51.4797084 - ], - [ - 7.3384026, - 51.4797084 - ], - [ - 7.3384026, - 51.4612635 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101834425 - } - }, - { - "id": 101833538, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1234536, - 52.0823233 - ], - [ - 5.1234536, - 52.0823233 - ], - [ - 5.1234536, - 52.0823233 - ], - [ - 5.1234536, - 52.0823233 - ], - [ - 5.1234536, - 52.0823233 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101833538 - } - }, - { - "id": 101829358, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1300506, - 50.9986117 - ], - [ - 4.131679, - 50.9986117 - ], - [ - 4.131679, - 50.9990543 - ], - [ - 4.1300506, - 50.9990543 - ], - [ - 4.1300506, - 50.9986117 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 101829358 - } - }, - { - "id": 101829031, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1150048, - 52.0926006 - ], - [ - 5.1164129, - 52.0926006 - ], - [ - 5.1164129, - 52.0927094 - ], - [ - 5.1150048, - 52.0927094 - ], - [ - 5.1150048, - 52.0926006 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101829031 - } - }, - { - "id": 101818728, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6880694, - 51.1635983 - ], - [ - 4.6897969, - 51.1635983 - ], - [ - 4.6897969, - 51.1641977 - ], - [ - 4.6880694, - 51.1641977 - ], - [ - 4.6880694, - 51.1635983 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "nl" - }, - "id": 101818728 - } - }, - { - "id": 101813152, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3853565, - 51.1826524 - ], - [ - 4.3853565, - 51.1826524 - ], - [ - 4.3853565, - 51.1826524 - ], - [ - 4.3853565, - 51.1826524 - ], - [ - 4.3853565, - 51.1826524 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 101813152 - } - }, - { - "id": 101805447, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.2520414, - 51.4665735 - ], - [ - 7.2922171, - 51.4665735 - ], - [ - 7.2922171, - 51.4975411 - ], - [ - 7.2520414, - 51.4975411 - ], - [ - 7.2520414, - 51.4665735 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "maps", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101805447 - } - }, - { - "id": 101805410, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4892502, - 51.9009947 - ], - [ - 4.4892502, - 51.9009947 - ], - [ - 4.4892502, - 51.9009947 - ], - [ - 4.4892502, - 51.9009947 - ], - [ - 4.4892502, - 51.9009947 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "stolpersteine", - "imagery": "osm", - "language": "en", - "theme-creator": "Peter Elderson" - }, - "id": 101805410 - } - }, - { - "id": 101799330, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7208301, - 51.0541539 - ], - [ - 3.7208301, - 51.0541539 - ], - [ - 3.7208301, - 51.0541539 - ], - [ - 3.7208301, - 51.0541539 - ], - [ - 3.7208301, - 51.0541539 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 101799330 - } - }, - { - "id": 101795137, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7219512, - 51.0594005 - ], - [ - 3.7219512, - 51.0594005 - ], - [ - 3.7219512, - 51.0594005 - ], - [ - 3.7219512, - 51.0594005 - ], - [ - 3.7219512, - 51.0594005 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 101795137 - } - }, - { - "id": 101794174, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7285361, - 51.0564621 - ], - [ - 3.7286165, - 51.0564621 - ], - [ - 3.7286165, - 51.0565834 - ], - [ - 3.7285361, - 51.0565834 - ], - [ - 3.7285361, - 51.0564621 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 101794174 - } - }, - { - "id": 101793666, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7197948, - 51.0466304 - ], - [ - 3.7197948, - 51.0466304 - ], - [ - 3.7197948, - 51.0466304 - ], - [ - 3.7197948, - 51.0466304 - ], - [ - 3.7197948, - 51.0466304 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 101793666 - } - }, - { - "id": 101792066, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.8342255, - 40.3419644 - ], - [ - -3.8310635, - 40.3419644 - ], - [ - -3.8310635, - 40.3443635 - ], - [ - -3.8342255, - 40.3443635 - ], - [ - -3.8342255, - 40.3419644 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "1roadAlllanes", - "imagery": "osm", - "language": "es" - }, - "id": 101792066 - } - }, - { - "id": 101785908, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1236408, - 52.0750625 - ], - [ - 5.1276425, - 52.0750625 - ], - [ - 5.1276425, - 52.0778072 - ], - [ - 5.1236408, - 52.0778072 - ], - [ - 5.1236408, - 52.0750625 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101785908 - } - }, - { - "id": 101785278, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3606411, - 52.1064452 - ], - [ - 5.4024393, - 52.1064452 - ], - [ - 5.4024393, - 52.1218391 - ], - [ - 5.3606411, - 52.1218391 - ], - [ - 5.3606411, - 52.1064452 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "en", - "theme-creator": "Peter Elderson" - }, - "id": 101785278 - } - }, - { - "id": 101780104, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.127792, - 52.0844943 - ], - [ - 5.127792, - 52.0844943 - ], - [ - 5.127792, - 52.0844943 - ], - [ - 5.127792, - 52.0844943 - ], - [ - 5.127792, - 52.0844943 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101780104 - } - }, - { - "id": 101776584, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8825673, - 51.0015189 - ], - [ - 3.8825673, - 51.0015189 - ], - [ - 3.8825673, - 51.0015189 - ], - [ - 3.8825673, - 51.0015189 - ], - [ - 3.8825673, - 51.0015189 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 101776584 - } - }, - { - "id": 101775201, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8675796, - 51.0016858 - ], - [ - 3.8929346, - 51.0016858 - ], - [ - 3.8929346, - 51.0101288 - ], - [ - 3.8675796, - 51.0101288 - ], - [ - 3.8675796, - 51.0016858 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 101775201 - } - }, - { - "id": 101772453, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3879867, - 51.0084068 - ], - [ - 4.4489291, - 51.0084068 - ], - [ - 4.4489291, - 51.015135 - ], - [ - 4.3879867, - 51.015135 - ], - [ - 4.3879867, - 51.0084068 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 101772453 - } - }, - { - "id": 101751716, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 123.9419389, - 10.328426 - ], - [ - 123.9419389, - 10.328426 - ], - [ - 123.9419389, - 10.328426 - ], - [ - 123.9419389, - 10.328426 - ], - [ - 123.9419389, - 10.328426 - ] - ] - ] - }, - "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", - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101751716 - } - }, - { - "id": 101741727, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6087241, - 51.9660999 - ], - [ - 4.7225218, - 51.9660999 - ], - [ - 4.7225218, - 52.0754395 - ], - [ - 4.6087241, - 52.0754395 - ], - [ - 4.6087241, - 51.9660999 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "HailHydrant", - "imagery": "HDM_HOT", - "language": "en" - }, - "id": 101741727 - } - }, - { - "id": 101690921, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3953575, - 52.1045726 - ], - [ - 5.3953575, - 52.1045726 - ], - [ - 5.3953575, - 52.1045726 - ], - [ - 5.3953575, - 52.1045726 - ], - [ - 5.3953575, - 52.1045726 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "en", - "theme-creator": "Peter Elderson" - }, - "id": 101690921 - } - }, - { - "id": 101689560, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3775823, - 52.1116123 - ], - [ - 5.3775823, - 52.1116123 - ], - [ - 5.3775823, - 52.1116123 - ], - [ - 5.3775823, - 52.1116123 - ], - [ - 5.3775823, - 52.1116123 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 101689560 - } - }, - { - "id": 101676357, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7139395, - 51.0418714 - ], - [ - 3.7139395, - 51.0418714 - ], - [ - 3.7139395, - 51.0418714 - ], - [ - 3.7139395, - 51.0418714 - ], - [ - 3.7139395, - 51.0418714 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 101676357 - } - }, - { - "id": 101675962, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7197948, - 51.0466304 - ], - [ - 3.7197948, - 51.0466304 - ], - [ - 3.7197948, - 51.0466304 - ], - [ - 3.7197948, - 51.0466304 - ], - [ - 3.7197948, - 51.0466304 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 101675962 - } - }, - { - "id": 101673428, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -49.2777519, - -16.6017274 - ], - [ - -49.2617098, - -16.6017274 - ], - [ - -49.2617098, - -16.5985463 - ], - [ - -49.2777519, - -16.5985463 - ], - [ - -49.2777519, - -16.6017274 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 101673428 - } - }, - { - "id": 101670098, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4784087, - 51.0338428 - ], - [ - 4.4784087, - 51.0338428 - ], - [ - 4.4784087, - 51.0338428 - ], - [ - 4.4784087, - 51.0338428 - ], - [ - 4.4784087, - 51.0338428 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", - "imagery": "osm", - "language": "nl", - "theme-creator": "joost schouppe; stla" - }, - "id": 101670098 - } - }, - { - "id": 101668002, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6666095, - -33.4403079 - ], - [ - -70.66588, - -33.4403079 - ], - [ - -70.66588, - -33.4402255 - ], - [ - -70.6666095, - -33.4402255 - ], - [ - -70.6666095, - -33.4403079 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 101668002 - } - }, - { - "id": 101666752, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7232309, - 51.0422215 - ], - [ - 3.7232309, - 51.0422215 - ], - [ - 3.7232309, - 51.0422215 - ], - [ - 3.7232309, - 51.0422215 - ], - [ - 3.7232309, - 51.0422215 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 101666752 - } - }, - { - "id": 101664459, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.2024063, - 51.4720844 - ], - [ - 7.3239098, - 51.4720844 - ], - [ - 7.3239098, - 51.5460869 - ], - [ - 7.2024063, - 51.5460869 - ], - [ - 7.2024063, - 51.4720844 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 101664459 - } - }, - { - "id": 101662824, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3313426, - 44.5151128 - ], - [ - 11.3313426, - 44.5151128 - ], - [ - 11.3313426, - 44.5151128 - ], - [ - 11.3313426, - 44.5151128 - ], - [ - 11.3313426, - 44.5151128 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101662824 - } - }, - { - "id": 101662737, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3313454, - 44.5151362 - ], - [ - 11.339867, - 44.5151362 - ], - [ - 11.339867, - 44.5207958 - ], - [ - 11.3313454, - 44.5207958 - ], - [ - 11.3313454, - 44.5151362 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101662737 - } - }, - { - "id": 101659153, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.2150797, - 51.4832055 - ], - [ - 7.2217754, - 51.4832055 - ], - [ - 7.2217754, - 51.4878886 - ], - [ - 7.2150797, - 51.4878886 - ], - [ - 7.2150797, - 51.4832055 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "nrw_dtm_wms", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 101659153 - } - }, - { - "id": 101658081, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.2157283, - 51.4788628 - ], - [ - 7.2220545, - 51.4788628 - ], - [ - 7.2220545, - 51.4847493 - ], - [ - 7.2157283, - 51.4847493 - ], - [ - 7.2157283, - 51.4788628 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 101658081 - } - }, - { - "id": 101657473, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2319966, - 50.7326219 - ], - [ - 4.2369434, - 50.7326219 - ], - [ - 4.2369434, - 50.7333809 - ], - [ - 4.2319966, - 50.7333809 - ], - [ - 4.2319966, - 50.7326219 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 101657473 - } - }, - { - "id": 101653974, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2165796, - 51.1966576 - ], - [ - 3.2165796, - 51.1966576 - ], - [ - 3.2165796, - 51.1966576 - ], - [ - 3.2165796, - 51.1966576 - ], - [ - 3.2165796, - 51.1966576 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101653974 - } - }, - { - "id": 101599503, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6656069, - -33.4402674 - ], - [ - -70.6656069, - -33.4402674 - ], - [ - -70.6656069, - -33.4402674 - ], - [ - -70.6656069, - -33.4402674 - ], - [ - -70.6656069, - -33.4402674 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 101599503 - } - }, - { - "id": 101597611, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6676265, - -33.4411056 - ], - [ - -70.6662796, - -33.4411056 - ], - [ - -70.6662796, - -33.4408733 - ], - [ - -70.6676265, - -33.4408733 - ], - [ - -70.6676265, - -33.4411056 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 101597611 - } - }, - { - "id": 101596541, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4733506, - 51.0203947 - ], - [ - 4.5483264, - 51.0203947 - ], - [ - 4.5483264, - 51.0334719 - ], - [ - 4.4733506, - 51.0334719 - ], - [ - 4.4733506, - 51.0203947 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", - "imagery": "osm", - "language": "nl", - "theme-creator": "joost schouppe; stla" - }, - "id": 101596541 - } - }, - { - "id": 101595539, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3460846, - 44.4968805 - ], - [ - 11.3460846, - 44.4968805 - ], - [ - 11.3460846, - 44.4968805 - ], - [ - 11.3460846, - 44.4968805 - ], - [ - 11.3460846, - 44.4968805 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101595539 - } - }, - { - "id": 101593442, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6658312, - -33.4408942 - ], - [ - -70.6653122, - -33.4408942 - ], - [ - -70.6653122, - -33.440098 - ], - [ - -70.6658312, - -33.440098 - ], - [ - -70.6658312, - -33.4408942 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 101593442 - } - }, - { - "id": 101570350, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 123.9421284, - 10.3242634 - ], - [ - 123.9440987, - 10.3242634 - ], - [ - 123.9440987, - 10.3325899 - ], - [ - 123.9421284, - 10.3325899 - ], - [ - 123.9421284, - 10.3242634 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en" - }, - "id": 101570350 - } - }, - { - "id": 101569443, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6804257, - 51.0730638 - ], - [ - 3.6805844, - 51.0730638 - ], - [ - 3.6805844, - 51.07312 - ], - [ - 3.6804257, - 51.07312 - ], - [ - 3.6804257, - 51.0730638 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101569443 - } - }, - { - "id": 101565776, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2229832, - 51.216373 - ], - [ - 3.2299785, - 51.216373 - ], - [ - 3.2299785, - 51.2204828 - ], - [ - 3.2229832, - 51.2204828 - ], - [ - 3.2229832, - 51.216373 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "grb", - "imagery": "AGIVFlandersGRB", - "language": "nl" - }, - "id": 101565776 - } - }, - { - "id": 101559560, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3628355, - 50.9308665 - ], - [ - 5.3628355, - 50.9308665 - ], - [ - 5.3628355, - 50.9308665 - ], - [ - 5.3628355, - 50.9308665 - ], - [ - 5.3628355, - 50.9308665 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101559560 - } - }, - { - "id": 101554176, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1263906, - 52.0566217 - ], - [ - 5.1268269, - 52.0566217 - ], - [ - 5.1268269, - 52.0567796 - ], - [ - 5.1263906, - 52.0567796 - ], - [ - 5.1263906, - 52.0566217 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 101554176 - } - }, - { - "id": 101508098, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2202945, - 51.205806 - ], - [ - 3.2333531, - 51.205806 - ], - [ - 3.2333531, - 51.2123268 - ], - [ - 3.2202945, - 51.2123268 - ], - [ - 3.2202945, - 51.205806 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "grb", - "imagery": "AGIVFlandersGRB", - "language": "nl" - }, - "id": 101508098 - } - }, - { - "id": 101506285, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1165435, - 50.7941926 - ], - [ - 3.1165435, - 50.7941926 - ], - [ - 3.1165435, - 50.7941926 - ], - [ - 3.1165435, - 50.7941926 - ], - [ - 3.1165435, - 50.7941926 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 101506285 - } - }, - { - "id": 101488654, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0017191, - 51.0972734 - ], - [ - 4.0017191, - 51.0972734 - ], - [ - 4.0017191, - 51.0972734 - ], - [ - 4.0017191, - 51.0972734 - ], - [ - 4.0017191, - 51.0972734 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101488654 - } - }, - { - "id": 101462703, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6665444, - -33.4402128 - ], - [ - -70.6665444, - -33.4402128 - ], - [ - -70.6665444, - -33.4402128 - ], - [ - -70.6665444, - -33.4402128 - ], - [ - -70.6665444, - -33.4402128 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 101462703 - } - }, - { - "id": 101462501, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6955575, - 51.0545833 - ], - [ - 3.697382, - 51.0545833 - ], - [ - 3.697382, - 51.0554402 - ], - [ - 3.6955575, - 51.0554402 - ], - [ - 3.6955575, - 51.0545833 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 101462501 - } - }, - { - "id": 101459868, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6662422, - -33.4405212 - ], - [ - -70.665349, - -33.4405212 - ], - [ - -70.665349, - -33.4403057 - ], - [ - -70.6662422, - -33.4403057 - ], - [ - -70.6662422, - -33.4405212 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 101459868 - } - }, - { - "id": 101455414, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1405745, - 51.318785 - ], - [ - 3.1772441, - 51.318785 - ], - [ - 3.1772441, - 51.3280346 - ], - [ - 3.1405745, - 51.3280346 - ], - [ - 3.1405745, - 51.318785 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "imagery": "osm", - "language": "nl" - }, - "id": 101455414 - } - }, - { - "id": 101449724, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2097266, - 51.2123991 - ], - [ - 3.2131179, - 51.2123991 - ], - [ - 3.2131179, - 51.2149003 - ], - [ - 3.2097266, - 51.2149003 - ], - [ - 3.2097266, - 51.2123991 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "grb", - "imagery": "osm", - "language": "nl" - }, - "id": 101449724 - } - }, - { - "id": 101443809, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2413718, - 51.2033866 - ], - [ - 3.2413718, - 51.2033866 - ], - [ - 3.2413718, - 51.2033866 - ], - [ - 3.2413718, - 51.2033866 - ], - [ - 3.2413718, - 51.2033866 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 101443809 - } - }, - { - "id": 101438434, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2191517, - 51.2148075 - ], - [ - 3.2237785, - 51.2148075 - ], - [ - 3.2237785, - 51.2182165 - ], - [ - 3.2191517, - 51.2182165 - ], - [ - 3.2191517, - 51.2148075 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "grb", - "imagery": "AGIVFlandersGRB", - "language": "nl" - }, - "id": 101438434 - } - }, - { - "id": 101416023, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0084192, - 51.0455108 - ], - [ - 4.0084192, - 51.0455108 - ], - [ - 4.0084192, - 51.0455108 - ], - [ - 4.0084192, - 51.0455108 - ], - [ - 4.0084192, - 51.0455108 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "AGIV10cm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101416023 - } - }, - { - "id": 101393058, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2301736, - 51.2136117 - ], - [ - 3.2301736, - 51.2136117 - ], - [ - 3.2301736, - 51.2136117 - ], - [ - 3.2301736, - 51.2136117 - ], - [ - 3.2301736, - 51.2136117 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 101393058 - } - }, - { - "id": 101392787, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5483264, - 51.0209132 - ], - [ - 4.5483264, - 51.0209132 - ], - [ - 4.5483264, - 51.0209132 - ], - [ - 4.5483264, - 51.0209132 - ], - [ - 4.5483264, - 51.0209132 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "geveltuintjes", - "imagery": "osm", - "language": "nl" - }, - "id": 101392787 - } - }, - { - "id": 101392509, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2435444, - 51.2101554 - ], - [ - 3.2436115, - 51.2101554 - ], - [ - 3.2436115, - 51.2101823 - ], - [ - 3.2435444, - 51.2101823 - ], - [ - 3.2435444, - 51.2101554 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 101392509 - } - }, - { - "id": 101391692, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.2834952, - 44.5162159 - ], - [ - 11.2957152, - 44.5162159 - ], - [ - 11.2957152, - 44.5164817 - ], - [ - 11.2834952, - 44.5164817 - ], - [ - 11.2834952, - 44.5162159 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101391692 - } - }, - { - "id": 101389783, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9154402, - 42.681313 - ], - [ - 2.938537, - 42.681313 - ], - [ - 2.938537, - 42.6896442 - ], - [ - 2.9154402, - 42.6896442 - ], - [ - 2.9154402, - 42.681313 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 101389783 - } - }, - { - "id": 101382253, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3393901, - 44.49533 - ], - [ - 11.3409508, - 44.49533 - ], - [ - 11.3409508, - 44.4971479 - ], - [ - 11.3393901, - 44.4971479 - ], - [ - 11.3393901, - 44.49533 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101382253 - } - }, - { - "id": 101375598, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6649128, - -33.4397615 - ], - [ - -70.6649128, - -33.4397615 - ], - [ - -70.6649128, - -33.4397615 - ], - [ - -70.6649128, - -33.4397615 - ], - [ - -70.6649128, - -33.4397615 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "EsriWorldImageryClarity", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 101375598 - } - }, - { - "id": 101348816, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -7.1488974, - 37.3021427 - ], - [ - -7.1488974, - 37.3021427 - ], - [ - -7.1488974, - 37.3021427 - ], - [ - -7.1488974, - 37.3021427 - ], - [ - -7.1488974, - 37.3021427 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 101348816 - } - }, - { - "id": 101330064, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4743376, - 51.0301001 - ], - [ - 4.4861886, - 51.0301001 - ], - [ - 4.4861886, - 51.0338428 - ], - [ - 4.4743376, - 51.0338428 - ], - [ - 4.4743376, - 51.0301001 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", - "imagery": "osm", - "language": "nl", - "theme-creator": "joost schouppe" - }, - "id": 101330064 - } - }, - { - "id": 101314914, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.2492109, - 46.4635196 - ], - [ - 11.2492109, - 46.4635196 - ], - [ - 11.2492109, - 46.4635196 - ], - [ - 11.2492109, - 46.4635196 - ], - [ - 11.2492109, - 46.4635196 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 101314914 - } - }, - { - "id": 101312750, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6704093, - 46.4398614 - ], - [ - 11.2819506, - 46.4398614 - ], - [ - 11.2819506, - 49.3916675 - ], - [ - 8.6704093, - 49.3916675 - ], - [ - 8.6704093, - 46.4398614 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 101312750 - } - }, - { - "id": 101294518, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6660433, - -33.4407233 - ], - [ - -70.6660433, - -33.4407233 - ], - [ - -70.6660433, - -33.4407233 - ], - [ - -70.6660433, - -33.4407233 - ], - [ - -70.6660433, - -33.4407233 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 101294518 - } - }, - { - "id": 101294343, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6666115, - -33.4410701 - ], - [ - -70.6666115, - -33.4410701 - ], - [ - -70.6666115, - -33.4410701 - ], - [ - -70.6666115, - -33.4410701 - ], - [ - -70.6666115, - -33.4410701 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 101294343 - } - }, - { - "id": 101290552, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.5606231, - -33.5923823 - ], - [ - -70.5606231, - -33.5923823 - ], - [ - -70.5606231, - -33.5923823 - ], - [ - -70.5606231, - -33.5923823 - ], - [ - -70.5606231, - -33.5923823 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "EsriWorldImagery", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 101290552 - } - }, - { - "id": 101285518, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2020501, - 51.0593644 - ], - [ - 4.2843853, - 51.0593644 - ], - [ - 4.2843853, - 51.074806 - ], - [ - 4.2020501, - 51.074806 - ], - [ - 4.2020501, - 51.0593644 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 101285518 - } - }, - { - "id": 101284366, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4733506, - 51.0203947 - ], - [ - 4.4733506, - 51.0203947 - ], - [ - 4.4733506, - 51.0203947 - ], - [ - 4.4733506, - 51.0203947 - ], - [ - 4.4733506, - 51.0203947 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", - "imagery": "osm", - "language": "nl", - "theme-creator": "joost schouppe" - }, - "id": 101284366 - } - }, - { - "id": 101263817, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.5700655, - -33.5929528 - ], - [ - -70.5695718, - -33.5929528 - ], - [ - -70.5695718, - -33.5919339 - ], - [ - -70.5700655, - -33.5919339 - ], - [ - -70.5700655, - -33.5929528 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 101263817 - } - }, - { - "id": 101243945, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1524921, - 52.0273061 - ], - [ - 5.1524921, - 52.0273061 - ], - [ - 5.1524921, - 52.0273061 - ], - [ - 5.1524921, - 52.0273061 - ], - [ - 5.1524921, - 52.0273061 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101243945 - } - }, - { - "id": 101226298, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.5695014, - -33.5932112 - ], - [ - -70.5694689, - -33.5932112 - ], - [ - -70.5694689, - -33.5929632 - ], - [ - -70.5695014, - -33.5929632 - ], - [ - -70.5695014, - -33.5932112 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "EsriWorldImageryClarity", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 101226298 - } - }, - { - "id": 101219521, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -72.4816701, - 43.2975656 - ], - [ - -72.4816435, - 43.2975656 - ], - [ - -72.4816435, - 43.2975673 - ], - [ - -72.4816701, - 43.2975673 - ], - [ - -72.4816701, - 43.2975656 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 101219521 - } - }, - { - "id": 101216733, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7089318, - 51.0506301 - ], - [ - 3.7089318, - 51.0506301 - ], - [ - 3.7089318, - 51.0506301 - ], - [ - 3.7089318, - 51.0506301 - ], - [ - 3.7089318, - 51.0506301 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 101216733 - } - }, - { - "id": 101213106, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -90.0541458, - 29.9774995 - ], - [ - -90.0541458, - 29.9774995 - ], - [ - -90.0541458, - 29.9774995 - ], - [ - -90.0541458, - 29.9774995 - ], - [ - -90.0541458, - 29.9774995 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 101213106 - } - }, - { - "id": 101198354, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3186153, - 44.5109408 - ], - [ - 11.3286956, - 44.5109408 - ], - [ - 11.3286956, - 44.5144855 - ], - [ - 11.3186153, - 44.5144855 - ], - [ - 11.3186153, - 44.5109408 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101198354 - } - }, - { - "id": 101192583, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.666804, - -33.4402386 - ], - [ - -70.666804, - -33.4402386 - ], - [ - -70.666804, - -33.4402386 - ], - [ - -70.666804, - -33.4402386 - ], - [ - -70.666804, - -33.4402386 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "EsriWorldImageryClarity", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 101192583 - } - }, - { - "id": 101178103, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1165435, - 50.7941926 - ], - [ - 3.1165435, - 50.7941926 - ], - [ - 3.1165435, - 50.7941926 - ], - [ - 3.1165435, - 50.7941926 - ], - [ - 3.1165435, - 50.7941926 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 101178103 - } - }, - { - "id": 101177425, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2067844, - 51.0517847 - ], - [ - 4.218857, - 51.0517847 - ], - [ - 4.218857, - 51.0596125 - ], - [ - 4.2067844, - 51.0596125 - ], - [ - 4.2067844, - 51.0517847 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 101177425 - } - }, - { - "id": 101177218, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.553424, - 50.9413953 - ], - [ - 3.6628139, - 50.9413953 - ], - [ - 3.6628139, - 50.9710133 - ], - [ - 3.553424, - 50.9710133 - ], - [ - 3.553424, - 50.9413953 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "AGIV", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 101177218 - } - }, - { - "id": 101171670, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2008889, - 51.0566202 - ], - [ - 4.2008889, - 51.0566202 - ], - [ - 4.2008889, - 51.0566202 - ], - [ - 4.2008889, - 51.0566202 - ], - [ - 4.2008889, - 51.0566202 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101171670 - } - }, - { - "id": 101166909, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1886178, - 51.0433721 - ], - [ - 4.2062667, - 51.0433721 - ], - [ - 4.2062667, - 51.0593664 - ], - [ - 4.1886178, - 51.0593664 - ], - [ - 4.1886178, - 51.0433721 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 101166909 - } - }, - { - "id": 101147703, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.505823, - 38.3639638 - ], - [ - -0.4610376, - 38.3639638 - ], - [ - -0.4610376, - 38.3751435 - ], - [ - -0.505823, - 38.3751435 - ], - [ - -0.505823, - 38.3639638 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "crossingtime", - "imagery": "osm", - "language": "es" - }, - "id": 101147703 - } - }, - { - "id": 101142626, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1781891, - 41.4326157 - ], - [ - 2.1781891, - 41.4326157 - ], - [ - 2.1781891, - 41.4326157 - ], - [ - 2.1781891, - 41.4326157 - ], - [ - 2.1781891, - 41.4326157 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 101142626 - } - }, - { - "id": 101142493, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.544343, - 52.9864598 - ], - [ - 10.544343, - 52.9864598 - ], - [ - 10.544343, - 52.9864598 - ], - [ - 10.544343, - 52.9864598 - ], - [ - 10.544343, - 52.9864598 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 101142493 - } - }, - { - "id": 101142390, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1774845, - 41.4314042 - ], - [ - 2.180788, - 41.4314042 - ], - [ - 2.180788, - 41.4323177 - ], - [ - 2.1774845, - 41.4323177 - ], - [ - 2.1774845, - 41.4314042 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wherethesidewalkshavenoname", - "imagery": "osm", - "language": "ca" - }, - "id": 101142390 - } - }, - { - "id": 101142389, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9818392, - 51.3173752 - ], - [ - 4.9818392, - 51.3173752 - ], - [ - 4.9818392, - 51.3173752 - ], - [ - 4.9818392, - 51.3173752 - ], - [ - 4.9818392, - 51.3173752 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 101142389 - } - }, - { - "id": 101141686, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5569267, - 51.1851613 - ], - [ - 3.5569267, - 51.1851613 - ], - [ - 3.5569267, - 51.1851613 - ], - [ - 3.5569267, - 51.1851613 - ], - [ - 3.5569267, - 51.1851613 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101141686 - } - }, - { - "id": 101136189, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.2131447, - 47.6794179 - ], - [ - -122.2125412, - 47.6794179 - ], - [ - -122.2125412, - 47.6797331 - ], - [ - -122.2131447, - 47.6797331 - ], - [ - -122.2131447, - 47.6794179 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101136189 - } - }, - { - "id": 101135663, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3164676, - 44.506155 - ], - [ - 11.3164676, - 44.506155 - ], - [ - 11.3164676, - 44.506155 - ], - [ - 11.3164676, - 44.506155 - ], - [ - 11.3164676, - 44.506155 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101135663 - } - }, - { - "id": 101127309, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1365871, - 52.0626422 - ], - [ - 5.1365871, - 52.0626422 - ], - [ - 5.1365871, - 52.0626422 - ], - [ - 5.1365871, - 52.0626422 - ], - [ - 5.1365871, - 52.0626422 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101127309 - } - }, - { - "id": 101125548, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4286446, - 51.1647235 - ], - [ - 4.4379325, - 51.1647235 - ], - [ - 4.4379325, - 51.1666487 - ], - [ - 4.4286446, - 51.1666487 - ], - [ - 4.4286446, - 51.1647235 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "speelplekken", - "imagery": "CartoDB.Positron", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 101125548 - } - }, - { - "id": 101122448, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7021512, - 51.0558547 - ], - [ - 3.7052212, - 51.0558547 - ], - [ - 3.7052212, - 51.0585154 - ], - [ - 3.7021512, - 51.0585154 - ], - [ - 3.7021512, - 51.0558547 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "nl" - }, - "id": 101122448 - } - }, - { - "id": 101095488, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6673348, - -33.439976 - ], - [ - -70.6668842, - -33.439976 - ], - [ - -70.6668842, - -33.4390964 - ], - [ - -70.6673348, - -33.4390964 - ], - [ - -70.6673348, - -33.439976 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "EsriWorldImageryClarity", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 101095488 - } - }, - { - "id": 101082113, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6682743, - -33.439181 - ], - [ - -70.6681324, - -33.439181 - ], - [ - -70.6681324, - -33.4391635 - ], - [ - -70.6682743, - -33.4391635 - ], - [ - -70.6682743, - -33.439181 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 101082113 - } - }, - { - "id": 101069649, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5516082, - 44.3049275 - ], - [ - 4.5527897, - 44.3049275 - ], - [ - 4.5527897, - 44.3056137 - ], - [ - 4.5516082, - 44.3056137 - ], - [ - 4.5516082, - 44.3049275 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 101069649 - } - }, - { - "id": 101068744, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4776314, - 51.0320371 - ], - [ - 4.4776314, - 51.0320371 - ], - [ - 4.4776314, - 51.0320371 - ], - [ - 4.4776314, - 51.0320371 - ], - [ - 4.4776314, - 51.0320371 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", - "imagery": "osm", - "language": "nl", - "theme-creator": "joost schouppe" - }, - "id": 101068744 - } - }, - { - "id": 101061414, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3342748, - 44.505662 - ], - [ - 11.3428538, - 44.505662 - ], - [ - 11.3428538, - 44.5059894 - ], - [ - 11.3342748, - 44.5059894 - ], - [ - 11.3342748, - 44.505662 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101061414 - } - }, - { - "id": 101035070, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9336575, - 50.8821512 - ], - [ - 3.9343843, - 50.8821512 - ], - [ - 3.9343843, - 50.8843851 - ], - [ - 3.9336575, - 50.8843851 - ], - [ - 3.9336575, - 50.8821512 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101035070 - } - }, - { - "id": 101012269, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3352705, - 50.83106 - ], - [ - 4.3405411, - 50.83106 - ], - [ - 4.3405411, - 50.8352866 - ], - [ - 4.3352705, - 50.8352866 - ], - [ - 4.3352705, - 50.83106 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "surveillance", - "imagery": "Stadia.AlidadeSmoothDark", - "language": "en" - }, - "id": 101012269 - } - }, - { - "id": 101003973, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2829442, - 50.7023665 - ], - [ - 4.2829442, - 50.7023665 - ], - [ - 4.2829442, - 50.7023665 - ], - [ - 4.2829442, - 50.7023665 - ], - [ - 4.2829442, - 50.7023665 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 101003973 - } - }, - { - "id": 100993948, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.0144755, - 50.889641 - ], - [ - 6.0155565, - 50.889641 - ], - [ - 6.0155565, - 50.8915902 - ], - [ - 6.0144755, - 50.8915902 - ], - [ - 6.0144755, - 50.889641 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 100993948 - } - }, - { - "id": 100993328, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2179757, - 51.2186362 - ], - [ - 3.2184773, - 51.2186362 - ], - [ - 3.2184773, - 51.2189604 - ], - [ - 3.2179757, - 51.2189604 - ], - [ - 3.2179757, - 51.2186362 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "speelplekken", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 100993328 - } - }, - { - "id": 100992716, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1174573, - 45.4932035 - ], - [ - 9.1174573, - 45.4932035 - ], - [ - 9.1174573, - 45.4932035 - ], - [ - 9.1174573, - 45.4932035 - ], - [ - 9.1174573, - 45.4932035 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100992716 - } - }, - { - "id": 100983734, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1313689, - 52.082803 - ], - [ - 5.1327847, - 52.082803 - ], - [ - 5.1327847, - 52.085217 - ], - [ - 5.1313689, - 52.085217 - ], - [ - 5.1313689, - 52.082803 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100983734 - } - }, - { - "id": 100975031, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3763446, - 51.1887107 - ], - [ - 4.3766058, - 51.1887107 - ], - [ - 4.3766058, - 51.1888741 - ], - [ - 4.3763446, - 51.1888741 - ], - [ - 4.3763446, - 51.1887107 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "speelplekken", - "imagery": "AGIV10cm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 100975031 - } - }, - { - "id": 100958601, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7288407, - 51.0483444 - ], - [ - 3.7288407, - 51.0483444 - ], - [ - 3.7288407, - 51.0483444 - ], - [ - 3.7288407, - 51.0483444 - ], - [ - 3.7288407, - 51.0483444 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100958601 - } - }, - { - "id": 100951681, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2896939, - 50.7282592 - ], - [ - 4.2896939, - 50.7282592 - ], - [ - 4.2896939, - 50.7282592 - ], - [ - 4.2896939, - 50.7282592 - ], - [ - 4.2896939, - 50.7282592 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 100951681 - } - }, - { - "id": 100920070, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7089667, - 51.0339914 - ], - [ - 3.7089667, - 51.0339914 - ], - [ - 3.7089667, - 51.0339914 - ], - [ - 3.7089667, - 51.0339914 - ], - [ - 3.7089667, - 51.0339914 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100920070 - } - }, - { - "id": 100919638, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7040289, - 51.0406965 - ], - [ - 3.7040289, - 51.0406965 - ], - [ - 3.7040289, - 51.0406965 - ], - [ - 3.7040289, - 51.0406965 - ], - [ - 3.7040289, - 51.0406965 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100919638 - } - }, - { - "id": 100896599, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.0805629, - 53.0480419 - ], - [ - 6.0834502, - 53.0480419 - ], - [ - 6.0834502, - 53.0522931 - ], - [ - 6.0805629, - 53.0522931 - ], - [ - 6.0805629, - 53.0480419 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 100896599 - } - }, - { - "id": 100865857, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6653146, - -33.4405225 - ], - [ - -70.6653146, - -33.4405225 - ], - [ - -70.6653146, - -33.4405225 - ], - [ - -70.6653146, - -33.4405225 - ], - [ - -70.6653146, - -33.4405225 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 100865857 - } - }, - { - "id": 100863722, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.666647, - -33.4411425 - ], - [ - -70.6653731, - -33.4411425 - ], - [ - -70.6653731, - -33.4405572 - ], - [ - -70.666647, - -33.4405572 - ], - [ - -70.666647, - -33.4411425 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 100863722 - } - }, - { - "id": 100842093, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3357767, - 44.5212958 - ], - [ - 11.3364, - 44.5212958 - ], - [ - 11.3364, - 44.5219431 - ], - [ - 11.3357767, - 44.5219431 - ], - [ - 11.3357767, - 44.5212958 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100842093 - } - }, - { - "id": 100837457, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2162699, - 51.2135767 - ], - [ - 3.2169645, - 51.2135767 - ], - [ - 3.2169645, - 51.214016 - ], - [ - 3.2162699, - 51.214016 - ], - [ - 3.2162699, - 51.2135767 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "buurtnatuur", - "imagery": "osm", - "language": "nl", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 100837457 - } - }, - { - "id": 100836888, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.0153177, - 50.8911283 - ], - [ - 6.0153794, - 50.8911283 - ], - [ - 6.0153794, - 50.8911841 - ], - [ - 6.0153177, - 50.8911841 - ], - [ - 6.0153177, - 50.8911283 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 100836888 - } - }, - { - "id": 100835527, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1245476, - 52.0749423 - ], - [ - 5.1261397, - 52.0749423 - ], - [ - 5.1261397, - 52.0753999 - ], - [ - 5.1245476, - 52.0753999 - ], - [ - 5.1245476, - 52.0749423 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100835527 - } - }, - { - "id": 100834775, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1230192, - 52.0753999 - ], - [ - 5.1245476, - 52.0753999 - ], - [ - 5.1245476, - 52.0789521 - ], - [ - 5.1230192, - 52.0789521 - ], - [ - 5.1230192, - 52.0753999 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100834775 - } - }, - { - "id": 100834132, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1234536, - 52.0802511 - ], - [ - 5.1238427, - 52.0802511 - ], - [ - 5.1238427, - 52.0823233 - ], - [ - 5.1234536, - 52.0823233 - ], - [ - 5.1234536, - 52.0802511 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100834132 - } - }, - { - "id": 100802530, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4784087, - 51.0338428 - ], - [ - 4.4784087, - 51.0338428 - ], - [ - 4.4784087, - 51.0338428 - ], - [ - 4.4784087, - 51.0338428 - ], - [ - 4.4784087, - 51.0338428 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", - "imagery": "osm", - "language": "nl" - }, - "id": 100802530 - } - }, - { - "id": 100801897, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4733506, - 51.0203947 - ], - [ - 4.4776314, - 51.0203947 - ], - [ - 4.4776314, - 51.0320371 - ], - [ - 4.4733506, - 51.0320371 - ], - [ - 4.4733506, - 51.0203947 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", - "imagery": "osm", - "language": "nl" - }, - "id": 100801897 - } - }, - { - "id": 100797468, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4784087, - 51.0338428 - ], - [ - 4.4784087, - 51.0338428 - ], - [ - 4.4784087, - 51.0338428 - ], - [ - 4.4784087, - 51.0338428 - ], - [ - 4.4784087, - 51.0338428 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", - "imagery": "osm", - "language": "nl" - }, - "id": 100797468 - } - }, - { - "id": 100794576, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -7.9977143, - 37.097959 - ], - [ - -7.9977143, - 37.097959 - ], - [ - -7.9977143, - 37.097959 - ], - [ - -7.9977143, - 37.097959 - ], - [ - -7.9977143, - 37.097959 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 100794576 - } - }, - { - "id": 100789874, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3154966, - 44.5017016 - ], - [ - 11.3424806, - 44.5017016 - ], - [ - 11.3424806, - 44.5232843 - ], - [ - 11.3154966, - 44.5232843 - ], - [ - 11.3154966, - 44.5017016 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100789874 - } - }, - { - "id": 100763657, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -8.1790775, - 37.2334741 - ], - [ - -8.1790775, - 37.2334741 - ], - [ - -8.1790775, - 37.2334741 - ], - [ - -8.1790775, - 37.2334741 - ], - [ - -8.1790775, - 37.2334741 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 100763657 - } - }, - { - "id": 100748361, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6663595, - -33.44051 - ], - [ - -70.6653372, - -33.44051 - ], - [ - -70.6653372, - -33.4400308 - ], - [ - -70.6663595, - -33.4400308 - ], - [ - -70.6663595, - -33.44051 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 100748361 - } - }, - { - "id": 100732356, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -7.7932998, - 37.0985676 - ], - [ - -7.608539, - 37.0985676 - ], - [ - -7.608539, - 37.1519232 - ], - [ - -7.7932998, - 37.1519232 - ], - [ - -7.7932998, - 37.0985676 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 100732356 - } - }, - { - "id": 100724260, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3497003, - 44.5076872 - ], - [ - 11.3661767, - 44.5076872 - ], - [ - 11.3661767, - 44.5131385 - ], - [ - 11.3497003, - 44.5131385 - ], - [ - 11.3497003, - 44.5076872 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100724260 - } - }, - { - "id": 100719899, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.0148054, - 50.8910064 - ], - [ - 6.0151353, - 50.8910064 - ], - [ - 6.0151353, - 50.8915123 - ], - [ - 6.0148054, - 50.8915123 - ], - [ - 6.0148054, - 50.8910064 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 100719899 - } - }, - { - "id": 100710537, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3577801, - 44.5081431 - ], - [ - 11.3578191, - 44.5081431 - ], - [ - 11.3578191, - 44.5082534 - ], - [ - 11.3577801, - 44.5082534 - ], - [ - 11.3577801, - 44.5081431 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100710537 - } - }, - { - "id": 100688874, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7792621, - 39.647828 - ], - [ - 2.7820247, - 39.647828 - ], - [ - 2.7820247, - 39.6480655 - ], - [ - 2.7792621, - 39.6480655 - ], - [ - 2.7792621, - 39.647828 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "maps", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100688874 - } - }, - { - "id": 100687881, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7710304, - 39.6473055 - ], - [ - 2.7747326, - 39.6473055 - ], - [ - 2.7747326, - 39.6487185 - ], - [ - 2.7710304, - 39.6487185 - ], - [ - 2.7710304, - 39.6473055 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "ca", - "theme-creator": "MapComplete" - }, - "id": 100687881 - } - }, - { - "id": 100687422, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7713394, - 39.647514 - ], - [ - 2.7774962, - 39.647514 - ], - [ - 2.7774962, - 39.6502397 - ], - [ - 2.7713394, - 39.6502397 - ], - [ - 2.7713394, - 39.647514 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 100687422 - } - }, - { - "id": 100654596, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3390213, - 44.5073116 - ], - [ - 11.3456473, - 44.5073116 - ], - [ - 11.3456473, - 44.5095872 - ], - [ - 11.3390213, - 44.5095872 - ], - [ - 11.3390213, - 44.5073116 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100654596 - } - }, - { - "id": 100649005, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.0084137, - 50.8830418 - ], - [ - 6.0138586, - 50.8830418 - ], - [ - 6.0138586, - 50.8863619 - ], - [ - 6.0084137, - 50.8863619 - ], - [ - 6.0084137, - 50.8830418 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 100649005 - } - }, - { - "id": 100633150, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1075938, - 52.095016 - ], - [ - 5.107999, - 52.095016 - ], - [ - 5.107999, - 52.0964862 - ], - [ - 5.1075938, - 52.0964862 - ], - [ - 5.1075938, - 52.095016 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100633150 - } - }, - { - "id": 100621555, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8418701, - 51.0087669 - ], - [ - 4.7477165, - 51.0087669 - ], - [ - 4.7477165, - 51.1611812 - ], - [ - 3.8418701, - 51.1611812 - ], - [ - 3.8418701, - 51.0087669 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "AGIV10cm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100621555 - } - }, - { - "id": 100608902, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -77.0356957, - -12.1281742 - ], - [ - -77.0356957, - -12.1281742 - ], - [ - -77.0356957, - -12.1281742 - ], - [ - -77.0356957, - -12.1281742 - ], - [ - -77.0356957, - -12.1281742 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100608902 - } - }, - { - "id": 100608285, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -77.0459241, - -12.1263273 - ], - [ - -77.0366083, - -12.1263273 - ], - [ - -77.0366083, - -12.1174622 - ], - [ - -77.0459241, - -12.1174622 - ], - [ - -77.0459241, - -12.1263273 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100608285 - } - }, - { - "id": 100590572, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9275671, - 52.1005135 - ], - [ - 4.9863853, - 52.1005135 - ], - [ - 4.9863853, - 52.1388563 - ], - [ - 4.9275671, - 52.1388563 - ], - [ - 4.9275671, - 52.1005135 - ] - ] - ] - }, - "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", - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 100590572 - } - }, - { - "id": 100590212, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9118286, - 52.0916732 - ], - [ - 4.9967526, - 52.0916732 - ], - [ - 4.9967526, - 52.168608 - ], - [ - 4.9118286, - 52.168608 - ], - [ - 4.9118286, - 52.0916732 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 100590212 - } - }, - { - "id": 100573127, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2099739, - 51.1986843 - ], - [ - 3.2100651, - 51.1986843 - ], - [ - 3.2100651, - 51.1987767 - ], - [ - 3.2099739, - 51.1987767 - ], - [ - 3.2099739, - 51.1986843 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 100573127 - } - }, - { - "id": 100555952, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2142827, - -39.8393394 - ], - [ - -73.2142827, - -39.8393394 - ], - [ - -73.2142827, - -39.8393394 - ], - [ - -73.2142827, - -39.8393394 - ], - [ - -73.2142827, - -39.8393394 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "EsriWorldImagery", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 100555952 - } - }, - { - "id": 100554125, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7067909, - 51.0292802 - ], - [ - 3.7075634, - 51.0292802 - ], - [ - 3.7075634, - 51.0297638 - ], - [ - 3.7067909, - 51.0297638 - ], - [ - 3.7067909, - 51.0292802 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "nl" - }, - "id": 100554125 - } - }, - { - "id": 100549103, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3440987, - 50.8460372 - ], - [ - 4.3750732, - 50.8460372 - ], - [ - 4.3750732, - 50.868175 - ], - [ - 4.3440987, - 50.868175 - ], - [ - 4.3440987, - 50.8460372 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100549103 - } - }, - { - "id": 100541478, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2263631, - 45.4844916 - ], - [ - 9.2263631, - 45.4844916 - ], - [ - 9.2263631, - 45.4844916 - ], - [ - 9.2263631, - 45.4844916 - ], - [ - 9.2263631, - 45.4844916 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100541478 - } - }, - { - "id": 100540347, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2525253, - 51.1538874 - ], - [ - 3.2597849, - 51.1538874 - ], - [ - 3.2597849, - 51.1610842 - ], - [ - 3.2525253, - 51.1610842 - ], - [ - 3.2525253, - 51.1538874 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "imagery": "osm", - "language": "nl" - }, - "id": 100540347 - } - }, - { - "id": 100516584, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2237536, - -39.842491 - ], - [ - -70.6647921, - -39.842491 - ], - [ - -70.6647921, - -33.4391859 - ], - [ - -73.2237536, - -33.4391859 - ], - [ - -73.2237536, - -39.842491 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 100516584 - } - }, - { - "id": 100513175, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.3657907, - -34.646802 - ], - [ - -70.7533962, - -34.646802 - ], - [ - -70.7533962, - -33.4888743 - ], - [ - -71.3657907, - -33.4888743 - ], - [ - -71.3657907, - -34.646802 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "EsriWorldImageryClarity", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 100513175 - } - }, - { - "id": 100509237, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3181252, - 50.8249964 - ], - [ - 4.3351759, - 50.8249964 - ], - [ - 4.3351759, - 50.9337047 - ], - [ - 4.3181252, - 50.9337047 - ], - [ - 4.3181252, - 50.8249964 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 100509237 - } - }, - { - "id": 100507908, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2421657, - 50.7423639 - ], - [ - 4.2421657, - 50.7423639 - ], - [ - 4.2421657, - 50.7423639 - ], - [ - 4.2421657, - 50.7423639 - ], - [ - 4.2421657, - 50.7423639 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 100507908 - } - }, - { - "id": 100503768, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6667742, - -33.4409553 - ], - [ - -70.6667635, - -33.4409553 - ], - [ - -70.6667635, - -33.4408226 - ], - [ - -70.6667742, - -33.4408226 - ], - [ - -70.6667742, - -33.4409553 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "EsriWorldImageryClarity", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 100503768 - } - }, - { - "id": 100500229, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1884112, - 45.1594003 - ], - [ - 9.1884112, - 45.1594003 - ], - [ - 9.1884112, - 45.1594003 - ], - [ - 9.1884112, - 45.1594003 - ], - [ - 9.1884112, - 45.1594003 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 100500229 - } - }, - { - "id": 100478531, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9615555, - 51.0704267 - ], - [ - 2.9615555, - 51.0704267 - ], - [ - 2.9615555, - 51.0704267 - ], - [ - 2.9615555, - 51.0704267 - ], - [ - 2.9615555, - 51.0704267 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "AGIV", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100478531 - } - }, - { - "id": 100440532, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3217388, - 51.5843333 - ], - [ - 4.3217388, - 51.5843333 - ], - [ - 4.3217388, - 51.5843333 - ], - [ - 4.3217388, - 51.5843333 - ], - [ - 4.3217388, - 51.5843333 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 100440532 - } - }, - { - "id": 100440346, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3145478, - 51.5796281 - ], - [ - 4.3179461, - 51.5796281 - ], - [ - 4.3179461, - 51.5876897 - ], - [ - 4.3145478, - 51.5876897 - ], - [ - 4.3145478, - 51.5796281 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "fritures", - "imagery": "osm", - "language": "nl" - }, - "id": 100440346 - } - }, - { - "id": 100440258, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3290022, - 51.577778 - ], - [ - 4.3290022, - 51.577778 - ], - [ - 4.3290022, - 51.577778 - ], - [ - 4.3290022, - 51.577778 - ], - [ - 4.3290022, - 51.577778 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100440258 - } - }, - { - "id": 100439729, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3170395, - 51.5678357 - ], - [ - 4.3415549, - 51.5678357 - ], - [ - 4.3415549, - 51.5871631 - ], - [ - 4.3170395, - 51.5871631 - ], - [ - 4.3170395, - 51.5678357 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 100439729 - } - }, - { - "id": 100436673, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.570069, - -33.5922666 - ], - [ - -70.5699325, - -33.5922666 - ], - [ - -70.5699325, - -33.5922407 - ], - [ - -70.570069, - -33.5922407 - ], - [ - -70.570069, - -33.5922666 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 100436673 - } - }, - { - "id": 100435050, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -7.6782291, - 37.095724 - ], - [ - -7.6782291, - 37.095724 - ], - [ - -7.6782291, - 37.095724 - ], - [ - -7.6782291, - 37.095724 - ], - [ - -7.6782291, - 37.095724 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 100435050 - } - }, - { - "id": 100428850, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6666959, - -33.4410356 - ], - [ - -70.6666959, - -33.4410356 - ], - [ - -70.6666959, - -33.4410356 - ], - [ - -70.6666959, - -33.4410356 - ], - [ - -70.6666959, - -33.4410356 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100428850 - } - }, - { - "id": 100414702, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9329197, - 50.8072454 - ], - [ - 4.9329197, - 50.8072454 - ], - [ - 4.9329197, - 50.8072454 - ], - [ - 4.9329197, - 50.8072454 - ], - [ - 4.9329197, - 50.8072454 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100414702 - } - }, - { - "id": 100378312, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.3703377, - 47.6819544 - ], - [ - -122.370337, - 47.6819544 - ], - [ - -122.370337, - 47.6819544 - ], - [ - -122.3703377, - 47.6819544 - ], - [ - -122.3703377, - 47.6819544 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100378312 - } - }, - { - "id": 100377781, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1252716, - 41.3789287 - ], - [ - 2.1267001, - 41.3789287 - ], - [ - 2.1267001, - 41.3799584 - ], - [ - 2.1252716, - 41.3799584 - ], - [ - 2.1252716, - 41.3789287 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wherethesidewalkshavenoname", - "imagery": "osm", - "language": "es" - }, - "id": 100377781 - } - }, - { - "id": 100375035, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.923514, - 48.6254402 - ], - [ - 8.923514, - 48.6254402 - ], - [ - 8.923514, - 48.6254402 - ], - [ - 8.923514, - 48.6254402 - ], - [ - 8.923514, - 48.6254402 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 100375035 - } - }, - { - "id": 100374476, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.57132, - -33.591366 - ], - [ - -70.571125, - -33.591366 - ], - [ - -70.571125, - -33.5902747 - ], - [ - -70.57132, - -33.5902747 - ], - [ - -70.57132, - -33.591366 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 100374476 - } - }, - { - "id": 100372177, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3700067, - 50.9213056 - ], - [ - 4.3932456, - 50.9213056 - ], - [ - 4.3932456, - 50.9406798 - ], - [ - 4.3700067, - 50.9406798 - ], - [ - 4.3700067, - 50.9213056 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 100372177 - } - }, - { - "id": 100372173, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.8987566, - 48.6421418 - ], - [ - 8.9005016, - 48.6421418 - ], - [ - 8.9005016, - 48.6787414 - ], - [ - 8.8987566, - 48.6787414 - ], - [ - 8.8987566, - 48.6421418 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 100372173 - } - }, - { - "id": 100371897, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.900295, - 48.6033601 - ], - [ - 8.9084296, - 48.6033601 - ], - [ - 8.9084296, - 48.6419419 - ], - [ - 8.900295, - 48.6419419 - ], - [ - 8.900295, - 48.6033601 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 100371897 - } - }, - { - "id": 100369859, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3744705, - 50.9360497 - ], - [ - 4.3777963, - 50.9360497 - ], - [ - 4.3777963, - 50.936897 - ], - [ - 4.3744705, - 50.936897 - ], - [ - 4.3744705, - 50.9360497 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "AGIV", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 100369859 - } - }, - { - "id": 100368458, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.36818, - 50.9206002 - ], - [ - 4.4008365, - 50.9206002 - ], - [ - 4.4008365, - 50.936897 - ], - [ - 4.36818, - 50.936897 - ], - [ - 4.36818, - 50.9206002 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 100368458 - } - }, - { - "id": 100357540, - "type": "Feature", - "geometry": null, - "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:20Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 100357540 - } - }, - { - "id": 100357539, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -43.9619181, - -19.8680519 - ], - [ - -43.9619181, - -19.8680519 - ], - [ - -43.9619181, - -19.8680519 - ], - [ - -43.9619181, - -19.8680519 - ], - [ - -43.9619181, - -19.8680519 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 100357539 - } - }, - { - "id": 100351890, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7196875, - 51.0458851 - ], - [ - 3.7196875, - 51.0458851 - ], - [ - 3.7196875, - 51.0458851 - ], - [ - 3.7196875, - 51.0458851 - ], - [ - 3.7196875, - 51.0458851 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 100351890 - } - }, - { - "id": 100320533, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.5712297, - -33.5905869 - ], - [ - -70.5712297, - -33.5905869 - ], - [ - -70.5712297, - -33.5905869 - ], - [ - -70.5712297, - -33.5905869 - ], - [ - -70.5712297, - -33.5905869 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 100320533 - } - }, - { - "id": 100308444, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6753948, - -33.4420027 - ], - [ - -70.665063, - -33.4420027 - ], - [ - -70.665063, - -33.4382954 - ], - [ - -70.6753948, - -33.4382954 - ], - [ - -70.6753948, - -33.4420027 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "EsriWorldImageryClarity", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 100308444 - } - }, - { - "id": 100302384, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3555574, - 50.847501 - ], - [ - 4.3555574, - 50.847501 - ], - [ - 4.3555574, - 50.847501 - ], - [ - 4.3555574, - 50.847501 - ], - [ - 4.3555574, - 50.847501 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "surveillance", - "imagery": "Stadia.AlidadeSmoothDark", - "language": "en" - }, - "id": 100302384 - } - }, - { - "id": 100297422, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3283818, - 44.5137276 - ], - [ - 11.3287762, - 44.5137276 - ], - [ - 11.3287762, - 44.5149765 - ], - [ - 11.3283818, - 44.5149765 - ], - [ - 11.3283818, - 44.5137276 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100297422 - } - }, - { - "id": 100291986, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3540877, - 44.5008503 - ], - [ - 11.3587392, - 44.5008503 - ], - [ - 11.3587392, - 44.5019347 - ], - [ - 11.3540877, - 44.5019347 - ], - [ - 11.3540877, - 44.5008503 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100291986 - } - }, - { - "id": 100279509, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3486129, - 44.4999583 - ], - [ - 11.3497027, - 44.4999583 - ], - [ - 11.3497027, - 44.5010125 - ], - [ - 11.3486129, - 44.5010125 - ], - [ - 11.3486129, - 44.4999583 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100279509 - } - }, - { - "id": 100234767, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7196875, - 51.0458851 - ], - [ - 3.7196875, - 51.0458851 - ], - [ - 3.7196875, - 51.0458851 - ], - [ - 3.7196875, - 51.0458851 - ], - [ - 3.7196875, - 51.0458851 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 100234767 - } - }, - { - "id": 100228941, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.2865425, - 51.4663193 - ], - [ - 7.3080533, - 51.4663193 - ], - [ - 7.3080533, - 51.4720384 - ], - [ - 7.2865425, - 51.4720384 - ], - [ - 7.2865425, - 51.4663193 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "Metropole_Ruhr_RVR-DOP10", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 100228941 - } - }, - { - "id": 100228867, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.706322, - 51.0513358 - ], - [ - 3.706322, - 51.0513358 - ], - [ - 3.706322, - 51.0513358 - ], - [ - 3.706322, - 51.0513358 - ], - [ - 3.706322, - 51.0513358 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100228867 - } - }, - { - "id": 100222646, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.1625554, - 51.5120398 - ], - [ - -0.1625554, - 51.5120398 - ], - [ - -0.1625554, - 51.5120398 - ], - [ - -0.1625554, - 51.5120398 - ], - [ - -0.1625554, - 51.5120398 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "EsriWorldImagery", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100222646 - } - }, - { - "id": 100221069, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.714256, - 51.052328 - ], - [ - 3.714256, - 51.052328 - ], - [ - 3.714256, - 51.052328 - ], - [ - 3.714256, - 51.052328 - ], - [ - 3.714256, - 51.052328 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100221069 - } - }, - { - "id": 100220460, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3704151, - 44.5026081 - ], - [ - 11.3704151, - 44.5026081 - ], - [ - 11.3704151, - 44.5026081 - ], - [ - 11.3704151, - 44.5026081 - ], - [ - 11.3704151, - 44.5026081 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100220460 - } - }, - { - "id": 100218886, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6661052, - -33.440818 - ], - [ - -70.6660201, - -33.440818 - ], - [ - -70.6660201, - -33.4405783 - ], - [ - -70.6661052, - -33.4405783 - ], - [ - -70.6661052, - -33.440818 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 100218886 - } - }, - { - "id": 100217759, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1184193, - 51.028489 - ], - [ - 4.1184193, - 51.028489 - ], - [ - 4.1184193, - 51.028489 - ], - [ - 4.1184193, - 51.028489 - ], - [ - 4.1184193, - 51.028489 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "AGIV10cm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 100217759 - } - }, - { - "id": 100209616, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.116008, - 51.0235646 - ], - [ - 4.1163003, - 51.0235646 - ], - [ - 4.1163003, - 51.0236034 - ], - [ - 4.116008, - 51.0236034 - ], - [ - 4.116008, - 51.0235646 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "AGIVFlandersGRB", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 100209616 - } - }, - { - "id": 100182404, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3522822, - 52.1307702 - ], - [ - 4.3522822, - 52.1307702 - ], - [ - 4.3522822, - 52.1307702 - ], - [ - 4.3522822, - 52.1307702 - ], - [ - 4.3522822, - 52.1307702 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 100182404 - } - }, - { - "id": 100178688, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8704463, - 51.141004 - ], - [ - 4.9033785, - 51.141004 - ], - [ - 4.9033785, - 51.1678477 - ], - [ - 4.8704463, - 51.1678477 - ], - [ - 4.8704463, - 51.141004 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 100178688 - } - }, - { - "id": 100167174, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6662343, - -33.4410426 - ], - [ - -70.6661284, - -33.4410426 - ], - [ - -70.6661284, - -33.440835 - ], - [ - -70.6662343, - -33.440835 - ], - [ - -70.6662343, - -33.4410426 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 100167174 - } - }, - { - "id": 100163727, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6666377, - -33.440967 - ], - [ - -70.6652313, - -33.440967 - ], - [ - -70.6652313, - -33.4400983 - ], - [ - -70.6666377, - -33.4400983 - ], - [ - -70.6666377, - -33.440967 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 100163727 - } - }, - { - "id": 100162468, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6668742, - -33.4412091 - ], - [ - -70.665759, - -33.4412091 - ], - [ - -70.665759, - -33.4401983 - ], - [ - -70.6668742, - -33.4401983 - ], - [ - -70.6668742, - -33.4412091 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 100162468 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2021-4.json b/Docs/Tools/stats/stats.2021-4.json deleted file mode 100644 index 33e72adfbf..0000000000 --- a/Docs/Tools/stats/stats.2021-4.json +++ /dev/null @@ -1,25004 +0,0 @@ -{ - "features": [ - { - "id": 103931344, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1559722, - 51.3128267 - ], - [ - 3.1559722, - 51.3128267 - ], - [ - 3.1559722, - 51.3128267 - ], - [ - 3.1559722, - 51.3128267 - ], - [ - 3.1559722, - 51.3128267 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.braindeaddev.com", - "theme": "fire", - "imagery": "osm", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 103931344 - } - }, - { - "id": 103913653, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6071562, - 51.9656305 - ], - [ - 4.623557, - 51.9656305 - ], - [ - 4.623557, - 51.9774086 - ], - [ - 4.6071562, - 51.9774086 - ], - [ - 4.6071562, - 51.9656305 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "Afvalkokers", - "imagery": "osm", - "language": "nl" - }, - "id": 103913653 - } - }, - { - "id": 103911612, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.6686743, - 53.1217365 - ], - [ - 6.6686743, - 53.1217365 - ], - [ - 6.6686743, - 53.1217365 - ], - [ - 6.6686743, - 53.1217365 - ], - [ - 6.6686743, - 53.1217365 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103911612 - } - }, - { - "id": 103909231, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.6423829, - 51.7475349 - ], - [ - 14.6423829, - 51.7475349 - ], - [ - 14.6423829, - 51.7475349 - ], - [ - 14.6423829, - 51.7475349 - ], - [ - 14.6423829, - 51.7475349 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103909231 - } - }, - { - "id": 103906814, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.6805995, - 53.0767525 - ], - [ - 6.6805995, - 53.0767525 - ], - [ - 6.6805995, - 53.0767525 - ], - [ - 6.6805995, - 53.0767525 - ], - [ - 6.6805995, - 53.0767525 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103906814 - } - }, - { - "id": 103905526, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 24.6265396, - 60.1461309 - ], - [ - 24.6538461, - 60.1461309 - ], - [ - 24.6538461, - 60.1536764 - ], - [ - 24.6265396, - 60.1536764 - ], - [ - 24.6265396, - 60.1461309 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103905526 - } - }, - { - "id": 103904671, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.6457168, - 51.7436771 - ], - [ - 14.6457168, - 51.7436771 - ], - [ - 14.6457168, - 51.7436771 - ], - [ - 14.6457168, - 51.7436771 - ], - [ - 14.6457168, - 51.7436771 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103904671 - } - }, - { - "id": 103900585, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7217118, - 50.2997137 - ], - [ - 4.7217118, - 50.2997137 - ], - [ - 4.7217118, - 50.2997137 - ], - [ - 4.7217118, - 50.2997137 - ], - [ - 4.7217118, - 50.2997137 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fritures", - "imagery": "osm", - "language": "nl" - }, - "id": 103900585 - } - }, - { - "id": 103893667, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2208848, - 41.4434507 - ], - [ - 2.2208848, - 41.4434507 - ], - [ - 2.2208848, - 41.4434507 - ], - [ - 2.2208848, - 41.4434507 - ], - [ - 2.2208848, - 41.4434507 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "arbres_llefia", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 103893667 - } - }, - { - "id": 103884702, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5964587, - 51.9603395 - ], - [ - 4.6117714, - 51.9603395 - ], - [ - 4.6117714, - 51.9707442 - ], - [ - 4.5964587, - 51.9707442 - ], - [ - 4.5964587, - 51.9603395 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "Afvalkokers", - "imagery": "osm", - "language": "nl" - }, - "id": 103884702 - } - }, - { - "id": 103877994, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.5272059, - 13.9333059 - ], - [ - 121.6234025, - 13.9333059 - ], - [ - 121.6234025, - 13.9633648 - ], - [ - 121.5272059, - 13.9633648 - ], - [ - 121.5272059, - 13.9333059 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 103877994 - } - }, - { - "id": 103874228, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.5266097, - 13.9618558 - ], - [ - 121.5266097, - 13.9618558 - ], - [ - 121.5266097, - 13.9618558 - ], - [ - 121.5266097, - 13.9618558 - ], - [ - 121.5266097, - 13.9618558 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 103874228 - } - }, - { - "id": 103867866, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3956956, - 51.0618712 - ], - [ - 3.3956956, - 51.0618712 - ], - [ - 3.3956956, - 51.0618712 - ], - [ - 3.3956956, - 51.0618712 - ], - [ - 3.3956956, - 51.0618712 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103867866 - } - }, - { - "id": 103865139, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1383536, - 48.4387268 - ], - [ - 2.1383536, - 48.4387268 - ], - [ - 2.1383536, - 48.4387268 - ], - [ - 2.1383536, - 48.4387268 - ], - [ - 2.1383536, - 48.4387268 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103865139 - } - }, - { - "id": 103857813, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1807232, - 48.905622 - ], - [ - 2.1807232, - 48.905622 - ], - [ - 2.1807232, - 48.905622 - ], - [ - 2.1807232, - 48.905622 - ], - [ - 2.1807232, - 48.905622 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103857813 - } - }, - { - "id": 103825106, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7777917, - 48.1106173 - ], - [ - 11.7777917, - 48.1106173 - ], - [ - 11.7777917, - 48.1106173 - ], - [ - 11.7777917, - 48.1106173 - ], - [ - 11.7777917, - 48.1106173 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 103825106 - } - }, - { - "id": 103805126, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 125.6132843, - 7.0810085 - ], - [ - 125.6132843, - 7.0810085 - ], - [ - 125.6132843, - 7.0810085 - ], - [ - 125.6132843, - 7.0810085 - ], - [ - 125.6132843, - 7.0810085 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103805126 - } - }, - { - "id": 103800844, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3260113, - 50.9978714 - ], - [ - 3.3359015, - 50.9978714 - ], - [ - 3.3359015, - 51.003739 - ], - [ - 3.3260113, - 51.003739 - ], - [ - 3.3260113, - 50.9978714 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103800844 - } - }, - { - "id": 103799210, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5972553, - 51.9612855 - ], - [ - 4.6132869, - 51.9612855 - ], - [ - 4.6132869, - 51.9668483 - ], - [ - 4.5972553, - 51.9668483 - ], - [ - 4.5972553, - 51.9612855 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "Afvalkokers", - "imagery": "osm", - "language": "nl" - }, - "id": 103799210 - } - }, - { - "id": 103796502, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2707072, - 48.8854112 - ], - [ - 2.2707072, - 48.8854112 - ], - [ - 2.2707072, - 48.8854112 - ], - [ - 2.2707072, - 48.8854112 - ], - [ - 2.2707072, - 48.8854112 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 103796502 - } - }, - { - "id": 103792251, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6077579, - 51.963056 - ], - [ - 4.6171895, - 51.963056 - ], - [ - 4.6171895, - 51.9692357 - ], - [ - 4.6077579, - 51.9692357 - ], - [ - 4.6077579, - 51.963056 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "Afvalkokers", - "imagery": "osm", - "language": "nl" - }, - "id": 103792251 - } - }, - { - "id": 103791227, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3437134, - 44.4926522 - ], - [ - 11.3437134, - 44.4926522 - ], - [ - 11.3437134, - 44.4926522 - ], - [ - 11.3437134, - 44.4926522 - ], - [ - 11.3437134, - 44.4926522 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103791227 - } - }, - { - "id": 103784297, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6686612, - 49.4006541 - ], - [ - 8.692931, - 49.4006541 - ], - [ - 8.692931, - 49.4157485 - ], - [ - 8.6686612, - 49.4157485 - ], - [ - 8.6686612, - 49.4006541 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103784297 - } - }, - { - "id": 103763467, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.6847626, - 53.0933082 - ], - [ - 6.6860292, - 53.0933082 - ], - [ - 6.6860292, - 53.0934238 - ], - [ - 6.6847626, - 53.0934238 - ], - [ - 6.6847626, - 53.0933082 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103763467 - } - }, - { - "id": 103761379, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.667859, - 53.0865434 - ], - [ - 6.667859, - 53.0865434 - ], - [ - 6.667859, - 53.0865434 - ], - [ - 6.667859, - 53.0865434 - ], - [ - 6.667859, - 53.0865434 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103761379 - } - }, - { - "id": 103756614, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4776163, - 51.1215364 - ], - [ - 4.4794231, - 51.1215364 - ], - [ - 4.4794231, - 51.1218477 - ], - [ - 4.4776163, - 51.1218477 - ], - [ - 4.4776163, - 51.1215364 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "speelplekken", - "imagery": "CartoDB.Positron", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 103756614 - } - }, - { - "id": 103747106, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5772353, - 51.9526005 - ], - [ - 4.6243232, - 51.9526005 - ], - [ - 4.6243232, - 52.0155695 - ], - [ - 4.5772353, - 52.0155695 - ], - [ - 4.5772353, - 51.9526005 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "Afvalkokers", - "imagery": "osm", - "language": "nl" - }, - "id": 103747106 - } - }, - { - "id": 103729838, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7875312, - 51.2629135 - ], - [ - 4.7875312, - 51.2629135 - ], - [ - 4.7875312, - 51.2629135 - ], - [ - 4.7875312, - 51.2629135 - ], - [ - 4.7875312, - 51.2629135 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 103729838 - } - }, - { - "id": 103728876, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6679507, - 51.0339258 - ], - [ - 3.6754952, - 51.0339258 - ], - [ - 3.6754952, - 51.0431827 - ], - [ - 3.6679507, - 51.0431827 - ], - [ - 3.6679507, - 51.0339258 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "imagery": "osm", - "language": "nl" - }, - "id": 103728876 - } - }, - { - "id": 103728361, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.116502, - 51.2896921 - ], - [ - 3.116502, - 51.2896921 - ], - [ - 3.116502, - 51.2896921 - ], - [ - 3.116502, - 51.2896921 - ], - [ - 3.116502, - 51.2896921 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.braindeaddev.com", - "theme": "fire", - "imagery": "osm", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 103728361 - } - }, - { - "id": 103726335, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5964587, - 51.9603395 - ], - [ - 4.6751896, - 51.9603395 - ], - [ - 4.6751896, - 51.9892459 - ], - [ - 4.5964587, - 51.9892459 - ], - [ - 4.5964587, - 51.9603395 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "Afvalkokers", - "imagery": "osm", - "language": "nl" - }, - "id": 103726335 - } - }, - { - "id": 103718964, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 25.1359414, - 60.2843251 - ], - [ - 25.1359414, - 60.2843251 - ], - [ - 25.1359414, - 60.2843251 - ], - [ - 25.1359414, - 60.2843251 - ], - [ - 25.1359414, - 60.2843251 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 103718964 - } - }, - { - "id": 103718526, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6589202, - 51.9874269 - ], - [ - 4.6730563, - 51.9874269 - ], - [ - 4.6730563, - 51.9935483 - ], - [ - 4.6589202, - 51.9935483 - ], - [ - 4.6589202, - 51.9874269 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "Afvalkokers", - "imagery": "osm", - "language": "nl" - }, - "id": 103718526 - } - }, - { - "id": 103718525, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.664737, - 51.9874499 - ], - [ - 4.664737, - 51.9874499 - ], - [ - 4.664737, - 51.9874499 - ], - [ - 4.664737, - 51.9874499 - ], - [ - 4.664737, - 51.9874499 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "Afvalkokers", - "imagery": "osm", - "language": "nl" - }, - "id": 103718525 - } - }, - { - "id": 103717492, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2220329, - 41.440604 - ], - [ - 2.2220778, - 41.440604 - ], - [ - 2.2220778, - 41.4407352 - ], - [ - 2.2220329, - 41.4407352 - ], - [ - 2.2220329, - 41.440604 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "arbres_llefia", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 103717492 - } - }, - { - "id": 103713935, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.5921391, - 43.8832917 - ], - [ - 2.878763, - 43.8832917 - ], - [ - 2.878763, - 49.436422 - ], - [ - 1.5921391, - 49.436422 - ], - [ - 1.5921391, - 43.8832917 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103713935 - } - }, - { - "id": 103713018, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6591249, - 51.9798686 - ], - [ - 4.6702266, - 51.9798686 - ], - [ - 4.6702266, - 51.988043 - ], - [ - 4.6591249, - 51.988043 - ], - [ - 4.6591249, - 51.9798686 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "Afvalkokers", - "imagery": "osm", - "language": "nl" - }, - "id": 103713018 - } - }, - { - "id": 103710787, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7076497, - 51.0527377 - ], - [ - 3.7076497, - 51.0527377 - ], - [ - 3.7076497, - 51.0527377 - ], - [ - 3.7076497, - 51.0527377 - ], - [ - 3.7076497, - 51.0527377 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 103710787 - } - }, - { - "id": 103706104, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6075791, - 51.963056 - ], - [ - 4.6127477, - 51.963056 - ], - [ - 4.6127477, - 51.9665562 - ], - [ - 4.6075791, - 51.9665562 - ], - [ - 4.6075791, - 51.963056 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "Afvalkokers", - "imagery": "osm", - "language": "nl" - }, - "id": 103706104 - } - }, - { - "id": 103702168, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4424327, - 51.5800064 - ], - [ - 5.4424327, - 51.5800064 - ], - [ - 5.4424327, - 51.5800064 - ], - [ - 5.4424327, - 51.5800064 - ], - [ - 5.4424327, - 51.5800064 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 103702168 - } - }, - { - "id": 103684185, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8990066, - 42.7019566 - ], - [ - 2.8990066, - 42.7019566 - ], - [ - 2.8990066, - 42.7019566 - ], - [ - 2.8990066, - 42.7019566 - ], - [ - 2.8990066, - 42.7019566 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "fr.ign.bdortho", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103684185 - } - }, - { - "id": 103678765, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2189938, - 41.4345816 - ], - [ - 2.2234335, - 41.4345816 - ], - [ - 2.2234335, - 41.4432148 - ], - [ - 2.2189938, - 41.4432148 - ], - [ - 2.2189938, - 41.4345816 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "arbres_llefia", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 103678765 - } - }, - { - "id": 103667810, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 122.5663318, - 10.6978999 - ], - [ - 122.5663318, - 10.6978999 - ], - [ - 122.5663318, - 10.6978999 - ], - [ - 122.5663318, - 10.6978999 - ], - [ - 122.5663318, - 10.6978999 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 103667810 - } - }, - { - "id": 103667364, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 122.5676608, - 10.6979935 - ], - [ - 122.5676608, - 10.6979935 - ], - [ - 122.5676608, - 10.6979935 - ], - [ - 122.5676608, - 10.6979935 - ], - [ - 122.5676608, - 10.6979935 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103667364 - } - }, - { - "id": 103660877, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4961433, - 52.0489493 - ], - [ - 4.5631228, - 52.0489493 - ], - [ - 4.5631228, - 52.0746858 - ], - [ - 4.4961433, - 52.0746858 - ], - [ - 4.4961433, - 52.0489493 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 103660877 - } - }, - { - "id": 103657133, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5224029, - 52.0491374 - ], - [ - 4.5574561, - 52.0491374 - ], - [ - 4.5574561, - 52.0710888 - ], - [ - 4.5224029, - 52.0710888 - ], - [ - 4.5224029, - 52.0491374 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 103657133 - } - }, - { - "id": 103655718, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1882866, - 48.870915 - ], - [ - 2.2367587, - 48.870915 - ], - [ - 2.2367587, - 48.8830054 - ], - [ - 2.1882866, - 48.8830054 - ], - [ - 2.1882866, - 48.870915 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 103655718 - } - }, - { - "id": 103640045, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.604176, - 53.8155528 - ], - [ - -1.6037846, - 53.8155528 - ], - [ - -1.6037846, - 53.8158269 - ], - [ - -1.604176, - 53.8158269 - ], - [ - -1.604176, - 53.8155528 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103640045 - } - }, - { - "id": 103637542, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7573657, - 51.0273644 - ], - [ - 3.7928554, - 51.0273644 - ], - [ - 3.7928554, - 51.0712201 - ], - [ - 3.7573657, - 51.0712201 - ], - [ - 3.7573657, - 51.0273644 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103637542 - } - }, - { - "id": 103627326, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9406506, - 42.6885199 - ], - [ - 2.9406506, - 42.6885199 - ], - [ - 2.9406506, - 42.6885199 - ], - [ - 2.9406506, - 42.6885199 - ], - [ - 2.9406506, - 42.6885199 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "fr.ign.bdortho", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 103627326 - } - }, - { - "id": 103627272, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7367263, - 51.0567966 - ], - [ - 3.7367263, - 51.0567966 - ], - [ - 3.7367263, - 51.0567966 - ], - [ - 3.7367263, - 51.0567966 - ], - [ - 3.7367263, - 51.0567966 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103627272 - } - }, - { - "id": 103619733, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2773693, - 51.1411478 - ], - [ - 6.2773693, - 51.1411478 - ], - [ - 6.2773693, - 51.1411478 - ], - [ - 6.2773693, - 51.1411478 - ], - [ - 6.2773693, - 51.1411478 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103619733 - } - }, - { - "id": 103619432, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2771729, - 51.1361225 - ], - [ - 6.2820422, - 51.1361225 - ], - [ - 6.2820422, - 51.1413422 - ], - [ - 6.2771729, - 51.1413422 - ], - [ - 6.2771729, - 51.1361225 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103619432 - } - }, - { - "id": 103618326, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 123.8552731, - 9.651098 - ], - [ - 123.8552731, - 9.651098 - ], - [ - 123.8552731, - 9.651098 - ], - [ - 123.8552731, - 9.651098 - ], - [ - 123.8552731, - 9.651098 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103618326 - } - }, - { - "id": 103615504, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2759601, - 51.1316789 - ], - [ - 6.3062698, - 51.1316789 - ], - [ - 6.3062698, - 51.1446427 - ], - [ - 6.2759601, - 51.1446427 - ], - [ - 6.2759601, - 51.1316789 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 103615504 - } - }, - { - "id": 103611441, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.5590668, - 47.2252675 - ], - [ - -1.5432023, - 47.2252675 - ], - [ - -1.5432023, - 47.2349925 - ], - [ - -1.5590668, - 47.2349925 - ], - [ - -1.5590668, - 47.2252675 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 103611441 - } - }, - { - "id": 103611306, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.5353583, - 47.2348378 - ], - [ - -1.5353583, - 47.2348378 - ], - [ - -1.5353583, - 47.2348378 - ], - [ - -1.5353583, - 47.2348378 - ], - [ - -1.5353583, - 47.2348378 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 103611306 - } - }, - { - "id": 103611007, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -74.294996, - 40.0075848 - ], - [ - -74.2944034, - 40.0075848 - ], - [ - -74.2944034, - 40.0080386 - ], - [ - -74.294996, - 40.0080386 - ], - [ - -74.294996, - 40.0075848 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 103611007 - } - }, - { - "id": 103607085, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3127014, - 50.9999245 - ], - [ - 3.3127014, - 50.9999245 - ], - [ - 3.3127014, - 50.9999245 - ], - [ - 3.3127014, - 50.9999245 - ], - [ - 3.3127014, - 50.9999245 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103607085 - } - }, - { - "id": 103592787, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9236333, - 42.6702655 - ], - [ - 2.9547341, - 42.6702655 - ], - [ - 2.9547341, - 42.6849594 - ], - [ - 2.9236333, - 42.6849594 - ], - [ - 2.9236333, - 42.6702655 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 103592787 - } - }, - { - "id": 103587980, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6815596, - 51.0696872 - ], - [ - 13.6838926, - 51.0696872 - ], - [ - 13.6838926, - 51.0726096 - ], - [ - 13.6815596, - 51.0726096 - ], - [ - 13.6815596, - 51.0696872 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 103587980 - } - }, - { - "id": 103585340, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.9209982, - 40.5834518 - ], - [ - -73.9209982, - 40.5834518 - ], - [ - -73.9209982, - 40.5834518 - ], - [ - -73.9209982, - 40.5834518 - ], - [ - -73.9209982, - 40.5834518 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103585340 - } - }, - { - "id": 103584107, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2710022, - 48.8856122 - ], - [ - 2.2710022, - 48.8856122 - ], - [ - 2.2710022, - 48.8856122 - ], - [ - 2.2710022, - 48.8856122 - ], - [ - 2.2710022, - 48.8856122 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 103584107 - } - }, - { - "id": 103583598, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.9228187, - 43.7338638 - ], - [ - 12.9228187, - 43.7338638 - ], - [ - 12.9228187, - 43.7338638 - ], - [ - 12.9228187, - 43.7338638 - ], - [ - 12.9228187, - 43.7338638 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103583598 - } - }, - { - "id": 103582067, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.872017, - 43.6020672 - ], - [ - 3.8741581, - 43.6020672 - ], - [ - 3.8741581, - 43.6089863 - ], - [ - 3.872017, - 43.6089863 - ], - [ - 3.872017, - 43.6020672 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103582067 - } - }, - { - "id": 103575209, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6633976, - 50.8056975 - ], - [ - 4.6633976, - 50.8056975 - ], - [ - 4.6633976, - 50.8056975 - ], - [ - 4.6633976, - 50.8056975 - ], - [ - 4.6633976, - 50.8056975 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103575209 - } - }, - { - "id": 103574380, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -79.8814778, - 43.2519571 - ], - [ - -79.8327602, - 43.2519571 - ], - [ - -79.8327602, - 43.2529779 - ], - [ - -79.8814778, - 43.2529779 - ], - [ - -79.8814778, - 43.2519571 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103574380 - } - }, - { - "id": 103572648, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.1892235, - 44.6373819 - ], - [ - 11.1892235, - 44.6373819 - ], - [ - 11.1892235, - 44.6373819 - ], - [ - 11.1892235, - 44.6373819 - ], - [ - 11.1892235, - 44.6373819 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103572648 - } - }, - { - "id": 103570626, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3503836, - 52.5298945 - ], - [ - 13.3503836, - 52.5298945 - ], - [ - 13.3503836, - 52.5298945 - ], - [ - 13.3503836, - 52.5298945 - ], - [ - 13.3503836, - 52.5298945 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 103570626 - } - }, - { - "id": 103569305, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.654389, - 50.8220397 - ], - [ - 4.6545693, - 50.8220397 - ], - [ - 4.6545693, - 50.8223923 - ], - [ - 4.654389, - 50.8223923 - ], - [ - 4.654389, - 50.8220397 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 103569305 - } - }, - { - "id": 103568967, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7710727, - 48.079767 - ], - [ - 11.772066, - 48.079767 - ], - [ - 11.772066, - 48.0798849 - ], - [ - 11.7710727, - 48.0798849 - ], - [ - 11.7710727, - 48.079767 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 103568967 - } - }, - { - "id": 103567684, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.4186834, - 43.6482345 - ], - [ - 1.4191468, - 43.6482345 - ], - [ - 1.4191468, - 43.6535892 - ], - [ - 1.4186834, - 43.6535892 - ], - [ - 1.4186834, - 43.6482345 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103567684 - } - }, - { - "id": 103566900, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3399449, - 44.4993543 - ], - [ - 11.3417715, - 44.4993543 - ], - [ - 11.3417715, - 44.5001099 - ], - [ - 11.3399449, - 44.5001099 - ], - [ - 11.3399449, - 44.4993543 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103566900 - } - }, - { - "id": 103565210, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3260135, - 51.000644 - ], - [ - 3.3260135, - 51.000644 - ], - [ - 3.3260135, - 51.000644 - ], - [ - 3.3260135, - 51.000644 - ], - [ - 3.3260135, - 51.000644 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103565210 - } - }, - { - "id": 103561909, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3244923, - 50.9997912 - ], - [ - 3.3244923, - 50.9997912 - ], - [ - 3.3244923, - 50.9997912 - ], - [ - 3.3244923, - 50.9997912 - ], - [ - 3.3244923, - 50.9997912 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103561909 - } - }, - { - "id": 103558695, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0828409, - 14.6596073 - ], - [ - 121.0828409, - 14.6596073 - ], - [ - 121.0828409, - 14.6596073 - ], - [ - 121.0828409, - 14.6596073 - ], - [ - 121.0828409, - 14.6596073 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en" - }, - "id": 103558695 - } - }, - { - "id": 103549083, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.766462, - 48.1124923 - ], - [ - 11.7669824, - 48.1124923 - ], - [ - 11.7669824, - 48.1125783 - ], - [ - 11.766462, - 48.1125783 - ], - [ - 11.766462, - 48.1124923 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 103549083 - } - }, - { - "id": 103544375, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1001049, - 51.0165051 - ], - [ - 4.1001049, - 51.0165051 - ], - [ - 4.1001049, - 51.0165051 - ], - [ - 4.1001049, - 51.0165051 - ], - [ - 4.1001049, - 51.0165051 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 103544375 - } - }, - { - "id": 103537961, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7645335, - 48.1040819 - ], - [ - 11.7668912, - 48.1040819 - ], - [ - 11.7668912, - 48.1125783 - ], - [ - 11.7645335, - 48.1125783 - ], - [ - 11.7645335, - 48.1040819 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 103537961 - } - }, - { - "id": 103534538, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3776462, - 52.1109647 - ], - [ - 5.3776462, - 52.1109647 - ], - [ - 5.3776462, - 52.1109647 - ], - [ - 5.3776462, - 52.1109647 - ], - [ - 5.3776462, - 52.1109647 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "en", - "theme-creator": "Peter Elderson" - }, - "id": 103534538 - } - }, - { - "id": 103532232, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1942481, - 48.4935339 - ], - [ - 2.1946076, - 48.4935339 - ], - [ - 2.1946076, - 48.4936441 - ], - [ - 2.1942481, - 48.4936441 - ], - [ - 2.1942481, - 48.4935339 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 103532232 - } - }, - { - "id": 103529906, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 41.1324232, - 37.8565551 - ], - [ - 41.1330969, - 37.8565551 - ], - [ - 41.1330969, - 37.8574755 - ], - [ - 41.1324232, - 37.8574755 - ], - [ - 41.1324232, - 37.8565551 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "nl" - }, - "id": 103529906 - } - }, - { - "id": 103525894, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1221671, - 52.084339 - ], - [ - 5.128226, - 52.084339 - ], - [ - 5.128226, - 52.0897029 - ], - [ - 5.1221671, - 52.0897029 - ], - [ - 5.1221671, - 52.084339 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103525894 - } - }, - { - "id": 103523507, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2903521, - 50.7295549 - ], - [ - 4.2903521, - 50.7295549 - ], - [ - 4.2903521, - 50.7295549 - ], - [ - 4.2903521, - 50.7295549 - ], - [ - 4.2903521, - 50.7295549 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 103523507 - } - }, - { - "id": 103512374, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.246749, - 13.3217761 - ], - [ - 122.6750752, - 13.3217761 - ], - [ - 122.6750752, - 14.161759 - ], - [ - 121.246749, - 14.161759 - ], - [ - 121.246749, - 13.3217761 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en" - }, - "id": 103512374 - } - }, - { - "id": 103505587, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3496761, - 50.8484877 - ], - [ - 4.3496761, - 50.8484877 - ], - [ - 4.3496761, - 50.8484877 - ], - [ - 4.3496761, - 50.8484877 - ], - [ - 4.3496761, - 50.8484877 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 103505587 - } - }, - { - "id": 103490224, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.473404, - 51.1273425 - ], - [ - 4.4738714, - 51.1273425 - ], - [ - 4.4738714, - 51.1276317 - ], - [ - 4.473404, - 51.1276317 - ], - [ - 4.473404, - 51.1273425 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "speelplekken", - "imagery": "CartoDB.Positron", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 103490224 - } - }, - { - "id": 103485405, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2673597, - 50.6998045 - ], - [ - 4.2673597, - 50.6998045 - ], - [ - 4.2673597, - 50.6998045 - ], - [ - 4.2673597, - 50.6998045 - ], - [ - 4.2673597, - 50.6998045 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103485405 - } - }, - { - "id": 103485381, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.5916579, - 13.7332804 - ], - [ - 122.538518, - 13.7332804 - ], - [ - 122.538518, - 14.0280082 - ], - [ - 121.5916579, - 14.0280082 - ], - [ - 121.5916579, - 13.7332804 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en" - }, - "id": 103485381 - } - }, - { - "id": 103471234, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.5571278, - 13.5232229 - ], - [ - 122.4031502, - 13.5232229 - ], - [ - 122.4031502, - 14.0019846 - ], - [ - 121.5571278, - 14.0019846 - ], - [ - 121.5571278, - 13.5232229 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en" - }, - "id": 103471234 - } - }, - { - "id": 103470879, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.5592763, - 13.9654559 - ], - [ - 121.5592763, - 13.9654559 - ], - [ - 121.5592763, - 13.9654559 - ], - [ - 121.5592763, - 13.9654559 - ], - [ - 121.5592763, - 13.9654559 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en" - }, - "id": 103470879 - } - }, - { - "id": 103454072, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.5238416, - 13.9309185 - ], - [ - 121.6148612, - 13.9309185 - ], - [ - 121.6148612, - 13.9639743 - ], - [ - 121.5238416, - 13.9639743 - ], - [ - 121.5238416, - 13.9309185 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en" - }, - "id": 103454072 - } - }, - { - "id": 103450456, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 125.6069952, - 7.0685686 - ], - [ - 125.6069952, - 7.0685686 - ], - [ - 125.6069952, - 7.0685686 - ], - [ - 125.6069952, - 7.0685686 - ], - [ - 125.6069952, - 7.0685686 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103450456 - } - }, - { - "id": 103445880, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 123.9413783, - 10.3282964 - ], - [ - 123.9413806, - 10.3282964 - ], - [ - 123.9413806, - 10.328298 - ], - [ - 123.9413783, - 10.328298 - ], - [ - 123.9413783, - 10.3282964 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103445880 - } - }, - { - "id": 103445557, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.2779179, - 47.7566983 - ], - [ - -122.277917, - 47.7566983 - ], - [ - -122.277917, - 47.7566983 - ], - [ - -122.2779179, - 47.7566983 - ], - [ - -122.2779179, - 47.7566983 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103445557 - } - }, - { - "id": 103437168, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7094629, - 51.0596843 - ], - [ - 3.7095071, - 51.0596843 - ], - [ - 3.7095071, - 51.0597324 - ], - [ - 3.7094629, - 51.0597324 - ], - [ - 3.7094629, - 51.0596843 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "nl" - }, - "id": 103437168 - } - }, - { - "id": 103433755, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6303345, - 51.0119035 - ], - [ - 3.6359207, - 51.0119035 - ], - [ - 3.6359207, - 51.0128689 - ], - [ - 3.6303345, - 51.0128689 - ], - [ - 3.6303345, - 51.0119035 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 103433755 - } - }, - { - "id": 103426836, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.6448615, - 45.4966516 - ], - [ - 9.6448629, - 45.4966516 - ], - [ - 9.6448629, - 45.4966812 - ], - [ - 9.6448615, - 45.4966812 - ], - [ - 9.6448615, - 45.4966516 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 103426836 - } - }, - { - "id": 103423398, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1978235, - 48.4783001 - ], - [ - 2.1980971, - 48.4783001 - ], - [ - 2.1980971, - 48.4784868 - ], - [ - 2.1978235, - 48.4784868 - ], - [ - 2.1978235, - 48.4783001 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 103423398 - } - }, - { - "id": 103422786, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.6132725, - 55.7083873 - ], - [ - 37.6231648, - 55.7083873 - ], - [ - 37.6231648, - 55.7186219 - ], - [ - 37.6132725, - 55.7186219 - ], - [ - 37.6132725, - 55.7083873 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103422786 - } - }, - { - "id": 103415960, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7043881, - 51.0527373 - ], - [ - 3.7043881, - 51.0527373 - ], - [ - 3.7043881, - 51.0527373 - ], - [ - 3.7043881, - 51.0527373 - ], - [ - 3.7043881, - 51.0527373 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 103415960 - } - }, - { - "id": 103411505, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.3516804, - 48.9176894 - ], - [ - 2.3516804, - 48.9176894 - ], - [ - 2.3516804, - 48.9176894 - ], - [ - 2.3516804, - 48.9176894 - ], - [ - 2.3516804, - 48.9176894 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 103411505 - } - }, - { - "id": 103409605, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8206109, - 50.9322662 - ], - [ - 4.8206109, - 50.9322662 - ], - [ - 4.8206109, - 50.9322662 - ], - [ - 4.8206109, - 50.9322662 - ], - [ - 4.8206109, - 50.9322662 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 103409605 - } - }, - { - "id": 103404533, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9264483, - 42.6576455 - ], - [ - 2.9264483, - 42.6576455 - ], - [ - 2.9264483, - 42.6576455 - ], - [ - 2.9264483, - 42.6576455 - ], - [ - 2.9264483, - 42.6576455 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "fr.ign.bdortho", - "language": "en" - }, - "id": 103404533 - } - }, - { - "id": 103403231, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.5593219, - 13.9626367 - ], - [ - 121.5611337, - 13.9626367 - ], - [ - 121.5611337, - 13.964858 - ], - [ - 121.5593219, - 13.964858 - ], - [ - 121.5593219, - 13.9626367 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en" - }, - "id": 103403231 - } - }, - { - "id": 103391474, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3946735, - 51.0345919 - ], - [ - 3.3966556, - 51.0345919 - ], - [ - 3.3966556, - 51.0372653 - ], - [ - 3.3946735, - 51.0372653 - ], - [ - 3.3946735, - 51.0345919 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "AGIV10cm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 103391474 - } - }, - { - "id": 103390492, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3931948, - 51.0336983 - ], - [ - 3.4096857, - 51.0336983 - ], - [ - 3.4096857, - 51.046722 - ], - [ - 3.3931948, - 51.046722 - ], - [ - 3.3931948, - 51.0336983 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103390492 - } - }, - { - "id": 103390457, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3955539, - 51.041811 - ], - [ - 3.3955539, - 51.041811 - ], - [ - 3.3955539, - 51.041811 - ], - [ - 3.3955539, - 51.041811 - ], - [ - 3.3955539, - 51.041811 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103390457 - } - }, - { - "id": 103390249, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1246316, - 52.0640521 - ], - [ - 5.1246316, - 52.0640521 - ], - [ - 5.1246316, - 52.0640521 - ], - [ - 5.1246316, - 52.0640521 - ], - [ - 5.1246316, - 52.0640521 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103390249 - } - }, - { - "id": 103380918, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -93.2266867, - 44.9250087 - ], - [ - -93.2266867, - 44.9250087 - ], - [ - -93.2266867, - 44.9250087 - ], - [ - -93.2266867, - 44.9250087 - ], - [ - -93.2266867, - 44.9250087 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103380918 - } - }, - { - "id": 103376804, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.5611337, - 13.964858 - ], - [ - 121.5611337, - 13.964858 - ], - [ - 121.5611337, - 13.964858 - ], - [ - 121.5611337, - 13.964858 - ], - [ - 121.5611337, - 13.964858 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en" - }, - "id": 103376804 - } - }, - { - "id": 103368989, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4517273, - 51.1657641 - ], - [ - 4.4523857, - 51.1657641 - ], - [ - 4.4523857, - 51.1657959 - ], - [ - 4.4517273, - 51.1657959 - ], - [ - 4.4517273, - 51.1657641 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "speelplekken", - "imagery": "CartoDB.Positron", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 103368989 - } - }, - { - "id": 103367247, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -82.4353854, - 38.4095972 - ], - [ - -82.4353854, - 38.4095972 - ], - [ - -82.4353854, - 38.4095972 - ], - [ - -82.4353854, - 38.4095972 - ], - [ - -82.4353854, - 38.4095972 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 103367247 - } - }, - { - "id": 103367189, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -82.4355031, - 38.4107301 - ], - [ - -82.4355031, - 38.4107301 - ], - [ - -82.4355031, - 38.4107301 - ], - [ - -82.4355031, - 38.4107301 - ], - [ - -82.4355031, - 38.4107301 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103367189 - } - }, - { - "id": 103359495, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3996981, - 51.0422216 - ], - [ - 3.3996981, - 51.0422216 - ], - [ - 3.3996981, - 51.0422216 - ], - [ - 3.3996981, - 51.0422216 - ], - [ - 3.3996981, - 51.0422216 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103359495 - } - }, - { - "id": 103359206, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3972135, - 51.040771 - ], - [ - 3.399709, - 51.040771 - ], - [ - 3.399709, - 51.0411038 - ], - [ - 3.3972135, - 51.0411038 - ], - [ - 3.3972135, - 51.040771 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 103359206 - } - }, - { - "id": 103354074, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7083597, - 51.0344284 - ], - [ - 3.7083597, - 51.0344284 - ], - [ - 3.7083597, - 51.0344284 - ], - [ - 3.7083597, - 51.0344284 - ], - [ - 3.7083597, - 51.0344284 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 103354074 - } - }, - { - "id": 103353500, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.324206, - 60.3948088 - ], - [ - 5.3433171, - 60.3948088 - ], - [ - 5.3433171, - 60.3964396 - ], - [ - 5.324206, - 60.3964396 - ], - [ - 5.324206, - 60.3948088 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103353500 - } - }, - { - "id": 103345352, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6095756, - 51.9663221 - ], - [ - 4.6142423, - 51.9663221 - ], - [ - 4.6142423, - 51.9671509 - ], - [ - 4.6095756, - 51.9671509 - ], - [ - 4.6095756, - 51.9663221 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "en", - "theme-creator": "Peter Elderson" - }, - "id": 103345352 - } - }, - { - "id": 103343609, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 123.9453466, - 10.326233 - ], - [ - 123.9453466, - 10.326233 - ], - [ - 123.9453466, - 10.326233 - ], - [ - 123.9453466, - 10.326233 - ], - [ - 123.9453466, - 10.326233 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en" - }, - "id": 103343609 - } - }, - { - "id": 103341339, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -82.4354591, - 38.409716 - ], - [ - -82.4354222, - 38.409716 - ], - [ - -82.4354222, - 38.4098526 - ], - [ - -82.4354591, - 38.4098526 - ], - [ - -82.4354591, - 38.409716 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 103341339 - } - }, - { - "id": 103331539, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2201841, - 41.4424398 - ], - [ - 2.2201841, - 41.4424398 - ], - [ - 2.2201841, - 41.4424398 - ], - [ - 2.2201841, - 41.4424398 - ], - [ - 2.2201841, - 41.4424398 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "arbres_llefia", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 103331539 - } - }, - { - "id": 103324534, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6998021, - 50.8794035 - ], - [ - 4.6998021, - 50.8794035 - ], - [ - 4.6998021, - 50.8794035 - ], - [ - 4.6998021, - 50.8794035 - ], - [ - 4.6998021, - 50.8794035 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 103324534 - } - }, - { - "id": 103318797, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2601325, - 50.7373676 - ], - [ - 4.2601448, - 50.7373676 - ], - [ - 4.2601448, - 50.73741 - ], - [ - 4.2601325, - 50.73741 - ], - [ - 4.2601325, - 50.7373676 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 103318797 - } - }, - { - "id": 103313082, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.374263, - 51.5672831 - ], - [ - 5.5036662, - 51.5672831 - ], - [ - 5.5036662, - 51.6327773 - ], - [ - 5.374263, - 51.6327773 - ], - [ - 5.374263, - 51.5672831 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "en", - "theme-creator": "Peter Elderson" - }, - "id": 103313082 - } - }, - { - "id": 103312624, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3733124, - 51.5708762 - ], - [ - 5.5477175, - 51.5708762 - ], - [ - 5.5477175, - 51.6554852 - ], - [ - 5.3733124, - 51.6554852 - ], - [ - 5.3733124, - 51.5708762 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "en", - "theme-creator": "Peter Elderson" - }, - "id": 103312624 - } - }, - { - "id": 103297645, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3734378, - 50.8630738 - ], - [ - 4.3817962, - 50.8630738 - ], - [ - 4.3817962, - 50.8635002 - ], - [ - 4.3734378, - 50.8635002 - ], - [ - 4.3734378, - 50.8630738 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "nl" - }, - "id": 103297645 - } - }, - { - "id": 103296793, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3433849, - 51.1106598 - ], - [ - 4.3434664, - 51.1106598 - ], - [ - 4.3434664, - 51.1109619 - ], - [ - 4.3433849, - 51.1109619 - ], - [ - 4.3433849, - 51.1106598 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "speelplekken", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 103296793 - } - }, - { - "id": 103295478, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1919874, - 51.5605088 - ], - [ - 5.2699914, - 51.5605088 - ], - [ - 5.2699914, - 51.5639659 - ], - [ - 5.1919874, - 51.5639659 - ], - [ - 5.1919874, - 51.5605088 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "en", - "theme-creator": "Peter Elderson" - }, - "id": 103295478 - } - }, - { - "id": 103294317, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1754923, - 51.5530577 - ], - [ - 5.3074604, - 51.5530577 - ], - [ - 5.3074604, - 51.5787011 - ], - [ - 5.1754923, - 51.5787011 - ], - [ - 5.1754923, - 51.5530577 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "en", - "theme-creator": "Peter Elderson" - }, - "id": 103294317 - } - }, - { - "id": 103291488, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6996553, - 51.0521448 - ], - [ - 3.6996553, - 51.0521448 - ], - [ - 3.6996553, - 51.0521448 - ], - [ - 3.6996553, - 51.0521448 - ], - [ - 3.6996553, - 51.0521448 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "fritures", - "imagery": "osm", - "language": "nl" - }, - "id": 103291488 - } - }, - { - "id": 103291002, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.593924, - 47.4109147 - ], - [ - 8.5939487, - 47.4109147 - ], - [ - 8.5939487, - 47.4109345 - ], - [ - 8.593924, - 47.4109345 - ], - [ - 8.593924, - 47.4109147 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 103291002 - } - }, - { - "id": 103289583, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3478634, - 51.1122773 - ], - [ - 4.348748, - 51.1122773 - ], - [ - 4.348748, - 51.1125084 - ], - [ - 4.3478634, - 51.1125084 - ], - [ - 4.3478634, - 51.1122773 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "speelplekken", - "imagery": "CartoDB.Positron", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 103289583 - } - }, - { - "id": 103289112, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3486252, - 50.8675684 - ], - [ - 4.3489337, - 50.8675684 - ], - [ - 4.3489337, - 50.8676684 - ], - [ - 4.3486252, - 50.8676684 - ], - [ - 4.3486252, - 50.8675684 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 103289112 - } - }, - { - "id": 103284303, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.4130642, - 42.5163063 - ], - [ - -71.4126444, - 42.5163063 - ], - [ - -71.4126444, - 42.516677 - ], - [ - -71.4130642, - 42.516677 - ], - [ - -71.4130642, - 42.5163063 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 103284303 - } - }, - { - "id": 103282552, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.6313075, - 46.7556376 - ], - [ - 7.6326871, - 46.7556376 - ], - [ - 7.6326871, - 46.7573275 - ], - [ - 7.6313075, - 46.7573275 - ], - [ - 7.6313075, - 46.7556376 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103282552 - } - }, - { - "id": 103281267, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2675099, - 50.7129995 - ], - [ - 4.2675099, - 50.7129995 - ], - [ - 4.2675099, - 50.7129995 - ], - [ - 4.2675099, - 50.7129995 - ], - [ - 4.2675099, - 50.7129995 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103281267 - } - }, - { - "id": 103275319, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2930548, - 51.5605659 - ], - [ - 5.2930548, - 51.5605659 - ], - [ - 5.2930548, - 51.5605659 - ], - [ - 5.2930548, - 51.5605659 - ], - [ - 5.2930548, - 51.5605659 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "en", - "theme-creator": "Peter Elderson" - }, - "id": 103275319 - } - }, - { - "id": 103273460, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1195967, - 52.0631308 - ], - [ - 5.1277211, - 52.0631308 - ], - [ - 5.1277211, - 52.0691001 - ], - [ - 5.1195967, - 52.0691001 - ], - [ - 5.1195967, - 52.0631308 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103273460 - } - }, - { - "id": 103273018, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2028794, - 52.0174526 - ], - [ - 6.2029678, - 52.0174526 - ], - [ - 6.2029678, - 52.0174865 - ], - [ - 6.2028794, - 52.0174865 - ], - [ - 6.2028794, - 52.0174526 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 103273018 - } - }, - { - "id": 103271439, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3301472, - 51.5320345 - ], - [ - 5.3375193, - 51.5320345 - ], - [ - 5.3375193, - 51.5383887 - ], - [ - 5.3301472, - 51.5383887 - ], - [ - 5.3301472, - 51.5320345 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "en", - "theme-creator": "Peter Elderson" - }, - "id": 103271439 - } - }, - { - "id": 103270749, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2781746, - 51.52579 - ], - [ - 5.36004, - 51.52579 - ], - [ - 5.36004, - 51.5623848 - ], - [ - 5.2781746, - 51.5623848 - ], - [ - 5.2781746, - 51.52579 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "en", - "theme-creator": "Peter Elderson" - }, - "id": 103270749 - } - }, - { - "id": 103269560, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2022732, - 50.9096269 - ], - [ - 4.2022732, - 50.9096269 - ], - [ - 4.2022732, - 50.9096269 - ], - [ - 4.2022732, - 50.9096269 - ], - [ - 4.2022732, - 50.9096269 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 103269560 - } - }, - { - "id": 103268470, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1143074, - 52.0577633 - ], - [ - 5.1427415, - 52.0577633 - ], - [ - 5.1427415, - 52.0690045 - ], - [ - 5.1143074, - 52.0690045 - ], - [ - 5.1143074, - 52.0577633 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103268470 - } - }, - { - "id": 103266935, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1302809, - 52.0729685 - ], - [ - 5.1318514, - 52.0729685 - ], - [ - 5.1318514, - 52.0738585 - ], - [ - 5.1302809, - 52.0738585 - ], - [ - 5.1302809, - 52.0729685 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103266935 - } - }, - { - "id": 103266171, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1934156, - 50.9175904 - ], - [ - 4.1947281, - 50.9175904 - ], - [ - 4.1947281, - 50.927783 - ], - [ - 4.1934156, - 50.927783 - ], - [ - 4.1934156, - 50.9175904 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 103266171 - } - }, - { - "id": 103265243, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2296129, - 49.9212138 - ], - [ - 4.2296129, - 49.9212138 - ], - [ - 4.2296129, - 49.9212138 - ], - [ - 4.2296129, - 49.9212138 - ], - [ - 4.2296129, - 49.9212138 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 103265243 - } - }, - { - "id": 103263799, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1958171, - 50.915971 - ], - [ - 4.2002428, - 50.915971 - ], - [ - 4.2002428, - 50.941321 - ], - [ - 4.1958171, - 50.941321 - ], - [ - 4.1958171, - 50.915971 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 103263799 - } - }, - { - "id": 103263170, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3440142, - 51.5417397 - ], - [ - 5.3440142, - 51.5417397 - ], - [ - 5.3440142, - 51.5417397 - ], - [ - 5.3440142, - 51.5417397 - ], - [ - 5.3440142, - 51.5417397 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "en", - "theme-creator": "Peter Elderson" - }, - "id": 103263170 - } - }, - { - "id": 103261415, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3618002, - 51.5378939 - ], - [ - 5.3738959, - 51.5378939 - ], - [ - 5.3738959, - 51.5661019 - ], - [ - 5.3618002, - 51.5661019 - ], - [ - 5.3618002, - 51.5378939 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "en", - "theme-creator": "Peter Elderson" - }, - "id": 103261415 - } - }, - { - "id": 103260014, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1886232, - 51.044986 - ], - [ - 4.2007107, - 51.044986 - ], - [ - 4.2007107, - 51.0561528 - ], - [ - 4.1886232, - 51.0561528 - ], - [ - 4.1886232, - 51.044986 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "AGIV10cm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 103260014 - } - }, - { - "id": 103222342, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 41.1176319, - 37.9059134 - ], - [ - 41.1176319, - 37.9059134 - ], - [ - 41.1176319, - 37.9059134 - ], - [ - 41.1176319, - 37.9059134 - ], - [ - 41.1176319, - 37.9059134 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103222342 - } - }, - { - "id": 103222324, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.7229978, - -33.4339157 - ], - [ - -70.7227223, - -33.4339157 - ], - [ - -70.7227223, - -33.4336629 - ], - [ - -70.7229978, - -33.4336629 - ], - [ - -70.7229978, - -33.4339157 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 103222324 - } - }, - { - "id": 103221632, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1118165, - 50.999427 - ], - [ - 3.1118165, - 50.999427 - ], - [ - 3.1118165, - 50.999427 - ], - [ - 3.1118165, - 50.999427 - ], - [ - 3.1118165, - 50.999427 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 103221632 - } - }, - { - "id": 103220970, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1256514, - 50.9924841 - ], - [ - 3.1256514, - 50.9924841 - ], - [ - 3.1256514, - 50.9924841 - ], - [ - 3.1256514, - 50.9924841 - ], - [ - 3.1256514, - 50.9924841 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 103220970 - } - }, - { - "id": 103216363, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3918089, - 50.8457251 - ], - [ - 4.3918089, - 50.8457251 - ], - [ - 4.3918089, - 50.8457251 - ], - [ - 4.3918089, - 50.8457251 - ], - [ - 4.3918089, - 50.8457251 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 103216363 - } - }, - { - "id": 103205616, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1251972, - 52.0803334 - ], - [ - 5.1251972, - 52.0803334 - ], - [ - 5.1251972, - 52.0803334 - ], - [ - 5.1251972, - 52.0803334 - ], - [ - 5.1251972, - 52.0803334 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103205616 - } - }, - { - "id": 103203158, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.551116, - 48.1437266 - ], - [ - 11.551116, - 48.1437266 - ], - [ - 11.551116, - 48.1437266 - ], - [ - 11.551116, - 48.1437266 - ], - [ - 11.551116, - 48.1437266 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 103203158 - } - }, - { - "id": 103198865, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5957818, - 51.0597192 - ], - [ - 5.6882791, - 51.0597192 - ], - [ - 5.6882791, - 51.0701815 - ], - [ - 5.5957818, - 51.0701815 - ], - [ - 5.5957818, - 51.0597192 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "imagery": "osm", - "language": "nl" - }, - "id": 103198865 - } - }, - { - "id": 103195164, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 18.7153246, - 46.3473224 - ], - [ - 18.7153246, - 46.3473224 - ], - [ - 18.7153246, - 46.3473224 - ], - [ - 18.7153246, - 46.3473224 - ], - [ - 18.7153246, - 46.3473224 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103195164 - } - }, - { - "id": 103194538, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 18.5310107, - 46.2983756 - ], - [ - 18.5310107, - 46.2983756 - ], - [ - 18.5310107, - 46.2983756 - ], - [ - 18.5310107, - 46.2983756 - ], - [ - 18.5310107, - 46.2983756 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103194538 - } - }, - { - "id": 103189465, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 24.7068737, - 60.1626491 - ], - [ - 24.7348722, - 60.1626491 - ], - [ - 24.7348722, - 60.166731 - ], - [ - 24.7068737, - 60.166731 - ], - [ - 24.7068737, - 60.1626491 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 103189465 - } - }, - { - "id": 103189317, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 19.0979565, - 47.559217 - ], - [ - 19.0979565, - 47.559217 - ], - [ - 19.0979565, - 47.559217 - ], - [ - 19.0979565, - 47.559217 - ], - [ - 19.0979565, - 47.559217 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 103189317 - } - }, - { - "id": 103182758, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.5143081, - 48.1391637 - ], - [ - 11.5143081, - 48.1391637 - ], - [ - 11.5143081, - 48.1391637 - ], - [ - 11.5143081, - 48.1391637 - ], - [ - 11.5143081, - 48.1391637 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103182758 - } - }, - { - "id": 103180679, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 19.1504198, - 47.4698707 - ], - [ - 19.2835915, - 47.4698707 - ], - [ - 19.2835915, - 47.5040622 - ], - [ - 19.1504198, - 47.5040622 - ], - [ - 19.1504198, - 47.4698707 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 103180679 - } - }, - { - "id": 103178974, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 19.237448, - 47.4826637 - ], - [ - 19.237448, - 47.4826637 - ], - [ - 19.237448, - 47.4826637 - ], - [ - 19.237448, - 47.4826637 - ], - [ - 19.237448, - 47.4826637 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103178974 - } - }, - { - "id": 103178811, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.883755, - 44.2846558 - ], - [ - 11.883755, - 44.2846558 - ], - [ - 11.883755, - 44.2846558 - ], - [ - 11.883755, - 44.2846558 - ], - [ - 11.883755, - 44.2846558 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103178811 - } - }, - { - "id": 103175160, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5849184, - 51.047896 - ], - [ - 5.7050546, - 51.047896 - ], - [ - 5.7050546, - 51.1401528 - ], - [ - 5.5849184, - 51.1401528 - ], - [ - 5.5849184, - 51.047896 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103175160 - } - }, - { - "id": 103173062, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 99.0798086, - 18.7315079 - ], - [ - 99.1982304, - 18.7315079 - ], - [ - 99.1982304, - 18.7655479 - ], - [ - 99.0798086, - 18.7655479 - ], - [ - 99.0798086, - 18.7315079 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103173062 - } - }, - { - "id": 103157057, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 115.768089, - -32.055927 - ], - [ - 115.768089, - -32.055927 - ], - [ - 115.768089, - -32.055927 - ], - [ - 115.768089, - -32.055927 - ], - [ - 115.768089, - -32.055927 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103157057 - } - }, - { - "id": 103156898, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 175.2196925, - -40.4611107 - ], - [ - 175.2197883, - -40.4611107 - ], - [ - 175.2197883, - -40.4610416 - ], - [ - 175.2196925, - -40.4610416 - ], - [ - 175.2196925, - -40.4611107 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 103156898 - } - }, - { - "id": 103153907, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.1239779, - 54.3264599 - ], - [ - 10.1239779, - 54.3264599 - ], - [ - 10.1239779, - 54.3264599 - ], - [ - 10.1239779, - 54.3264599 - ], - [ - 10.1239779, - 54.3264599 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 103153907 - } - }, - { - "id": 103152905, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 41.0856488, - 37.8283573 - ], - [ - 41.1326279, - 37.8283573 - ], - [ - 41.1326279, - 37.8960039 - ], - [ - 41.0856488, - 37.8960039 - ], - [ - 41.0856488, - 37.8283573 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 103152905 - } - }, - { - "id": 103152539, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 41.1248918, - 37.8877041 - ], - [ - 41.133806, - 37.8877041 - ], - [ - 41.133806, - 37.9010591 - ], - [ - 41.1248918, - 37.9010591 - ], - [ - 41.1248918, - 37.8877041 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103152539 - } - }, - { - "id": 103152292, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 25.4270774, - 57.3837463 - ], - [ - 25.4270774, - 57.3837463 - ], - [ - 25.4270774, - 57.3837463 - ], - [ - 25.4270774, - 57.3837463 - ], - [ - 25.4270774, - 57.3837463 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103152292 - } - }, - { - "id": 103152262, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 41.0628721, - 37.7894077 - ], - [ - 41.1321832, - 37.7894077 - ], - [ - 41.1321832, - 37.9042622 - ], - [ - 41.0628721, - 37.9042622 - ], - [ - 41.0628721, - 37.7894077 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 103152262 - } - }, - { - "id": 103146450, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.8390958, - 51.1302452 - ], - [ - 0.8391398, - 51.1302452 - ], - [ - 0.8391398, - 51.1302708 - ], - [ - 0.8390958, - 51.1302708 - ], - [ - 0.8390958, - 51.1302452 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 103146450 - } - }, - { - "id": 103145897, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.9072788, - 52.4042931 - ], - [ - 6.9075196, - 52.4042931 - ], - [ - 6.9075196, - 52.4044308 - ], - [ - 6.9072788, - 52.4044308 - ], - [ - 6.9072788, - 52.4042931 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 103145897 - } - }, - { - "id": 103143869, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -85.18253, - 41.0719641 - ], - [ - -85.1583383, - 41.0719641 - ], - [ - -85.1583383, - 41.0871485 - ], - [ - -85.18253, - 41.0871485 - ], - [ - -85.18253, - 41.0719641 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "nl" - }, - "id": 103143869 - } - }, - { - "id": 103143021, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -85.1707531, - 41.0839714 - ], - [ - -85.1431391, - 41.0839714 - ], - [ - -85.1431391, - 41.0954415 - ], - [ - -85.1707531, - 41.0954415 - ], - [ - -85.1707531, - 41.0839714 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 103143021 - } - }, - { - "id": 103142359, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -85.2234686, - 41.0709735 - ], - [ - -84.8259348, - 41.0709735 - ], - [ - -84.8259348, - 41.7469887 - ], - [ - -85.2234686, - 41.7469887 - ], - [ - -85.2234686, - 41.0709735 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103142359 - } - }, - { - "id": 103141835, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -85.2554619, - 41.0147071 - ], - [ - -85.1795423, - 41.0147071 - ], - [ - -85.1795423, - 41.0847615 - ], - [ - -85.2554619, - 41.0847615 - ], - [ - -85.2554619, - 41.0147071 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "imagery": "osm", - "language": "nl" - }, - "id": 103141835 - } - }, - { - "id": 103139801, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -85.1800516, - 41.0722783 - ], - [ - -85.1373743, - 41.0722783 - ], - [ - -85.1373743, - 41.1027938 - ], - [ - -85.1800516, - 41.1027938 - ], - [ - -85.1800516, - 41.0722783 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103139801 - } - }, - { - "id": 103139706, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -85.1806704, - 41.0789145 - ], - [ - -85.1806519, - 41.0789145 - ], - [ - -85.1806519, - 41.0789292 - ], - [ - -85.1806704, - 41.0789292 - ], - [ - -85.1806704, - 41.0789145 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103139706 - } - }, - { - "id": 103139388, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -85.1795744, - 41.088582 - ], - [ - -85.1795744, - 41.088582 - ], - [ - -85.1795744, - 41.088582 - ], - [ - -85.1795744, - 41.088582 - ], - [ - -85.1795744, - 41.088582 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103139388 - } - }, - { - "id": 103138821, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.2318095, - 48.0999478 - ], - [ - 7.326639, - 48.0999478 - ], - [ - 7.326639, - 48.1942431 - ], - [ - 7.2318095, - 48.1942431 - ], - [ - 7.2318095, - 48.0999478 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103138821 - } - }, - { - "id": 103136285, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -81.4503622, - 39.410636 - ], - [ - -81.4503622, - 39.410636 - ], - [ - -81.4503622, - 39.410636 - ], - [ - -81.4503622, - 39.410636 - ], - [ - -81.4503622, - 39.410636 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 103136285 - } - }, - { - "id": 103136249, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 151.2959513, - -33.7027022 - ], - [ - 151.2959513, - -33.7027022 - ], - [ - 151.2959513, - -33.7027022 - ], - [ - 151.2959513, - -33.7027022 - ], - [ - 151.2959513, - -33.7027022 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 103136249 - } - }, - { - "id": 103135976, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7015744, - 50.87885 - ], - [ - 4.7046188, - 50.87885 - ], - [ - 4.7046188, - 50.8790954 - ], - [ - 4.7015744, - 50.8790954 - ], - [ - 4.7015744, - 50.87885 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 103135976 - } - }, - { - "id": 103135677, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 150.3784561, - -35.5559841 - ], - [ - 150.3787015, - -35.5559841 - ], - [ - 150.3787015, - -35.5558074 - ], - [ - 150.3784561, - -35.5558074 - ], - [ - 150.3784561, - -35.5559841 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 103135677 - } - }, - { - "id": 103135600, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 150.3780863, - -35.5576667 - ], - [ - 150.3818017, - -35.5576667 - ], - [ - 150.3818017, - -35.5521047 - ], - [ - 150.3780863, - -35.5521047 - ], - [ - 150.3780863, - -35.5576667 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 103135600 - } - }, - { - "id": 103135574, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 150.3777334, - -35.5567564 - ], - [ - 150.3777334, - -35.5567564 - ], - [ - 150.3777334, - -35.5567564 - ], - [ - 150.3777334, - -35.5567564 - ], - [ - 150.3777334, - -35.5567564 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103135574 - } - }, - { - "id": 103135174, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 151.2814003, - -33.7044204 - ], - [ - 151.2814003, - -33.7044204 - ], - [ - 151.2814003, - -33.7044204 - ], - [ - 151.2814003, - -33.7044204 - ], - [ - 151.2814003, - -33.7044204 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103135174 - } - }, - { - "id": 103134334, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.258967, - 51.822226 - ], - [ - 4.2590985, - 51.822226 - ], - [ - 4.2590985, - 51.8222744 - ], - [ - 4.258967, - 51.8222744 - ], - [ - 4.258967, - 51.822226 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 103134334 - } - }, - { - "id": 103134287, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2510968, - 51.8217336 - ], - [ - 4.2510968, - 51.8217336 - ], - [ - 4.2510968, - 51.8217336 - ], - [ - 4.2510968, - 51.8217336 - ], - [ - 4.2510968, - 51.8217336 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103134287 - } - }, - { - "id": 103133460, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.0682571, - 55.8387637 - ], - [ - 12.0682571, - 55.8387637 - ], - [ - 12.0682571, - 55.8387637 - ], - [ - 12.0682571, - 55.8387637 - ], - [ - 12.0682571, - 55.8387637 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103133460 - } - }, - { - "id": 103133004, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.3650777, - 48.0302729 - ], - [ - 8.5288178, - 48.0302729 - ], - [ - 8.5288178, - 49.6323052 - ], - [ - 8.3650777, - 49.6323052 - ], - [ - 8.3650777, - 48.0302729 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 103133004 - } - }, - { - "id": 103132818, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5328635, - 48.0458712 - ], - [ - 8.5377676, - 48.0458712 - ], - [ - 8.5377676, - 48.0625198 - ], - [ - 8.5328635, - 48.0625198 - ], - [ - 8.5328635, - 48.0458712 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 103132818 - } - }, - { - "id": 103132726, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6972285, - 50.8565989 - ], - [ - 4.7059729, - 50.8565989 - ], - [ - 4.7059729, - 50.8669127 - ], - [ - 4.6972285, - 50.8669127 - ], - [ - 4.6972285, - 50.8565989 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 103132726 - } - }, - { - "id": 103131542, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.5848571, - 46.0554088 - ], - [ - 14.5848571, - 46.0554088 - ], - [ - 14.5848571, - 46.0554088 - ], - [ - 14.5848571, - 46.0554088 - ], - [ - 14.5848571, - 46.0554088 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 103131542 - } - }, - { - "id": 103131428, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.6044779, - 46.1405958 - ], - [ - 14.6044779, - 46.1405958 - ], - [ - 14.6044779, - 46.1405958 - ], - [ - 14.6044779, - 46.1405958 - ], - [ - 14.6044779, - 46.1405958 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 103131428 - } - }, - { - "id": 103131310, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.5823525, - 46.0538395 - ], - [ - 14.5823525, - 46.0538395 - ], - [ - 14.5823525, - 46.0538395 - ], - [ - 14.5823525, - 46.0538395 - ], - [ - 14.5823525, - 46.0538395 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103131310 - } - }, - { - "id": 103131213, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.1667269, - 47.7592266 - ], - [ - 8.1667269, - 47.7592266 - ], - [ - 8.1667269, - 47.7592266 - ], - [ - 8.1667269, - 47.7592266 - ], - [ - 8.1667269, - 47.7592266 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "maps", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103131213 - } - }, - { - "id": 103130080, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.0317142, - 52.370084 - ], - [ - 13.1342977, - 52.370084 - ], - [ - 13.1342977, - 52.4118457 - ], - [ - 13.0317142, - 52.4118457 - ], - [ - 13.0317142, - 52.370084 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103130080 - } - }, - { - "id": 103130019, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 18.0532542, - 59.3280479 - ], - [ - 18.0532542, - 59.3280479 - ], - [ - 18.0532542, - 59.3280479 - ], - [ - 18.0532542, - 59.3280479 - ], - [ - 18.0532542, - 59.3280479 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103130019 - } - }, - { - "id": 103129483, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.186226, - 50.791883 - ], - [ - 3.186226, - 50.791883 - ], - [ - 3.186226, - 50.791883 - ], - [ - 3.186226, - 50.791883 - ], - [ - 3.186226, - 50.791883 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 103129483 - } - }, - { - "id": 103125915, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.230442, - 51.2069686 - ], - [ - 3.2308039, - 51.2069686 - ], - [ - 3.2308039, - 51.2071497 - ], - [ - 3.230442, - 51.2071497 - ], - [ - 3.230442, - 51.2069686 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "grb", - "imagery": "AGIVFlandersGRB", - "language": "nl" - }, - "id": 103125915 - } - }, - { - "id": 103111818, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -80.4534173, - 22.1424702 - ], - [ - -80.4522331, - 22.1424702 - ], - [ - -80.4522331, - 22.1426429 - ], - [ - -80.4534173, - 22.1426429 - ], - [ - -80.4534173, - 22.1424702 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 103111818 - } - }, - { - "id": 103109636, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1127181, - 50.9586203 - ], - [ - 3.1127181, - 50.9586203 - ], - [ - 3.1127181, - 50.9586203 - ], - [ - 3.1127181, - 50.9586203 - ], - [ - 3.1127181, - 50.9586203 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103109636 - } - }, - { - "id": 103109566, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1128909, - 50.9586114 - ], - [ - 3.1129883, - 50.9586114 - ], - [ - 3.1129883, - 50.9587248 - ], - [ - 3.1128909, - 50.9587248 - ], - [ - 3.1128909, - 50.9586114 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 103109566 - } - }, - { - "id": 103105940, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.163799, - 50.783667 - ], - [ - 3.1971818, - 50.783667 - ], - [ - 3.1971818, - 50.791883 - ], - [ - 3.163799, - 50.791883 - ], - [ - 3.163799, - 50.783667 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 103105940 - } - }, - { - "id": 103104998, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2167614, - 51.2078708 - ], - [ - 3.222616, - 51.2078708 - ], - [ - 3.222616, - 51.2153602 - ], - [ - 3.2167614, - 51.2153602 - ], - [ - 3.2167614, - 51.2078708 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "grb", - "imagery": "AGIVFlandersGRB", - "language": "nl" - }, - "id": 103104998 - } - }, - { - "id": 103090698, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3973802, - 51.0414447 - ], - [ - 3.3981053, - 51.0414447 - ], - [ - 3.3981053, - 51.0417447 - ], - [ - 3.3973802, - 51.0417447 - ], - [ - 3.3973802, - 51.0414447 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/markets/markets.json", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 103090698 - } - }, - { - "id": 103088015, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.8248356, - -36.1376165 - ], - [ - -71.8247172, - -36.1376165 - ], - [ - -71.8247172, - -36.1375209 - ], - [ - -71.8248356, - -36.1375209 - ], - [ - -71.8248356, - -36.1376165 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 103088015 - } - }, - { - "id": 103085747, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.3656636, - 47.6833449 - ], - [ - -122.365663, - 47.6833449 - ], - [ - -122.365663, - 47.6833449 - ], - [ - -122.3656636, - 47.6833449 - ], - [ - -122.3656636, - 47.6833449 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103085747 - } - }, - { - "id": 103084174, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.9875318, - -34.5789783 - ], - [ - -70.9875318, - -34.5789783 - ], - [ - -70.9875318, - -34.5789783 - ], - [ - -70.9875318, - -34.5789783 - ], - [ - -70.9875318, - -34.5789783 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 103084174 - } - }, - { - "id": 103069368, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1696897, - 52.0642062 - ], - [ - 5.1696897, - 52.0642062 - ], - [ - 5.1696897, - 52.0642062 - ], - [ - 5.1696897, - 52.0642062 - ], - [ - 5.1696897, - 52.0642062 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103069368 - } - }, - { - "id": 103060042, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2008889, - 51.0566202 - ], - [ - 4.2008889, - 51.0566202 - ], - [ - 4.2008889, - 51.0566202 - ], - [ - 4.2008889, - 51.0566202 - ], - [ - 4.2008889, - 51.0566202 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103060042 - } - }, - { - "id": 103040206, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4393188, - 51.0792814 - ], - [ - 3.4399846, - 51.0792814 - ], - [ - 3.4399846, - 51.0796219 - ], - [ - 3.4393188, - 51.0796219 - ], - [ - 3.4393188, - 51.0792814 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "nl" - }, - "id": 103040206 - } - }, - { - "id": 103031392, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5969482, - 51.960931 - ], - [ - 4.5969482, - 51.960931 - ], - [ - 4.5969482, - 51.960931 - ], - [ - 4.5969482, - 51.960931 - ], - [ - 4.5969482, - 51.960931 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 103031392 - } - }, - { - "id": 103022181, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0801399, - 14.627217 - ], - [ - 121.0801399, - 14.627217 - ], - [ - 121.0801399, - 14.627217 - ], - [ - 121.0801399, - 14.627217 - ], - [ - 121.0801399, - 14.627217 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103022181 - } - }, - { - "id": 103022129, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0800046, - 14.6272363 - ], - [ - 121.0800521, - 14.6272363 - ], - [ - 121.0800521, - 14.627292 - ], - [ - 121.0800046, - 14.627292 - ], - [ - 121.0800046, - 14.6272363 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en" - }, - "id": 103022129 - } - }, - { - "id": 103014625, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.372663, - 50.8233539 - ], - [ - 4.3737788, - 50.8233539 - ], - [ - 4.3737788, - 50.8239469 - ], - [ - 4.372663, - 50.8239469 - ], - [ - 4.372663, - 50.8233539 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/markets/markets.json", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 103014625 - } - }, - { - "id": 103013551, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3258921, - 50.7981728 - ], - [ - 4.4176483, - 50.7981728 - ], - [ - 4.4176483, - 50.8738322 - ], - [ - 4.3258921, - 50.8738322 - ], - [ - 4.3258921, - 50.7981728 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/markets/markets.json", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 103013551 - } - }, - { - "id": 103012908, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3311079, - 50.8281226 - ], - [ - 4.3311079, - 50.8281226 - ], - [ - 4.3311079, - 50.8281226 - ], - [ - 4.3311079, - 50.8281226 - ], - [ - 4.3311079, - 50.8281226 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/markets/markets.json", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 103012908 - } - }, - { - "id": 103012164, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4049165, - 51.2255603 - ], - [ - 4.4049165, - 51.2255603 - ], - [ - 4.4049165, - 51.2255603 - ], - [ - 4.4049165, - 51.2255603 - ], - [ - 4.4049165, - 51.2255603 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/markets/markets.json", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 103012164 - } - }, - { - "id": 103004622, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4178337, - 51.2250521 - ], - [ - 4.4178337, - 51.2250521 - ], - [ - 4.4178337, - 51.2250521 - ], - [ - 4.4178337, - 51.2250521 - ], - [ - 4.4178337, - 51.2250521 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/markets/markets.json", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 103004622 - } - }, - { - "id": 103000972, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -76.8378696, - 39.1773855 - ], - [ - -76.8378696, - 39.1773855 - ], - [ - -76.8378696, - 39.1773855 - ], - [ - -76.8378696, - 39.1773855 - ], - [ - -76.8378696, - 39.1773855 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 103000972 - } - }, - { - "id": 102999680, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1958171, - 50.915971 - ], - [ - 4.211787, - 50.915971 - ], - [ - 4.211787, - 50.9243188 - ], - [ - 4.1958171, - 50.9243188 - ], - [ - 4.1958171, - 50.915971 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 102999680 - } - }, - { - "id": 102995332, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5810117, - 51.2925967 - ], - [ - 4.5811338, - 51.2925967 - ], - [ - 4.5811338, - 51.2926223 - ], - [ - 4.5810117, - 51.2926223 - ], - [ - 4.5810117, - 51.2925967 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 102995332 - } - }, - { - "id": 102978786, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 123.9409306, - 10.3270783 - ], - [ - 123.9419378, - 10.3270783 - ], - [ - 123.9419378, - 10.328259 - ], - [ - 123.9409306, - 10.328259 - ], - [ - 123.9409306, - 10.3270783 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/markets/markets.json", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 102978786 - } - }, - { - "id": 102978286, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0802326, - 50.7483334 - ], - [ - 5.0802326, - 50.7483334 - ], - [ - 5.0802326, - 50.7483334 - ], - [ - 5.0802326, - 50.7483334 - ], - [ - 5.0802326, - 50.7483334 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102978286 - } - }, - { - "id": 102978222, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0803936, - 50.7482694 - ], - [ - 5.0803936, - 50.7482694 - ], - [ - 5.0803936, - 50.7482694 - ], - [ - 5.0803936, - 50.7482694 - ], - [ - 5.0803936, - 50.7482694 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102978222 - } - }, - { - "id": 102938986, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1853154, - 50.8026581 - ], - [ - 3.1870839, - 50.8026581 - ], - [ - 3.1870839, - 50.8032401 - ], - [ - 3.1853154, - 50.8032401 - ], - [ - 3.1853154, - 50.8026581 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "boomgaarden", - "imagery": "osm", - "language": "nl" - }, - "id": 102938986 - } - }, - { - "id": 102938966, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.1116099, - 44.8915047 - ], - [ - 11.1116915, - 44.8915047 - ], - [ - 11.1116915, - 44.8915185 - ], - [ - 11.1116099, - 44.8915185 - ], - [ - 11.1116099, - 44.8915047 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102938966 - } - }, - { - "id": 102938911, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.1117, - 44.8914119 - ], - [ - 11.1117, - 44.8914119 - ], - [ - 11.1117, - 44.8914119 - ], - [ - 11.1117, - 44.8914119 - ], - [ - 11.1117, - 44.8914119 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102938911 - } - }, - { - "id": 102935084, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.111424, - 44.7647441 - ], - [ - 11.1445969, - 44.7647441 - ], - [ - 11.1445969, - 44.8915874 - ], - [ - 11.111424, - 44.8915874 - ], - [ - 11.111424, - 44.7647441 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "maps", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102935084 - } - }, - { - "id": 102935052, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.1436776, - 44.7647957 - ], - [ - 11.144399, - 44.7647957 - ], - [ - 11.144399, - 44.788621 - ], - [ - 11.1436776, - 44.788621 - ], - [ - 11.1436776, - 44.7647957 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102935052 - } - }, - { - "id": 102935009, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.1436475, - 44.7646215 - ], - [ - 11.144535, - 44.7646215 - ], - [ - 11.144535, - 44.788686 - ], - [ - 11.1436475, - 44.788686 - ], - [ - 11.1436475, - 44.7646215 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102935009 - } - }, - { - "id": 102924646, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.1809784, - 44.5852953 - ], - [ - 11.2354611, - 44.5852953 - ], - [ - 11.2354611, - 44.6564938 - ], - [ - 11.1809784, - 44.6564938 - ], - [ - 11.1809784, - 44.5852953 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102924646 - } - }, - { - "id": 102924500, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.1810449, - 44.5848136 - ], - [ - 11.2353884, - 44.5848136 - ], - [ - 11.2353884, - 44.6564941 - ], - [ - 11.1810449, - 44.6564941 - ], - [ - 11.1810449, - 44.5848136 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "maps", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102924500 - } - }, - { - "id": 102923547, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.1809196, - 44.5754709 - ], - [ - 11.2394138, - 44.5754709 - ], - [ - 11.2394138, - 44.6565216 - ], - [ - 11.1809196, - 44.6565216 - ], - [ - 11.1809196, - 44.5754709 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102923547 - } - }, - { - "id": 102917633, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4807181, - 51.0244802 - ], - [ - 4.4807181, - 51.0244802 - ], - [ - 4.4807181, - 51.0244802 - ], - [ - 4.4807181, - 51.0244802 - ], - [ - 4.4807181, - 51.0244802 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "facadegardens", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe; stla" - }, - "id": 102917633 - } - }, - { - "id": 102917347, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4807181, - 51.0244802 - ], - [ - 4.4807181, - 51.0244802 - ], - [ - 4.4807181, - 51.0244802 - ], - [ - 4.4807181, - 51.0244802 - ], - [ - 4.4807181, - 51.0244802 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "facadegardens", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe; stla" - }, - "id": 102917347 - } - }, - { - "id": 102883707, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9145579, - 50.5179022 - ], - [ - 5.9145579, - 50.5179022 - ], - [ - 5.9145579, - 50.5179022 - ], - [ - 5.9145579, - 50.5179022 - ], - [ - 5.9145579, - 50.5179022 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 102883707 - } - }, - { - "id": 102882576, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9145799, - 50.5181073 - ], - [ - 5.9145799, - 50.5181073 - ], - [ - 5.9145799, - 50.5181073 - ], - [ - 5.9145799, - 50.5181073 - ], - [ - 5.9145799, - 50.5181073 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fritures", - "imagery": "osm", - "language": "nl" - }, - "id": 102882576 - } - }, - { - "id": 102871643, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.8694332, - 50.3725031 - ], - [ - 5.8700394, - 50.3725031 - ], - [ - 5.8700394, - 50.3729753 - ], - [ - 5.8694332, - 50.3729753 - ], - [ - 5.8694332, - 50.3725031 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102871643 - } - }, - { - "id": 102866363, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 17.4726391, - 49.0704289 - ], - [ - 17.4726391, - 49.0704289 - ], - [ - 17.4726391, - 49.0704289 - ], - [ - 17.4726391, - 49.0704289 - ], - [ - 17.4726391, - 49.0704289 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 102866363 - } - }, - { - "id": 102842331, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2244466, - -39.8271305 - ], - [ - -73.2244466, - -39.8271305 - ], - [ - -73.2244466, - -39.8271305 - ], - [ - -73.2244466, - -39.8271305 - ], - [ - -73.2244466, - -39.8271305 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 102842331 - } - }, - { - "id": 102837072, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 123.9426402, - 10.3281186 - ], - [ - 123.9479842, - 10.3281186 - ], - [ - 123.9479842, - 10.3305202 - ], - [ - 123.9426402, - 10.3305202 - ], - [ - 123.9426402, - 10.3281186 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en" - }, - "id": 102837072 - } - }, - { - "id": 102816405, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.7322572, - -33.4072292 - ], - [ - -70.7322572, - -33.4072292 - ], - [ - -70.7322572, - -33.4072292 - ], - [ - -70.7322572, - -33.4072292 - ], - [ - -70.7322572, - -33.4072292 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102816405 - } - }, - { - "id": 102813868, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7842133, - 52.2289741 - ], - [ - 4.7845808, - 52.2289741 - ], - [ - 4.7845808, - 52.2290513 - ], - [ - 4.7842133, - 52.2290513 - ], - [ - 4.7842133, - 52.2289741 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 102813868 - } - }, - { - "id": 102806889, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6100038, - 51.9647292 - ], - [ - 4.6100038, - 51.9647292 - ], - [ - 4.6100038, - 51.9647292 - ], - [ - 4.6100038, - 51.9647292 - ], - [ - 4.6100038, - 51.9647292 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "en", - "theme-creator": "Peter Elderson" - }, - "id": 102806889 - } - }, - { - "id": 102806691, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3425459, - 44.5032332 - ], - [ - 11.3425459, - 44.5032332 - ], - [ - 11.3425459, - 44.5032332 - ], - [ - 11.3425459, - 44.5032332 - ], - [ - 11.3425459, - 44.5032332 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102806691 - } - }, - { - "id": 102801419, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7320819, - 52.2143386 - ], - [ - 4.7425318, - 52.2143386 - ], - [ - 4.7425318, - 52.2267085 - ], - [ - 4.7320819, - 52.2267085 - ], - [ - 4.7320819, - 52.2143386 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 102801419 - } - }, - { - "id": 102799932, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3456652, - 50.8350219 - ], - [ - 4.3456652, - 50.8350219 - ], - [ - 4.3456652, - 50.8350219 - ], - [ - 4.3456652, - 50.8350219 - ], - [ - 4.3456652, - 50.8350219 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 102799932 - } - }, - { - "id": 102799192, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0930476, - 50.9946599 - ], - [ - 3.0974571, - 50.9946599 - ], - [ - 3.0974571, - 50.9972208 - ], - [ - 3.0930476, - 50.9972208 - ], - [ - 3.0930476, - 50.9946599 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 102799192 - } - }, - { - "id": 102783422, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.783392, - 50.9687057 - ], - [ - 4.8051443, - 50.9687057 - ], - [ - 4.8051443, - 50.980026 - ], - [ - 4.783392, - 50.980026 - ], - [ - 4.783392, - 50.9687057 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 102783422 - } - }, - { - "id": 102759468, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2050638, - 51.2215244 - ], - [ - 3.2280621, - 51.2215244 - ], - [ - 3.2280621, - 51.2672936 - ], - [ - 3.2050638, - 51.2672936 - ], - [ - 3.2050638, - 51.2215244 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "HailHydrant", - "imagery": "HDM_HOT", - "language": "en" - }, - "id": 102759468 - } - }, - { - "id": 102757073, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2087731, - 51.1922869 - ], - [ - 3.2093849, - 51.1922869 - ], - [ - 3.2093849, - 51.1927907 - ], - [ - 3.2087731, - 51.1927907 - ], - [ - 3.2087731, - 51.1922869 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "grb", - "imagery": "AGIVFlandersGRB", - "language": "nl" - }, - "id": 102757073 - } - }, - { - "id": 102755841, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7229865, - 52.2222822 - ], - [ - 4.7320819, - 52.2222822 - ], - [ - 4.7320819, - 52.2267085 - ], - [ - 4.7229865, - 52.2267085 - ], - [ - 4.7229865, - 52.2222822 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 102755841 - } - }, - { - "id": 102754248, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7286476, - 51.0500297 - ], - [ - 3.7305554, - 51.0500297 - ], - [ - 3.7305554, - 51.0515971 - ], - [ - 3.7286476, - 51.0515971 - ], - [ - 3.7286476, - 51.0500297 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 102754248 - } - }, - { - "id": 102751407, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7035066, - 51.0539818 - ], - [ - 3.7076418, - 51.0539818 - ], - [ - 3.7076418, - 51.0577246 - ], - [ - 3.7035066, - 51.0577246 - ], - [ - 3.7035066, - 51.0539818 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 102751407 - } - }, - { - "id": 102750676, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7323076, - 52.2236969 - ], - [ - 4.735263, - 52.2236969 - ], - [ - 4.735263, - 52.2269451 - ], - [ - 4.7323076, - 52.2269451 - ], - [ - 4.7323076, - 52.2236969 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "en", - "theme-creator": "Peter Elderson" - }, - "id": 102750676 - } - }, - { - "id": 102750134, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6043096, - 50.8529614 - ], - [ - 3.6043096, - 50.8529614 - ], - [ - 3.6043096, - 50.8529614 - ], - [ - 3.6043096, - 50.8529614 - ], - [ - 3.6043096, - 50.8529614 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102750134 - } - }, - { - "id": 102740799, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.198081, - 51.201627 - ], - [ - 3.198081, - 51.201627 - ], - [ - 3.198081, - 51.201627 - ], - [ - 3.198081, - 51.201627 - ], - [ - 3.198081, - 51.201627 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 102740799 - } - }, - { - "id": 102739472, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1973138, - 51.2008153 - ], - [ - 3.1973138, - 51.2008153 - ], - [ - 3.1973138, - 51.2008153 - ], - [ - 3.1973138, - 51.2008153 - ], - [ - 3.1973138, - 51.2008153 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 102739472 - } - }, - { - "id": 102737684, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1971344, - 51.2007707 - ], - [ - 3.2188391, - 51.2007707 - ], - [ - 3.2188391, - 51.2116685 - ], - [ - 3.1971344, - 51.2116685 - ], - [ - 3.1971344, - 51.2007707 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "grb", - "imagery": "AGIVFlandersGRB", - "language": "nl" - }, - "id": 102737684 - } - }, - { - "id": 102710972, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8323217, - 50.983323 - ], - [ - 4.840809, - 50.983323 - ], - [ - 4.840809, - 50.9913609 - ], - [ - 4.8323217, - 50.9913609 - ], - [ - 4.8323217, - 50.983323 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 102710972 - } - }, - { - "id": 102709715, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7229838, - 52.2222789 - ], - [ - 4.7229892, - 52.2222789 - ], - [ - 4.7229892, - 52.2222838 - ], - [ - 4.7229838, - 52.2222838 - ], - [ - 4.7229838, - 52.2222789 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 102709715 - } - }, - { - "id": 102703590, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8310294, - 50.9838903 - ], - [ - 4.8419777, - 50.9838903 - ], - [ - 4.8419777, - 50.9891339 - ], - [ - 4.8310294, - 50.9891339 - ], - [ - 4.8310294, - 50.9838903 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 102703590 - } - }, - { - "id": 102700597, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.343316, - 44.5103167 - ], - [ - 11.3468786, - 44.5103167 - ], - [ - 11.3468786, - 44.5112799 - ], - [ - 11.343316, - 44.5112799 - ], - [ - 11.343316, - 44.5103167 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102700597 - } - }, - { - "id": 102669411, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4071903, - 51.921117 - ], - [ - 4.4074979, - 51.921117 - ], - [ - 4.4074979, - 51.9212112 - ], - [ - 4.4071903, - 51.9212112 - ], - [ - 4.4071903, - 51.921117 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 102669411 - } - }, - { - "id": 102669097, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4074693, - 51.9210321 - ], - [ - 4.4076902, - 51.9210321 - ], - [ - 4.4076902, - 51.9211914 - ], - [ - 4.4074693, - 51.9211914 - ], - [ - 4.4074693, - 51.9210321 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 102669097 - } - }, - { - "id": 102668943, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4081759, - 51.9212422 - ], - [ - 4.4081759, - 51.9212422 - ], - [ - 4.4081759, - 51.9212422 - ], - [ - 4.4081759, - 51.9212422 - ], - [ - 4.4081759, - 51.9212422 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 102668943 - } - }, - { - "id": 102667263, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4087415, - 51.8870399 - ], - [ - 4.4886187, - 51.8870399 - ], - [ - 4.4886187, - 51.9217769 - ], - [ - 4.4087415, - 51.9217769 - ], - [ - 4.4087415, - 51.8870399 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 102667263 - } - }, - { - "id": 102666164, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.441575, - -33.0500485 - ], - [ - -71.441575, - -33.0500485 - ], - [ - -71.441575, - -33.0500485 - ], - [ - -71.441575, - -33.0500485 - ], - [ - -71.441575, - -33.0500485 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 102666164 - } - }, - { - "id": 102661524, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.0046157, - 50.8964051 - ], - [ - 6.0046157, - 50.8964051 - ], - [ - 6.0046157, - 50.8964051 - ], - [ - 6.0046157, - 50.8964051 - ], - [ - 6.0046157, - 50.8964051 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 102661524 - } - }, - { - "id": 102660494, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3425459, - 44.5032332 - ], - [ - 11.3425459, - 44.5032332 - ], - [ - 11.3425459, - 44.5032332 - ], - [ - 11.3425459, - 44.5032332 - ], - [ - 11.3425459, - 44.5032332 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102660494 - } - }, - { - "id": 102659150, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3345859, - 44.4947034 - ], - [ - 11.3421502, - 44.4947034 - ], - [ - 11.3421502, - 44.503221 - ], - [ - 11.3345859, - 44.503221 - ], - [ - 11.3345859, - 44.4947034 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102659150 - } - }, - { - "id": 102656676, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8337423, - 50.9843479 - ], - [ - 4.8383409, - 50.9843479 - ], - [ - 4.8383409, - 50.987755 - ], - [ - 4.8337423, - 50.987755 - ], - [ - 4.8337423, - 50.9843479 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 102656676 - } - }, - { - "id": 102620070, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2310185, - 50.883426 - ], - [ - 3.2450882, - 50.883426 - ], - [ - 3.2450882, - 50.8871335 - ], - [ - 3.2310185, - 50.8871335 - ], - [ - 3.2310185, - 50.883426 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "nl" - }, - "id": 102620070 - } - }, - { - "id": 102597132, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 123.9404717, - 10.3292374 - ], - [ - 123.9404717, - 10.3292374 - ], - [ - 123.9404717, - 10.3292374 - ], - [ - 123.9404717, - 10.3292374 - ], - [ - 123.9404717, - 10.3292374 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102597132 - } - }, - { - "id": 102595572, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 123.8919452, - 10.3094937 - ], - [ - 123.9520267, - 10.3094937 - ], - [ - 123.9520267, - 10.3668768 - ], - [ - 123.8919452, - 10.3668768 - ], - [ - 123.8919452, - 10.3094937 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "EsriWorldImagery", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102595572 - } - }, - { - "id": 102589454, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4077894, - 51.9209483 - ], - [ - 4.4077894, - 51.9209483 - ], - [ - 4.4077894, - 51.9209483 - ], - [ - 4.4077894, - 51.9209483 - ], - [ - 4.4077894, - 51.9209483 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 102589454 - } - }, - { - "id": 102588517, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.9076323, - 53.6095981 - ], - [ - 9.9077628, - 53.6095981 - ], - [ - 9.9077628, - 53.6096079 - ], - [ - 9.9076323, - 53.6096079 - ], - [ - 9.9076323, - 53.6095981 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 102588517 - } - }, - { - "id": 102587984, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3960204, - 50.8241743 - ], - [ - 4.4039619, - 50.8241743 - ], - [ - 4.4039619, - 50.826972 - ], - [ - 4.3960204, - 50.826972 - ], - [ - 4.3960204, - 50.8241743 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102587984 - } - }, - { - "id": 102577817, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7475748, - 51.0455389 - ], - [ - 3.7475748, - 51.0455389 - ], - [ - 3.7475748, - 51.0455389 - ], - [ - 3.7475748, - 51.0455389 - ], - [ - 3.7475748, - 51.0455389 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 102577817 - } - }, - { - "id": 102575704, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3521712, - 51.3059343 - ], - [ - 3.3526459, - 51.3059343 - ], - [ - 3.3526459, - 51.305961 - ], - [ - 3.3521712, - 51.305961 - ], - [ - 3.3521712, - 51.3059343 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "imagery": "osm", - "language": "nl" - }, - "id": 102575704 - } - }, - { - "id": 102574932, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2671744, - 50.6997255 - ], - [ - 4.2673087, - 50.6997255 - ], - [ - 4.2673087, - 50.6997671 - ], - [ - 4.2671744, - 50.6997671 - ], - [ - 4.2671744, - 50.6997255 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 102574932 - } - }, - { - "id": 102567817, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1102168, - 51.0214354 - ], - [ - 4.1102168, - 51.0214354 - ], - [ - 4.1102168, - 51.0214354 - ], - [ - 4.1102168, - 51.0214354 - ], - [ - 4.1102168, - 51.0214354 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 102567817 - } - }, - { - "id": 102567651, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2237611, - 51.3255875 - ], - [ - 3.2385465, - 51.3255875 - ], - [ - 3.2385465, - 51.3463588 - ], - [ - 3.2237611, - 51.3463588 - ], - [ - 3.2237611, - 51.3255875 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "imagery": "osm", - "language": "nl" - }, - "id": 102567651 - } - }, - { - "id": 102567179, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1102517, - 51.0212644 - ], - [ - 4.110437, - 51.0212644 - ], - [ - 4.110437, - 51.02165 - ], - [ - 4.1102517, - 51.02165 - ], - [ - 4.1102517, - 51.0212644 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 102567179 - } - }, - { - "id": 102558508, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7476733, - 51.0383769 - ], - [ - 3.7502751, - 51.0383769 - ], - [ - 3.7502751, - 51.0443537 - ], - [ - 3.7476733, - 51.0443537 - ], - [ - 3.7476733, - 51.0383769 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 102558508 - } - }, - { - "id": 102558206, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7509003, - 51.0446436 - ], - [ - 3.7525311, - 51.0446436 - ], - [ - 3.7525311, - 51.0449185 - ], - [ - 3.7509003, - 51.0449185 - ], - [ - 3.7509003, - 51.0446436 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 102558206 - } - }, - { - "id": 102555125, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1127464, - 52.0807406 - ], - [ - 5.115096, - 52.0807406 - ], - [ - 5.115096, - 52.0820393 - ], - [ - 5.1127464, - 52.0820393 - ], - [ - 5.1127464, - 52.0807406 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102555125 - } - }, - { - "id": 102535749, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1086372, - 52.0791287 - ], - [ - 5.1163786, - 52.0791287 - ], - [ - 5.1163786, - 52.0844246 - ], - [ - 5.1086372, - 52.0844246 - ], - [ - 5.1086372, - 52.0791287 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102535749 - } - }, - { - "id": 102530987, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8467021, - 50.9815837 - ], - [ - 3.8971894, - 50.9815837 - ], - [ - 3.8971894, - 51.0188731 - ], - [ - 3.8467021, - 51.0188731 - ], - [ - 3.8467021, - 50.9815837 - ] - ] - ] - }, - "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", - "metadata": { - "host": "mapcomplete.braindeaddev.com", - "theme": "playgrounds", - "imagery": "osm", - "language": "nl" - }, - "id": 102530987 - } - }, - { - "id": 102510085, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.3684558, - 47.6796484 - ], - [ - -122.368455, - 47.6796484 - ], - [ - -122.368455, - 47.6796484 - ], - [ - -122.3684558, - 47.6796484 - ], - [ - -122.3684558, - 47.6796484 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102510085 - } - }, - { - "id": 102496039, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1436508, - 51.1713439 - ], - [ - 4.1436508, - 51.1713439 - ], - [ - 4.1436508, - 51.1713439 - ], - [ - 4.1436508, - 51.1713439 - ], - [ - 4.1436508, - 51.1713439 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102496039 - } - }, - { - "id": 102493349, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4484924, - 51.096333 - ], - [ - 3.453696, - 51.096333 - ], - [ - 3.453696, - 51.0965326 - ], - [ - 3.4484924, - 51.0965326 - ], - [ - 3.4484924, - 51.096333 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 102493349 - } - }, - { - "id": 102493261, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4350897, - 51.0797864 - ], - [ - 3.4504916, - 51.0797864 - ], - [ - 3.4504916, - 51.111325 - ], - [ - 3.4350897, - 51.111325 - ], - [ - 3.4350897, - 51.0797864 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 102493261 - } - }, - { - "id": 102492943, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4468089, - 51.090752 - ], - [ - 3.4468089, - 51.090752 - ], - [ - 3.4468089, - 51.090752 - ], - [ - 3.4468089, - 51.090752 - ], - [ - 3.4468089, - 51.090752 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 102492943 - } - }, - { - "id": 102488784, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.9179748, - 53.6180798 - ], - [ - 9.922269, - 53.6180798 - ], - [ - 9.922269, - 53.619631 - ], - [ - 9.9179748, - 53.619631 - ], - [ - 9.9179748, - 53.6180798 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 102488784 - } - }, - { - "id": 102485188, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7507582, - 51.0442895 - ], - [ - 3.7507582, - 51.0442895 - ], - [ - 3.7507582, - 51.0442895 - ], - [ - 3.7507582, - 51.0442895 - ], - [ - 3.7507582, - 51.0442895 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 102485188 - } - }, - { - "id": 102482959, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8628745, - 51.1327033 - ], - [ - 3.8628745, - 51.1327033 - ], - [ - 3.8628745, - 51.1327033 - ], - [ - 3.8628745, - 51.1327033 - ], - [ - 3.8628745, - 51.1327033 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "fritures", - "imagery": "osm", - "language": "nl" - }, - "id": 102482959 - } - }, - { - "id": 102482612, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7505865, - 51.0442895 - ], - [ - 3.7520885, - 51.0442895 - ], - [ - 3.7520885, - 51.0450567 - ], - [ - 3.7505865, - 51.0450567 - ], - [ - 3.7505865, - 51.0442895 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "surveillance", - "imagery": "AGIV", - "language": "en" - }, - "id": 102482612 - } - }, - { - "id": 102476144, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1440102, - 51.1724743 - ], - [ - 4.1440102, - 51.1724743 - ], - [ - 4.1440102, - 51.1724743 - ], - [ - 4.1440102, - 51.1724743 - ], - [ - 4.1440102, - 51.1724743 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102476144 - } - }, - { - "id": 102474193, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.716965, - 51.0341386 - ], - [ - 3.716965, - 51.0341386 - ], - [ - 3.716965, - 51.0341386 - ], - [ - 3.716965, - 51.0341386 - ], - [ - 3.716965, - 51.0341386 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "AGIV10cm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 102474193 - } - }, - { - "id": 102461994, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.8239271, - 50.7374363 - ], - [ - 5.8239271, - 50.7374363 - ], - [ - 5.8239271, - 50.7374363 - ], - [ - 5.8239271, - 50.7374363 - ], - [ - 5.8239271, - 50.7374363 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 102461994 - } - }, - { - "id": 102459404, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2362217, - 50.735992 - ], - [ - 4.2362217, - 50.735992 - ], - [ - 4.2362217, - 50.735992 - ], - [ - 4.2362217, - 50.735992 - ], - [ - 4.2362217, - 50.735992 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 102459404 - } - }, - { - "id": 102422572, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.2549248, - 51.4478858 - ], - [ - 7.2550777, - 51.4478858 - ], - [ - 7.2550777, - 51.4480831 - ], - [ - 7.2549248, - 51.4480831 - ], - [ - 7.2549248, - 51.4478858 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 102422572 - } - }, - { - "id": 102398005, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2200536, - 51.2157723 - ], - [ - 3.2200536, - 51.2157723 - ], - [ - 3.2200536, - 51.2157723 - ], - [ - 3.2200536, - 51.2157723 - ], - [ - 3.2200536, - 51.2157723 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/urban_fossils/urban_fossils.json", - "imagery": "osm", - "language": "en" - }, - "id": 102398005 - } - }, - { - "id": 102358828, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.7324476, - -33.407209 - ], - [ - -70.7324476, - -33.407209 - ], - [ - -70.7324476, - -33.407209 - ], - [ - -70.7324476, - -33.407209 - ], - [ - -70.7324476, - -33.407209 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102358828 - } - }, - { - "id": 102358109, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.2995993, - 52.5213147 - ], - [ - 13.2995993, - 52.5213147 - ], - [ - 13.2995993, - 52.5213147 - ], - [ - 13.2995993, - 52.5213147 - ], - [ - 13.2995993, - 52.5213147 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "ghostbikes", - "imagery": "osm", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 102358109 - } - }, - { - "id": 102356016, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3418849, - 50.8380985 - ], - [ - 4.3502507, - 50.8380985 - ], - [ - 4.3502507, - 50.8449429 - ], - [ - 4.3418849, - 50.8449429 - ], - [ - 4.3418849, - 50.8380985 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 102356016 - } - }, - { - "id": 102355554, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1900152, - 45.4656144 - ], - [ - 9.1900152, - 45.4656144 - ], - [ - 9.1900152, - 45.4656144 - ], - [ - 9.1900152, - 45.4656144 - ], - [ - 9.1900152, - 45.4656144 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/urban_fossils/urban_fossils.json", - "imagery": "osm", - "language": "en" - }, - "id": 102355554 - } - }, - { - "id": 102352301, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1288913, - 51.3133442 - ], - [ - 3.1444545, - 51.3133442 - ], - [ - 3.1444545, - 51.3181009 - ], - [ - 3.1288913, - 51.3181009 - ], - [ - 3.1288913, - 51.3133442 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.braindeaddev.com", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 102352301 - } - }, - { - "id": 102351482, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2169588, - 51.2117524 - ], - [ - 3.2175271, - 51.2117524 - ], - [ - 3.2175271, - 51.212269 - ], - [ - 3.2169588, - 51.212269 - ], - [ - 3.2169588, - 51.2117524 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "grb", - "imagery": "AGIVFlandersGRB", - "language": "nl" - }, - "id": 102351482 - } - }, - { - "id": 102350088, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9933496, - 51.163066 - ], - [ - 4.9933496, - 51.163066 - ], - [ - 4.9933496, - 51.163066 - ], - [ - 4.9933496, - 51.163066 - ], - [ - 4.9933496, - 51.163066 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "AGIV10cm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 102350088 - } - }, - { - "id": 102350006, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9933022, - 51.1630655 - ], - [ - 4.9933496, - 51.1630655 - ], - [ - 4.9933496, - 51.163066 - ], - [ - 4.9933022, - 51.163066 - ], - [ - 4.9933022, - 51.1630655 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 102350006 - } - }, - { - "id": 102346405, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4892502, - 51.9009947 - ], - [ - 4.4892502, - 51.9009947 - ], - [ - 4.4892502, - 51.9009947 - ], - [ - 4.4892502, - 51.9009947 - ], - [ - 4.4892502, - 51.9009947 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "stolpersteine", - "imagery": "osm", - "language": "en", - "theme-creator": "Peter Elderson" - }, - "id": 102346405 - } - }, - { - "id": 102343955, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8856546, - 50.6829334 - ], - [ - 2.8856546, - 50.6829334 - ], - [ - 2.8856546, - 50.6829334 - ], - [ - 2.8856546, - 50.6829334 - ], - [ - 2.8856546, - 50.6829334 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102343955 - } - }, - { - "id": 102343682, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5303126, - 50.6037899 - ], - [ - 4.5303126, - 50.6037899 - ], - [ - 4.5303126, - 50.6037899 - ], - [ - 4.5303126, - 50.6037899 - ], - [ - 4.5303126, - 50.6037899 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 102343682 - } - }, - { - "id": 102339517, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1757848, - 45.4635752 - ], - [ - 9.1757848, - 45.4635752 - ], - [ - 9.1757848, - 45.4635752 - ], - [ - 9.1757848, - 45.4635752 - ], - [ - 9.1757848, - 45.4635752 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102339517 - } - }, - { - "id": 102337939, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.554868, - 50.5942339 - ], - [ - 4.554868, - 50.5942339 - ], - [ - 4.554868, - 50.5942339 - ], - [ - 4.554868, - 50.5942339 - ], - [ - 4.554868, - 50.5942339 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 102337939 - } - }, - { - "id": 102333160, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1296252, - 50.9503817 - ], - [ - 3.1306575, - 50.9503817 - ], - [ - 3.1306575, - 50.9522906 - ], - [ - 3.1296252, - 50.9522906 - ], - [ - 3.1296252, - 50.9503817 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102333160 - } - }, - { - "id": 102331957, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0846523, - 50.981768 - ], - [ - 3.1260207, - 50.981768 - ], - [ - 3.1260207, - 50.9923464 - ], - [ - 3.0846523, - 50.9923464 - ], - [ - 3.0846523, - 50.981768 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "AGIV10cm", - "language": "en" - }, - "id": 102331957 - } - }, - { - "id": 102331552, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0929177, - 50.9946582 - ], - [ - 3.0929177, - 50.9946582 - ], - [ - 3.0929177, - 50.9946582 - ], - [ - 3.0929177, - 50.9946582 - ], - [ - 3.0929177, - 50.9946582 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "basketswings", - "imagery": "osm", - "language": "nl" - }, - "id": 102331552 - } - }, - { - "id": 102327643, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0963689, - 50.9969895 - ], - [ - 3.0964781, - 50.9969895 - ], - [ - 3.0964781, - 50.9970739 - ], - [ - 3.0963689, - 50.9970739 - ], - [ - 3.0963689, - 50.9969895 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 102327643 - } - }, - { - "id": 102327546, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0844047, - 50.9817082 - ], - [ - 3.1117644, - 50.9817082 - ], - [ - 3.1117644, - 50.9932758 - ], - [ - 3.0844047, - 50.9932758 - ], - [ - 3.0844047, - 50.9817082 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 102327546 - } - }, - { - "id": 102312791, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.173402, - 48.4843167 - ], - [ - 2.2323406, - 48.4843167 - ], - [ - 2.2323406, - 48.5179127 - ], - [ - 2.173402, - 48.5179127 - ], - [ - 2.173402, - 48.4843167 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 102312791 - } - }, - { - "id": 102305143, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1183711, - 50.9641453 - ], - [ - 3.1183711, - 50.9641453 - ], - [ - 3.1183711, - 50.9641453 - ], - [ - 3.1183711, - 50.9641453 - ], - [ - 3.1183711, - 50.9641453 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 102305143 - } - }, - { - "id": 102282803, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1319752, - 51.2838332 - ], - [ - 3.1319752, - 51.2838332 - ], - [ - 3.1319752, - 51.2838332 - ], - [ - 3.1319752, - 51.2838332 - ], - [ - 3.1319752, - 51.2838332 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.braindeaddev.com", - "theme": "fire", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 102282803 - } - }, - { - "id": 102282189, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5935479, - 51.1852562 - ], - [ - 4.5935479, - 51.1852562 - ], - [ - 4.5935479, - 51.1852562 - ], - [ - 4.5935479, - 51.1852562 - ], - [ - 4.5935479, - 51.1852562 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102282189 - } - }, - { - "id": 102278803, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.1698273, - 52.9012462 - ], - [ - 10.1698273, - 52.9012462 - ], - [ - 10.1698273, - 52.9012462 - ], - [ - 10.1698273, - 52.9012462 - ], - [ - 10.1698273, - 52.9012462 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 102278803 - } - }, - { - "id": 102273824, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1167767, - 50.9928367 - ], - [ - 3.1167767, - 50.9928367 - ], - [ - 3.1167767, - 50.9928367 - ], - [ - 3.1167767, - 50.9928367 - ], - [ - 3.1167767, - 50.9928367 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "ghostbikes", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102273824 - } - }, - { - "id": 102273630, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0940768, - 50.996498 - ], - [ - 3.097392, - 50.996498 - ], - [ - 3.097392, - 50.99716 - ], - [ - 3.0940768, - 50.99716 - ], - [ - 3.0940768, - 50.996498 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "AGIV10cm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 102273630 - } - }, - { - "id": 102271836, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2014294, - 45.3565504 - ], - [ - 9.2014294, - 45.3565504 - ], - [ - 9.2014294, - 45.3565504 - ], - [ - 9.2014294, - 45.3565504 - ], - [ - 9.2014294, - 45.3565504 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102271836 - } - }, - { - "id": 102271360, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.224726, - 51.2021413 - ], - [ - 3.224726, - 51.2021413 - ], - [ - 3.224726, - 51.2021413 - ], - [ - 3.224726, - 51.2021413 - ], - [ - 3.224726, - 51.2021413 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fritures", - "imagery": "osm", - "language": "nl" - }, - "id": 102271360 - } - }, - { - "id": 102266136, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5965995, - 51.9497286 - ], - [ - 4.5965995, - 51.9497286 - ], - [ - 4.5965995, - 51.9497286 - ], - [ - 4.5965995, - 51.9497286 - ], - [ - 4.5965995, - 51.9497286 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "en", - "theme-creator": "Peter Elderson" - }, - "id": 102266136 - } - }, - { - "id": 102265697, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3572122, - 50.8987261 - ], - [ - 4.3606496, - 50.8987261 - ], - [ - 4.3606496, - 50.9010398 - ], - [ - 4.3572122, - 50.9010398 - ], - [ - 4.3572122, - 50.8987261 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102265697 - } - }, - { - "id": 102265111, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1306891, - 51.3128653 - ], - [ - 3.1313798, - 51.3128653 - ], - [ - 3.1313798, - 51.3131076 - ], - [ - 3.1306891, - 51.3131076 - ], - [ - 3.1306891, - 51.3128653 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.braindeaddev.com", - "theme": "fire", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 102265111 - } - }, - { - "id": 102257369, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3613298, - 50.8685423 - ], - [ - 4.37291, - 50.8685423 - ], - [ - 4.37291, - 50.875017 - ], - [ - 4.3613298, - 50.875017 - ], - [ - 4.3613298, - 50.8685423 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 102257369 - } - }, - { - "id": 102255313, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 123.9496529, - 10.3386576 - ], - [ - 123.9547384, - 10.3386576 - ], - [ - 123.9547384, - 10.3405732 - ], - [ - 123.9496529, - 10.3405732 - ], - [ - 123.9496529, - 10.3386576 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "HailHydrant", - "imagery": "HDM_HOT", - "language": "en" - }, - "id": 102255313 - } - }, - { - "id": 102248624, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3422572, - 51.2470648 - ], - [ - 3.3422572, - 51.2470648 - ], - [ - 3.3422572, - 51.2470648 - ], - [ - 3.3422572, - 51.2470648 - ], - [ - 3.3422572, - 51.2470648 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102248624 - } - }, - { - "id": 102242966, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2585537, - 45.4646341 - ], - [ - 9.2617569, - 45.4646341 - ], - [ - 9.2617569, - 45.4707557 - ], - [ - 9.2585537, - 45.4707557 - ], - [ - 9.2585537, - 45.4646341 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102242966 - } - }, - { - "id": 102242557, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7105625, - 52.6003287 - ], - [ - 4.7610497, - 52.6003287 - ], - [ - 4.7610497, - 52.6398929 - ], - [ - 4.7105625, - 52.6398929 - ], - [ - 4.7105625, - 52.6003287 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "stolpersteine", - "imagery": "osm", - "language": "en", - "theme-creator": "Peter Elderson" - }, - "id": 102242557 - } - }, - { - "id": 102235750, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7371298, - 52.6216167 - ], - [ - 4.7501627, - 52.6216167 - ], - [ - 4.7501627, - 52.6330596 - ], - [ - 4.7371298, - 52.6330596 - ], - [ - 4.7371298, - 52.6216167 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "stolpersteine", - "imagery": "osm", - "language": "en", - "theme-creator": "Peter Elderson" - }, - "id": 102235750 - } - }, - { - "id": 102235445, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.3871787, - 49.8844236 - ], - [ - 6.3873387, - 49.8844236 - ], - [ - 6.3873387, - 49.8848692 - ], - [ - 6.3871787, - 49.8848692 - ], - [ - 6.3871787, - 49.8844236 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 102235445 - } - }, - { - "id": 102235227, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0669408, - 14.572291 - ], - [ - 121.0669408, - 14.572291 - ], - [ - 121.0669408, - 14.572291 - ], - [ - 121.0669408, - 14.572291 - ], - [ - 121.0669408, - 14.572291 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "HailHydrant", - "imagery": "HDM_HOT", - "language": "en" - }, - "id": 102235227 - } - }, - { - "id": 102229797, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.9963894, - 43.2895279 - ], - [ - -2.9958745, - 43.2895279 - ], - [ - -2.9958745, - 43.2906393 - ], - [ - -2.9963894, - 43.2906393 - ], - [ - -2.9963894, - 43.2895279 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102229797 - } - }, - { - "id": 102227975, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.90308, - 53.6078142 - ], - [ - 9.9058252, - 53.6078142 - ], - [ - 9.9058252, - 53.60786 - ], - [ - 9.90308, - 53.60786 - ], - [ - 9.90308, - 53.6078142 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 102227975 - } - }, - { - "id": 102227748, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.9147818, - 53.6087386 - ], - [ - 9.9147987, - 53.6087386 - ], - [ - 9.9147987, - 53.6088183 - ], - [ - 9.9147818, - 53.6088183 - ], - [ - 9.9147818, - 53.6087386 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 102227748 - } - }, - { - "id": 102226307, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1187339, - 52.0797351 - ], - [ - 5.1283875, - 52.0797351 - ], - [ - 5.1283875, - 52.0909862 - ], - [ - 5.1187339, - 52.0909862 - ], - [ - 5.1187339, - 52.0797351 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102226307 - } - }, - { - "id": 102225592, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0601749, - 14.5726238 - ], - [ - 121.0649264, - 14.5726238 - ], - [ - 121.0649264, - 14.5761256 - ], - [ - 121.0601749, - 14.5761256 - ], - [ - 121.0601749, - 14.5726238 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "HailHydrant", - "imagery": "HDM_HOT", - "language": "en" - }, - "id": 102225592 - } - }, - { - "id": 102225336, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7105625, - 52.6003287 - ], - [ - 4.7551033, - 52.6003287 - ], - [ - 4.7551033, - 52.6322921 - ], - [ - 4.7105625, - 52.6322921 - ], - [ - 4.7105625, - 52.6003287 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "stolpersteine", - "imagery": "osm", - "language": "en", - "theme-creator": "Peter Elderson" - }, - "id": 102225336 - } - }, - { - "id": 102225188, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0669408, - 14.572291 - ], - [ - 121.0669408, - 14.572291 - ], - [ - 121.0669408, - 14.572291 - ], - [ - 121.0669408, - 14.572291 - ], - [ - 121.0669408, - 14.572291 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "HailHydrant", - "imagery": "HDM_HOT", - "language": "en" - }, - "id": 102225188 - } - }, - { - "id": 102225012, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8643487, - 51.008557 - ], - [ - 3.8774351, - 51.008557 - ], - [ - 3.8774351, - 51.0245493 - ], - [ - 3.8643487, - 51.0245493 - ], - [ - 3.8643487, - 51.008557 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 102225012 - } - }, - { - "id": 102220748, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.7674406, - -33.4874239 - ], - [ - -70.7674406, - -33.4874239 - ], - [ - -70.7674406, - -33.4874239 - ], - [ - -70.7674406, - -33.4874239 - ], - [ - -70.7674406, - -33.4874239 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 102220748 - } - }, - { - "id": 102220729, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.7674406, - -33.4874239 - ], - [ - -70.7674406, - -33.4874239 - ], - [ - -70.7674406, - -33.4874239 - ], - [ - -70.7674406, - -33.4874239 - ], - [ - -70.7674406, - -33.4874239 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "osmfr", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 102220729 - } - }, - { - "id": 102220671, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.7674595, - -33.4874413 - ], - [ - -70.7674595, - -33.4874413 - ], - [ - -70.7674595, - -33.4874413 - ], - [ - -70.7674595, - -33.4874413 - ], - [ - -70.7674595, - -33.4874413 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 102220671 - } - }, - { - "id": 102211506, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3780276, - 50.8603775 - ], - [ - 4.3780276, - 50.8603775 - ], - [ - 4.3780276, - 50.8603775 - ], - [ - 4.3780276, - 50.8603775 - ], - [ - 4.3780276, - 50.8603775 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 102211506 - } - }, - { - "id": 102208373, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2541768, - 51.9564364 - ], - [ - 6.2543391, - 51.9564364 - ], - [ - 6.2543391, - 51.9564728 - ], - [ - 6.2541768, - 51.9564728 - ], - [ - 6.2541768, - 51.9564364 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 102208373 - } - }, - { - "id": 102206649, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.804531, - 50.6994104 - ], - [ - 5.8116952, - 50.6994104 - ], - [ - 5.8116952, - 50.7486504 - ], - [ - 5.804531, - 50.7486504 - ], - [ - 5.804531, - 50.6994104 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102206649 - } - }, - { - "id": 102199776, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6996004, - 51.05936 - ], - [ - 3.6996004, - 51.05936 - ], - [ - 3.6996004, - 51.05936 - ], - [ - 3.6996004, - 51.05936 - ], - [ - 3.6996004, - 51.05936 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "basketswings", - "imagery": "osm", - "language": "nl" - }, - "id": 102199776 - } - }, - { - "id": 102198663, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1114651, - 52.0689979 - ], - [ - 5.1211795, - 52.0689979 - ], - [ - 5.1211795, - 52.0772345 - ], - [ - 5.1114651, - 52.0772345 - ], - [ - 5.1114651, - 52.0689979 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102198663 - } - }, - { - "id": 102198108, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6944899, - 50.8626759 - ], - [ - 4.7284952, - 50.8626759 - ], - [ - 4.7284952, - 50.9004907 - ], - [ - 4.6944899, - 50.9004907 - ], - [ - 4.6944899, - 50.8626759 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 102198108 - } - }, - { - "id": 102198052, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7105625, - 52.6003287 - ], - [ - 4.7105625, - 52.6003287 - ], - [ - 4.7105625, - 52.6003287 - ], - [ - 4.7105625, - 52.6003287 - ], - [ - 4.7105625, - 52.6003287 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "stolpersteine", - "imagery": "osm", - "language": "en", - "theme-creator": "Peter Elderson" - }, - "id": 102198052 - } - }, - { - "id": 102197860, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.6601248, - 49.9349566 - ], - [ - 6.6624451, - 49.9349566 - ], - [ - 6.6624451, - 49.9372217 - ], - [ - 6.6601248, - 49.9372217 - ], - [ - 6.6601248, - 49.9349566 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 102197860 - } - }, - { - "id": 102194677, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4446054, - 51.1900344 - ], - [ - 4.4446054, - 51.1900344 - ], - [ - 4.4446054, - 51.1900344 - ], - [ - 4.4446054, - 51.1900344 - ], - [ - 4.4446054, - 51.1900344 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 102194677 - } - }, - { - "id": 102193207, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.8238922, - 50.7372484 - ], - [ - 5.8242762, - 50.7372484 - ], - [ - 5.8242762, - 50.7374465 - ], - [ - 5.8238922, - 50.7374465 - ], - [ - 5.8238922, - 50.7372484 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102193207 - } - }, - { - "id": 102193059, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.8236044, - 50.7375385 - ], - [ - 5.8236044, - 50.7375385 - ], - [ - 5.8236044, - 50.7375385 - ], - [ - 5.8236044, - 50.7375385 - ], - [ - 5.8236044, - 50.7375385 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102193059 - } - }, - { - "id": 102190068, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4425597, - 51.1886036 - ], - [ - 4.4451569, - 51.1886036 - ], - [ - 4.4451569, - 51.1902579 - ], - [ - 4.4425597, - 51.1902579 - ], - [ - 4.4425597, - 51.1886036 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "AGIV", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 102190068 - } - }, - { - "id": 102189327, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.8116952, - 50.7486504 - ], - [ - 5.8116952, - 50.7486504 - ], - [ - 5.8116952, - 50.7486504 - ], - [ - 5.8116952, - 50.7486504 - ], - [ - 5.8116952, - 50.7486504 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102189327 - } - }, - { - "id": 102175932, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.804531, - 50.6994104 - ], - [ - 5.804531, - 50.6994104 - ], - [ - 5.804531, - 50.6994104 - ], - [ - 5.804531, - 50.6994104 - ], - [ - 5.804531, - 50.6994104 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 102175932 - } - }, - { - "id": 102174721, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2002511, - 50.9860252 - ], - [ - 5.2012461, - 50.9860252 - ], - [ - 5.2012461, - 50.9864071 - ], - [ - 5.2002511, - 50.9864071 - ], - [ - 5.2002511, - 50.9860252 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "nl" - }, - "id": 102174721 - } - }, - { - "id": 102172588, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.268695, - 50.986261 - ], - [ - 5.268695, - 50.986261 - ], - [ - 5.268695, - 50.986261 - ], - [ - 5.268695, - 50.986261 - ], - [ - 5.268695, - 50.986261 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 102172588 - } - }, - { - "id": 102149904, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.9743066, - 42.3045529 - ], - [ - -1.9743066, - 42.3045529 - ], - [ - -1.9743066, - 42.3045529 - ], - [ - -1.9743066, - 42.3045529 - ], - [ - -1.9743066, - 42.3045529 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102149904 - } - }, - { - "id": 102146104, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5063496, - 47.1435815 - ], - [ - 8.5097829, - 47.1435815 - ], - [ - 8.5097829, - 47.1730349 - ], - [ - 8.5063496, - 47.1730349 - ], - [ - 8.5063496, - 47.1435815 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "pingpong", - "imagery": "osm", - "language": "nl" - }, - "id": 102146104 - } - }, - { - "id": 102145840, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7106482, - 50.860715 - ], - [ - 4.7350296, - 50.860715 - ], - [ - 4.7350296, - 50.8900515 - ], - [ - 4.7106482, - 50.8900515 - ], - [ - 4.7106482, - 50.860715 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 102145840 - } - }, - { - "id": 102142262, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3255042, - 44.4894455 - ], - [ - 11.3418042, - 44.4894455 - ], - [ - 11.3418042, - 44.5008816 - ], - [ - 11.3255042, - 44.5008816 - ], - [ - 11.3255042, - 44.4894455 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102142262 - } - }, - { - "id": 102142242, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3257737, - 44.4891669 - ], - [ - 11.3294522, - 44.4891669 - ], - [ - 11.3294522, - 44.4896056 - ], - [ - 11.3257737, - 44.4896056 - ], - [ - 11.3257737, - 44.4891669 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 102142242 - } - }, - { - "id": 102137022, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5084176, - 47.1428351 - ], - [ - 8.5106063, - 47.1428351 - ], - [ - 8.5106063, - 47.1453021 - ], - [ - 8.5084176, - 47.1453021 - ], - [ - 8.5084176, - 47.1428351 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "pingpong", - "imagery": "osm", - "language": "nl" - }, - "id": 102137022 - } - }, - { - "id": 102136102, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7250126, - 50.8831611 - ], - [ - 4.7350296, - 50.8831611 - ], - [ - 4.7350296, - 50.8900515 - ], - [ - 4.7250126, - 50.8900515 - ], - [ - 4.7250126, - 50.8831611 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 102136102 - } - }, - { - "id": 102123964, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9132375, - 51.22716 - ], - [ - 2.916786, - 51.22716 - ], - [ - 2.916786, - 51.2277915 - ], - [ - 2.9132375, - 51.2277915 - ], - [ - 2.9132375, - 51.22716 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 102123964 - } - }, - { - "id": 102123961, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4439233, - 52.3300255 - ], - [ - 5.4902456, - 52.3300255 - ], - [ - 5.4902456, - 52.3378746 - ], - [ - 5.4439233, - 52.3378746 - ], - [ - 5.4439233, - 52.3300255 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 102123961 - } - }, - { - "id": 102108527, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5285826, - 51.9567061 - ], - [ - 6.5285845, - 51.9567061 - ], - [ - 6.5285845, - 51.9567353 - ], - [ - 6.5285826, - 51.9567353 - ], - [ - 6.5285826, - 51.9567061 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 102108527 - } - }, - { - "id": 102086552, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2320799, - -39.8444689 - ], - [ - -73.2293439, - -39.8444689 - ], - [ - -73.2293439, - -39.8423528 - ], - [ - -73.2320799, - -39.8423528 - ], - [ - -73.2320799, - -39.8444689 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 102086552 - } - }, - { - "id": 102085289, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2372803, - -39.845244 - ], - [ - -73.2372803, - -39.845244 - ], - [ - -73.2372803, - -39.845244 - ], - [ - -73.2372803, - -39.845244 - ], - [ - -73.2372803, - -39.845244 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 102085289 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2021-5.json b/Docs/Tools/stats/stats.2021-5.json deleted file mode 100644 index 48e364ce53..0000000000 --- a/Docs/Tools/stats/stats.2021-5.json +++ /dev/null @@ -1,27975 +0,0 @@ -{ - "features": [ - { - "id": 105646814, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.8250468, - 53.7952382 - ], - [ - -1.5467921, - 53.7952382 - ], - [ - -1.5467921, - 53.9249731 - ], - [ - -1.8250468, - 53.9249731 - ], - [ - -1.8250468, - 53.7952382 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105646814 - } - }, - { - "id": 105646533, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.3180779, - 45.701537 - ], - [ - -0.3176985, - 45.701537 - ], - [ - -0.3176985, - 45.7016623 - ], - [ - -0.3180779, - 45.7016623 - ], - [ - -0.3180779, - 45.701537 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "buildings", - "imagery": "osm", - "language": "fr" - }, - "id": 105646533 - } - }, - { - "id": 105627749, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5958043, - -34.6451956 - ], - [ - -58.5931914, - -34.6451956 - ], - [ - -58.5931914, - -34.6448603 - ], - [ - -58.5958043, - -34.6448603 - ], - [ - -58.5958043, - -34.6451956 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 105627749 - } - }, - { - "id": 105626142, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7919906, - -34.6499829 - ], - [ - -58.791451, - -34.6499829 - ], - [ - -58.791451, - -34.6498891 - ], - [ - -58.7919906, - -34.6498891 - ], - [ - -58.7919906, - -34.6499829 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 105626142 - } - }, - { - "id": 105612563, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2061303, - 51.1871501 - ], - [ - 3.2061303, - 51.1871501 - ], - [ - 3.2061303, - 51.1871501 - ], - [ - 3.2061303, - 51.1871501 - ], - [ - 3.2061303, - 51.1871501 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105612563 - } - }, - { - "id": 105605501, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2084011, - 51.1869047 - ], - [ - 3.2084011, - 51.1869047 - ], - [ - 3.2084011, - 51.1869047 - ], - [ - 3.2084011, - 51.1869047 - ], - [ - 3.2084011, - 51.1869047 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105605501 - } - }, - { - "id": 105597334, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.3257719, - 43.5032495 - ], - [ - 10.3257719, - 43.5032495 - ], - [ - 10.3257719, - 43.5032495 - ], - [ - 10.3257719, - 43.5032495 - ], - [ - 10.3257719, - 43.5032495 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "it", - "theme-creator": "joost schouppe" - }, - "id": 105597334 - } - }, - { - "id": 105592095, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.7310614, - -33.4677007 - ], - [ - -70.7310614, - -33.4677007 - ], - [ - -70.7310614, - -33.4677007 - ], - [ - -70.7310614, - -33.4677007 - ], - [ - -70.7310614, - -33.4677007 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "ghostbikes", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105592095 - } - }, - { - "id": 105592093, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 122.0947069, - 13.9173591 - ], - [ - 122.1043628, - 13.9173591 - ], - [ - 122.1043628, - 13.9244238 - ], - [ - 122.0947069, - 13.9244238 - ], - [ - 122.0947069, - 13.9173591 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 105592093 - } - }, - { - "id": 105588545, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.4666858, - -34.5399946 - ], - [ - -58.466647, - -34.5399946 - ], - [ - -58.466647, - -34.5399733 - ], - [ - -58.4666858, - -34.5399733 - ], - [ - -58.4666858, - -34.5399946 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 105588545 - } - }, - { - "id": 105579878, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.5969169, - 49.2240679 - ], - [ - 16.6082692, - 49.2240679 - ], - [ - 16.6082692, - 49.2262403 - ], - [ - 16.5969169, - 49.2262403 - ], - [ - 16.5969169, - 49.2240679 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105579878 - } - }, - { - "id": 105579726, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.6172481, - 49.2177212 - ], - [ - 16.6172481, - 49.2177212 - ], - [ - 16.6172481, - 49.2177212 - ], - [ - 16.6172481, - 49.2177212 - ], - [ - 16.6172481, - 49.2177212 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105579726 - } - }, - { - "id": 105575306, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9018323, - 50.8687709 - ], - [ - 4.142177, - 50.8687709 - ], - [ - 4.142177, - 50.9661621 - ], - [ - 3.9018323, - 50.9661621 - ], - [ - 3.9018323, - 50.8687709 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105575306 - } - }, - { - "id": 105573038, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.9469078, - 53.620778 - ], - [ - 9.963001, - 53.620778 - ], - [ - 9.963001, - 53.6283468 - ], - [ - 9.9469078, - 53.6283468 - ], - [ - 9.9469078, - 53.620778 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 105573038 - } - }, - { - "id": 105569986, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.9699253, - 53.6310141 - ], - [ - 9.9763477, - 53.6310141 - ], - [ - 9.9763477, - 53.6315693 - ], - [ - 9.9699253, - 53.6315693 - ], - [ - 9.9699253, - 53.6310141 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 105569986 - } - }, - { - "id": 105569231, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 43.8566539, - 56.2576637 - ], - [ - 43.8566539, - 56.2576637 - ], - [ - 43.8566539, - 56.2576637 - ], - [ - 43.8566539, - 56.2576637 - ], - [ - 43.8566539, - 56.2576637 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105569231 - } - }, - { - "id": 105568447, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9517362, - 50.8464569 - ], - [ - 2.9517362, - 50.8464569 - ], - [ - 2.9517362, - 50.8464569 - ], - [ - 2.9517362, - 50.8464569 - ], - [ - 2.9517362, - 50.8464569 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105568447 - } - }, - { - "id": 105564069, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9468304, - 50.8470988 - ], - [ - 2.9468304, - 50.8470988 - ], - [ - 2.9468304, - 50.8470988 - ], - [ - 2.9468304, - 50.8470988 - ], - [ - 2.9468304, - 50.8470988 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 105564069 - } - }, - { - "id": 105561348, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7515642, - 50.9784145 - ], - [ - 2.7515642, - 50.9784145 - ], - [ - 2.7515642, - 50.9784145 - ], - [ - 2.7515642, - 50.9784145 - ], - [ - 2.7515642, - 50.9784145 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105561348 - } - }, - { - "id": 105561178, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9315831, - 50.8830936 - ], - [ - 4.1105567, - 50.8830936 - ], - [ - 4.1105567, - 50.9535334 - ], - [ - 3.9315831, - 50.9535334 - ], - [ - 3.9315831, - 50.8830936 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "aed", - "imagery": "AGIVFlandersGRB", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105561178 - } - }, - { - "id": 105560091, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.958101, - 50.8471648 - ], - [ - 2.958101, - 50.8471648 - ], - [ - 2.958101, - 50.8471648 - ], - [ - 2.958101, - 50.8471648 - ], - [ - 2.958101, - 50.8471648 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105560091 - } - }, - { - "id": 105558256, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.9135947, - 53.6079631 - ], - [ - 9.9135947, - 53.6079631 - ], - [ - 9.9135947, - 53.6079631 - ], - [ - 9.9135947, - 53.6079631 - ], - [ - 9.9135947, - 53.6079631 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 105558256 - } - }, - { - "id": 105551818, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.3664978, - 47.6723233 - ], - [ - -122.351587, - 47.6723233 - ], - [ - -122.351587, - 47.6779527 - ], - [ - -122.3664978, - 47.6779527 - ], - [ - -122.3664978, - 47.6723233 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105551818 - } - }, - { - "id": 105547366, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9269374, - 50.3546674 - ], - [ - 4.9269374, - 50.3546674 - ], - [ - 4.9269374, - 50.3546674 - ], - [ - 4.9269374, - 50.3546674 - ], - [ - 4.9269374, - 50.3546674 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "playgrounds", - "imagery": "osm", - "language": "nl" - }, - "id": 105547366 - } - }, - { - "id": 105538502, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.459725, - 42.3582 - ], - [ - 1.4618038, - 42.3582 - ], - [ - 1.4618038, - 42.3593813 - ], - [ - 1.459725, - 42.3593813 - ], - [ - 1.459725, - 42.3582 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "ca", - "theme-creator": "MapComplete" - }, - "id": 105538502 - } - }, - { - "id": 105533079, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8821664, - 51.2149915 - ], - [ - 2.8833898, - 51.2149915 - ], - [ - 2.8833898, - 51.2165776 - ], - [ - 2.8821664, - 51.2165776 - ], - [ - 2.8821664, - 51.2149915 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105533079 - } - }, - { - "id": 105531157, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 43.8590768, - 56.2553563 - ], - [ - 43.8590768, - 56.2553563 - ], - [ - 43.8590768, - 56.2553563 - ], - [ - 43.8590768, - 56.2553563 - ], - [ - 43.8590768, - 56.2553563 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "alexashh", - "uid": "9054103", - "editor": "MapComplete 0.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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105531157 - } - }, - { - "id": 105529143, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0747409, - 51.1854274 - ], - [ - 5.1237206, - 51.1854274 - ], - [ - 5.1237206, - 51.2015511 - ], - [ - 5.0747409, - 51.2015511 - ], - [ - 5.0747409, - 51.1854274 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "playgrounds", - "imagery": "osm", - "language": "nl" - }, - "id": 105529143 - } - }, - { - "id": 105528545, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8821664, - 51.2136673 - ], - [ - 2.9181958, - 51.2136673 - ], - [ - 2.9181958, - 51.2251812 - ], - [ - 2.8821664, - 51.2251812 - ], - [ - 2.8821664, - 51.2136673 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105528545 - } - }, - { - "id": 105528141, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.6419618, - 49.9305073 - ], - [ - 6.6419618, - 49.9305073 - ], - [ - 6.6419618, - 49.9305073 - ], - [ - 6.6419618, - 49.9305073 - ], - [ - 6.6419618, - 49.9305073 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "osm", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 105528141 - } - }, - { - "id": 105527976, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.6461159, - 49.9334178 - ], - [ - 6.6461159, - 49.9334178 - ], - [ - 6.6461159, - 49.9334178 - ], - [ - 6.6461159, - 49.9334178 - ], - [ - 6.6461159, - 49.9334178 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 105527976 - } - }, - { - "id": 105527901, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.6421056, - 49.9303136 - ], - [ - 6.6421056, - 49.9303136 - ], - [ - 6.6421056, - 49.9303136 - ], - [ - 6.6421056, - 49.9303136 - ], - [ - 6.6421056, - 49.9303136 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 105527901 - } - }, - { - "id": 105526392, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7332854, - 50.7366052 - ], - [ - 3.8482162, - 50.7366052 - ], - [ - 3.8482162, - 50.833666 - ], - [ - 3.7332854, - 50.833666 - ], - [ - 3.7332854, - 50.7366052 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fritures", - "imagery": "osm", - "language": "nl" - }, - "id": 105526392 - } - }, - { - "id": 105526094, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3486896, - 51.1744232 - ], - [ - 4.3486896, - 51.1744232 - ], - [ - 4.3486896, - 51.1744232 - ], - [ - 4.3486896, - 51.1744232 - ], - [ - 4.3486896, - 51.1744232 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105526094 - } - }, - { - "id": 105525175, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.3779956, - 48.908687 - ], - [ - 2.3779956, - 48.908687 - ], - [ - 2.3779956, - 48.908687 - ], - [ - 2.3779956, - 48.908687 - ], - [ - 2.3779956, - 48.908687 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 105525175 - } - }, - { - "id": 105523172, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1191509, - 50.9693049 - ], - [ - 3.1191509, - 50.9693049 - ], - [ - 3.1191509, - 50.9693049 - ], - [ - 3.1191509, - 50.9693049 - ], - [ - 3.1191509, - 50.9693049 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105523172 - } - }, - { - "id": 105522221, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4155276, - 51.2062991 - ], - [ - 4.4155276, - 51.2062991 - ], - [ - 4.4155276, - 51.2062991 - ], - [ - 4.4155276, - 51.2062991 - ], - [ - 4.4155276, - 51.2062991 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fritures", - "imagery": "osm", - "language": "nl" - }, - "id": 105522221 - } - }, - { - "id": 105520167, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4471874, - 51.2478092 - ], - [ - 4.4594496, - 51.2478092 - ], - [ - 4.4594496, - 51.2526097 - ], - [ - 4.4471874, - 51.2526097 - ], - [ - 4.4471874, - 51.2478092 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fritures", - "imagery": "osm", - "language": "nl" - }, - "id": 105520167 - } - }, - { - "id": 105515868, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.6400716, - -34.6513452 - ], - [ - -58.6400716, - -34.6513452 - ], - [ - -58.6400716, - -34.6513452 - ], - [ - -58.6400716, - -34.6513452 - ], - [ - -58.6400716, - -34.6513452 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 105515868 - } - }, - { - "id": 105514466, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 43.8592109, - 56.2416367 - ], - [ - 43.8592109, - 56.2416367 - ], - [ - 43.8592109, - 56.2416367 - ], - [ - 43.8592109, - 56.2416367 - ], - [ - 43.8592109, - 56.2416367 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105514466 - } - }, - { - "id": 105495953, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.6076865, - -34.6463151 - ], - [ - -58.5977729, - -34.6463151 - ], - [ - -58.5977729, - -34.6451101 - ], - [ - -58.6076865, - -34.6451101 - ], - [ - -58.6076865, - -34.6463151 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 105495953 - } - }, - { - "id": 105495698, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2317013, - 50.7318912 - ], - [ - 4.2389458, - 50.7318912 - ], - [ - 4.2389458, - 50.7369538 - ], - [ - 4.2317013, - 50.7369538 - ], - [ - 4.2317013, - 50.7318912 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete, joost schouppe" - }, - "id": 105495698 - } - }, - { - "id": 105495425, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1226049, - 52.0831865 - ], - [ - 5.1226049, - 52.0831865 - ], - [ - 5.1226049, - 52.0831865 - ], - [ - 5.1226049, - 52.0831865 - ], - [ - 5.1226049, - 52.0831865 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105495425 - } - }, - { - "id": 105494205, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7910763, - -34.6658149 - ], - [ - -58.7193207, - -34.6658149 - ], - [ - -58.7193207, - -34.6499732 - ], - [ - -58.7910763, - -34.6499732 - ], - [ - -58.7910763, - -34.6658149 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 105494205 - } - }, - { - "id": 105478384, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0064341, - 14.5511908 - ], - [ - 121.0064341, - 14.5511908 - ], - [ - 121.0064341, - 14.5511908 - ], - [ - 121.0064341, - 14.5511908 - ], - [ - 121.0064341, - 14.5511908 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105478384 - } - }, - { - "id": 105473570, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9881632, - 51.1787212 - ], - [ - 3.9881632, - 51.1787212 - ], - [ - 3.9881632, - 51.1787212 - ], - [ - 3.9881632, - 51.1787212 - ], - [ - 3.9881632, - 51.1787212 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105473570 - } - }, - { - "id": 105470322, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0526434, - 51.1962641 - ], - [ - 5.0526434, - 51.1962641 - ], - [ - 5.0526434, - 51.1962641 - ], - [ - 5.0526434, - 51.1962641 - ], - [ - 5.0526434, - 51.1962641 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 105470322 - } - }, - { - "id": 105448422, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -82.4355785, - 38.4100601 - ], - [ - -82.4355476, - 38.4100601 - ], - [ - -82.4355476, - 38.4102099 - ], - [ - -82.4355785, - 38.4102099 - ], - [ - -82.4355785, - 38.4100601 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 105448422 - } - }, - { - "id": 105447817, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2084011, - 51.1869047 - ], - [ - 3.2163414, - 51.1869047 - ], - [ - 3.2163414, - 51.1965711 - ], - [ - 3.2084011, - 51.1965711 - ], - [ - 3.2084011, - 51.1869047 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105447817 - } - }, - { - "id": 105447053, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2038799, - 51.2022528 - ], - [ - 3.2050546, - 51.2022528 - ], - [ - 3.2050546, - 51.2279008 - ], - [ - 3.2038799, - 51.2279008 - ], - [ - 3.2038799, - 51.2022528 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105447053 - } - }, - { - "id": 105438725, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.8190627, - 51.810254 - ], - [ - 13.8203734, - 51.810254 - ], - [ - 13.8203734, - 51.8122863 - ], - [ - 13.8190627, - 51.8122863 - ], - [ - 13.8190627, - 51.810254 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 105438725 - } - }, - { - "id": 105432701, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5948963, - -34.6447447 - ], - [ - -58.5937558, - -34.6447447 - ], - [ - -58.5937558, - -34.6446999 - ], - [ - -58.5948963, - -34.6446999 - ], - [ - -58.5948963, - -34.6447447 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 105432701 - } - }, - { - "id": 105429893, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7904162, - 51.8111198 - ], - [ - 13.8217482, - 51.8111198 - ], - [ - 13.8217482, - 51.8228518 - ], - [ - 13.7904162, - 51.8228518 - ], - [ - 13.7904162, - 51.8111198 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 105429893 - } - }, - { - "id": 105429835, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.6643979, - -34.6590273 - ], - [ - -58.5977729, - -34.6590273 - ], - [ - -58.5977729, - -34.6451101 - ], - [ - -58.6643979, - -34.6451101 - ], - [ - -58.6643979, - -34.6590273 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 105429835 - } - }, - { - "id": 105429373, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7214746, - -34.6653664 - ], - [ - -58.6643223, - -34.6653664 - ], - [ - -58.6643223, - -34.6589718 - ], - [ - -58.7214746, - -34.6589718 - ], - [ - -58.7214746, - -34.6653664 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 105429373 - } - }, - { - "id": 105425711, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2165779, - 41.4330737 - ], - [ - 2.2165779, - 41.4330737 - ], - [ - 2.2165779, - 41.4330737 - ], - [ - 2.2165779, - 41.4330737 - ], - [ - 2.2165779, - 41.4330737 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105425711 - } - }, - { - "id": 105423247, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2300808, - 41.4404635 - ], - [ - 2.2314875, - 41.4404635 - ], - [ - 2.2314875, - 41.4412093 - ], - [ - 2.2300808, - 41.4412093 - ], - [ - 2.2300808, - 41.4404635 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105423247 - } - }, - { - "id": 105422476, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2217802, - 41.4358547 - ], - [ - 2.2221038, - 41.4358547 - ], - [ - 2.2221038, - 41.4359774 - ], - [ - 2.2217802, - 41.4359774 - ], - [ - 2.2217802, - 41.4358547 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105422476 - } - }, - { - "id": 105415408, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.1477031, - 52.3448603 - ], - [ - 14.1477031, - 52.3448603 - ], - [ - 14.1477031, - 52.3448603 - ], - [ - 14.1477031, - 52.3448603 - ], - [ - 14.1477031, - 52.3448603 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 105415408 - } - }, - { - "id": 105410749, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7054202, - 52.2386216 - ], - [ - 13.7225622, - 52.2386216 - ], - [ - 13.7225622, - 52.2459828 - ], - [ - 13.7054202, - 52.2459828 - ], - [ - 13.7054202, - 52.2386216 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 105410749 - } - }, - { - "id": 105406148, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9132375, - 51.0509099 - ], - [ - 5.1607412, - 51.0509099 - ], - [ - 5.1607412, - 51.2277915 - ], - [ - 2.9132375, - 51.2277915 - ], - [ - 2.9132375, - 51.0509099 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105406148 - } - }, - { - "id": 105403334, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2004842, - 51.1869047 - ], - [ - 3.2350794, - 51.1869047 - ], - [ - 3.2350794, - 51.2279008 - ], - [ - 3.2004842, - 51.2279008 - ], - [ - 3.2004842, - 51.1869047 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105403334 - } - }, - { - "id": 105402639, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2034321, - 51.1822992 - ], - [ - 3.2034321, - 51.1822992 - ], - [ - 3.2034321, - 51.1822992 - ], - [ - 3.2034321, - 51.1822992 - ], - [ - 3.2034321, - 51.1822992 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105402639 - } - }, - { - "id": 105382757, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.4734044, - -33.5889291 - ], - [ - -70.4734044, - -33.5889291 - ], - [ - -70.4734044, - -33.5889291 - ], - [ - -70.4734044, - -33.5889291 - ], - [ - -70.4734044, - -33.5889291 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "ghostbikes", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105382757 - } - }, - { - "id": 105382527, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5691223, - 50.9290015 - ], - [ - 5.5773909, - 50.9290015 - ], - [ - 5.5773909, - 50.9353011 - ], - [ - 5.5691223, - 50.9353011 - ], - [ - 5.5691223, - 50.9290015 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105382527 - } - }, - { - "id": 105377923, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.9130718, - 52.9002092 - ], - [ - 10.1745953, - 52.9002092 - ], - [ - 10.1745953, - 53.6129318 - ], - [ - 9.9130718, - 53.6129318 - ], - [ - 9.9130718, - 52.9002092 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 105377923 - } - }, - { - "id": 105372878, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2441183, - 41.4470779 - ], - [ - 2.2441183, - 41.4470779 - ], - [ - 2.2441183, - 41.4470779 - ], - [ - 2.2441183, - 41.4470779 - ], - [ - 2.2441183, - 41.4470779 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105372878 - } - }, - { - "id": 105372498, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2440553, - 41.4471712 - ], - [ - 2.2440553, - 41.4471712 - ], - [ - 2.2440553, - 41.4471712 - ], - [ - 2.2440553, - 41.4471712 - ], - [ - 2.2440553, - 41.4471712 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105372498 - } - }, - { - "id": 105372262, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2440553, - 41.4471712 - ], - [ - 2.2440553, - 41.4471712 - ], - [ - 2.2440553, - 41.4471712 - ], - [ - 2.2440553, - 41.4471712 - ], - [ - 2.2440553, - 41.4471712 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105372262 - } - }, - { - "id": 105371990, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2440902, - 41.4471234 - ], - [ - 2.2440902, - 41.4471234 - ], - [ - 2.2440902, - 41.4471234 - ], - [ - 2.2440902, - 41.4471234 - ], - [ - 2.2440902, - 41.4471234 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105371990 - } - }, - { - "id": 105371947, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2440553, - 41.4470779 - ], - [ - 2.2441183, - 41.4470779 - ], - [ - 2.2441183, - 41.4471712 - ], - [ - 2.2440553, - 41.4471712 - ], - [ - 2.2440553, - 41.4470779 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105371947 - } - }, - { - "id": 105371816, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2440287, - 41.4472179 - ], - [ - 2.2440287, - 41.4472179 - ], - [ - 2.2440287, - 41.4472179 - ], - [ - 2.2440287, - 41.4472179 - ], - [ - 2.2440287, - 41.4472179 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105371816 - } - }, - { - "id": 105371789, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2440902, - 41.4471234 - ], - [ - 2.2440902, - 41.4471234 - ], - [ - 2.2440902, - 41.4471234 - ], - [ - 2.2440902, - 41.4471234 - ], - [ - 2.2440902, - 41.4471234 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105371789 - } - }, - { - "id": 105370974, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2436824, - 41.4478395 - ], - [ - 2.2436824, - 41.4478395 - ], - [ - 2.2436824, - 41.4478395 - ], - [ - 2.2436824, - 41.4478395 - ], - [ - 2.2436824, - 41.4478395 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105370974 - } - }, - { - "id": 105370497, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7966235, - 48.1144586 - ], - [ - 11.7966235, - 48.1144586 - ], - [ - 11.7966235, - 48.1144586 - ], - [ - 11.7966235, - 48.1144586 - ], - [ - 11.7966235, - 48.1144586 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 105370497 - } - }, - { - "id": 105360947, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7296781, - -34.6654856 - ], - [ - -58.52147, - -34.6654856 - ], - [ - -58.52147, - -34.6383201 - ], - [ - -58.7296781, - -34.6383201 - ], - [ - -58.7296781, - -34.6654856 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 105360947 - } - }, - { - "id": 105360924, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1797695, - 51.1933839 - ], - [ - 3.2085282, - 51.1933839 - ], - [ - 3.2085282, - 51.2111347 - ], - [ - 3.1797695, - 51.2111347 - ], - [ - 3.1797695, - 51.1933839 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105360924 - } - }, - { - "id": 105360560, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1954517, - 51.1913916 - ], - [ - 3.196541, - 51.1913916 - ], - [ - 3.196541, - 51.1933839 - ], - [ - 3.1954517, - 51.1933839 - ], - [ - 3.1954517, - 51.1913916 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105360560 - } - }, - { - "id": 105360228, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.196541, - 51.1913916 - ], - [ - 3.196541, - 51.1913916 - ], - [ - 3.196541, - 51.1913916 - ], - [ - 3.196541, - 51.1913916 - ], - [ - 3.196541, - 51.1913916 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105360228 - } - }, - { - "id": 105356597, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.3174496, - 43.5127292 - ], - [ - 10.3175998, - 43.5127292 - ], - [ - 10.3175998, - 43.5132214 - ], - [ - 10.3174496, - 43.5132214 - ], - [ - 10.3174496, - 43.5127292 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 105356597 - } - }, - { - "id": 105356464, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2018441, - 51.247683 - ], - [ - 3.2018441, - 51.247683 - ], - [ - 3.2018441, - 51.247683 - ], - [ - 3.2018441, - 51.247683 - ], - [ - 3.2018441, - 51.247683 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105356464 - } - }, - { - "id": 105324191, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 120.973978, - 14.600972 - ], - [ - 121.0488975, - 14.600972 - ], - [ - 121.0488975, - 14.6033417 - ], - [ - 120.973978, - 14.6033417 - ], - [ - 120.973978, - 14.600972 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105324191 - } - }, - { - "id": 105317447, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3733006, - 50.8661928 - ], - [ - 4.3849017, - 50.8661928 - ], - [ - 4.3849017, - 50.8676049 - ], - [ - 4.3733006, - 50.8676049 - ], - [ - 4.3733006, - 50.8661928 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 105317447 - } - }, - { - "id": 105313902, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.402338, - 51.039901 - ], - [ - 3.402338, - 51.039901 - ], - [ - 3.402338, - 51.039901 - ], - [ - 3.402338, - 51.039901 - ], - [ - 3.402338, - 51.039901 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "images", - "imagery": "osm", - "language": "en", - "theme-creator": "Seppe Santens" - }, - "id": 105313902 - } - }, - { - "id": 105310901, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2502336, - 41.447091 - ], - [ - 2.2530691, - 41.447091 - ], - [ - 2.2530691, - 41.4496609 - ], - [ - 2.2502336, - 41.4496609 - ], - [ - 2.2502336, - 41.447091 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105310901 - } - }, - { - "id": 105310408, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2524138, - 41.4495929 - ], - [ - 2.2538444, - 41.4495929 - ], - [ - 2.2538444, - 41.4514793 - ], - [ - 2.2524138, - 41.4514793 - ], - [ - 2.2524138, - 41.4495929 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105310408 - } - }, - { - "id": 105308266, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.7623636, - 52.1835731 - ], - [ - 12.7623636, - 52.1835731 - ], - [ - 12.7623636, - 52.1835731 - ], - [ - 12.7623636, - 52.1835731 - ], - [ - 12.7623636, - 52.1835731 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 105308266 - } - }, - { - "id": 105307197, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2158218, - 51.2006089 - ], - [ - 3.2158218, - 51.2006089 - ], - [ - 3.2158218, - 51.2006089 - ], - [ - 3.2158218, - 51.2006089 - ], - [ - 3.2158218, - 51.2006089 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105307197 - } - }, - { - "id": 105306242, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4683959, - 46.9334184 - ], - [ - 7.4683959, - 46.9334184 - ], - [ - 7.4683959, - 46.9334184 - ], - [ - 7.4683959, - 46.9334184 - ], - [ - 7.4683959, - 46.9334184 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105306242 - } - }, - { - "id": 105298752, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 23.3210091, - 42.6795374 - ], - [ - 23.3210091, - 42.6795374 - ], - [ - 23.3210091, - 42.6795374 - ], - [ - 23.3210091, - 42.6795374 - ], - [ - 23.3210091, - 42.6795374 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 105298752 - } - }, - { - "id": 105292377, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7659196, - 52.8398904 - ], - [ - 13.7665987, - 52.8398904 - ], - [ - 13.7665987, - 52.8401774 - ], - [ - 13.7659196, - 52.8401774 - ], - [ - 13.7659196, - 52.8398904 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 105292377 - } - }, - { - "id": 105289590, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.4846171, - -33.5905772 - ], - [ - -70.4846171, - -33.5905772 - ], - [ - -70.4846171, - -33.5905772 - ], - [ - -70.4846171, - -33.5905772 - ], - [ - -70.4846171, - -33.5905772 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "ghostbikes", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105289590 - } - }, - { - "id": 105288905, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 23.3616829, - 42.7037798 - ], - [ - 23.3616829, - 42.7037798 - ], - [ - 23.3616829, - 42.7037798 - ], - [ - 23.3616829, - 42.7037798 - ], - [ - 23.3616829, - 42.7037798 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 105288905 - } - }, - { - "id": 105283711, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1977096, - 51.1928043 - ], - [ - 3.2671292, - 51.1928043 - ], - [ - 3.2671292, - 51.2509606 - ], - [ - 3.1977096, - 51.2509606 - ], - [ - 3.1977096, - 51.1928043 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105283711 - } - }, - { - "id": 105273964, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7114847, - 51.0919445 - ], - [ - 3.7152853, - 51.0919445 - ], - [ - 3.7152853, - 51.0930897 - ], - [ - 3.7114847, - 51.0930897 - ], - [ - 3.7114847, - 51.0919445 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105273964 - } - }, - { - "id": 105270921, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2158218, - 51.2006089 - ], - [ - 3.2158218, - 51.2006089 - ], - [ - 3.2158218, - 51.2006089 - ], - [ - 3.2158218, - 51.2006089 - ], - [ - 3.2158218, - 51.2006089 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105270921 - } - }, - { - "id": 105270712, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.3205679, - 45.7011988 - ], - [ - -0.3188815, - 45.7011988 - ], - [ - -0.3188815, - 45.7024093 - ], - [ - -0.3205679, - 45.7024093 - ], - [ - -0.3205679, - 45.7011988 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 105270712 - } - }, - { - "id": 105254015, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0535163, - 14.7564885 - ], - [ - 121.0535163, - 14.7564885 - ], - [ - 121.0535163, - 14.7564885 - ], - [ - 121.0535163, - 14.7564885 - ], - [ - 121.0535163, - 14.7564885 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105254015 - } - }, - { - "id": 105253999, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0535055, - 14.7564885 - ], - [ - 121.0535163, - 14.7564885 - ], - [ - 121.0535163, - 14.7565896 - ], - [ - 121.0535055, - 14.7565896 - ], - [ - 121.0535055, - 14.7564885 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105253999 - } - }, - { - "id": 105251257, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.3893261, - 37.770719 - ], - [ - -122.3893261, - 37.770719 - ], - [ - -122.3893261, - 37.770719 - ], - [ - -122.3893261, - 37.770719 - ], - [ - -122.3893261, - 37.770719 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "ghostbikes", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105251257 - } - }, - { - "id": 105246987, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4352976, - 51.191794 - ], - [ - 4.4352976, - 51.191794 - ], - [ - 4.4352976, - 51.191794 - ], - [ - 4.4352976, - 51.191794 - ], - [ - 4.4352976, - 51.191794 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105246987 - } - }, - { - "id": 105243384, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3812967, - 50.4154162 - ], - [ - 5.299736, - 50.4154162 - ], - [ - 5.299736, - 51.3168667 - ], - [ - 4.3812967, - 51.3168667 - ], - [ - 4.3812967, - 50.4154162 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105243384 - } - }, - { - "id": 105230130, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2752024, - 50.7917724 - ], - [ - 5.2752024, - 50.7917724 - ], - [ - 5.2752024, - 50.7917724 - ], - [ - 5.2752024, - 50.7917724 - ], - [ - 5.2752024, - 50.7917724 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105230130 - } - }, - { - "id": 105227975, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.106668, - 51.0274239 - ], - [ - 4.106668, - 51.0274239 - ], - [ - 4.106668, - 51.0274239 - ], - [ - 4.106668, - 51.0274239 - ], - [ - 4.106668, - 51.0274239 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 105227975 - } - }, - { - "id": 105225506, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2023899, - 52.0686648 - ], - [ - 5.2023899, - 52.0686648 - ], - [ - 5.2023899, - 52.0686648 - ], - [ - 5.2023899, - 52.0686648 - ], - [ - 5.2023899, - 52.0686648 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105225506 - } - }, - { - "id": 105225482, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4644698, - 50.7781977 - ], - [ - 5.4710251, - 50.7781977 - ], - [ - 5.4710251, - 50.7803872 - ], - [ - 5.4644698, - 50.7803872 - ], - [ - 5.4644698, - 50.7781977 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 105225482 - } - }, - { - "id": 105208199, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -9.3033117, - 53.8528303 - ], - [ - -9.2867808, - 53.8528303 - ], - [ - -9.2867808, - 53.855955 - ], - [ - -9.3033117, - 53.855955 - ], - [ - -9.3033117, - 53.8528303 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105208199 - } - }, - { - "id": 105205876, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.9317024, - 51.5334159 - ], - [ - 9.9547918, - 51.5334159 - ], - [ - 9.9547918, - 51.543498 - ], - [ - 9.9317024, - 51.543498 - ], - [ - 9.9317024, - 51.5334159 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 105205876 - } - }, - { - "id": 105195214, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 21.2520007, - 48.7152902 - ], - [ - 21.255641, - 48.7152902 - ], - [ - 21.255641, - 48.7393203 - ], - [ - 21.2520007, - 48.7393203 - ], - [ - 21.2520007, - 48.7152902 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 105195214 - } - }, - { - "id": 105194536, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 21.2563617, - 48.7374982 - ], - [ - 21.2563617, - 48.7374982 - ], - [ - 21.2563617, - 48.7374982 - ], - [ - 21.2563617, - 48.7374982 - ], - [ - 21.2563617, - 48.7374982 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 105194536 - } - }, - { - "id": 105189586, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.7584149, - -33.4895703 - ], - [ - -70.7584149, - -33.4895703 - ], - [ - -70.7584149, - -33.4895703 - ], - [ - -70.7584149, - -33.4895703 - ], - [ - -70.7584149, - -33.4895703 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 105189586 - } - }, - { - "id": 105175759, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5482858, - 51.4316452 - ], - [ - -0.5461782, - 51.4316452 - ], - [ - -0.5461782, - 51.4322552 - ], - [ - -0.5482858, - 51.4322552 - ], - [ - -0.5482858, - 51.4316452 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105175759 - } - }, - { - "id": 105175143, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.614514, - 50.7909286 - ], - [ - 5.614514, - 50.7909286 - ], - [ - 5.614514, - 50.7909286 - ], - [ - 5.614514, - 50.7909286 - ], - [ - 5.614514, - 50.7909286 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105175143 - } - }, - { - "id": 105171605, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.7498699, - 52.177831 - ], - [ - 12.7636001, - 52.177831 - ], - [ - 12.7636001, - 52.1848205 - ], - [ - 12.7498699, - 52.1848205 - ], - [ - 12.7498699, - 52.177831 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 105171605 - } - }, - { - "id": 105166704, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6910387, - 50.8416995 - ], - [ - 5.6910387, - 50.8416995 - ], - [ - 5.6910387, - 50.8416995 - ], - [ - 5.6910387, - 50.8416995 - ], - [ - 5.6910387, - 50.8416995 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 105166704 - } - }, - { - "id": 105165897, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7844597, - 48.1023081 - ], - [ - 11.7930457, - 48.1023081 - ], - [ - 11.7930457, - 48.1056387 - ], - [ - 11.7844597, - 48.1056387 - ], - [ - 11.7844597, - 48.1023081 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 105165897 - } - }, - { - "id": 105163811, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6746772, - 50.8518793 - ], - [ - 5.6746772, - 50.8518793 - ], - [ - 5.6746772, - 50.8518793 - ], - [ - 5.6746772, - 50.8518793 - ], - [ - 5.6746772, - 50.8518793 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 105163811 - } - }, - { - "id": 105162112, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.8992411, - 52.4033911 - ], - [ - 6.9103169, - 52.4033911 - ], - [ - 6.9103169, - 52.4076163 - ], - [ - 6.8992411, - 52.4076163 - ], - [ - 6.8992411, - 52.4033911 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 105162112 - } - }, - { - "id": 105160761, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6922644, - 50.8546733 - ], - [ - 5.6922644, - 50.8546733 - ], - [ - 5.6922644, - 50.8546733 - ], - [ - 5.6922644, - 50.8546733 - ], - [ - 5.6922644, - 50.8546733 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105160761 - } - }, - { - "id": 105158908, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -89.5983852, - 44.5304504 - ], - [ - -89.5983168, - 44.5304504 - ], - [ - -89.5983168, - 44.5304905 - ], - [ - -89.5983852, - 44.5304905 - ], - [ - -89.5983852, - 44.5304504 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105158908 - } - }, - { - "id": 105158635, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -89.5715612, - 44.5272569 - ], - [ - -89.5715612, - 44.5272569 - ], - [ - -89.5715612, - 44.5272569 - ], - [ - -89.5715612, - 44.5272569 - ], - [ - -89.5715612, - 44.5272569 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105158635 - } - }, - { - "id": 105154337, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 21.924781, - 48.7492394 - ], - [ - 21.9250929, - 48.7492394 - ], - [ - 21.9250929, - 48.7494152 - ], - [ - 21.924781, - 48.7494152 - ], - [ - 21.924781, - 48.7492394 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 105154337 - } - }, - { - "id": 105153445, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 120.9734014, - 14.6264747 - ], - [ - 120.9734014, - 14.6264747 - ], - [ - 120.9734014, - 14.6264747 - ], - [ - 120.9734014, - 14.6264747 - ], - [ - 120.9734014, - 14.6264747 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105153445 - } - }, - { - "id": 105150997, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.371635, - 47.6815637 - ], - [ - -122.371635, - 47.6815637 - ], - [ - -122.371635, - 47.6815637 - ], - [ - -122.371635, - 47.6815637 - ], - [ - -122.371635, - 47.6815637 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105150997 - } - }, - { - "id": 105141050, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.7080653, - 51.0016916 - ], - [ - 5.7080653, - 51.0016916 - ], - [ - 5.7080653, - 51.0016916 - ], - [ - 5.7080653, - 51.0016916 - ], - [ - 5.7080653, - 51.0016916 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 105141050 - } - }, - { - "id": 105140957, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.7082021, - 51.0014379 - ], - [ - 5.7098544, - 51.0014379 - ], - [ - 5.7098544, - 51.0027325 - ], - [ - 5.7082021, - 51.0027325 - ], - [ - 5.7082021, - 51.0014379 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105140957 - } - }, - { - "id": 105132121, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4900823, - 51.0255114 - ], - [ - 4.4900823, - 51.0255114 - ], - [ - 4.4900823, - 51.0255114 - ], - [ - 4.4900823, - 51.0255114 - ], - [ - 4.4900823, - 51.0255114 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "facadegardens", - "imagery": "osm", - "language": "nl", - "theme-creator": "joost schouppe; stla" - }, - "id": 105132121 - } - }, - { - "id": 105127274, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.325668, - 51.0851891 - ], - [ - 5.325668, - 51.0851891 - ], - [ - 5.325668, - 51.0851891 - ], - [ - 5.325668, - 51.0851891 - ], - [ - 5.325668, - 51.0851891 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105127274 - } - }, - { - "id": 105123795, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.324901, - 51.0848623 - ], - [ - 5.324901, - 51.0848623 - ], - [ - 5.324901, - 51.0848623 - ], - [ - 5.324901, - 51.0848623 - ], - [ - 5.324901, - 51.0848623 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "AGIV", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105123795 - } - }, - { - "id": 105123659, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3250432, - 51.0848202 - ], - [ - 5.3250432, - 51.0848202 - ], - [ - 5.3250432, - 51.0848202 - ], - [ - 5.3250432, - 51.0848202 - ], - [ - 5.3250432, - 51.0848202 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105123659 - } - }, - { - "id": 105121717, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0938607, - 51.0299026 - ], - [ - 4.0938607, - 51.0299026 - ], - [ - 4.0938607, - 51.0299026 - ], - [ - 4.0938607, - 51.0299026 - ], - [ - 4.0938607, - 51.0299026 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 105121717 - } - }, - { - "id": 105117154, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7871767, - -34.6603102 - ], - [ - -58.7871767, - -34.6603102 - ], - [ - -58.7871767, - -34.6603102 - ], - [ - -58.7871767, - -34.6603102 - ], - [ - -58.7871767, - -34.6603102 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 105117154 - } - }, - { - "id": 105117106, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7983889, - -34.6682143 - ], - [ - -58.7835288, - -34.6682143 - ], - [ - -58.7835288, - -34.6495639 - ], - [ - -58.7983889, - -34.6495639 - ], - [ - -58.7983889, - -34.6682143 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105117106 - } - }, - { - "id": 105110251, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7044016, - 51.0696554 - ], - [ - 3.7734785, - 51.0696554 - ], - [ - 3.7734785, - 51.0902401 - ], - [ - 3.7044016, - 51.0902401 - ], - [ - 3.7044016, - 51.0696554 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105110251 - } - }, - { - "id": 105110084, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.214922, - 41.4344088 - ], - [ - 2.2156259, - 41.4344088 - ], - [ - 2.2156259, - 41.434849 - ], - [ - 2.214922, - 41.434849 - ], - [ - 2.214922, - 41.4344088 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105110084 - } - }, - { - "id": 105109714, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2135189, - 41.4373243 - ], - [ - 2.2136179, - 41.4373243 - ], - [ - 2.2136179, - 41.4378219 - ], - [ - 2.2135189, - 41.4378219 - ], - [ - 2.2135189, - 41.4373243 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105109714 - } - }, - { - "id": 105109333, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2141284, - 41.4387739 - ], - [ - 2.2150601, - 41.4387739 - ], - [ - 2.2150601, - 41.4393882 - ], - [ - 2.2141284, - 41.4393882 - ], - [ - 2.2141284, - 41.4387739 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105109333 - } - }, - { - "id": 105109048, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2171063, - 41.4406405 - ], - [ - 2.2173157, - 41.4406405 - ], - [ - 2.2173157, - 41.4406704 - ], - [ - 2.2171063, - 41.4406704 - ], - [ - 2.2171063, - 41.4406405 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105109048 - } - }, - { - "id": 105108934, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6734764, - 52.1223227 - ], - [ - 4.6734764, - 52.1223227 - ], - [ - 4.6734764, - 52.1223227 - ], - [ - 4.6734764, - 52.1223227 - ], - [ - 4.6734764, - 52.1223227 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105108934 - } - }, - { - "id": 105107153, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3697241, - 50.9362857 - ], - [ - 4.3794958, - 50.9362857 - ], - [ - 4.3794958, - 50.9758952 - ], - [ - 4.3697241, - 50.9758952 - ], - [ - 4.3697241, - 50.9362857 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 105107153 - } - }, - { - "id": 105106698, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8008447, - 50.9731441 - ], - [ - 3.8008447, - 50.9731441 - ], - [ - 3.8008447, - 50.9731441 - ], - [ - 3.8008447, - 50.9731441 - ], - [ - 3.8008447, - 50.9731441 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105106698 - } - }, - { - "id": 105105662, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.7625809, - 52.183676 - ], - [ - 12.7625809, - 52.183676 - ], - [ - 12.7625809, - 52.183676 - ], - [ - 12.7625809, - 52.183676 - ], - [ - 12.7625809, - 52.183676 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 105105662 - } - }, - { - "id": 105100265, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.374147, - 50.8678918 - ], - [ - 4.374147, - 50.8678918 - ], - [ - 4.374147, - 50.8678918 - ], - [ - 4.374147, - 50.8678918 - ], - [ - 4.374147, - 50.8678918 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "UrbISOrtho2019", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105100265 - } - }, - { - "id": 105093255, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.653327, - -34.6556157 - ], - [ - -58.5922417, - -34.6556157 - ], - [ - -58.5922417, - -34.6448449 - ], - [ - -58.653327, - -34.6448449 - ], - [ - -58.653327, - -34.6556157 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "osm", - "language": "es" - }, - "id": 105093255 - } - }, - { - "id": 105092710, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2061303, - 51.1871501 - ], - [ - 3.2061303, - 51.1871501 - ], - [ - 3.2061303, - 51.1871501 - ], - [ - 3.2061303, - 51.1871501 - ], - [ - 3.2061303, - 51.1871501 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105092710 - } - }, - { - "id": 105089211, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.7625809, - 52.183676 - ], - [ - 12.7625809, - 52.183676 - ], - [ - 12.7625809, - 52.183676 - ], - [ - 12.7625809, - 52.183676 - ], - [ - 12.7625809, - 52.183676 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 105089211 - } - }, - { - "id": 105083652, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.73984, - 51.0140347 - ], - [ - 4.5547047, - 51.0140347 - ], - [ - 4.5547047, - 51.1336859 - ], - [ - 3.73984, - 51.1336859 - ], - [ - 3.73984, - 51.0140347 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105083652 - } - }, - { - "id": 105083136, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2843487, - 51.2471323 - ], - [ - 5.2843487, - 51.2471323 - ], - [ - 5.2843487, - 51.2471323 - ], - [ - 5.2843487, - 51.2471323 - ], - [ - 5.2843487, - 51.2471323 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105083136 - } - }, - { - "id": 105081897, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2951074, - 51.251437 - ], - [ - 5.2952191, - 51.251437 - ], - [ - 5.2952191, - 51.2516652 - ], - [ - 5.2951074, - 51.2516652 - ], - [ - 5.2951074, - 51.251437 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 105081897 - } - }, - { - "id": 105073365, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6868177, - 51.0523542 - ], - [ - 3.6937297, - 51.0523542 - ], - [ - 3.6937297, - 51.0578736 - ], - [ - 3.6868177, - 51.0578736 - ], - [ - 3.6868177, - 51.0523542 - ] - ] - ] - }, - "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-21T08:09:00Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": 0.0000381500927999794, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105073365 - } - }, - { - "id": 105070958, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2368134, - 51.1928043 - ], - [ - 3.2368134, - 51.1928043 - ], - [ - 3.2368134, - 51.1928043 - ], - [ - 3.2368134, - 51.1928043 - ], - [ - 3.2368134, - 51.1928043 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105070958 - } - }, - { - "id": 105070267, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 17.0424686, - 51.0993964 - ], - [ - 17.0424686, - 51.0993964 - ], - [ - 17.0424686, - 51.0993964 - ], - [ - 17.0424686, - 51.0993964 - ], - [ - 17.0424686, - 51.0993964 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 105070267 - } - }, - { - "id": 105062544, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.8147658, - 53.1617286 - ], - [ - 13.8147658, - 53.1617286 - ], - [ - 13.8147658, - 53.1617286 - ], - [ - 13.8147658, - 53.1617286 - ], - [ - 13.8147658, - 53.1617286 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 105062544 - } - }, - { - "id": 105061768, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0171562, - 14.5568088 - ], - [ - 121.0171562, - 14.5568088 - ], - [ - 121.0171562, - 14.5568088 - ], - [ - 121.0171562, - 14.5568088 - ], - [ - 121.0171562, - 14.5568088 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105061768 - } - }, - { - "id": 105054854, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.6579842, - -34.6569718 - ], - [ - -58.6408414, - -34.6569718 - ], - [ - -58.6408414, - -34.6517566 - ], - [ - -58.6579842, - -34.6517566 - ], - [ - -58.6579842, - -34.6569718 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "osm", - "language": "es" - }, - "id": 105054854 - } - }, - { - "id": 105046037, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3107749, - 51.1620554 - ], - [ - 5.3107749, - 51.1620554 - ], - [ - 5.3107749, - 51.1620554 - ], - [ - 5.3107749, - 51.1620554 - ], - [ - 5.3107749, - 51.1620554 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 105046037 - } - }, - { - "id": 105045474, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2320693, - -39.8198918 - ], - [ - -73.2308076, - -39.8198918 - ], - [ - -73.2308076, - -39.8189507 - ], - [ - -73.2320693, - -39.8189507 - ], - [ - -73.2320693, - -39.8198918 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 105045474 - } - }, - { - "id": 105042730, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2077396, - 51.2500368 - ], - [ - 3.2077396, - 51.2500368 - ], - [ - 3.2077396, - 51.2500368 - ], - [ - 3.2077396, - 51.2500368 - ], - [ - 3.2077396, - 51.2500368 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105042730 - } - }, - { - "id": 105036795, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7091491, - 51.0691059 - ], - [ - 3.7091491, - 51.0691059 - ], - [ - 3.7091491, - 51.0691059 - ], - [ - 3.7091491, - 51.0691059 - ], - [ - 3.7091491, - 51.0691059 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105036795 - } - }, - { - "id": 105036015, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.8549909, - 53.1356141 - ], - [ - 13.8549909, - 53.1356141 - ], - [ - 13.8549909, - 53.1356141 - ], - [ - 13.8549909, - 53.1356141 - ], - [ - 13.8549909, - 53.1356141 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 105036015 - } - }, - { - "id": 105032317, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.6445511, - -34.6528749 - ], - [ - -58.5236084, - -34.6528749 - ], - [ - -58.5236084, - -34.6385663 - ], - [ - -58.6445511, - -34.6385663 - ], - [ - -58.6445511, - -34.6528749 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "osm", - "language": "es" - }, - "id": 105032317 - } - }, - { - "id": 105025981, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.8380367, - 53.1226703 - ], - [ - 13.8692549, - 53.1226703 - ], - [ - 13.8692549, - 53.1356141 - ], - [ - 13.8380367, - 53.1356141 - ], - [ - 13.8380367, - 53.1226703 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 105025981 - } - }, - { - "id": 105022554, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1977096, - 51.2253728 - ], - [ - 3.2268691, - 51.2253728 - ], - [ - 3.2268691, - 51.2509606 - ], - [ - 3.1977096, - 51.2509606 - ], - [ - 3.1977096, - 51.2253728 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105022554 - } - }, - { - "id": 105020219, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2335669, - 50.7345064 - ], - [ - 4.2766174, - 50.7345064 - ], - [ - 4.2766174, - 50.7640795 - ], - [ - 4.2335669, - 50.7640795 - ], - [ - 4.2335669, - 50.7345064 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 105020219 - } - }, - { - "id": 105014411, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7963319, - 53.1290517 - ], - [ - 13.7963319, - 53.1290517 - ], - [ - 13.7963319, - 53.1290517 - ], - [ - 13.7963319, - 53.1290517 - ], - [ - 13.7963319, - 53.1290517 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "EsriWorldImagery", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 105014411 - } - }, - { - "id": 104995459, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7300418, - -34.6641315 - ], - [ - -58.7295831, - -34.6641315 - ], - [ - -58.7295831, - -34.664089 - ], - [ - -58.7300418, - -34.664089 - ], - [ - -58.7300418, - -34.6641315 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "osm", - "language": "es" - }, - "id": 104995459 - } - }, - { - "id": 104988367, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5969843, - -34.6450966 - ], - [ - -58.5969843, - -34.6450966 - ], - [ - -58.5969843, - -34.6450966 - ], - [ - -58.5969843, - -34.6450966 - ], - [ - -58.5969843, - -34.6450966 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "osm", - "language": "es" - }, - "id": 104988367 - } - }, - { - "id": 104981745, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4833377, - 51.0134216 - ], - [ - 4.4833377, - 51.0134216 - ], - [ - 4.4833377, - 51.0134216 - ], - [ - 4.4833377, - 51.0134216 - ], - [ - 4.4833377, - 51.0134216 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104981745 - } - }, - { - "id": 104980984, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7044016, - 51.0741466 - ], - [ - 3.7325159, - 51.0741466 - ], - [ - 3.7325159, - 51.0827262 - ], - [ - 3.7044016, - 51.0827262 - ], - [ - 3.7044016, - 51.0741466 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104980984 - } - }, - { - "id": 104979847, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2312811, - -39.8191053 - ], - [ - -73.2312364, - -39.8191053 - ], - [ - -73.2312364, - -39.8190615 - ], - [ - -73.2312811, - -39.8190615 - ], - [ - -73.2312811, - -39.8191053 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 104979847 - } - }, - { - "id": 104978018, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4079707, - 52.5020373 - ], - [ - 13.4079707, - 52.5020373 - ], - [ - 13.4079707, - 52.5020373 - ], - [ - 13.4079707, - 52.5020373 - ], - [ - 13.4079707, - 52.5020373 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 104978018 - } - }, - { - "id": 104977477, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2240451, - 41.4417125 - ], - [ - 2.2240577, - 41.4417125 - ], - [ - 2.2240577, - 41.4417559 - ], - [ - 2.2240451, - 41.4417559 - ], - [ - 2.2240451, - 41.4417125 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 104977477 - } - }, - { - "id": 104977097, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2225782, - 41.44396 - ], - [ - 2.2226148, - 41.44396 - ], - [ - 2.2226148, - 41.4440552 - ], - [ - 2.2225782, - 41.4440552 - ], - [ - 2.2225782, - 41.44396 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 104977097 - } - }, - { - "id": 104972004, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1138035, - 50.7955749 - ], - [ - 4.1138035, - 50.7955749 - ], - [ - 4.1138035, - 50.7955749 - ], - [ - 4.1138035, - 50.7955749 - ], - [ - 4.1138035, - 50.7955749 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104972004 - } - }, - { - "id": 104964940, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7288686, - -34.6645431 - ], - [ - -58.5960064, - -34.6645431 - ], - [ - -58.5960064, - -34.6450684 - ], - [ - -58.7288686, - -34.6450684 - ], - [ - -58.7288686, - -34.6645431 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "osm", - "language": "es" - }, - "id": 104964940 - } - }, - { - "id": 104963609, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3314798, - 50.9874655 - ], - [ - 3.3325002, - 50.9874655 - ], - [ - 3.3325002, - 50.9885735 - ], - [ - 3.3314798, - 50.9885735 - ], - [ - 3.3314798, - 50.9874655 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104963609 - } - }, - { - "id": 104963056, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2255468, - 51.2076194 - ], - [ - 3.2255468, - 51.2076194 - ], - [ - 3.2255468, - 51.2076194 - ], - [ - 3.2255468, - 51.2076194 - ], - [ - 3.2255468, - 51.2076194 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 104963056 - } - }, - { - "id": 104955721, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6986102, - 50.1287726 - ], - [ - 8.6986102, - 50.1287726 - ], - [ - 8.6986102, - 50.1287726 - ], - [ - 8.6986102, - 50.1287726 - ], - [ - 8.6986102, - 50.1287726 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "vegan", - "language": "de", - "theme-creator": "Christian Neumann " - }, - "id": 104955721 - } - }, - { - "id": 104940762, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.8035086, - 53.1055968 - ], - [ - 13.886995, - 53.1055968 - ], - [ - 13.886995, - 53.1613523 - ], - [ - 13.8035086, - 53.1613523 - ], - [ - 13.8035086, - 53.1055968 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 104940762 - } - }, - { - "id": 104912323, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2320207, - -39.8183833 - ], - [ - -73.2320207, - -39.8183833 - ], - [ - -73.2320207, - -39.8183833 - ], - [ - -73.2320207, - -39.8183833 - ], - [ - -73.2320207, - -39.8183833 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 104912323 - } - }, - { - "id": 104904505, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2313736, - -39.819308 - ], - [ - -73.2310826, - -39.819308 - ], - [ - -73.2310826, - -39.8192889 - ], - [ - -73.2313736, - -39.8192889 - ], - [ - -73.2313736, - -39.819308 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 104904505 - } - }, - { - "id": 104897806, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7443009, - 51.1639876 - ], - [ - 4.7450867, - 51.1639876 - ], - [ - 4.7450867, - 51.1946956 - ], - [ - 4.7443009, - 51.1946956 - ], - [ - 4.7443009, - 51.1639876 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 104897806 - } - }, - { - "id": 104894007, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7641006, - -34.6659414 - ], - [ - -58.5221986, - -34.6659414 - ], - [ - -58.5221986, - -34.6385015 - ], - [ - -58.7641006, - -34.6385015 - ], - [ - -58.7641006, - -34.6659414 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "osm", - "language": "es" - }, - "id": 104894007 - } - }, - { - "id": 104893843, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2368134, - 51.1928043 - ], - [ - 3.2671076, - 51.1928043 - ], - [ - 3.2671076, - 51.2008553 - ], - [ - 3.2368134, - 51.2008553 - ], - [ - 3.2368134, - 51.1928043 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 104893843 - } - }, - { - "id": 104888917, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7315542, - 50.8737917 - ], - [ - 3.7316434, - 50.8737917 - ], - [ - 3.7316434, - 50.873831 - ], - [ - 3.7315542, - 50.873831 - ], - [ - 3.7315542, - 50.8737917 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "AGIV", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 104888917 - } - }, - { - "id": 104888664, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7344131, - 50.8700529 - ], - [ - 3.7344131, - 50.8700529 - ], - [ - 3.7344131, - 50.8700529 - ], - [ - 3.7344131, - 50.8700529 - ], - [ - 3.7344131, - 50.8700529 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104888664 - } - }, - { - "id": 104873407, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1136635, - 51.0178601 - ], - [ - 4.1136635, - 51.0178601 - ], - [ - 4.1136635, - 51.0178601 - ], - [ - 4.1136635, - 51.0178601 - ], - [ - 4.1136635, - 51.0178601 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104873407 - } - }, - { - "id": 104859305, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.3701563, - 47.6948642 - ], - [ - -122.370156, - 47.6948642 - ], - [ - -122.370156, - 47.6948642 - ], - [ - -122.3701563, - 47.6948642 - ], - [ - -122.3701563, - 47.6948642 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104859305 - } - }, - { - "id": 104852510, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7267282, - -34.6645689 - ], - [ - -58.7267282, - -34.6645689 - ], - [ - -58.7267282, - -34.6645689 - ], - [ - -58.7267282, - -34.6645689 - ], - [ - -58.7267282, - -34.6645689 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "osm", - "language": "es" - }, - "id": 104852510 - } - }, - { - "id": 104834837, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 149.0592107, - -35.2332132 - ], - [ - 149.061133, - -35.2332132 - ], - [ - 149.061133, - -35.2300488 - ], - [ - 149.0592107, - -35.2300488 - ], - [ - 149.0592107, - -35.2332132 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104834837 - } - }, - { - "id": 104834804, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2443624, - 50.730841 - ], - [ - 4.2463526, - 50.730841 - ], - [ - 4.2463526, - 50.7317086 - ], - [ - 4.2443624, - 50.7317086 - ], - [ - 4.2443624, - 50.730841 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 104834804 - } - }, - { - "id": 104833676, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4746916, - 51.0269899 - ], - [ - 4.4747632, - 51.0269899 - ], - [ - 4.4747632, - 51.0270499 - ], - [ - 4.4746916, - 51.0270499 - ], - [ - 4.4746916, - 51.0269899 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 104833676 - } - }, - { - "id": 104832489, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2521088, - 50.7411765 - ], - [ - 4.2521088, - 50.7411765 - ], - [ - 4.2521088, - 50.7411765 - ], - [ - 4.2521088, - 50.7411765 - ], - [ - 4.2521088, - 50.7411765 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 104832489 - } - }, - { - "id": 104828217, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7467688, - -34.6659414 - ], - [ - -58.5663971, - -34.6659414 - ], - [ - -58.5663971, - -34.6407123 - ], - [ - -58.7467688, - -34.6407123 - ], - [ - -58.7467688, - -34.6659414 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "osm", - "language": "es" - }, - "id": 104828217 - } - }, - { - "id": 104825060, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4981589, - 51.0255454 - ], - [ - 4.4981589, - 51.0255454 - ], - [ - 4.4981589, - 51.0255454 - ], - [ - 4.4981589, - 51.0255454 - ], - [ - 4.4981589, - 51.0255454 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104825060 - } - }, - { - "id": 104824521, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9384592, - 42.6848611 - ], - [ - 2.9384793, - 42.6848611 - ], - [ - 2.9384793, - 42.6848764 - ], - [ - 2.9384592, - 42.6848764 - ], - [ - 2.9384592, - 42.6848611 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104824521 - } - }, - { - "id": 104817521, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0173005, - 50.8364354 - ], - [ - 4.0242464, - 50.8364354 - ], - [ - 4.0242464, - 50.8382357 - ], - [ - 4.0173005, - 50.8382357 - ], - [ - 4.0173005, - 50.8364354 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 104817521 - } - }, - { - "id": 104813054, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2248011, - 51.2076194 - ], - [ - 3.2255468, - 51.2076194 - ], - [ - 3.2255468, - 51.2082193 - ], - [ - 3.2248011, - 51.2082193 - ], - [ - 3.2248011, - 51.2076194 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 104813054 - } - }, - { - "id": 104808321, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2335913, - 50.7345064 - ], - [ - 4.2335913, - 50.7345064 - ], - [ - 4.2335913, - 50.7345064 - ], - [ - 4.2335913, - 50.7345064 - ], - [ - 4.2335913, - 50.7345064 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 104808321 - } - }, - { - "id": 104804552, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.468469, - 51.0310196 - ], - [ - 4.468469, - 51.0310196 - ], - [ - 4.468469, - 51.0310196 - ], - [ - 4.468469, - 51.0310196 - ], - [ - 4.468469, - 51.0310196 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "facadegardens", - "imagery": "osm", - "language": "nl", - "theme-creator": "joost schouppe; stla" - }, - "id": 104804552 - } - }, - { - "id": 104790533, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0071355, - 14.7190524 - ], - [ - 121.0071355, - 14.7190524 - ], - [ - 121.0071355, - 14.7190524 - ], - [ - 121.0071355, - 14.7190524 - ], - [ - 121.0071355, - 14.7190524 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104790533 - } - }, - { - "id": 104789456, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 120.9940356, - 14.7303498 - ], - [ - 120.9940356, - 14.7303498 - ], - [ - 120.9940356, - 14.7303498 - ], - [ - 120.9940356, - 14.7303498 - ], - [ - 120.9940356, - 14.7303498 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104789456 - } - }, - { - "id": 104779755, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2443624, - 50.730841 - ], - [ - 4.2463526, - 50.730841 - ], - [ - 4.2463526, - 50.7317086 - ], - [ - 4.2443624, - 50.7317086 - ], - [ - 4.2443624, - 50.730841 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "AGIV10cm", - "language": "en" - }, - "id": 104779755 - } - }, - { - "id": 104771433, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1042263, - 51.0214067 - ], - [ - 4.1042263, - 51.0214067 - ], - [ - 4.1042263, - 51.0214067 - ], - [ - 4.1042263, - 51.0214067 - ], - [ - 4.1042263, - 51.0214067 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 104771433 - } - }, - { - "id": 104771353, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5249457, - 50.7767051 - ], - [ - 3.5249457, - 50.7767051 - ], - [ - 3.5249457, - 50.7767051 - ], - [ - 3.5249457, - 50.7767051 - ], - [ - 3.5249457, - 50.7767051 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104771353 - } - }, - { - "id": 104771328, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1001049, - 51.0165051 - ], - [ - 4.1001049, - 51.0165051 - ], - [ - 4.1001049, - 51.0165051 - ], - [ - 4.1001049, - 51.0165051 - ], - [ - 4.1001049, - 51.0165051 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104771328 - } - }, - { - "id": 104770413, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5250449, - 50.7767289 - ], - [ - 3.5251683, - 50.7767289 - ], - [ - 3.5251683, - 50.7767679 - ], - [ - 3.5250449, - 50.7767679 - ], - [ - 3.5250449, - 50.7767289 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 104770413 - } - }, - { - "id": 104767319, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1162601, - 52.0959589 - ], - [ - 5.120455, - 52.0959589 - ], - [ - 5.120455, - 52.0971931 - ], - [ - 5.1162601, - 52.0971931 - ], - [ - 5.1162601, - 52.0959589 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104767319 - } - }, - { - "id": 104765820, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7308149, - 50.8759908 - ], - [ - 3.7418801, - 50.8759908 - ], - [ - 3.7418801, - 50.878806 - ], - [ - 3.7308149, - 50.878806 - ], - [ - 3.7308149, - 50.8759908 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 104765820 - } - }, - { - "id": 104765784, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6188464, - 45.4487601 - ], - [ - 8.6188464, - 45.4487601 - ], - [ - 8.6188464, - 45.4487601 - ], - [ - 8.6188464, - 45.4487601 - ], - [ - 8.6188464, - 45.4487601 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104765784 - } - }, - { - "id": 104765698, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7415926, - 50.8787892 - ], - [ - 3.7415926, - 50.8787892 - ], - [ - 3.7415926, - 50.8787892 - ], - [ - 3.7415926, - 50.8787892 - ], - [ - 3.7415926, - 50.8787892 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 104765698 - } - }, - { - "id": 104765380, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7302449, - 50.8758126 - ], - [ - 3.7417191, - 50.8758126 - ], - [ - 3.7417191, - 50.8787299 - ], - [ - 3.7302449, - 50.8787299 - ], - [ - 3.7302449, - 50.8758126 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 104765380 - } - }, - { - "id": 104765110, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7323153, - 50.8748135 - ], - [ - 3.7323153, - 50.8748135 - ], - [ - 3.7323153, - 50.8748135 - ], - [ - 3.7323153, - 50.8748135 - ], - [ - 3.7323153, - 50.8748135 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 104765110 - } - }, - { - "id": 104764684, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1237641, - 52.0848937 - ], - [ - 5.1237641, - 52.0848937 - ], - [ - 5.1237641, - 52.0848937 - ], - [ - 5.1237641, - 52.0848937 - ], - [ - 5.1237641, - 52.0848937 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104764684 - } - }, - { - "id": 104761467, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2213486, - 41.4389611 - ], - [ - 2.2214034, - 41.4389611 - ], - [ - 2.2214034, - 41.4390157 - ], - [ - 2.2213486, - 41.4390157 - ], - [ - 2.2213486, - 41.4389611 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "arbres_llefia", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 104761467 - } - }, - { - "id": 104754445, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 113.4056023, - 23.0781105 - ], - [ - 113.4056023, - 23.0781105 - ], - [ - 113.4056023, - 23.0781105 - ], - [ - 113.4056023, - 23.0781105 - ], - [ - 113.4056023, - 23.0781105 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104754445 - } - }, - { - "id": 104752561, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.4523736, - 45.444769 - ], - [ - 0.4535577, - 45.444769 - ], - [ - 0.4535577, - 45.445841 - ], - [ - 0.4523736, - 45.445841 - ], - [ - 0.4523736, - 45.444769 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 104752561 - } - }, - { - "id": 104751316, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2219722, - -39.8134718 - ], - [ - -73.2218758, - -39.8134718 - ], - [ - -73.2218758, - -39.8134195 - ], - [ - -73.2219722, - -39.8134195 - ], - [ - -73.2219722, - -39.8134718 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "EsriWorldImagery", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104751316 - } - }, - { - "id": 104750812, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.765833, - 50.2997654 - ], - [ - 4.765833, - 50.2997654 - ], - [ - 4.765833, - 50.2997654 - ], - [ - 4.765833, - 50.2997654 - ], - [ - 4.765833, - 50.2997654 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 104750812 - } - }, - { - "id": 104750300, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0361083, - 51.2711004 - ], - [ - 3.0361083, - 51.2711004 - ], - [ - 3.0361083, - 51.2711004 - ], - [ - 3.0361083, - 51.2711004 - ], - [ - 3.0361083, - 51.2711004 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "AGIV10cm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 104750300 - } - }, - { - "id": 104744199, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8764358, - 50.8610308 - ], - [ - 3.8784388, - 50.8610308 - ], - [ - 3.8784388, - 51.077778 - ], - [ - 3.8764358, - 51.077778 - ], - [ - 3.8764358, - 50.8610308 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104744199 - } - }, - { - "id": 104733470, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 19.5226069, - 50.5239455 - ], - [ - 19.5234598, - 50.5239455 - ], - [ - 19.5234598, - 50.5242057 - ], - [ - 19.5226069, - 50.5242057 - ], - [ - 19.5226069, - 50.5239455 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 104733470 - } - }, - { - "id": 104726944, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2174305, - 41.4385019 - ], - [ - 2.2174305, - 41.4385019 - ], - [ - 2.2174305, - 41.4385019 - ], - [ - 2.2174305, - 41.4385019 - ], - [ - 2.2174305, - 41.4385019 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 104726944 - } - }, - { - "id": 104726636, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2203555, - 51.20661 - ], - [ - 3.2203555, - 51.20661 - ], - [ - 3.2203555, - 51.20661 - ], - [ - 3.2203555, - 51.20661 - ], - [ - 3.2203555, - 51.20661 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 104726636 - } - }, - { - "id": 104726156, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.235082, - 51.2096004 - ], - [ - 3.235082, - 51.2096004 - ], - [ - 3.235082, - 51.2096004 - ], - [ - 3.235082, - 51.2096004 - ], - [ - 3.235082, - 51.2096004 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104726156 - } - }, - { - "id": 104726005, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2147207, - 41.4384488 - ], - [ - 2.215322, - 41.4384488 - ], - [ - 2.215322, - 41.4384875 - ], - [ - 2.2147207, - 41.4384875 - ], - [ - 2.2147207, - 41.4384488 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 104726005 - } - }, - { - "id": 104725636, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2139703, - 41.4361383 - ], - [ - 2.2139703, - 41.4361383 - ], - [ - 2.2139703, - 41.4361383 - ], - [ - 2.2139703, - 41.4361383 - ], - [ - 2.2139703, - 41.4361383 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 104725636 - } - }, - { - "id": 104723348, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4218636, - 50.9944988 - ], - [ - 5.6161702, - 50.9944988 - ], - [ - 5.6161702, - 51.0528619 - ], - [ - 3.4218636, - 51.0528619 - ], - [ - 3.4218636, - 50.9944988 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104723348 - } - }, - { - "id": 104723073, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.215505, - 41.4372615 - ], - [ - 2.2192263, - 41.4372615 - ], - [ - 2.2192263, - 41.439416 - ], - [ - 2.215505, - 41.439416 - ], - [ - 2.215505, - 41.4372615 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "arbres_llefia", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 104723073 - } - }, - { - "id": 104721756, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2171011, - 41.4344099 - ], - [ - 2.2173023, - 41.4344099 - ], - [ - 2.2173023, - 41.4345464 - ], - [ - 2.2171011, - 41.4345464 - ], - [ - 2.2171011, - 41.4344099 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 104721756 - } - }, - { - "id": 104714129, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -74.1519698, - 40.0576496 - ], - [ - -74.1364798, - 40.0576496 - ], - [ - -74.1364798, - 40.0627675 - ], - [ - -74.1519698, - 40.0627675 - ], - [ - -74.1519698, - 40.0576496 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104714129 - } - }, - { - "id": 104713106, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0018167, - 14.572307 - ], - [ - 121.0018167, - 14.572307 - ], - [ - 121.0018167, - 14.572307 - ], - [ - 121.0018167, - 14.572307 - ], - [ - 121.0018167, - 14.572307 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104713106 - } - }, - { - "id": 104704762, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7559826, - 51.0680931 - ], - [ - 3.7848946, - 51.0680931 - ], - [ - 3.7848946, - 51.1054763 - ], - [ - 3.7559826, - 51.1054763 - ], - [ - 3.7559826, - 51.0680931 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104704762 - } - }, - { - "id": 104704361, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3506184, - 51.1201129 - ], - [ - 3.3515522, - 51.1201129 - ], - [ - 3.3515522, - 51.120607 - ], - [ - 3.3506184, - 51.120607 - ], - [ - 3.3506184, - 51.1201129 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", - "imagery": "osm", - "language": "en", - "theme-creator": "L'imaginaire" - }, - "id": 104704361 - } - }, - { - "id": 104704249, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2917034, - 51.1194612 - ], - [ - 3.2917034, - 51.1194612 - ], - [ - 3.2917034, - 51.1194612 - ], - [ - 3.2917034, - 51.1194612 - ], - [ - 3.2917034, - 51.1194612 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "maps", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104704249 - } - }, - { - "id": 104704200, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2916962, - 51.1194435 - ], - [ - 3.2916996, - 51.1194435 - ], - [ - 3.2916996, - 51.1194515 - ], - [ - 3.2916962, - 51.1194515 - ], - [ - 3.2916962, - 51.1194435 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 104704200 - } - }, - { - "id": 104702488, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2161309, - 41.439416 - ], - [ - 2.2166302, - 41.439416 - ], - [ - 2.2166302, - 41.4399409 - ], - [ - 2.2161309, - 41.4399409 - ], - [ - 2.2161309, - 41.439416 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 104702488 - } - }, - { - "id": 104701749, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0333826, - 50.8711943 - ], - [ - 4.3635517, - 50.8711943 - ], - [ - 4.3635517, - 51.2723531 - ], - [ - 3.0333826, - 51.2723531 - ], - [ - 3.0333826, - 50.8711943 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "AGIV10cm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 104701749 - } - }, - { - "id": 104700044, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2129082, - 51.2048633 - ], - [ - 3.2129082, - 51.2048633 - ], - [ - 3.2129082, - 51.2048633 - ], - [ - 3.2129082, - 51.2048633 - ], - [ - 3.2129082, - 51.2048633 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 104700044 - } - }, - { - "id": 104695241, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5928277, - 44.8376667 - ], - [ - -0.5928277, - 44.8376667 - ], - [ - -0.5928277, - 44.8376667 - ], - [ - -0.5928277, - 44.8376667 - ], - [ - -0.5928277, - 44.8376667 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "ghostbikes", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104695241 - } - }, - { - "id": 104694873, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5864462, - 44.8556083 - ], - [ - -0.5864462, - 44.8556083 - ], - [ - -0.5864462, - 44.8556083 - ], - [ - -0.5864462, - 44.8556083 - ], - [ - -0.5864462, - 44.8556083 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104694873 - } - }, - { - "id": 104686398, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7889432, - -34.6643555 - ], - [ - -58.5243207, - -34.6643555 - ], - [ - -58.5243207, - -34.6386198 - ], - [ - -58.7889432, - -34.6386198 - ], - [ - -58.7889432, - -34.6643555 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "osm", - "language": "es" - }, - "id": 104686398 - } - }, - { - "id": 104684651, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.2040982, - 59.7361917 - ], - [ - 10.2052244, - 59.7361917 - ], - [ - 10.2052244, - 59.7369101 - ], - [ - 10.2040982, - 59.7369101 - ], - [ - 10.2040982, - 59.7361917 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104684651 - } - }, - { - "id": 104683745, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1174031, - 52.0999712 - ], - [ - 5.1192722, - 52.0999712 - ], - [ - 5.1192722, - 52.102085 - ], - [ - 5.1174031, - 52.102085 - ], - [ - 5.1174031, - 52.0999712 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104683745 - } - }, - { - "id": 104683353, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.823591, - 41.7275416 - ], - [ - 1.823591, - 41.7275416 - ], - [ - 1.823591, - 41.7275416 - ], - [ - 1.823591, - 41.7275416 - ], - [ - 1.823591, - 41.7275416 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "ca", - "theme-creator": "MapComplete" - }, - "id": 104683353 - } - }, - { - "id": 104677661, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1073954, - 52.1055942 - ], - [ - 5.1146039, - 52.1055942 - ], - [ - 5.1146039, - 52.111508 - ], - [ - 5.1073954, - 52.111508 - ], - [ - 5.1073954, - 52.1055942 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104677661 - } - }, - { - "id": 104676697, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0345202, - 14.5668445 - ], - [ - 121.0345202, - 14.5668445 - ], - [ - 121.0345202, - 14.5668445 - ], - [ - 121.0345202, - 14.5668445 - ], - [ - 121.0345202, - 14.5668445 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104676697 - } - }, - { - "id": 104664124, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7530616, - -34.6703831 - ], - [ - -58.7530286, - -34.6703831 - ], - [ - -58.7530286, - -34.6703005 - ], - [ - -58.7530616, - -34.6703005 - ], - [ - -58.7530616, - -34.6703831 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "EsriWorldImagery", - "language": "es" - }, - "id": 104664124 - } - }, - { - "id": 104657616, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 30.2519306, - 53.7304139 - ], - [ - 30.2522385, - 53.7304139 - ], - [ - 30.2522385, - 53.7305482 - ], - [ - 30.2519306, - 53.7305482 - ], - [ - 30.2519306, - 53.7304139 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104657616 - } - }, - { - "id": 104657063, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.2042807, - 59.743083 - ], - [ - 10.2900756, - 59.743083 - ], - [ - 10.2900756, - 59.7629905 - ], - [ - 10.2042807, - 59.7629905 - ], - [ - 10.2042807, - 59.743083 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104657063 - } - }, - { - "id": 104654185, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 24.0127149, - 56.9446231 - ], - [ - 24.0151128, - 56.9446231 - ], - [ - 24.0151128, - 56.9455857 - ], - [ - 24.0127149, - 56.9455857 - ], - [ - 24.0127149, - 56.9446231 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "LV_ORTOFOTO_C6", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 104654185 - } - }, - { - "id": 104653601, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.9090244, - 53.6651352 - ], - [ - 9.9093901, - 53.6651352 - ], - [ - 9.9093901, - 53.6653281 - ], - [ - 9.9090244, - 53.6653281 - ], - [ - 9.9090244, - 53.6651352 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 104653601 - } - }, - { - "id": 104652989, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.400183, - 51.0931344 - ], - [ - 3.4453425, - 51.0931344 - ], - [ - 3.4453425, - 51.1116026 - ], - [ - 3.400183, - 51.1116026 - ], - [ - 3.400183, - 51.0931344 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", - "imagery": "osm", - "language": "en", - "theme-creator": "L'imaginaire" - }, - "id": 104652989 - } - }, - { - "id": 104652456, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7645228, - 48.1058497 - ], - [ - 11.7888129, - 48.1058497 - ], - [ - 11.7888129, - 48.1079094 - ], - [ - 11.7645228, - 48.1079094 - ], - [ - 11.7645228, - 48.1058497 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 104652456 - } - }, - { - "id": 104648605, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.9099178, - 53.6639762 - ], - [ - 9.9100551, - 53.6639762 - ], - [ - 9.9100551, - 53.6640851 - ], - [ - 9.9099178, - 53.6640851 - ], - [ - 9.9099178, - 53.6639762 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104648605 - } - }, - { - "id": 104648304, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.8990537, - 53.6086163 - ], - [ - 9.8991856, - 53.6086163 - ], - [ - 9.8991856, - 53.6087597 - ], - [ - 9.8990537, - 53.6087597 - ], - [ - 9.8990537, - 53.6086163 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 104648304 - } - }, - { - "id": 104646395, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4453425, - 51.0927658 - ], - [ - 3.4463992, - 51.0927658 - ], - [ - 3.4463992, - 51.0931344 - ], - [ - 3.4453425, - 51.0931344 - ], - [ - 3.4453425, - 51.0927658 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclenodenetworks", - "imagery": "osm", - "language": "en", - "theme-creator": "Seppe Santens" - }, - "id": 104646395 - } - }, - { - "id": 104645437, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7705245, - 48.1048285 - ], - [ - 11.7705245, - 48.1048285 - ], - [ - 11.7705245, - 48.1048285 - ], - [ - 11.7705245, - 48.1048285 - ], - [ - 11.7705245, - 48.1048285 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 104645437 - } - }, - { - "id": 104639757, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7924102, - -34.6498891 - ], - [ - -58.7919906, - -34.6498891 - ], - [ - -58.7919906, - -34.6498164 - ], - [ - -58.7924102, - -34.6498164 - ], - [ - -58.7924102, - -34.6498891 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "osm", - "language": "es" - }, - "id": 104639757 - } - }, - { - "id": 104637130, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.645263, - 59.6634273 - ], - [ - 10.2096589, - 59.6634273 - ], - [ - 10.2096589, - 59.7683835 - ], - [ - 9.645263, - 59.7683835 - ], - [ - 9.645263, - 59.6634273 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104637130 - } - }, - { - "id": 104627844, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8809982, - 43.3008911 - ], - [ - 5.3804496, - 43.3008911 - ], - [ - 5.3804496, - 45.0396984 - ], - [ - 3.8809982, - 45.0396984 - ], - [ - 3.8809982, - 43.3008911 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "aed", - "imagery": "osm", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 104627844 - } - }, - { - "id": 104602765, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7343132, - -34.6636057 - ], - [ - -58.7342787, - -34.6636057 - ], - [ - -58.7342787, - -34.6635288 - ], - [ - -58.7343132, - -34.6635288 - ], - [ - -58.7343132, - -34.6636057 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "osm", - "language": "es" - }, - "id": 104602765 - } - }, - { - "id": 104601380, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5657576, - -34.6405413 - ], - [ - -58.5657576, - -34.6405413 - ], - [ - -58.5657576, - -34.6405413 - ], - [ - -58.5657576, - -34.6405413 - ], - [ - -58.5657576, - -34.6405413 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "EsriWorldImagery", - "language": "es" - }, - "id": 104601380 - } - }, - { - "id": 104600714, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -8.6113777, - 41.1460496 - ], - [ - -8.6113777, - 41.1460496 - ], - [ - -8.6113777, - 41.1460496 - ], - [ - -8.6113777, - 41.1460496 - ], - [ - -8.6113777, - 41.1460496 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104600714 - } - }, - { - "id": 104600674, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -8.6138524, - 41.1376971 - ], - [ - -8.6111963, - 41.1376971 - ], - [ - -8.6111963, - 41.14363 - ], - [ - -8.6138524, - 41.14363 - ], - [ - -8.6138524, - 41.1376971 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104600674 - } - }, - { - "id": 104596179, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4378596, - 51.0797091 - ], - [ - 3.4395243, - 51.0797091 - ], - [ - 3.4395243, - 51.0806653 - ], - [ - 3.4378596, - 51.0806653 - ], - [ - 3.4378596, - 51.0797091 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 104596179 - } - }, - { - "id": 104593203, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.2708725, - -32.983775 - ], - [ - -71.2708725, - -32.983775 - ], - [ - -71.2708725, - -32.983775 - ], - [ - -71.2708725, - -32.983775 - ], - [ - -71.2708725, - -32.983775 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 104593203 - } - }, - { - "id": 104592637, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7019879, - 51.0584335 - ], - [ - 3.7019879, - 51.0584335 - ], - [ - 3.7019879, - 51.0584335 - ], - [ - 3.7019879, - 51.0584335 - ], - [ - 3.7019879, - 51.0584335 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 104592637 - } - }, - { - "id": 104592091, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.000476, - 51.4139175 - ], - [ - 7.075563, - 51.4139175 - ], - [ - 7.075563, - 51.5012247 - ], - [ - 7.000476, - 51.5012247 - ], - [ - 7.000476, - 51.4139175 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "infoboard", - "imagery": "osm", - "language": "de" - }, - "id": 104592091 - } - }, - { - "id": 104586934, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.2706328, - -32.9839877 - ], - [ - -71.2706328, - -32.9839877 - ], - [ - -71.2706328, - -32.9839877 - ], - [ - -71.2706328, - -32.9839877 - ], - [ - -71.2706328, - -32.9839877 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 104586934 - } - }, - { - "id": 104582639, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7670977, - 48.1117133 - ], - [ - 11.7683825, - 48.1117133 - ], - [ - 11.7683825, - 48.114704 - ], - [ - 11.7670977, - 48.114704 - ], - [ - 11.7670977, - 48.1117133 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 104582639 - } - }, - { - "id": 104582393, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7667758, - 48.1144336 - ], - [ - 11.7681491, - 48.1144336 - ], - [ - 11.7681491, - 48.1150961 - ], - [ - 11.7667758, - 48.1150961 - ], - [ - 11.7667758, - 48.1144336 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 104582393 - } - }, - { - "id": 104581895, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9926, - 50.8240406 - ], - [ - 3.993695, - 50.8240406 - ], - [ - 3.993695, - 50.8341152 - ], - [ - 3.9926, - 50.8341152 - ], - [ - 3.9926, - 50.8240406 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104581895 - } - }, - { - "id": 104577870, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.0739308, - 51.4139635 - ], - [ - 7.0754887, - 51.4139635 - ], - [ - 7.0754887, - 51.4156749 - ], - [ - 7.0739308, - 51.4156749 - ], - [ - 7.0739308, - 51.4139635 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 104577870 - } - }, - { - "id": 104577362, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7003566, - -34.6657851 - ], - [ - -58.5659053, - -34.6657851 - ], - [ - -58.5659053, - -34.6406015 - ], - [ - -58.7003566, - -34.6406015 - ], - [ - -58.7003566, - -34.6657851 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "osm", - "language": "es" - }, - "id": 104577362 - } - }, - { - "id": 104576707, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -77.621372, - 43.1163623 - ], - [ - -77.6204842, - 43.1163623 - ], - [ - -77.6204842, - 43.1163956 - ], - [ - -77.621372, - 43.1163956 - ], - [ - -77.621372, - 43.1163623 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104576707 - } - }, - { - "id": 104558350, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0388835, - 14.6079696 - ], - [ - 121.0388835, - 14.6079696 - ], - [ - 121.0388835, - 14.6079696 - ], - [ - 121.0388835, - 14.6079696 - ], - [ - 121.0388835, - 14.6079696 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "osmfr", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104558350 - } - }, - { - "id": 104551517, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 120.581587, - 14.1329368 - ], - [ - 120.585959, - 14.1329368 - ], - [ - 120.585959, - 14.1344337 - ], - [ - 120.581587, - 14.1344337 - ], - [ - 120.581587, - 14.1329368 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104551517 - } - }, - { - "id": 104550986, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 120.5912738, - 14.1325571 - ], - [ - 120.5912738, - 14.1325571 - ], - [ - 120.5912738, - 14.1325571 - ], - [ - 120.5912738, - 14.1325571 - ], - [ - 120.5912738, - 14.1325571 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104550986 - } - }, - { - "id": 104546473, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -84.5643345, - 42.7206103 - ], - [ - -84.5340829, - 42.7206103 - ], - [ - -84.5340829, - 42.7502455 - ], - [ - -84.5643345, - 42.7502455 - ], - [ - -84.5643345, - 42.7206103 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 104546473 - } - }, - { - "id": 104538496, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.6324183, - -34.6496345 - ], - [ - -58.5055657, - -34.6496345 - ], - [ - -58.5055657, - -34.6366827 - ], - [ - -58.6324183, - -34.6366827 - ], - [ - -58.6324183, - -34.6496345 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "EsriWorldImagery", - "language": "es" - }, - "id": 104538496 - } - }, - { - "id": 104527766, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.9373163, - 48.4837389 - ], - [ - 7.9373163, - 48.4837389 - ], - [ - 7.9373163, - 48.4837389 - ], - [ - 7.9373163, - 48.4837389 - ], - [ - 7.9373163, - 48.4837389 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "ghostbikes", - "imagery": "CartoDB.Positron", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 104527766 - } - }, - { - "id": 104526734, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4501882, - 51.1738214 - ], - [ - 4.4501882, - 51.1738214 - ], - [ - 4.4501882, - 51.1738214 - ], - [ - 4.4501882, - 51.1738214 - ], - [ - 4.4501882, - 51.1738214 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "speelplekken", - "imagery": "CartoDB.Positron", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 104526734 - } - }, - { - "id": 104522364, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0671853, - 51.4744782 - ], - [ - 5.1754923, - 51.4744782 - ], - [ - 5.1754923, - 51.5626446 - ], - [ - 5.0671853, - 51.5626446 - ], - [ - 5.0671853, - 51.4744782 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 104522364 - } - }, - { - "id": 104518647, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0621398, - 51.4824103 - ], - [ - 5.0819329, - 51.4824103 - ], - [ - 5.0819329, - 51.4938916 - ], - [ - 5.0621398, - 51.4938916 - ], - [ - 5.0621398, - 51.4824103 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 104518647 - } - }, - { - "id": 104515780, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7539178, - 50.9869439 - ], - [ - 3.7798795, - 50.9869439 - ], - [ - 3.7798795, - 51.0260808 - ], - [ - 3.7539178, - 51.0260808 - ], - [ - 3.7539178, - 50.9869439 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104515780 - } - }, - { - "id": 104515024, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7918383, - -34.6500363 - ], - [ - -58.7916703, - -34.6500363 - ], - [ - -58.7916703, - -34.6499008 - ], - [ - -58.7918383, - -34.6499008 - ], - [ - -58.7918383, - -34.6500363 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "osm", - "language": "es" - }, - "id": 104515024 - } - }, - { - "id": 104508863, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1932987, - 41.4148916 - ], - [ - 2.1950137, - 41.4148916 - ], - [ - 2.1950137, - 41.4168303 - ], - [ - 2.1932987, - 41.4168303 - ], - [ - 2.1932987, - 41.4148916 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 104508863 - } - }, - { - "id": 104508109, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0421034, - 51.2820811 - ], - [ - 5.5107906, - 51.2820811 - ], - [ - 5.5107906, - 51.4931807 - ], - [ - 5.0421034, - 51.4931807 - ], - [ - 5.0421034, - 51.2820811 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 104508109 - } - }, - { - "id": 104507010, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0592133, - 14.7358283 - ], - [ - 121.0592133, - 14.7358283 - ], - [ - 121.0592133, - 14.7358283 - ], - [ - 121.0592133, - 14.7358283 - ], - [ - 121.0592133, - 14.7358283 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104507010 - } - }, - { - "id": 104501788, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4976506, - 51.28932 - ], - [ - 5.5796051, - 51.28932 - ], - [ - 5.5796051, - 51.3206241 - ], - [ - 5.4976506, - 51.3206241 - ], - [ - 5.4976506, - 51.28932 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 104501788 - } - }, - { - "id": 104497856, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7072501, - 51.0393669 - ], - [ - 3.7578258, - 51.0393669 - ], - [ - 3.7578258, - 51.0544275 - ], - [ - 3.7072501, - 51.0544275 - ], - [ - 3.7072501, - 51.0393669 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104497856 - } - }, - { - "id": 104496134, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4975774, - 51.3240573 - ], - [ - 5.55092, - 51.3240573 - ], - [ - 5.55092, - 51.3513004 - ], - [ - 5.4975774, - 51.3513004 - ], - [ - 5.4975774, - 51.3240573 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 104496134 - } - }, - { - "id": 104486192, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0821901, - 51.3006587 - ], - [ - 5.5760229, - 51.3006587 - ], - [ - 5.5760229, - 51.5559008 - ], - [ - 5.0821901, - 51.5559008 - ], - [ - 5.0821901, - 51.3006587 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 104486192 - } - }, - { - "id": 104481256, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.5288734, - 13.9639743 - ], - [ - 121.5312713, - 13.9639743 - ], - [ - 121.5312713, - 13.9650598 - ], - [ - 121.5288734, - 13.9650598 - ], - [ - 121.5288734, - 13.9639743 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104481256 - } - }, - { - "id": 104477735, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7392102, - -34.6628598 - ], - [ - -58.5532309, - -34.6628598 - ], - [ - -58.5532309, - -34.6395504 - ], - [ - -58.7392102, - -34.6395504 - ], - [ - -58.7392102, - -34.6628598 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "EsriWorldImagery", - "language": "es" - }, - "id": 104477735 - } - }, - { - "id": 104476330, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.154912, - 45.6122344 - ], - [ - 5.154912, - 45.6122344 - ], - [ - 5.154912, - 45.6122344 - ], - [ - 5.154912, - 45.6122344 - ], - [ - 5.154912, - 45.6122344 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104476330 - } - }, - { - "id": 104474953, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198332, - 51.215705 - ], - [ - 3.2198332, - 51.215705 - ], - [ - 3.2198332, - 51.215705 - ], - [ - 3.2198332, - 51.215705 - ], - [ - 3.2198332, - 51.215705 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104474953 - } - }, - { - "id": 104473387, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -77.7884884, - 42.2563849 - ], - [ - -77.7879269, - 42.2563849 - ], - [ - -77.7879269, - 42.2567295 - ], - [ - -77.7884884, - 42.2567295 - ], - [ - -77.7884884, - 42.2563849 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104473387 - } - }, - { - "id": 104473335, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -77.788479, - 42.2567096 - ], - [ - -77.788479, - 42.2567096 - ], - [ - -77.788479, - 42.2567096 - ], - [ - -77.788479, - 42.2567096 - ], - [ - -77.788479, - 42.2567096 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104473335 - } - }, - { - "id": 104472684, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 18.4968553, - 54.464641 - ], - [ - 18.4968553, - 54.464641 - ], - [ - 18.4968553, - 54.464641 - ], - [ - 18.4968553, - 54.464641 - ], - [ - 18.4968553, - 54.464641 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104472684 - } - }, - { - "id": 104469520, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2259732, - 51.2116402 - ], - [ - 3.2259732, - 51.2116402 - ], - [ - 3.2259732, - 51.2116402 - ], - [ - 3.2259732, - 51.2116402 - ], - [ - 3.2259732, - 51.2116402 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 104469520 - } - }, - { - "id": 104468481, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2259732, - 51.2116402 - ], - [ - 3.2259732, - 51.2116402 - ], - [ - 3.2259732, - 51.2116402 - ], - [ - 3.2259732, - 51.2116402 - ], - [ - 3.2259732, - 51.2116402 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 104468481 - } - }, - { - "id": 104466370, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2317124, - 51.2039443 - ], - [ - 3.232329, - 51.2039443 - ], - [ - 3.232329, - 51.2054782 - ], - [ - 3.2317124, - 51.2054782 - ], - [ - 3.2317124, - 51.2039443 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "grb", - "imagery": "AGIVFlandersGRB", - "language": "nl" - }, - "id": 104466370 - } - }, - { - "id": 104458078, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 19.3883666, - 50.6683055 - ], - [ - 19.39116, - 50.6683055 - ], - [ - 19.39116, - 50.6701361 - ], - [ - 19.3883666, - 50.6701361 - ], - [ - 19.3883666, - 50.6683055 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 104458078 - } - }, - { - "id": 104454897, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7466598, - -34.6657851 - ], - [ - -58.5672395, - -34.6657851 - ], - [ - -58.5672395, - -34.6408168 - ], - [ - -58.7466598, - -34.6408168 - ], - [ - -58.7466598, - -34.6657851 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "osm", - "language": "es" - }, - "id": 104454897 - } - }, - { - "id": 104454337, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -85.1794412, - 40.8840803 - ], - [ - -85.1342251, - 40.8840803 - ], - [ - -85.1342251, - 41.0888895 - ], - [ - -85.1794412, - 41.0888895 - ], - [ - -85.1794412, - 40.8840803 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104454337 - } - }, - { - "id": 104451926, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0796346, - 50.9344553 - ], - [ - 3.0796346, - 50.9344553 - ], - [ - 3.0796346, - 50.9344553 - ], - [ - 3.0796346, - 50.9344553 - ], - [ - 3.0796346, - 50.9344553 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "AGIV10cm", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104451926 - } - }, - { - "id": 104448218, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8272931, - 43.0775616 - ], - [ - 5.9047507, - 43.0775616 - ], - [ - 5.9047507, - 44.2258949 - ], - [ - 3.8272931, - 44.2258949 - ], - [ - 3.8272931, - 43.0775616 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 104448218 - } - }, - { - "id": 104447014, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 23.2262608, - 53.1678182 - ], - [ - 23.2262608, - 53.1678182 - ], - [ - 23.2262608, - 53.1678182 - ], - [ - 23.2262608, - 53.1678182 - ], - [ - 23.2262608, - 53.1678182 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104447014 - } - }, - { - "id": 104434320, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.8549909, - 53.1356141 - ], - [ - 13.8549909, - 53.1356141 - ], - [ - 13.8549909, - 53.1356141 - ], - [ - 13.8549909, - 53.1356141 - ], - [ - 13.8549909, - 53.1356141 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104434320 - } - }, - { - "id": 104424404, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.5852344, - 52.6791026 - ], - [ - 13.5852344, - 52.6791026 - ], - [ - 13.5852344, - 52.6791026 - ], - [ - 13.5852344, - 52.6791026 - ], - [ - 13.5852344, - 52.6791026 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104424404 - } - }, - { - "id": 104410838, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.9040251, - 43.3245826 - ], - [ - -1.9038641, - 43.3245826 - ], - [ - -1.9038641, - 43.3246021 - ], - [ - -1.9040251, - 43.3246021 - ], - [ - -1.9040251, - 43.3245826 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "EsriWorldImagery", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 104410838 - } - }, - { - "id": 104410816, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 83, - "name": "User has multiple blocks" - } - ], - "tags": [], - "features": [], - "user": "Wilmer Osario", - "uid": "5443883", - "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-09T20:39:30Z", - "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": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104410816 - } - }, - { - "id": 104405796, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7459706, - 48.1192639 - ], - [ - 11.7459706, - 48.1192639 - ], - [ - 11.7459706, - 48.1192639 - ], - [ - 11.7459706, - 48.1192639 - ], - [ - 11.7459706, - 48.1192639 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 104405796 - } - }, - { - "id": 104404430, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.8004411, - 45.1618381 - ], - [ - 10.8004411, - 45.1618381 - ], - [ - 10.8004411, - 45.1618381 - ], - [ - 10.8004411, - 45.1618381 - ], - [ - 10.8004411, - 45.1618381 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104404430 - } - }, - { - "id": 104403405, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2200102, - 51.2157486 - ], - [ - 3.2200718, - 51.2157486 - ], - [ - 3.2200718, - 51.2157705 - ], - [ - 3.2200102, - 51.2157705 - ], - [ - 3.2200102, - 51.2157486 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 104403405 - } - }, - { - "id": 104402711, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.3832554, - 49.1824068 - ], - [ - -0.3722212, - 49.1824068 - ], - [ - -0.3722212, - 49.186676 - ], - [ - -0.3832554, - 49.186676 - ], - [ - -0.3832554, - 49.1824068 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104402711 - } - }, - { - "id": 104402358, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8872236, - 51.0093569 - ], - [ - 3.8872236, - 51.0093569 - ], - [ - 3.8872236, - 51.0093569 - ], - [ - 3.8872236, - 51.0093569 - ], - [ - 3.8872236, - 51.0093569 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 104402358 - } - }, - { - "id": 104402223, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -72.3073011, - 43.7129522 - ], - [ - -72.3056649, - 43.7129522 - ], - [ - -72.3056649, - 43.7135309 - ], - [ - -72.3073011, - 43.7135309 - ], - [ - -72.3073011, - 43.7129522 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 104402223 - } - }, - { - "id": 104395169, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2682475, - 51.1566463 - ], - [ - 3.2682475, - 51.1566463 - ], - [ - 3.2682475, - 51.1566463 - ], - [ - 3.2682475, - 51.1566463 - ], - [ - 3.2682475, - 51.1566463 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 104395169 - } - }, - { - "id": 104393563, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -86.7749105, - 39.2895893 - ], - [ - -86.7749105, - 39.2895893 - ], - [ - -86.7749105, - 39.2895893 - ], - [ - -86.7749105, - 39.2895893 - ], - [ - -86.7749105, - 39.2895893 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104393563 - } - }, - { - "id": 104393090, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -86.8697199, - 39.2103621 - ], - [ - -86.8697199, - 39.2103621 - ], - [ - -86.8697199, - 39.2103621 - ], - [ - -86.8697199, - 39.2103621 - ], - [ - -86.8697199, - 39.2103621 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104393090 - } - }, - { - "id": 104393035, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -86.7622867, - 39.2846994 - ], - [ - -86.7622867, - 39.2846994 - ], - [ - -86.7622867, - 39.2846994 - ], - [ - -86.7622867, - 39.2846994 - ], - [ - -86.7622867, - 39.2846994 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104393035 - } - }, - { - "id": 104391660, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.6935299, - 45.4364119 - ], - [ - 10.6935299, - 45.4364119 - ], - [ - 10.6935299, - 45.4364119 - ], - [ - 10.6935299, - 45.4364119 - ], - [ - 10.6935299, - 45.4364119 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104391660 - } - }, - { - "id": 104390359, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.220067, - 51.2157567 - ], - [ - 3.220067, - 51.2157567 - ], - [ - 3.220067, - 51.2157567 - ], - [ - 3.220067, - 51.2157567 - ], - [ - 3.220067, - 51.2157567 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104390359 - } - }, - { - "id": 104389215, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "DaveArq", - "uid": "22799", - "editor": "MapComplete 0.7.1b", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2021-05-09T09:11:46Z", - "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", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104389215 - } - }, - { - "id": 104383378, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.5261981, - 13.9631823 - ], - [ - 121.5266278, - 13.9631823 - ], - [ - 121.5266278, - 13.9637865 - ], - [ - 121.5261981, - 13.9637865 - ], - [ - 121.5261981, - 13.9631823 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104383378 - } - }, - { - "id": 104382849, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0451049, - 14.5476106 - ], - [ - 121.0540125, - 14.5476106 - ], - [ - 121.0540125, - 14.5612559 - ], - [ - 121.0451049, - 14.5612559 - ], - [ - 121.0451049, - 14.5476106 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104382849 - } - }, - { - "id": 104371710, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "CarmeP", - "uid": "13279572", - "editor": "MapComplete 0.7.1b", - "comment": "Adding data with #MapComplete for theme #arbres_llefia", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2021-05-08T16:30:21Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "arbres_llefia", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 104371710 - } - }, - { - "id": 104371384, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Sandra55", - "uid": "13279584", - "editor": "MapComplete 0.7.1b", - "comment": "Adding data with #MapComplete for theme #arbres_llefia", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2021-05-08T16:21:23Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "arbres_llefia", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 104371384 - } - }, - { - "id": 104369957, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.2859606, - 44.4990997 - ], - [ - 11.2859606, - 44.4990997 - ], - [ - 11.2859606, - 44.4990997 - ], - [ - 11.2859606, - 44.4990997 - ], - [ - 11.2859606, - 44.4990997 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104369957 - } - }, - { - "id": 104369288, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1136635, - 51.0178601 - ], - [ - 4.1136635, - 51.0178601 - ], - [ - 4.1136635, - 51.0178601 - ], - [ - 4.1136635, - 51.0178601 - ], - [ - 4.1136635, - 51.0178601 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104369288 - } - }, - { - "id": 104368933, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1094095, - 51.0163179 - ], - [ - 4.1110054, - 51.0163179 - ], - [ - 4.1110054, - 51.0192082 - ], - [ - 4.1094095, - 51.0192082 - ], - [ - 4.1094095, - 51.0163179 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 104368933 - } - }, - { - "id": 104365650, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7097807, - 51.0375149 - ], - [ - 3.7097807, - 51.0375149 - ], - [ - 3.7097807, - 51.0375149 - ], - [ - 3.7097807, - 51.0375149 - ], - [ - 3.7097807, - 51.0375149 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.braindeaddev.com", - "theme": "fritures", - "imagery": "osm", - "language": "nl" - }, - "id": 104365650 - } - }, - { - "id": 104355582, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8420487, - 50.8816233 - ], - [ - 4.8420487, - 50.8816233 - ], - [ - 4.8420487, - 50.8816233 - ], - [ - 4.8420487, - 50.8816233 - ], - [ - 4.8420487, - 50.8816233 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 104355582 - } - }, - { - "id": 104354080, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1163656, - 52.0952883 - ], - [ - 5.1176908, - 52.0952883 - ], - [ - 5.1176908, - 52.0982872 - ], - [ - 5.1163656, - 52.0982872 - ], - [ - 5.1163656, - 52.0952883 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104354080 - } - }, - { - "id": 104345309, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7304616, - -34.6642698 - ], - [ - -58.4740421, - -34.6642698 - ], - [ - -58.4740421, - -34.6302812 - ], - [ - -58.7304616, - -34.6302812 - ], - [ - -58.7304616, - -34.6642698 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "osm", - "language": "en" - }, - "id": 104345309 - } - }, - { - "id": 104329987, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0956148, - 51.027961 - ], - [ - 4.0956148, - 51.027961 - ], - [ - 4.0956148, - 51.027961 - ], - [ - 4.0956148, - 51.027961 - ], - [ - 4.0956148, - 51.027961 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 104329987 - } - }, - { - "id": 104325174, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.4918446, - -34.5472383 - ], - [ - -58.4918063, - -34.5472383 - ], - [ - -58.4918063, - -34.5472206 - ], - [ - -58.4918446, - -34.5472206 - ], - [ - -58.4918446, - -34.5472383 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "osm", - "language": "en" - }, - "id": 104325174 - } - }, - { - "id": 104296439, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.144859, - 50.3474723 - ], - [ - 16.144859, - 50.3474723 - ], - [ - 16.144859, - 50.3474723 - ], - [ - 16.144859, - 50.3474723 - ], - [ - 16.144859, - 50.3474723 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 104296439 - } - }, - { - "id": 104294870, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ruben Van de Velde", - "uid": "2676725", - "editor": "MapComplete 0.7.1b", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2021-05-07T06:53:09Z", - "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", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104294870 - } - }, - { - "id": 104285378, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0539052, - 14.6232384 - ], - [ - 121.0571842, - 14.6232384 - ], - [ - 121.0571842, - 14.6248124 - ], - [ - 121.0539052, - 14.6248124 - ], - [ - 121.0539052, - 14.6232384 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104285378 - } - }, - { - "id": 104280247, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7041112, - 51.052696 - ], - [ - 3.7041112, - 51.052696 - ], - [ - 3.7041112, - 51.052696 - ], - [ - 3.7041112, - 51.052696 - ], - [ - 3.7041112, - 51.052696 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 104280247 - } - }, - { - "id": 104280055, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7045624, - 51.0527661 - ], - [ - 3.7045624, - 51.0527661 - ], - [ - 3.7045624, - 51.0527661 - ], - [ - 3.7045624, - 51.0527661 - ], - [ - 3.7045624, - 51.0527661 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 104280055 - } - }, - { - "id": 104278464, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7632647, - -34.6665702 - ], - [ - -58.5277403, - -34.6665702 - ], - [ - -58.5277403, - -34.6388926 - ], - [ - -58.7632647, - -34.6388926 - ], - [ - -58.7632647, - -34.6665702 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "osm", - "language": "en" - }, - "id": 104278464 - } - }, - { - "id": 104274050, - "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.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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 104274050 - } - }, - { - "id": 104273585, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.881065, - 46.2899434 - ], - [ - 7.881065, - 46.2899434 - ], - [ - 7.881065, - 46.2899434 - ], - [ - 7.881065, - 46.2899434 - ], - [ - 7.881065, - 46.2899434 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "pingpong", - "imagery": "osm", - "language": "nl" - }, - "id": 104273585 - } - }, - { - "id": 104272719, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.905059, - 53.6078392 - ], - [ - 9.9052734, - 53.6078392 - ], - [ - 9.9052734, - 53.6089036 - ], - [ - 9.905059, - 53.6089036 - ], - [ - 9.905059, - 53.6078392 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104272719 - } - }, - { - "id": 104263517, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4559284, - 51.1040739 - ], - [ - 4.4632811, - 51.1040739 - ], - [ - 4.4632811, - 51.1752352 - ], - [ - 4.4559284, - 51.1752352 - ], - [ - 4.4559284, - 51.1040739 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "speelplekken", - "imagery": "CartoDB.Positron", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 104263517 - } - }, - { - "id": 104257325, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5582257, - -34.6397556 - ], - [ - -58.556909, - -34.6397556 - ], - [ - -58.556909, - -34.6396152 - ], - [ - -58.5582257, - -34.6396152 - ], - [ - -58.5582257, - -34.6397556 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "osm", - "language": "en" - }, - "id": 104257325 - } - }, - { - "id": 104256048, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.006488, - 52.1035974 - ], - [ - 5.006488, - 52.1035974 - ], - [ - 5.006488, - 52.1035974 - ], - [ - 5.006488, - 52.1035974 - ], - [ - 5.006488, - 52.1035974 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104256048 - } - }, - { - "id": 104253724, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3259754, - 50.9959771 - ], - [ - 3.3259754, - 50.9959771 - ], - [ - 3.3259754, - 50.9959771 - ], - [ - 3.3259754, - 50.9959771 - ], - [ - 3.3259754, - 50.9959771 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104253724 - } - }, - { - "id": 104233157, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 24.7403955, - 60.160001 - ], - [ - 24.7403955, - 60.160001 - ], - [ - 24.7403955, - 60.160001 - ], - [ - 24.7403955, - 60.160001 - ], - [ - 24.7403955, - 60.160001 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104233157 - } - }, - { - "id": 104228418, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9413681, - 42.6852421 - ], - [ - 2.9413681, - 42.6852421 - ], - [ - 2.9413681, - 42.6852421 - ], - [ - 2.9413681, - 42.6852421 - ], - [ - 2.9413681, - 42.6852421 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104228418 - } - }, - { - "id": 104216445, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0188074, - 14.6546927 - ], - [ - 121.0188074, - 14.6546927 - ], - [ - 121.0188074, - 14.6546927 - ], - [ - 121.0188074, - 14.6546927 - ], - [ - 121.0188074, - 14.6546927 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104216445 - } - }, - { - "id": 104212562, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7341654, - -34.6642698 - ], - [ - -58.7302655, - -34.6642698 - ], - [ - -58.7302655, - -34.6635125 - ], - [ - -58.7341654, - -34.6635125 - ], - [ - -58.7341654, - -34.6642698 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "EsriWorldImagery", - "language": "en" - }, - "id": 104212562 - } - }, - { - "id": 104210379, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7875843, - -34.6518324 - ], - [ - -58.7827805, - -34.6518324 - ], - [ - -58.7827805, - -34.6509498 - ], - [ - -58.7875843, - -34.6509498 - ], - [ - -58.7875843, - -34.6518324 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 104210379 - } - }, - { - "id": 104206928, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -74.077339, - 39.9322022 - ], - [ - -74.0731447, - 39.9322022 - ], - [ - -74.0731447, - 39.942551 - ], - [ - -74.077339, - 39.942551 - ], - [ - -74.077339, - 39.9322022 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104206928 - } - }, - { - "id": 104206891, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -74.0759588, - 39.937676 - ], - [ - -74.075927, - 39.937676 - ], - [ - -74.075927, - 39.9379338 - ], - [ - -74.0759588, - 39.9379338 - ], - [ - -74.0759588, - 39.937676 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 104206891 - } - }, - { - "id": 104203072, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.7763142, - 41.7296895 - ], - [ - 1.9349509, - 41.7296895 - ], - [ - 1.9349509, - 42.4394314 - ], - [ - 1.7763142, - 42.4394314 - ], - [ - 1.7763142, - 41.7296895 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "ca", - "theme-creator": "MapComplete" - }, - "id": 104203072 - } - }, - { - "id": 104191631, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2136426, - 41.4379439 - ], - [ - 2.2221249, - 41.4379439 - ], - [ - 2.2221249, - 41.4443481 - ], - [ - 2.2136426, - 41.4443481 - ], - [ - 2.2136426, - 41.4379439 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "arbres_llefia", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 104191631 - } - }, - { - "id": 104188466, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.64076, - -34.6517667 - ], - [ - -58.524545, - -34.6517667 - ], - [ - -58.524545, - -34.6030141 - ], - [ - -58.64076, - -34.6030141 - ], - [ - -58.64076, - -34.6517667 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "osm", - "language": "es" - }, - "id": 104188466 - } - }, - { - "id": 104188465, - "type": "Feature", - "geometry": null, - "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": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "osm", - "language": "es" - }, - "id": 104188465 - } - }, - { - "id": 104187522, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7685101, - -34.6663314 - ], - [ - -58.6406885, - -34.6663314 - ], - [ - -58.6406885, - -34.6515397 - ], - [ - -58.7685101, - -34.6515397 - ], - [ - -58.7685101, - -34.6663314 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "osm", - "language": "es" - }, - "id": 104187522 - } - }, - { - "id": 104175591, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.1351653, - 54.3256607 - ], - [ - 10.1351653, - 54.3256607 - ], - [ - 10.1351653, - 54.3256607 - ], - [ - 10.1351653, - 54.3256607 - ], - [ - 10.1351653, - 54.3256607 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "artworks", - "imagery": "osm", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 104175591 - } - }, - { - "id": 104156628, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2560088, - -39.8161799 - ], - [ - -73.2560088, - -39.8161799 - ], - [ - -73.2560088, - -39.8161799 - ], - [ - -73.2560088, - -39.8161799 - ], - [ - -73.2560088, - -39.8161799 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104156628 - } - }, - { - "id": 104154788, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 123.8959752, - 10.3078378 - ], - [ - 123.8959752, - 10.3078378 - ], - [ - 123.8959752, - 10.3078378 - ], - [ - 123.8959752, - 10.3078378 - ], - [ - 123.8959752, - 10.3078378 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104154788 - } - }, - { - "id": 104153784, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7877612, - -34.6564789 - ], - [ - -58.7684926, - -34.6564789 - ], - [ - -58.7684926, - -34.6509762 - ], - [ - -58.7877612, - -34.6509762 - ], - [ - -58.7877612, - -34.6564789 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "osm", - "language": "es" - }, - "id": 104153784 - } - }, - { - "id": 104153485, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 41.0628018, - 37.784281 - ], - [ - 41.1375079, - 37.784281 - ], - [ - 41.1375079, - 37.9044575 - ], - [ - 41.0628018, - 37.9044575 - ], - [ - 41.0628018, - 37.784281 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104153485 - } - }, - { - "id": 104151893, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 123.8980177, - 10.305034 - ], - [ - 123.8980177, - 10.305034 - ], - [ - 123.8980177, - 10.305034 - ], - [ - 123.8980177, - 10.305034 - ], - [ - 123.8980177, - 10.305034 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104151893 - } - }, - { - "id": 104147363, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2917522, - 51.1092971 - ], - [ - 3.3065642, - 51.1092971 - ], - [ - 3.3065642, - 51.1118305 - ], - [ - 3.2917522, - 51.1118305 - ], - [ - 3.2917522, - 51.1092971 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "viewpoints", - "imagery": "osm", - "language": "en", - "theme-creator": "Seppe Santens" - }, - "id": 104147363 - } - }, - { - "id": 104139265, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2165039, - 41.4318571 - ], - [ - 2.2225155, - 41.4318571 - ], - [ - 2.2225155, - 41.4345007 - ], - [ - 2.2165039, - 41.4345007 - ], - [ - 2.2165039, - 41.4318571 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "arbres_llefia", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 104139265 - } - }, - { - "id": 104126031, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7877612, - -34.6666518 - ], - [ - -58.5349551, - -34.6666518 - ], - [ - -58.5349551, - -34.6394407 - ], - [ - -58.7877612, - -34.6394407 - ], - [ - -58.7877612, - -34.6666518 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "EsriWorldImagery", - "language": "es" - }, - "id": 104126031 - } - }, - { - "id": 104120947, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 123.9034492, - 10.293082 - ], - [ - 123.9034492, - 10.293082 - ], - [ - 123.9034492, - 10.293082 - ], - [ - 123.9034492, - 10.293082 - ], - [ - 123.9034492, - 10.293082 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104120947 - } - }, - { - "id": 104112998, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.806607, - 49.4252239 - ], - [ - 2.8070591, - 49.4252239 - ], - [ - 2.8070591, - 49.4255607 - ], - [ - 2.806607, - 49.4255607 - ], - [ - 2.806607, - 49.4252239 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 104112998 - } - }, - { - "id": 104111803, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 123.8954294, - 10.2950032 - ], - [ - 123.8954294, - 10.2950032 - ], - [ - 123.8954294, - 10.2950032 - ], - [ - 123.8954294, - 10.2950032 - ], - [ - 123.8954294, - 10.2950032 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "EsriWorldImageryClarity", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104111803 - } - }, - { - "id": 104089998, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 123.9019094, - 10.2979115 - ], - [ - 123.9019094, - 10.2979115 - ], - [ - 123.9019094, - 10.2979115 - ], - [ - 123.9019094, - 10.2979115 - ], - [ - 123.9019094, - 10.2979115 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104089998 - } - }, - { - "id": 104083460, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5904764, - -34.6444439 - ], - [ - -58.5278526, - -34.6444439 - ], - [ - -58.5278526, - -34.6389921 - ], - [ - -58.5904764, - -34.6389921 - ], - [ - -58.5904764, - -34.6444439 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "EsriWorldImagery", - "language": "es" - }, - "id": 104083460 - } - }, - { - "id": 104078157, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3282392, - 50.9950974 - ], - [ - 3.3282392, - 50.9950974 - ], - [ - 3.3282392, - 50.9950974 - ], - [ - 3.3282392, - 50.9950974 - ], - [ - 3.3282392, - 50.9950974 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 104078157 - } - }, - { - "id": 104075504, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7664052, - 48.1051001 - ], - [ - 11.7664052, - 48.1051001 - ], - [ - 11.7664052, - 48.1051001 - ], - [ - 11.7664052, - 48.1051001 - ], - [ - 11.7664052, - 48.1051001 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 104075504 - } - }, - { - "id": 104060228, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7877612, - -34.6647567 - ], - [ - -58.466647, - -34.6647567 - ], - [ - -58.466647, - -34.5399733 - ], - [ - -58.7877612, - -34.5399733 - ], - [ - -58.7877612, - -34.6647567 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "osm", - "language": "es" - }, - "id": 104060228 - } - }, - { - "id": 104053396, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7777917, - 48.1106173 - ], - [ - 11.7777917, - 48.1106173 - ], - [ - 11.7777917, - 48.1106173 - ], - [ - 11.7777917, - 48.1106173 - ], - [ - 11.7777917, - 48.1106173 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 104053396 - } - }, - { - "id": 104052303, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2734441, - 51.9783559 - ], - [ - 6.28092, - 51.9783559 - ], - [ - 6.28092, - 51.9835735 - ], - [ - 6.2734441, - 51.9835735 - ], - [ - 6.2734441, - 51.9783559 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 104052303 - } - }, - { - "id": 104019987, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 123.9114166, - 10.3126037 - ], - [ - 123.9114166, - 10.3126037 - ], - [ - 123.9114166, - 10.3126037 - ], - [ - 123.9114166, - 10.3126037 - ], - [ - 123.9114166, - 10.3126037 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 104019987 - } - }, - { - "id": 104007776, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2192532, - 41.4369961 - ], - [ - 2.2215754, - 41.4369961 - ], - [ - 2.2215754, - 41.4439479 - ], - [ - 2.2192532, - 41.4439479 - ], - [ - 2.2192532, - 41.4369961 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "arbres_llefia", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 104007776 - } - }, - { - "id": 104000793, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7996809, - 48.1037273 - ], - [ - 11.8129735, - 48.1037273 - ], - [ - 11.8129735, - 48.1077842 - ], - [ - 11.7996809, - 48.1077842 - ], - [ - 11.7996809, - 48.1037273 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 104000793 - } - }, - { - "id": 103995755, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.23042, - 51.9621928 - ], - [ - 6.23042, - 51.9621928 - ], - [ - 6.23042, - 51.9621928 - ], - [ - 6.23042, - 51.9621928 - ], - [ - 6.23042, - 51.9621928 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 103995755 - } - }, - { - "id": 103995633, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2171515, - 41.4421521 - ], - [ - 2.2202885, - 41.4421521 - ], - [ - 2.2202885, - 41.4435051 - ], - [ - 2.2171515, - 41.4435051 - ], - [ - 2.2171515, - 41.4421521 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "arbres_llefia", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 103995633 - } - }, - { - "id": 103992573, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.23042, - 51.9621928 - ], - [ - 6.23042, - 51.9621928 - ], - [ - 6.23042, - 51.9621928 - ], - [ - 6.23042, - 51.9621928 - ], - [ - 6.23042, - 51.9621928 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 103992573 - } - }, - { - "id": 103989669, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 123.8872808, - 10.2965048 - ], - [ - 123.8872808, - 10.2965048 - ], - [ - 123.8872808, - 10.2965048 - ], - [ - 123.8872808, - 10.2965048 - ], - [ - 123.8872808, - 10.2965048 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 103989669 - } - }, - { - "id": 103988585, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7777917, - 48.1106173 - ], - [ - 11.7777917, - 48.1106173 - ], - [ - 11.7777917, - 48.1106173 - ], - [ - 11.7777917, - 48.1106173 - ], - [ - 11.7777917, - 48.1106173 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 103988585 - } - }, - { - "id": 103987605, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6706588, - 51.9843105 - ], - [ - 4.6706588, - 51.9843105 - ], - [ - 4.6706588, - 51.9843105 - ], - [ - 4.6706588, - 51.9843105 - ], - [ - 4.6706588, - 51.9843105 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "Afvalkokers", - "imagery": "osm", - "language": "nl" - }, - "id": 103987605 - } - }, - { - "id": 103987479, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6699349, - 51.9811869 - ], - [ - 4.6702266, - 51.9811869 - ], - [ - 4.6702266, - 51.9822092 - ], - [ - 4.6699349, - 51.9822092 - ], - [ - 4.6699349, - 51.9811869 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "Afvalkokers", - "imagery": "osm", - "language": "nl" - }, - "id": 103987479 - } - }, - { - "id": 103980048, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 123.8811828, - 10.2990897 - ], - [ - 123.8812311, - 10.2990897 - ], - [ - 123.8812311, - 10.2991016 - ], - [ - 123.8811828, - 10.2991016 - ], - [ - 123.8811828, - 10.2990897 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 103980048 - } - }, - { - "id": 103978229, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 123.8890865, - 10.3104138 - ], - [ - 123.8892925, - 10.3104138 - ], - [ - 123.8892925, - 10.3107007 - ], - [ - 123.8890865, - 10.3107007 - ], - [ - 123.8890865, - 10.3104138 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 103978229 - } - }, - { - "id": 103977483, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.366381, - 47.6851819 - ], - [ - -122.366381, - 47.6851819 - ], - [ - -122.366381, - 47.6851819 - ], - [ - -122.366381, - 47.6851819 - ], - [ - -122.366381, - 47.6851819 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103977483 - } - }, - { - "id": 103976357, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -6.6169446, - 41.423333 - ], - [ - -6.6169446, - 41.423333 - ], - [ - -6.6169446, - 41.423333 - ], - [ - -6.6169446, - 41.423333 - ], - [ - -6.6169446, - 41.423333 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103976357 - } - }, - { - "id": 103975090, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.3735011, - 47.6815637 - ], - [ - -122.371635, - 47.6815637 - ], - [ - -122.371635, - 47.6817718 - ], - [ - -122.3735011, - 47.6817718 - ], - [ - -122.3735011, - 47.6815637 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103975090 - } - }, - { - "id": 103973538, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.1075186, - 47.1630492 - ], - [ - 8.1075186, - 47.1630492 - ], - [ - 8.1075186, - 47.1630492 - ], - [ - 8.1075186, - 47.1630492 - ], - [ - 8.1075186, - 47.1630492 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "pingpong", - "imagery": "osm", - "language": "nl" - }, - "id": 103973538 - } - }, - { - "id": 103971314, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3708686, - 51.0995925 - ], - [ - 3.3710257, - 51.0995925 - ], - [ - 3.3710257, - 51.0996901 - ], - [ - 3.3708686, - 51.0996901 - ], - [ - 3.3708686, - 51.0995925 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 103971314 - } - }, - { - "id": 103969136, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3724671, - 51.027114 - ], - [ - 5.4243155, - 51.027114 - ], - [ - 5.4243155, - 51.0319161 - ], - [ - 5.3724671, - 51.0319161 - ], - [ - 5.3724671, - 51.027114 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 103969136 - } - }, - { - "id": 103967153, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3892071, - 50.9775205 - ], - [ - 4.3892071, - 50.9775205 - ], - [ - 4.3892071, - 50.9775205 - ], - [ - 4.3892071, - 50.9775205 - ], - [ - 4.3892071, - 50.9775205 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fritures", - "imagery": "osm", - "language": "nl" - }, - "id": 103967153 - } - }, - { - "id": 103962843, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1038638, - 51.0123494 - ], - [ - 4.1173582, - 51.0123494 - ], - [ - 4.1173582, - 51.0516978 - ], - [ - 4.1038638, - 51.0516978 - ], - [ - 4.1038638, - 51.0123494 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "AGIV", - "language": "en" - }, - "id": 103962843 - } - }, - { - "id": 103955246, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3306748, - 50.9963862 - ], - [ - 3.3306748, - 50.9963862 - ], - [ - 3.3306748, - 50.9963862 - ], - [ - 3.3306748, - 50.9963862 - ], - [ - 3.3306748, - 50.9963862 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103955246 - } - }, - { - "id": 103954692, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0445872, - 14.5526498 - ], - [ - 121.0445939, - 14.5526498 - ], - [ - 121.0445939, - 14.5526823 - ], - [ - 121.0445872, - 14.5526823 - ], - [ - 121.0445872, - 14.5526498 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103954692 - } - }, - { - "id": 103954376, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6591249, - 51.9798686 - ], - [ - 4.6751896, - 51.9798686 - ], - [ - 4.6751896, - 51.9927237 - ], - [ - 4.6591249, - 51.9927237 - ], - [ - 4.6591249, - 51.9798686 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "Afvalkokers", - "imagery": "osm", - "language": "nl" - }, - "id": 103954376 - } - }, - { - "id": 103954078, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.8355383, - 48.0713649 - ], - [ - 11.8355383, - 48.0713649 - ], - [ - 11.8355383, - 48.0713649 - ], - [ - 11.8355383, - 48.0713649 - ], - [ - 11.8355383, - 48.0713649 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 103954078 - } - }, - { - "id": 103947055, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.5989388, - 51.929751 - ], - [ - 7.5989388, - 51.929751 - ], - [ - 7.5989388, - 51.929751 - ], - [ - 7.5989388, - 51.929751 - ], - [ - 7.5989388, - 51.929751 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 103947055 - } - }, - { - "id": 103946394, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6064633, - 51.958484 - ], - [ - 4.6205181, - 51.958484 - ], - [ - 4.6205181, - 51.963423 - ], - [ - 4.6064633, - 51.963423 - ], - [ - 4.6064633, - 51.958484 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "Afvalkokers", - "imagery": "osm", - "language": "nl" - }, - "id": 103946394 - } - }, - { - "id": 103945261, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 120.5953427, - 14.1342946 - ], - [ - 121.0449976, - 14.1342946 - ], - [ - 121.0449976, - 14.6344343 - ], - [ - 120.5953427, - 14.6344343 - ], - [ - 120.5953427, - 14.1342946 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 103945261 - } - }, - { - "id": 103942970, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7633237, - -34.657805 - ], - [ - -58.7633237, - -34.657805 - ], - [ - -58.7633237, - -34.657805 - ], - [ - -58.7633237, - -34.657805 - ], - [ - -58.7633237, - -34.657805 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "railwayarg", - "imagery": "EsriWorldImagery", - "language": "es" - }, - "id": 103942970 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2021-6.json b/Docs/Tools/stats/stats.2021-6.json deleted file mode 100644 index 1c88d3f248..0000000000 --- a/Docs/Tools/stats/stats.2021-6.json +++ /dev/null @@ -1,32413 +0,0 @@ -{ - "features": [ - { - "id": 107226511, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3795404, - 50.8534846 - ], - [ - 4.3795404, - 50.8534846 - ], - [ - 4.3795404, - 50.8534846 - ], - [ - 4.3795404, - 50.8534846 - ], - [ - 4.3795404, - 50.8534846 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107226511 - } - }, - { - "id": 107225716, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.5759071, - 51.991213 - ], - [ - 12.6432949, - 51.991213 - ], - [ - 12.6432949, - 52.0155849 - ], - [ - 12.5759071, - 52.0155849 - ], - [ - 12.5759071, - 51.991213 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 107225716 - } - }, - { - "id": 107224814, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6540721, - 50.8355539 - ], - [ - 4.9276251, - 50.8355539 - ], - [ - 4.9276251, - 51.3254358 - ], - [ - 4.6540721, - 51.3254358 - ], - [ - 4.6540721, - 50.8355539 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107224814 - } - }, - { - "id": 107222570, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3495708, - 44.5274979 - ], - [ - 11.3495708, - 44.5274979 - ], - [ - 11.3495708, - 44.5274979 - ], - [ - 11.3495708, - 44.5274979 - ], - [ - 11.3495708, - 44.5274979 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107222570 - } - }, - { - "id": 107222299, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2184401, - 41.452736 - ], - [ - 2.2249874, - 41.452736 - ], - [ - 2.2249874, - 41.4611713 - ], - [ - 2.2184401, - 41.4611713 - ], - [ - 2.2184401, - 41.452736 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 107222299 - } - }, - { - "id": 107221479, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3982776, - 50.8243429 - ], - [ - 4.3982776, - 50.8243429 - ], - [ - 4.3982776, - 50.8243429 - ], - [ - 4.3982776, - 50.8243429 - ], - [ - 4.3982776, - 50.8243429 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 107221479 - } - }, - { - "id": 107220326, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.7927883, - 41.6174611 - ], - [ - -4.7626732, - 41.6174611 - ], - [ - -4.7626732, - 41.6246614 - ], - [ - -4.7927883, - 41.6246614 - ], - [ - -4.7927883, - 41.6174611 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107220326 - } - }, - { - "id": 107212429, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 81.6602933, - 18.3866713 - ], - [ - 81.6643467, - 18.3866713 - ], - [ - 81.6643467, - 18.3921136 - ], - [ - 81.6602933, - 18.3921136 - ], - [ - 81.6602933, - 18.3866713 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 107212429 - } - }, - { - "id": 107205684, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8119657, - 50.978658 - ], - [ - 3.8216055, - 50.978658 - ], - [ - 3.8216055, - 50.9835069 - ], - [ - 3.8119657, - 50.9835069 - ], - [ - 3.8119657, - 50.978658 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/OpenWindPowerMap/OpenWindPowerMap.json", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "Seppe Santens" - }, - "id": 107205684 - } - }, - { - "id": 107175505, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.7101614, - -36.8704582 - ], - [ - 174.7101614, - -36.8704582 - ], - [ - 174.7101614, - -36.8704582 - ], - [ - 174.7101614, - -36.8704582 - ], - [ - 174.7101614, - -36.8704582 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107175505 - } - }, - { - "id": 107173275, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.3844214, - 48.7058935 - ], - [ - 2.3898722, - 48.7058935 - ], - [ - 2.3898722, - 48.7089923 - ], - [ - 2.3844214, - 48.7089923 - ], - [ - 2.3844214, - 48.7058935 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "fr", - "theme-creator": "Midgard" - }, - "id": 107173275 - } - }, - { - "id": 107167852, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.7759992, - 41.6278924 - ], - [ - -4.7759992, - 41.6278924 - ], - [ - -4.7759992, - 41.6278924 - ], - [ - -4.7759992, - 41.6278924 - ], - [ - -4.7759992, - 41.6278924 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "PNOA-Spain-TMS", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107167852 - } - }, - { - "id": 107166629, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.746409, - 50.7990329 - ], - [ - 3.4467402, - 50.7990329 - ], - [ - 3.4467402, - 51.141158 - ], - [ - 2.746409, - 51.141158 - ], - [ - 2.746409, - 50.7990329 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 107166629 - } - }, - { - "id": 107163685, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3552986, - 50.8481911 - ], - [ - 4.3552986, - 50.8481911 - ], - [ - 4.3552986, - 50.8481911 - ], - [ - 4.3552986, - 50.8481911 - ], - [ - 4.3552986, - 50.8481911 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "HDM_HOT", - "language": "en" - }, - "id": 107163685 - } - }, - { - "id": 107160947, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.7783917, - 41.6192628 - ], - [ - -4.7746956, - 41.6192628 - ], - [ - -4.7746956, - 41.6304874 - ], - [ - -4.7783917, - 41.6304874 - ], - [ - -4.7783917, - 41.6192628 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "PNOA-Spain-TMS", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107160947 - } - }, - { - "id": 107153340, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.3029793, - 50.1286858 - ], - [ - 6.3287242, - 50.1286858 - ], - [ - 6.3287242, - 50.1453397 - ], - [ - 6.3029793, - 50.1453397 - ], - [ - 6.3029793, - 50.1286858 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 107153340 - } - }, - { - "id": 107151395, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5529186, - 51.2364152 - ], - [ - 4.5776447, - 51.2364152 - ], - [ - 4.5776447, - 51.3041671 - ], - [ - 4.5529186, - 51.3041671 - ], - [ - 4.5529186, - 51.2364152 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107151395 - } - }, - { - "id": 107146857, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4610474, - 52.5168006 - ], - [ - 13.4610474, - 52.5168006 - ], - [ - 13.4610474, - 52.5168006 - ], - [ - 13.4610474, - 52.5168006 - ], - [ - 13.4610474, - 52.5168006 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "waterpumps", - "imagery": "osm", - "language": "en" - }, - "id": 107146857 - } - }, - { - "id": 107141636, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3433171, - 60.3948088 - ], - [ - 5.3433171, - 60.3948088 - ], - [ - 5.3433171, - 60.3948088 - ], - [ - 5.3433171, - 60.3948088 - ], - [ - 5.3433171, - 60.3948088 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107141636 - } - }, - { - "id": 107115215, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -93.6577859, - 41.7332536 - ], - [ - -93.648222, - 41.7332536 - ], - [ - -93.648222, - 41.736254 - ], - [ - -93.6577859, - 41.736254 - ], - [ - -93.6577859, - 41.7332536 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107115215 - } - }, - { - "id": 107110641, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.0191421, - 49.4062913 - ], - [ - 11.0191421, - 49.4062913 - ], - [ - 11.0191421, - 49.4062913 - ], - [ - 11.0191421, - 49.4062913 - ], - [ - 11.0191421, - 49.4062913 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 107110641 - } - }, - { - "id": 107110151, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.0132982, - 49.4097763 - ], - [ - 11.0132982, - 49.4097763 - ], - [ - 11.0132982, - 49.4097763 - ], - [ - 11.0132982, - 49.4097763 - ], - [ - 11.0132982, - 49.4097763 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107110151 - } - }, - { - "id": 107102352, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.7821286, - 41.622697 - ], - [ - -4.7821286, - 41.622697 - ], - [ - -4.7821286, - 41.622697 - ], - [ - -4.7821286, - 41.622697 - ], - [ - -4.7821286, - 41.622697 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "PNOA-Spain-TMS", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107102352 - } - }, - { - "id": 107102022, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7192304, - 50.8641427 - ], - [ - 4.7241424, - 50.8641427 - ], - [ - 4.7241424, - 50.8674183 - ], - [ - 4.7192304, - 50.8674183 - ], - [ - 4.7192304, - 50.8641427 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 107102022 - } - }, - { - "id": 107096772, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.7997718, - 41.6148739 - ], - [ - -4.7796372, - 41.6148739 - ], - [ - -4.7796372, - 41.622697 - ], - [ - -4.7997718, - 41.622697 - ], - [ - -4.7997718, - 41.6148739 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107096772 - } - }, - { - "id": 107092269, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7469949, - 50.7976986 - ], - [ - 2.7469949, - 50.7976986 - ], - [ - 2.7469949, - 50.7976986 - ], - [ - 2.7469949, - 50.7976986 - ], - [ - 2.7469949, - 50.7976986 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107092269 - } - }, - { - "id": 107091444, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.804531, - 50.6994104 - ], - [ - 5.804531, - 50.6994104 - ], - [ - 5.804531, - 50.6994104 - ], - [ - 5.804531, - 50.6994104 - ], - [ - 5.804531, - 50.6994104 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 107091444 - } - }, - { - "id": 107088207, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1199958, - 52.0723088 - ], - [ - 5.1249395, - 52.0723088 - ], - [ - 5.1249395, - 52.0728346 - ], - [ - 5.1199958, - 52.0728346 - ], - [ - 5.1199958, - 52.0723088 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107088207 - } - }, - { - "id": 107083996, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7457193, - 50.7978641 - ], - [ - 2.7457193, - 50.7978641 - ], - [ - 2.7457193, - 50.7978641 - ], - [ - 2.7457193, - 50.7978641 - ], - [ - 2.7457193, - 50.7978641 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107083996 - } - }, - { - "id": 107078002, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.6214948, - 43.105798 - ], - [ - 1.6214948, - 43.105798 - ], - [ - 1.6214948, - 43.105798 - ], - [ - 1.6214948, - 43.105798 - ], - [ - 1.6214948, - 43.105798 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 107078002 - } - }, - { - "id": 107073450, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.8303841, - 50.9141497 - ], - [ - -1.7005596, - 50.9141497 - ], - [ - -1.7005596, - 51.0809963 - ], - [ - -1.8303841, - 51.0809963 - ], - [ - -1.8303841, - 50.9141497 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107073450 - } - }, - { - "id": 107069393, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3970416, - 50.8772532 - ], - [ - 4.3997656, - 50.8772532 - ], - [ - 4.3997656, - 50.8781154 - ], - [ - 4.3970416, - 50.8781154 - ], - [ - 4.3970416, - 50.8772532 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "fietsstraten", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107069393 - } - }, - { - "id": 107057978, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.7962859, - 41.6178466 - ], - [ - -4.7951862, - 41.6178466 - ], - [ - -4.7951862, - 41.6181935 - ], - [ - -4.7962859, - 41.6181935 - ], - [ - -4.7962859, - 41.6178466 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107057978 - } - }, - { - "id": 107051089, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7286759, - 50.8606922 - ], - [ - 4.7896005, - 50.8606922 - ], - [ - 4.7896005, - 50.8736831 - ], - [ - 4.7286759, - 50.8736831 - ], - [ - 4.7286759, - 50.8606922 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 107051089 - } - }, - { - "id": 107048155, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2364729, - 41.4426012 - ], - [ - 2.2428727, - 41.4426012 - ], - [ - 2.2428727, - 41.4478679 - ], - [ - 2.2364729, - 41.4478679 - ], - [ - 2.2364729, - 41.4426012 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 107048155 - } - }, - { - "id": 107042682, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -6.2089359, - 53.2957435 - ], - [ - -6.2089359, - 53.2957435 - ], - [ - -6.2089359, - 53.2957435 - ], - [ - -6.2089359, - 53.2957435 - ], - [ - -6.2089359, - 53.2957435 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107042682 - } - }, - { - "id": 107038209, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -6.2178975, - 53.2956951 - ], - [ - -6.2178975, - 53.2956951 - ], - [ - -6.2178975, - 53.2956951 - ], - [ - -6.2178975, - 53.2956951 - ], - [ - -6.2178975, - 53.2956951 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 107038209 - } - }, - { - "id": 107037475, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0620822, - 51.077856 - ], - [ - 3.0620822, - 51.077856 - ], - [ - 3.0620822, - 51.077856 - ], - [ - 3.0620822, - 51.077856 - ], - [ - 3.0620822, - 51.077856 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "AGIV10cm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107037475 - } - }, - { - "id": 107037393, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0619696, - 51.0778931 - ], - [ - 3.0619696, - 51.0778931 - ], - [ - 3.0619696, - 51.0778931 - ], - [ - 3.0619696, - 51.0778931 - ], - [ - 3.0619696, - 51.0778931 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "AGIV10cm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107037393 - } - }, - { - "id": 107035399, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0502295, - 51.0771769 - ], - [ - 3.0502295, - 51.0771769 - ], - [ - 3.0502295, - 51.0771769 - ], - [ - 3.0502295, - 51.0771769 - ], - [ - 3.0502295, - 51.0771769 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 107035399 - } - }, - { - "id": 107034753, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0618511, - 51.0775862 - ], - [ - 3.0618511, - 51.0775862 - ], - [ - 3.0618511, - 51.0775862 - ], - [ - 3.0618511, - 51.0775862 - ], - [ - 3.0618511, - 51.0775862 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 107034753 - } - }, - { - "id": 107032250, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 18.4103184, - 54.4411876 - ], - [ - 18.4112285, - 54.4411876 - ], - [ - 18.4112285, - 54.441776 - ], - [ - 18.4103184, - 54.441776 - ], - [ - 18.4103184, - 54.4411876 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107032250 - } - }, - { - "id": 107027382, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2284263, - 41.4341847 - ], - [ - 2.2434424, - 41.4341847 - ], - [ - 2.2434424, - 41.4471504 - ], - [ - 2.2284263, - 41.4471504 - ], - [ - 2.2284263, - 41.4341847 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 107027382 - } - }, - { - "id": 107000974, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9728638, - 52.3336624 - ], - [ - 4.9728638, - 52.3336624 - ], - [ - 4.9728638, - 52.3336624 - ], - [ - 4.9728638, - 52.3336624 - ], - [ - 4.9728638, - 52.3336624 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107000974 - } - }, - { - "id": 106999343, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2419722, - 41.4413183 - ], - [ - 2.242745, - 41.4413183 - ], - [ - 2.242745, - 41.4429393 - ], - [ - 2.2419722, - 41.4429393 - ], - [ - 2.2419722, - 41.4413183 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 106999343 - } - }, - { - "id": 106996980, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.6074327, - 51.9290742 - ], - [ - 7.6090873, - 51.9290742 - ], - [ - 7.6090873, - 51.9292731 - ], - [ - 7.6074327, - 51.9292731 - ], - [ - 7.6074327, - 51.9290742 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "benches", - "imagery": "osm", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 106996980 - } - }, - { - "id": 106994817, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.8011012, - 41.620183 - ], - [ - -4.7908883, - 41.620183 - ], - [ - -4.7908883, - 41.6241876 - ], - [ - -4.8011012, - 41.6241876 - ], - [ - -4.8011012, - 41.620183 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 106994817 - } - }, - { - "id": 106994743, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.108259, - 52.0950938 - ], - [ - 5.108259, - 52.0950938 - ], - [ - 5.108259, - 52.0950938 - ], - [ - 5.108259, - 52.0950938 - ], - [ - 5.108259, - 52.0950938 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106994743 - } - }, - { - "id": 106994630, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1078083, - 52.0960307 - ], - [ - 5.1078083, - 52.0960307 - ], - [ - 5.1078083, - 52.0960307 - ], - [ - 5.1078083, - 52.0960307 - ], - [ - 5.1078083, - 52.0960307 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106994630 - } - }, - { - "id": 106992939, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1177616, - 52.0859755 - ], - [ - 5.1204953, - 52.0859755 - ], - [ - 5.1204953, - 52.0898285 - ], - [ - 5.1177616, - 52.0898285 - ], - [ - 5.1177616, - 52.0859755 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106992939 - } - }, - { - "id": 106992587, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.8012173, - 41.6148739 - ], - [ - -4.7977265, - 41.6148739 - ], - [ - -4.7977265, - 41.6165233 - ], - [ - -4.8012173, - 41.6165233 - ], - [ - -4.8012173, - 41.6148739 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 106992587 - } - }, - { - "id": 106992507, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1410035, - 51.0276438 - ], - [ - 3.1410035, - 51.0276438 - ], - [ - 3.1410035, - 51.0276438 - ], - [ - 3.1410035, - 51.0276438 - ], - [ - 3.1410035, - 51.0276438 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106992507 - } - }, - { - "id": 106992154, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.0934908, - 50.4049327 - ], - [ - 8.0934908, - 50.4049327 - ], - [ - 8.0934908, - 50.4049327 - ], - [ - 8.0934908, - 50.4049327 - ], - [ - 8.0934908, - 50.4049327 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 106992154 - } - }, - { - "id": 106986341, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1330481, - 51.0266148 - ], - [ - 3.1330481, - 51.0266148 - ], - [ - 3.1330481, - 51.0266148 - ], - [ - 3.1330481, - 51.0266148 - ], - [ - 3.1330481, - 51.0266148 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fritures", - "imagery": "osm", - "language": "en" - }, - "id": 106986341 - } - }, - { - "id": 106977731, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.8012383, - 41.6177272 - ], - [ - -4.7974627, - 41.6177272 - ], - [ - -4.7974627, - 41.620631 - ], - [ - -4.8012383, - 41.620631 - ], - [ - -4.8012383, - 41.6177272 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 106977731 - } - }, - { - "id": 106974457, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1164596, - 52.0894472 - ], - [ - 5.117488, - 52.0894472 - ], - [ - 5.117488, - 52.0896639 - ], - [ - 5.1164596, - 52.0896639 - ], - [ - 5.1164596, - 52.0894472 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106974457 - } - }, - { - "id": 106971808, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8992688, - 51.1283964 - ], - [ - 4.8992688, - 51.1283964 - ], - [ - 4.8992688, - 51.1283964 - ], - [ - 4.8992688, - 51.1283964 - ], - [ - 4.8992688, - 51.1283964 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "nl" - }, - "id": 106971808 - } - }, - { - "id": 106970741, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7658227, - 48.1037882 - ], - [ - 11.7858664, - 48.1037882 - ], - [ - 11.7858664, - 48.1128575 - ], - [ - 11.7658227, - 48.1128575 - ], - [ - 11.7658227, - 48.1037882 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "benches", - "imagery": "osm", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 106970741 - } - }, - { - "id": 106969091, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9019891, - 51.12581 - ], - [ - 4.9020186, - 51.12581 - ], - [ - 4.9020186, - 51.1258521 - ], - [ - 4.9019891, - 51.1258521 - ], - [ - 4.9019891, - 51.12581 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 106969091 - } - }, - { - "id": 106968916, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1197919, - 52.0925035 - ], - [ - 5.1197919, - 52.0925035 - ], - [ - 5.1197919, - 52.0925035 - ], - [ - 5.1197919, - 52.0925035 - ], - [ - 5.1197919, - 52.0925035 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106968916 - } - }, - { - "id": 106968408, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3138316, - 60.3951399 - ], - [ - 5.3149394, - 60.3951399 - ], - [ - 5.3149394, - 60.3969845 - ], - [ - 5.3138316, - 60.3969845 - ], - [ - 5.3138316, - 60.3951399 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106968408 - } - }, - { - "id": 106968072, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9575567, - 51.1203863 - ], - [ - 2.9575567, - 51.1203863 - ], - [ - 2.9575567, - 51.1203863 - ], - [ - 2.9575567, - 51.1203863 - ], - [ - 2.9575567, - 51.1203863 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106968072 - } - }, - { - "id": 106956961, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9014282, - 51.1112334 - ], - [ - 4.915833, - 51.1112334 - ], - [ - 4.915833, - 51.1259295 - ], - [ - 4.9014282, - 51.1259295 - ], - [ - 4.9014282, - 51.1112334 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "nl" - }, - "id": 106956961 - } - }, - { - "id": 106946936, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.8627349, - 51.4088713 - ], - [ - 6.8657597, - 51.4088713 - ], - [ - 6.8657597, - 51.4090292 - ], - [ - 6.8627349, - 51.4090292 - ], - [ - 6.8627349, - 51.4088713 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "benches", - "imagery": "osm", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 106946936 - } - }, - { - "id": 106944340, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4467402, - 51.0917122 - ], - [ - 3.4467402, - 51.0917122 - ], - [ - 3.4467402, - 51.0917122 - ], - [ - 3.4467402, - 51.0917122 - ], - [ - 3.4467402, - 51.0917122 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 106944340 - } - }, - { - "id": 106929887, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7878928, - -34.6510406 - ], - [ - -58.7878928, - -34.6510406 - ], - [ - -58.7878928, - -34.6510406 - ], - [ - -58.7878928, - -34.6510406 - ], - [ - -58.7878928, - -34.6510406 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "RailwaySignals", - "imagery": "osm", - "language": "es" - }, - "id": 106929887 - } - }, - { - "id": 106922300, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3264648, - 50.8772372 - ], - [ - 4.3264648, - 50.8772372 - ], - [ - 4.3264648, - 50.8772372 - ], - [ - 4.3264648, - 50.8772372 - ], - [ - 4.3264648, - 50.8772372 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106922300 - } - }, - { - "id": 106922165, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3264058, - 50.8772236 - ], - [ - 4.3264058, - 50.8772236 - ], - [ - 4.3264058, - 50.8772236 - ], - [ - 4.3264058, - 50.8772236 - ], - [ - 4.3264058, - 50.8772236 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 106922165 - } - }, - { - "id": 106917819, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5283552, - 50.4027828 - ], - [ - 5.5351853, - 50.4027828 - ], - [ - 5.5351853, - 50.4050948 - ], - [ - 5.5283552, - 50.4050948 - ], - [ - 5.5283552, - 50.4027828 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 106917819 - } - }, - { - "id": 106916939, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.914287, - 52.3688819 - ], - [ - 4.914287, - 52.3688819 - ], - [ - 4.914287, - 52.3688819 - ], - [ - 4.914287, - 52.3688819 - ], - [ - 4.914287, - 52.3688819 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106916939 - } - }, - { - "id": 106915283, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3320802, - 50.9341511 - ], - [ - 5.3320802, - 50.9341511 - ], - [ - 5.3320802, - 50.9341511 - ], - [ - 5.3320802, - 50.9341511 - ], - [ - 5.3320802, - 50.9341511 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fritures", - "imagery": "osm", - "language": "en" - }, - "id": 106915283 - } - }, - { - "id": 106914677, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.8179543, - 41.6096268 - ], - [ - -4.8029378, - 41.6096268 - ], - [ - -4.8029378, - 41.6177538 - ], - [ - -4.8179543, - 41.6177538 - ], - [ - -4.8179543, - 41.6096268 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 106914677 - } - }, - { - "id": 106903098, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7214746, - -34.6653664 - ], - [ - -58.7214746, - -34.6653664 - ], - [ - -58.7214746, - -34.6653664 - ], - [ - -58.7214746, - -34.6653664 - ], - [ - -58.7214746, - -34.6653664 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 106903098 - } - }, - { - "id": 106902414, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.8994036, - 48.3401015 - ], - [ - 10.8994036, - 48.3401015 - ], - [ - 10.8994036, - 48.3401015 - ], - [ - 10.8994036, - 48.3401015 - ], - [ - 10.8994036, - 48.3401015 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 106902414 - } - }, - { - "id": 106899042, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.029673, - 50.9669615 - ], - [ - 4.029673, - 50.9669615 - ], - [ - 4.029673, - 50.9669615 - ], - [ - 4.029673, - 50.9669615 - ], - [ - 4.029673, - 50.9669615 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106899042 - } - }, - { - "id": 106897288, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3460491, - 44.4971024 - ], - [ - 11.3460491, - 44.4971024 - ], - [ - 11.3460491, - 44.4971024 - ], - [ - 11.3460491, - 44.4971024 - ], - [ - 11.3460491, - 44.4971024 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106897288 - } - }, - { - "id": 106863963, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -77.1497646, - 38.8830742 - ], - [ - -77.1497646, - 38.8830742 - ], - [ - -77.1497646, - 38.8830742 - ], - [ - -77.1497646, - 38.8830742 - ], - [ - -77.1497646, - 38.8830742 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "VGIN-Imagery_WM", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 106863963 - } - }, - { - "id": 106861737, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9385411, - 42.6799724 - ], - [ - 2.9385411, - 42.6799724 - ], - [ - 2.9385411, - 42.6799724 - ], - [ - 2.9385411, - 42.6799724 - ], - [ - 2.9385411, - 42.6799724 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 106861737 - } - }, - { - "id": 106858650, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.0071935, - 43.3302915 - ], - [ - -3.0044869, - 43.3302915 - ], - [ - -3.0044869, - 43.3320089 - ], - [ - -3.0071935, - 43.3320089 - ], - [ - -3.0071935, - 43.3302915 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 106858650 - } - }, - { - "id": 106858558, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.0190117, - 43.3267689 - ], - [ - -3.0085394, - 43.3267689 - ], - [ - -3.0085394, - 43.3287646 - ], - [ - -3.0190117, - 43.3287646 - ], - [ - -3.0190117, - 43.3267689 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106858558 - } - }, - { - "id": 106857949, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3138316, - 60.3951399 - ], - [ - 5.324235, - 60.3951399 - ], - [ - 5.324235, - 60.4057321 - ], - [ - 5.3138316, - 60.4057321 - ], - [ - 5.3138316, - 60.3951399 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106857949 - } - }, - { - "id": 106857350, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3546268, - 50.8540813 - ], - [ - 3.3551035, - 50.8540813 - ], - [ - 3.3551035, - 50.8562692 - ], - [ - 3.3546268, - 50.8562692 - ], - [ - 3.3546268, - 50.8540813 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fietsstraten", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106857350 - } - }, - { - "id": 106856805, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4311938, - 52.5008044 - ], - [ - 13.4660967, - 52.5008044 - ], - [ - 13.4660967, - 52.5031015 - ], - [ - 13.4311938, - 52.5031015 - ], - [ - 13.4311938, - 52.5008044 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "waterpumps", - "imagery": "osm", - "language": "en" - }, - "id": 106856805 - } - }, - { - "id": 106852236, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.8191379, - 41.6161639 - ], - [ - -4.8105992, - 41.6161639 - ], - [ - -4.8105992, - 41.6194105 - ], - [ - -4.8191379, - 41.6194105 - ], - [ - -4.8191379, - 41.6161639 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 106852236 - } - }, - { - "id": 106847962, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4019422, - 50.8327773 - ], - [ - 4.4141398, - 50.8327773 - ], - [ - 4.4141398, - 50.8561018 - ], - [ - 4.4019422, - 50.8561018 - ], - [ - 4.4019422, - 50.8327773 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106847962 - } - }, - { - "id": 106845498, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.588327, - 14.0229388 - ], - [ - 121.5936434, - 14.0229388 - ], - [ - 121.5936434, - 14.0284168 - ], - [ - 121.588327, - 14.0284168 - ], - [ - 121.588327, - 14.0229388 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 106845498 - } - }, - { - "id": 106844386, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 21.0595782, - 52.2233748 - ], - [ - 21.0738032, - 52.2233748 - ], - [ - 21.0738032, - 52.2514832 - ], - [ - 21.0595782, - 52.2514832 - ], - [ - 21.0595782, - 52.2233748 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106844386 - } - }, - { - "id": 106843249, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.8745216, - 45.8710111 - ], - [ - 10.8745216, - 45.8710111 - ], - [ - 10.8745216, - 45.8710111 - ], - [ - 10.8745216, - 45.8710111 - ], - [ - 10.8745216, - 45.8710111 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 106843249 - } - }, - { - "id": 106830043, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4726853, - 52.5349132 - ], - [ - 13.4972952, - 52.5349132 - ], - [ - 13.4972952, - 52.5435533 - ], - [ - 13.4726853, - 52.5435533 - ], - [ - 13.4726853, - 52.5349132 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "waterpumps", - "imagery": "osm", - "language": "en" - }, - "id": 106830043 - } - }, - { - "id": 106827156, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2634724, - 50.8306239 - ], - [ - 3.2634724, - 50.8306239 - ], - [ - 3.2634724, - 50.8306239 - ], - [ - 3.2634724, - 50.8306239 - ], - [ - 3.2634724, - 50.8306239 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106827156 - } - }, - { - "id": 106816614, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.0168216, - 43.3268002 - ], - [ - -3.0168216, - 43.3268002 - ], - [ - -3.0168216, - 43.3268002 - ], - [ - -3.0168216, - 43.3268002 - ], - [ - -3.0168216, - 43.3268002 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106816614 - } - }, - { - "id": 106812639, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.7675936, - 52.4184735 - ], - [ - 0.7675936, - 52.4184735 - ], - [ - 0.7675936, - 52.4184735 - ], - [ - 0.7675936, - 52.4184735 - ], - [ - 0.7675936, - 52.4184735 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106812639 - } - }, - { - "id": 106808369, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7880218, - -34.6511125 - ], - [ - -58.7874372, - -34.6511125 - ], - [ - -58.7874372, - -34.6509317 - ], - [ - -58.7880218, - -34.6509317 - ], - [ - -58.7880218, - -34.6511125 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "RailwaySignals", - "imagery": "osm", - "language": "es" - }, - "id": 106808369 - } - }, - { - "id": 106801712, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.7577358, - -33.4934159 - ], - [ - -70.7576623, - -33.4934159 - ], - [ - -70.7576623, - -33.4931619 - ], - [ - -70.7577358, - -33.4931619 - ], - [ - -70.7577358, - -33.4934159 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 106801712 - } - }, - { - "id": 106800750, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.0922398, - 50.3941648 - ], - [ - -4.0916209, - 50.3941648 - ], - [ - -4.0916209, - 50.394672 - ], - [ - -4.0922398, - 50.394672 - ], - [ - -4.0922398, - 50.3941648 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106800750 - } - }, - { - "id": 106798030, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1458612, - 52.2141956 - ], - [ - 0.1458612, - 52.2141956 - ], - [ - 0.1458612, - 52.2141956 - ], - [ - 0.1458612, - 52.2141956 - ], - [ - 0.1458612, - 52.2141956 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 106798030 - } - }, - { - "id": 106794873, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.7170866, - 52.0587911 - ], - [ - -2.7170866, - 52.0587911 - ], - [ - -2.7170866, - 52.0587911 - ], - [ - -2.7170866, - 52.0587911 - ], - [ - -2.7170866, - 52.0587911 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106794873 - } - }, - { - "id": 106791031, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5283552, - 50.4027828 - ], - [ - 5.5351853, - 50.4027828 - ], - [ - 5.5351853, - 50.4050948 - ], - [ - 5.5283552, - 50.4050948 - ], - [ - 5.5283552, - 50.4027828 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/units/", - "theme": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 106791031 - } - }, - { - "id": 106788186, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.5180982, - 45.3491915 - ], - [ - 0.5180982, - 45.3491915 - ], - [ - 0.5180982, - 45.3491915 - ], - [ - 0.5180982, - 45.3491915 - ], - [ - 0.5180982, - 45.3491915 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "climbing", - "imagery": "osm", - "language": "fr", - "theme-creator": "Christian Neumann " - }, - "id": 106788186 - } - }, - { - "id": 106783109, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6910066, - 51.0570655 - ], - [ - 3.7425934, - 51.0570655 - ], - [ - 3.7425934, - 51.0902428 - ], - [ - 3.6910066, - 51.0902428 - ], - [ - 3.6910066, - 51.0570655 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106783109 - } - }, - { - "id": 106778953, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.745466, - 52.4127377 - ], - [ - 0.7549363, - 52.4127377 - ], - [ - 0.7549363, - 52.41595 - ], - [ - 0.745466, - 52.41595 - ], - [ - 0.745466, - 52.4127377 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106778953 - } - }, - { - "id": 106771302, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.6163368, - 51.1870937 - ], - [ - -0.6101838, - 51.1870937 - ], - [ - -0.6101838, - 51.1879814 - ], - [ - -0.6163368, - 51.1879814 - ], - [ - -0.6163368, - 51.1870937 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "maps", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106771302 - } - }, - { - "id": 106771234, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.9964623, - 51.4653911 - ], - [ - 6.998291, - 51.4653911 - ], - [ - 6.998291, - 51.468034 - ], - [ - 6.9964623, - 51.468034 - ], - [ - 6.9964623, - 51.4653911 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "benches", - "imagery": "osm", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 106771234 - } - }, - { - "id": 106752218, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 28.301792, - 48.1124556 - ], - [ - 28.3173016, - 48.1124556 - ], - [ - 28.3173016, - 48.1443131 - ], - [ - 28.301792, - 48.1443131 - ], - [ - 28.301792, - 48.1124556 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 106752218 - } - }, - { - "id": 106746369, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7879035, - -34.6511488 - ], - [ - -58.7878928, - -34.6511488 - ], - [ - -58.7878928, - -34.6510406 - ], - [ - -58.7879035, - -34.6510406 - ], - [ - -58.7879035, - -34.6511488 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "RailwaySignals", - "imagery": "osm", - "language": "es" - }, - "id": 106746369 - } - }, - { - "id": 106743321, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.787923, - -34.650952 - ], - [ - -58.787923, - -34.650952 - ], - [ - -58.787923, - -34.650952 - ], - [ - -58.787923, - -34.650952 - ], - [ - -58.787923, - -34.650952 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 106743321 - } - }, - { - "id": 106740533, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.5802946, - -33.5907874 - ], - [ - -70.5801885, - -33.5907874 - ], - [ - -70.5801885, - -33.5907808 - ], - [ - -70.5802946, - -33.5907808 - ], - [ - -70.5802946, - -33.5907874 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 106740533 - } - }, - { - "id": 106736580, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.8200802, - 41.6171749 - ], - [ - -4.8018838, - 41.6171749 - ], - [ - -4.8018838, - 41.6189677 - ], - [ - -4.8200802, - 41.6189677 - ], - [ - -4.8200802, - 41.6171749 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 106736580 - } - }, - { - "id": 106733641, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9701365, - 50.2936916 - ], - [ - 5.1913966, - 50.2936916 - ], - [ - 5.1913966, - 50.3044575 - ], - [ - 4.9701365, - 50.3044575 - ], - [ - 4.9701365, - 50.2936916 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "windpower", - "imagery": "osm", - "language": "en", - "theme-creator": "Seppe Santens" - }, - "id": 106733641 - } - }, - { - "id": 106731786, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -81.4565247, - 39.4148476 - ], - [ - -81.4565247, - 39.4148476 - ], - [ - -81.4565247, - 39.4148476 - ], - [ - -81.4565247, - 39.4148476 - ], - [ - -81.4565247, - 39.4148476 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106731786 - } - }, - { - "id": 106731770, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3122652, - 50.7261627 - ], - [ - 4.3122652, - 50.7261627 - ], - [ - 4.3122652, - 50.7261627 - ], - [ - 4.3122652, - 50.7261627 - ], - [ - 4.3122652, - 50.7261627 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 106731770 - } - }, - { - "id": 106731136, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2272941, - 41.4364434 - ], - [ - 2.2349525, - 41.4364434 - ], - [ - 2.2349525, - 41.4433471 - ], - [ - 2.2272941, - 41.4433471 - ], - [ - 2.2272941, - 41.4364434 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 106731136 - } - }, - { - "id": 106729600, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.6122441, - 51.4418972 - ], - [ - -1.600859, - 51.4418972 - ], - [ - -1.600859, - 51.4448751 - ], - [ - -1.6122441, - 51.4448751 - ], - [ - -1.6122441, - 51.4418972 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106729600 - } - }, - { - "id": 106729452, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.7814537, - 51.4805542 - ], - [ - -1.5570332, - 51.4805542 - ], - [ - -1.5570332, - 51.561692 - ], - [ - -1.7814537, - 51.561692 - ], - [ - -1.7814537, - 51.4805542 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 106729452 - } - }, - { - "id": 106727082, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.8155435, - 41.6152885 - ], - [ - -4.7915411, - 41.6152885 - ], - [ - -4.7915411, - 41.6185504 - ], - [ - -4.8155435, - 41.6185504 - ], - [ - -4.8155435, - 41.6152885 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 106727082 - } - }, - { - "id": 106712647, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 17.1108171, - 48.1439458 - ], - [ - 17.1108171, - 48.1439458 - ], - [ - 17.1108171, - 48.1439458 - ], - [ - 17.1108171, - 48.1439458 - ], - [ - 17.1108171, - 48.1439458 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 106712647 - } - }, - { - "id": 106702422, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.395986, - 50.8565891 - ], - [ - 3.395986, - 50.8565891 - ], - [ - 3.395986, - 50.8565891 - ], - [ - 3.395986, - 50.8565891 - ], - [ - 3.395986, - 50.8565891 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106702422 - } - }, - { - "id": 106699081, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7785003, - 51.014973 - ], - [ - 3.7785003, - 51.014973 - ], - [ - 3.7785003, - 51.014973 - ], - [ - 3.7785003, - 51.014973 - ], - [ - 3.7785003, - 51.014973 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106699081 - } - }, - { - "id": 106696782, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3276, - 50.8414423 - ], - [ - 4.3294529, - 50.8414423 - ], - [ - 4.3294529, - 50.842795 - ], - [ - 4.3276, - 50.842795 - ], - [ - 4.3276, - 50.8414423 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/markets/markets.json", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 106696782 - } - }, - { - "id": 106682441, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0627553, - 51.1631967 - ], - [ - 5.0627553, - 51.1631967 - ], - [ - 5.0627553, - 51.1631967 - ], - [ - 5.0627553, - 51.1631967 - ], - [ - 5.0627553, - 51.1631967 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "fritures", - "imagery": "osm", - "language": "en" - }, - "id": 106682441 - } - }, - { - "id": 106678215, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4806838, - 51.0216314 - ], - [ - 4.4806838, - 51.0216314 - ], - [ - 4.4806838, - 51.0216314 - ], - [ - 4.4806838, - 51.0216314 - ], - [ - 4.4806838, - 51.0216314 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "facadegardens", - "imagery": "osm", - "language": "nl", - "theme-creator": "joost schouppe; stla" - }, - "id": 106678215 - } - }, - { - "id": 106677882, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5183164, - 50.9798866 - ], - [ - 3.5183164, - 50.9798866 - ], - [ - 3.5183164, - 50.9798866 - ], - [ - 3.5183164, - 50.9798866 - ], - [ - 3.5183164, - 50.9798866 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106677882 - } - }, - { - "id": 106672801, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.8748876, - 53.239025 - ], - [ - 11.8748876, - 53.239025 - ], - [ - 11.8748876, - 53.239025 - ], - [ - 11.8748876, - 53.239025 - ], - [ - 11.8748876, - 53.239025 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 106672801 - } - }, - { - "id": 106669409, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5218581, - 47.4144018 - ], - [ - 8.5259521, - 47.4144018 - ], - [ - 8.5259521, - 47.4149684 - ], - [ - 8.5218581, - 47.4149684 - ], - [ - 8.5218581, - 47.4144018 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 106669409 - } - }, - { - "id": 106666526, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.2602001, - 59.7173728 - ], - [ - 10.2602001, - 59.7173728 - ], - [ - 10.2602001, - 59.7173728 - ], - [ - 10.2602001, - 59.7173728 - ], - [ - 10.2602001, - 59.7173728 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106666526 - } - }, - { - "id": 106659240, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2347052, - 41.4372961 - ], - [ - 2.2401469, - 41.4372961 - ], - [ - 2.2401469, - 41.4408835 - ], - [ - 2.2347052, - 41.4408835 - ], - [ - 2.2347052, - 41.4372961 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 106659240 - } - }, - { - "id": 106659065, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3604404, - 50.8424905 - ], - [ - 4.3604404, - 50.8424905 - ], - [ - 4.3604404, - 50.8424905 - ], - [ - 4.3604404, - 50.8424905 - ], - [ - 4.3604404, - 50.8424905 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106659065 - } - }, - { - "id": 106656754, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7592565, - 51.0445581 - ], - [ - 3.7592565, - 51.0445581 - ], - [ - 3.7592565, - 51.0445581 - ], - [ - 3.7592565, - 51.0445581 - ], - [ - 3.7592565, - 51.0445581 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 106656754 - } - }, - { - "id": 106645256, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.6474642, - 46.686447 - ], - [ - 6.6474642, - 46.686447 - ], - [ - 6.6474642, - 46.686447 - ], - [ - 6.6474642, - 46.686447 - ], - [ - 6.6474642, - 46.686447 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "aed", - "imagery": "osm", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 106645256 - } - }, - { - "id": 106643640, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4349977, - 50.7657692 - ], - [ - 4.4349977, - 50.7657692 - ], - [ - 4.4349977, - 50.7657692 - ], - [ - 4.4349977, - 50.7657692 - ], - [ - 4.4349977, - 50.7657692 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 106643640 - } - }, - { - "id": 106641633, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3852293, - 50.7594359 - ], - [ - 4.3852293, - 50.7594359 - ], - [ - 4.3852293, - 50.7594359 - ], - [ - 4.3852293, - 50.7594359 - ], - [ - 4.3852293, - 50.7594359 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106641633 - } - }, - { - "id": 106641056, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2124286, - 51.2159055 - ], - [ - 3.2137358, - 51.2159055 - ], - [ - 3.2137358, - 51.2164005 - ], - [ - 3.2124286, - 51.2164005 - ], - [ - 3.2124286, - 51.2159055 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106641056 - } - }, - { - "id": 106639119, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3848941, - 50.8101924 - ], - [ - 4.4305265, - 50.8101924 - ], - [ - 4.4305265, - 50.826911 - ], - [ - 4.3848941, - 50.826911 - ], - [ - 4.3848941, - 50.8101924 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 106639119 - } - }, - { - "id": 106633095, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.0578256, - 53.0770232 - ], - [ - 6.0911223, - 53.0770232 - ], - [ - 6.0911223, - 53.0971492 - ], - [ - 6.0578256, - 53.0971492 - ], - [ - 6.0578256, - 53.0770232 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 106633095 - } - }, - { - "id": 106629351, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2353685, - 41.4389053 - ], - [ - 2.2358971, - 41.4389053 - ], - [ - 2.2358971, - 41.4395739 - ], - [ - 2.2353685, - 41.4395739 - ], - [ - 2.2353685, - 41.4389053 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 106629351 - } - }, - { - "id": 106625656, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.237169, - 41.4364933 - ], - [ - 2.240201, - 41.4364933 - ], - [ - 2.240201, - 41.4382992 - ], - [ - 2.237169, - 41.4382992 - ], - [ - 2.237169, - 41.4364933 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 106625656 - } - }, - { - "id": 106622963, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2572879, - 50.8426534 - ], - [ - 5.2572879, - 50.8426534 - ], - [ - 5.2572879, - 50.8426534 - ], - [ - 5.2572879, - 50.8426534 - ], - [ - 5.2572879, - 50.8426534 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106622963 - } - }, - { - "id": 106614434, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -112.0727415, - 33.4625901 - ], - [ - -112.072741, - 33.4625901 - ], - [ - -112.072741, - 33.4625901 - ], - [ - -112.0727415, - 33.4625901 - ], - [ - -112.0727415, - 33.4625901 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106614434 - } - }, - { - "id": 106608684, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -149.7940966, - 61.1872781 - ], - [ - -149.794096, - 61.1872781 - ], - [ - -149.794096, - 61.1872781 - ], - [ - -149.7940966, - 61.1872781 - ], - [ - -149.7940966, - 61.1872781 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106608684 - } - }, - { - "id": 106605042, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.6645755, - 52.1846388 - ], - [ - 14.6645755, - 52.1846388 - ], - [ - 14.6645755, - 52.1846388 - ], - [ - 14.6645755, - 52.1846388 - ], - [ - 14.6645755, - 52.1846388 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 106605042 - } - }, - { - "id": 106604643, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4277574, - 51.1000062 - ], - [ - 3.4280852, - 51.1000062 - ], - [ - 3.4280852, - 51.1002913 - ], - [ - 3.4277574, - 51.1002913 - ], - [ - 3.4277574, - 51.1000062 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "nl" - }, - "id": 106604643 - } - }, - { - "id": 106595402, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4665137, - 50.3579165 - ], - [ - 5.4665137, - 50.3579165 - ], - [ - 5.4665137, - 50.3579165 - ], - [ - 5.4665137, - 50.3579165 - ], - [ - 5.4665137, - 50.3579165 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 106595402 - } - }, - { - "id": 106594930, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7814314, - 48.1086634 - ], - [ - 11.7814314, - 48.1086634 - ], - [ - 11.7814314, - 48.1086634 - ], - [ - 11.7814314, - 48.1086634 - ], - [ - 11.7814314, - 48.1086634 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 106594930 - } - }, - { - "id": 106583466, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2061136, - 51.1869353 - ], - [ - 3.2820207, - 51.1869353 - ], - [ - 3.2820207, - 51.2458227 - ], - [ - 3.2061136, - 51.2458227 - ], - [ - 3.2061136, - 51.1869353 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106583466 - } - }, - { - "id": 106575401, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8310525, - 50.9814773 - ], - [ - 3.9013681, - 50.9814773 - ], - [ - 3.9013681, - 51.0102693 - ], - [ - 3.8310525, - 51.0102693 - ], - [ - 3.8310525, - 50.9814773 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 106575401 - } - }, - { - "id": 106574955, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1816176, - 51.1931976 - ], - [ - 3.1816176, - 51.1931976 - ], - [ - 3.1816176, - 51.1931976 - ], - [ - 3.1816176, - 51.1931976 - ], - [ - 3.1816176, - 51.1931976 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106574955 - } - }, - { - "id": 106571251, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8046837, - 50.9930165 - ], - [ - 2.8079671, - 50.9930165 - ], - [ - 2.8079671, - 50.9949392 - ], - [ - 2.8046837, - 50.9949392 - ], - [ - 2.8046837, - 50.9930165 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "windpower", - "imagery": "osm", - "language": "en", - "theme-creator": "Seppe Santens" - }, - "id": 106571251 - } - }, - { - "id": 106564027, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.7588237, - -33.4944575 - ], - [ - -70.7588237, - -33.4944575 - ], - [ - -70.7588237, - -33.4944575 - ], - [ - -70.7588237, - -33.4944575 - ], - [ - -70.7588237, - -33.4944575 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 106564027 - } - }, - { - "id": 106554571, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3663627, - 50.839942 - ], - [ - 4.37159, - 50.839942 - ], - [ - 4.37159, - 50.8619012 - ], - [ - 4.3663627, - 50.8619012 - ], - [ - 4.3663627, - 50.839942 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 106554571 - } - }, - { - "id": 106547773, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7240504, - 51.0537634 - ], - [ - 3.7240504, - 51.0537634 - ], - [ - 3.7240504, - 51.0537634 - ], - [ - 3.7240504, - 51.0537634 - ], - [ - 3.7240504, - 51.0537634 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "AGIV", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 106547773 - } - }, - { - "id": 106542885, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.434947, - 50.837722 - ], - [ - 4.459038, - 50.837722 - ], - [ - 4.459038, - 50.848506 - ], - [ - 4.434947, - 50.848506 - ], - [ - 4.434947, - 50.837722 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 106542885 - } - }, - { - "id": 106535621, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1989098, - 51.3088917 - ], - [ - 3.2108872, - 51.3088917 - ], - [ - 3.2108872, - 51.3310859 - ], - [ - 3.1989098, - 51.3310859 - ], - [ - 3.1989098, - 51.3088917 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106535621 - } - }, - { - "id": 106533915, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2483906, - 41.4517054 - ], - [ - 2.2490459, - 41.4517054 - ], - [ - 2.2490459, - 41.4523269 - ], - [ - 2.2483906, - 41.4523269 - ], - [ - 2.2483906, - 41.4517054 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 106533915 - } - }, - { - "id": 106533490, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.6420114, - -34.6519299 - ], - [ - -58.6197112, - -34.6519299 - ], - [ - -58.6197112, - -34.6482947 - ], - [ - -58.6420114, - -34.6482947 - ], - [ - -58.6420114, - -34.6519299 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 106533490 - } - }, - { - "id": 106527618, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.23495, - 41.4405327 - ], - [ - 2.23495, - 41.4405327 - ], - [ - 2.23495, - 41.4405327 - ], - [ - 2.23495, - 41.4405327 - ], - [ - 2.23495, - 41.4405327 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 106527618 - } - }, - { - "id": 106520703, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8874177, - 50.2214528 - ], - [ - 5.1464311, - 50.2214528 - ], - [ - 5.1464311, - 50.4670326 - ], - [ - 4.8874177, - 50.4670326 - ], - [ - 4.8874177, - 50.2214528 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/OpenWindPowerMap/OpenWindPowerMap.json", - "imagery": "SPW_ORTHO_LAST", - "language": "en", - "theme-creator": "Seppe Santens" - }, - "id": 106520703 - } - }, - { - "id": 106516180, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5241119, - 51.1813176 - ], - [ - 3.723354, - 51.1813176 - ], - [ - 3.723354, - 51.2137691 - ], - [ - 3.5241119, - 51.2137691 - ], - [ - 3.5241119, - 51.1813176 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/OpenWindPowerMap/OpenWindPowerMap.json", - "imagery": "osm", - "language": "en", - "theme-creator": "Seppe Santens" - }, - "id": 106516180 - } - }, - { - "id": 106516051, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.0327356, - 53.2451823 - ], - [ - 12.0327356, - 53.2451823 - ], - [ - 12.0327356, - 53.2451823 - ], - [ - 12.0327356, - 53.2451823 - ], - [ - 12.0327356, - 53.2451823 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 106516051 - } - }, - { - "id": 106514955, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1792679, - 51.1880512 - ], - [ - 3.2820207, - 51.1880512 - ], - [ - 3.2820207, - 51.2299432 - ], - [ - 3.1792679, - 51.2299432 - ], - [ - 3.1792679, - 51.1880512 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106514955 - } - }, - { - "id": 106509898, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1810248, - 51.1975359 - ], - [ - 3.1810248, - 51.1975359 - ], - [ - 3.1810248, - 51.1975359 - ], - [ - 3.1810248, - 51.1975359 - ], - [ - 3.1810248, - 51.1975359 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106509898 - } - }, - { - "id": 106505668, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.3632375, - 58.672998 - ], - [ - 16.3640959, - 58.672998 - ], - [ - 16.3640959, - 58.6736157 - ], - [ - 16.3632375, - 58.6736157 - ], - [ - 16.3632375, - 58.672998 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106505668 - } - }, - { - "id": 106496650, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.7372901, - -33.5164925 - ], - [ - -70.7368584, - -33.5164925 - ], - [ - -70.7368584, - -33.5163833 - ], - [ - -70.7372901, - -33.5163833 - ], - [ - -70.7372901, - -33.5164925 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 106496650 - } - }, - { - "id": 106492683, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.6156124, - 51.1860271 - ], - [ - -0.6155021, - 51.1860271 - ], - [ - -0.6155021, - 51.1860783 - ], - [ - -0.6156124, - 51.1860783 - ], - [ - -0.6156124, - 51.1860271 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106492683 - } - }, - { - "id": 106487346, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1982204, - 51.1872852 - ], - [ - 3.1982204, - 51.1872852 - ], - [ - 3.1982204, - 51.1872852 - ], - [ - 3.1982204, - 51.1872852 - ], - [ - 3.1982204, - 51.1872852 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "skateparks", - "imagery": "osm", - "language": "en" - }, - "id": 106487346 - } - }, - { - "id": 106484165, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2200483, - 41.4473258 - ], - [ - 2.2241636, - 41.4473258 - ], - [ - 2.2241636, - 41.4544793 - ], - [ - 2.2200483, - 41.4544793 - ], - [ - 2.2200483, - 41.4473258 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 106484165 - } - }, - { - "id": 106483648, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7827296, - 53.1345328 - ], - [ - 11.7827296, - 53.1345328 - ], - [ - 11.7827296, - 53.1345328 - ], - [ - 11.7827296, - 53.1345328 - ], - [ - 11.7827296, - 53.1345328 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 106483648 - } - }, - { - "id": 106482783, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -149.7236431, - 61.2029519 - ], - [ - -149.723643, - 61.2029519 - ], - [ - -149.723643, - 61.2029519 - ], - [ - -149.7236431, - 61.2029519 - ], - [ - -149.7236431, - 61.2029519 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106482783 - } - }, - { - "id": 106473431, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5150621, - 51.1296028 - ], - [ - 4.5179075, - 51.1296028 - ], - [ - 4.5179075, - 51.1309865 - ], - [ - 4.5150621, - 51.1309865 - ], - [ - 4.5150621, - 51.1296028 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "speelplekken", - "imagery": "CartoDB.Positron", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106473431 - } - }, - { - "id": 106472157, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5988948, - -34.6451119 - ], - [ - -58.5988948, - -34.6451119 - ], - [ - -58.5988948, - -34.6451119 - ], - [ - -58.5988948, - -34.6451119 - ], - [ - -58.5988948, - -34.6451119 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 106472157 - } - }, - { - "id": 106467529, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2184295, - 51.2758227 - ], - [ - 3.2288352, - 51.2758227 - ], - [ - 3.2288352, - 51.3345742 - ], - [ - 3.2184295, - 51.3345742 - ], - [ - 3.2184295, - 51.2758227 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106467529 - } - }, - { - "id": 106467492, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9357654, - 42.6803247 - ], - [ - 2.9357654, - 42.6803247 - ], - [ - 2.9357654, - 42.6803247 - ], - [ - 2.9357654, - 42.6803247 - ], - [ - 2.9357654, - 42.6803247 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 106467492 - } - }, - { - "id": 106460720, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3331087, - 50.8765703 - ], - [ - 4.3331087, - 50.8765703 - ], - [ - 4.3331087, - 50.8765703 - ], - [ - 4.3331087, - 50.8765703 - ], - [ - 4.3331087, - 50.8765703 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 106460720 - } - }, - { - "id": 106428757, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.3643735, - 47.6833503 - ], - [ - -122.364373, - 47.6833503 - ], - [ - -122.364373, - 47.6833503 - ], - [ - -122.3643735, - 47.6833503 - ], - [ - -122.3643735, - 47.6833503 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106428757 - } - }, - { - "id": 106427529, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.3506513, - 47.6832221 - ], - [ - -122.347786, - 47.6832221 - ], - [ - -122.347786, - 47.6833611 - ], - [ - -122.3506513, - 47.6833611 - ], - [ - -122.3506513, - 47.6832221 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106427529 - } - }, - { - "id": 106423177, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.6155697, - 51.1854563 - ], - [ - -0.6155697, - 51.1854563 - ], - [ - -0.6155697, - 51.1854563 - ], - [ - -0.6155697, - 51.1854563 - ], - [ - -0.6155697, - 51.1854563 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106423177 - } - }, - { - "id": 106419096, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2353704, - 41.4381765 - ], - [ - 2.2496397, - 41.4381765 - ], - [ - 2.2496397, - 41.4456452 - ], - [ - 2.2353704, - 41.4456452 - ], - [ - 2.2353704, - 41.4381765 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 106419096 - } - }, - { - "id": 106406539, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2245804, - 51.215657 - ], - [ - 3.2245804, - 51.215657 - ], - [ - 3.2245804, - 51.215657 - ], - [ - 3.2245804, - 51.215657 - ], - [ - 3.2245804, - 51.215657 - ] - ] - ] - }, - "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, - "metadata": { - "host": "192.168.88.253:1234", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106406539 - } - }, - { - "id": 106397570, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1739706, - 51.3235555 - ], - [ - 3.213509, - 51.3235555 - ], - [ - 3.213509, - 51.3496226 - ], - [ - 3.1739706, - 51.3496226 - ], - [ - 3.1739706, - 51.3235555 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106397570 - } - }, - { - "id": 106396842, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.767066, - 50.9048172 - ], - [ - 4.3157534, - 50.9048172 - ], - [ - 4.3157534, - 50.9362182 - ], - [ - 3.767066, - 50.9362182 - ], - [ - 3.767066, - 50.9048172 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete, joost schouppe" - }, - "id": 106396842 - } - }, - { - "id": 106390470, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6852626, - 50.8733833 - ], - [ - 4.6863219, - 50.8733833 - ], - [ - 4.6863219, - 50.8739746 - ], - [ - 4.6852626, - 50.8739746 - ], - [ - 4.6852626, - 50.8733833 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106390470 - } - }, - { - "id": 106387614, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6632759, - 50.8669689 - ], - [ - 4.6635823, - 50.8669689 - ], - [ - 4.6635823, - 50.8674877 - ], - [ - 4.6632759, - 50.8674877 - ], - [ - 4.6632759, - 50.8669689 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 106387614 - } - }, - { - "id": 106386975, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2388733, - 51.2106197 - ], - [ - 3.2419485, - 51.2106197 - ], - [ - 3.2419485, - 51.2110498 - ], - [ - 3.2388733, - 51.2110498 - ], - [ - 3.2388733, - 51.2106197 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106386975 - } - }, - { - "id": 106385826, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6626927, - 50.8665841 - ], - [ - 4.663611, - 50.8665841 - ], - [ - 4.663611, - 50.867464 - ], - [ - 4.6626927, - 50.867464 - ], - [ - 4.6626927, - 50.8665841 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 106385826 - } - }, - { - "id": 106380928, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1912842, - 51.1911098 - ], - [ - 3.2276899, - 51.1911098 - ], - [ - 3.2276899, - 51.2023074 - ], - [ - 3.1912842, - 51.2023074 - ], - [ - 3.1912842, - 51.1911098 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106380928 - } - }, - { - "id": 106360002, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -149.7579941, - 61.2061611 - ], - [ - -149.757994, - 61.2061611 - ], - [ - -149.757994, - 61.2061611 - ], - [ - -149.7579941, - 61.2061611 - ], - [ - -149.7579941, - 61.2061611 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106360002 - } - }, - { - "id": 106357695, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -149.7236431, - 61.2029519 - ], - [ - -149.7236431, - 61.2029519 - ], - [ - -149.7236431, - 61.2029519 - ], - [ - -149.7236431, - 61.2029519 - ], - [ - -149.7236431, - 61.2029519 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106357695 - } - }, - { - "id": 106355182, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4830905, - 51.0398257 - ], - [ - 4.4830905, - 51.0398257 - ], - [ - 4.4830905, - 51.0398257 - ], - [ - 4.4830905, - 51.0398257 - ], - [ - 4.4830905, - 51.0398257 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "facadegardens", - "imagery": "osm", - "language": "nl", - "theme-creator": "joost schouppe; stla" - }, - "id": 106355182 - } - }, - { - "id": 106352086, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2265552, - 41.4379793 - ], - [ - 2.2450053, - 41.4379793 - ], - [ - 2.2450053, - 41.4485669 - ], - [ - 2.2265552, - 41.4485669 - ], - [ - 2.2265552, - 41.4379793 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 106352086 - } - }, - { - "id": 106349807, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3596489, - 44.497403 - ], - [ - 11.3601185, - 44.497403 - ], - [ - 11.3601185, - 44.4985884 - ], - [ - 11.3596489, - 44.4985884 - ], - [ - 11.3596489, - 44.497403 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106349807 - } - }, - { - "id": 106346957, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2379882, - 41.4397855 - ], - [ - 2.241711, - 41.4397855 - ], - [ - 2.241711, - 41.4403316 - ], - [ - 2.2379882, - 41.4403316 - ], - [ - 2.2379882, - 41.4397855 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 106346957 - } - }, - { - "id": 106343083, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2070784, - 51.1870383 - ], - [ - 3.2732284, - 51.1870383 - ], - [ - 3.2732284, - 51.2758227 - ], - [ - 3.2070784, - 51.2758227 - ], - [ - 3.2070784, - 51.1870383 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106343083 - } - }, - { - "id": 106341586, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2199034, - 51.2157079 - ], - [ - 3.2199034, - 51.2157079 - ], - [ - 3.2199034, - 51.2157079 - ], - [ - 3.2199034, - 51.2157079 - ], - [ - 3.2199034, - 51.2157079 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106341586 - } - }, - { - "id": 106340240, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7002782, - -34.6657737 - ], - [ - -58.5286305, - -34.6657737 - ], - [ - -58.5286305, - -34.6389869 - ], - [ - -58.7002782, - -34.6389869 - ], - [ - -58.7002782, - -34.6657737 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 106340240 - } - }, - { - "id": 106338046, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.6320188, - 51.7466482 - ], - [ - 14.6320188, - 51.7466482 - ], - [ - 14.6320188, - 51.7466482 - ], - [ - 14.6320188, - 51.7466482 - ], - [ - 14.6320188, - 51.7466482 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 106338046 - } - }, - { - "id": 106334094, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2393709, - 41.4392077 - ], - [ - 2.2403982, - 41.4392077 - ], - [ - 2.2403982, - 41.4400733 - ], - [ - 2.2393709, - 41.4400733 - ], - [ - 2.2393709, - 41.4392077 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 106334094 - } - }, - { - "id": 106333893, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2498782, - 41.4509524 - ], - [ - 2.2525071, - 41.4509524 - ], - [ - 2.2525071, - 41.4522307 - ], - [ - 2.2498782, - 41.4522307 - ], - [ - 2.2498782, - 41.4509524 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 106333893 - } - }, - { - "id": 106331264, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2119413, - 51.2161752 - ], - [ - 3.2119413, - 51.2161752 - ], - [ - 3.2119413, - 51.2161752 - ], - [ - 3.2119413, - 51.2161752 - ], - [ - 3.2119413, - 51.2161752 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106331264 - } - }, - { - "id": 106325499, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2414604, - 41.4391962 - ], - [ - 2.2426709, - 41.4391962 - ], - [ - 2.2426709, - 41.4399277 - ], - [ - 2.2414604, - 41.4399277 - ], - [ - 2.2414604, - 41.4391962 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 106325499 - } - }, - { - "id": 106298509, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.474571, - 51.0331244 - ], - [ - 4.474571, - 51.0331244 - ], - [ - 4.474571, - 51.0331244 - ], - [ - 4.474571, - 51.0331244 - ], - [ - 4.474571, - 51.0331244 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "facadegardens", - "imagery": "osm", - "language": "nl", - "theme-creator": "joost schouppe; stla" - }, - "id": 106298509 - } - }, - { - "id": 106296949, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.5755258, - -33.607998 - ], - [ - -70.5751413, - -33.607998 - ], - [ - -70.5751413, - -33.6077293 - ], - [ - -70.5755258, - -33.6077293 - ], - [ - -70.5755258, - -33.607998 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "osmfr", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 106296949 - } - }, - { - "id": 106289865, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2516957, - 41.4516107 - ], - [ - 2.2516957, - 41.4516107 - ], - [ - 2.2516957, - 41.4516107 - ], - [ - 2.2516957, - 41.4516107 - ], - [ - 2.2516957, - 41.4516107 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 106289865 - } - }, - { - "id": 106289501, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.9455588, - 41.5384073 - ], - [ - 12.9455588, - 41.5384073 - ], - [ - 12.9455588, - 41.5384073 - ], - [ - 12.9455588, - 41.5384073 - ], - [ - 12.9455588, - 41.5384073 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106289501 - } - }, - { - "id": 106269713, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.5592843, - 13.9630457 - ], - [ - 121.5594721, - 13.9630457 - ], - [ - 121.5594721, - 13.9631965 - ], - [ - 121.5592843, - 13.9631965 - ], - [ - 121.5592843, - 13.9630457 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "streetlamps", - "imagery": "osm", - "language": "en" - }, - "id": 106269713 - } - }, - { - "id": 106265939, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.533528, - 50.9926278 - ], - [ - 4.5557866, - 50.9926278 - ], - [ - 4.5557866, - 51.0384256 - ], - [ - 4.533528, - 51.0384256 - ], - [ - 4.533528, - 50.9926278 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106265939 - } - }, - { - "id": 106262532, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.219718, - 41.4359453 - ], - [ - 2.2201141, - 41.4359453 - ], - [ - 2.2201141, - 41.436424 - ], - [ - 2.219718, - 41.436424 - ], - [ - 2.219718, - 41.4359453 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 106262532 - } - }, - { - "id": 106259611, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.1252923, - 57.52189 - ], - [ - -2.1252923, - 57.52189 - ], - [ - -2.1252923, - 57.52189 - ], - [ - -2.1252923, - 57.52189 - ], - [ - -2.1252923, - 57.52189 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106259611 - } - }, - { - "id": 106258920, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.1482039, - 57.1433036 - ], - [ - -2.0953905, - 57.1433036 - ], - [ - -2.0953905, - 57.1735958 - ], - [ - -2.1482039, - 57.1735958 - ], - [ - -2.1482039, - 57.1433036 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106258920 - } - }, - { - "id": 106248402, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.9772384, - 51.450567 - ], - [ - 6.9772384, - 51.450567 - ], - [ - 6.9772384, - 51.450567 - ], - [ - 6.9772384, - 51.450567 - ], - [ - 6.9772384, - 51.450567 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "infotafel", - "imagery": "osm", - "language": "de" - }, - "id": 106248402 - } - }, - { - "id": 106247654, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2181348, - 41.4369497 - ], - [ - 2.2181348, - 41.4369497 - ], - [ - 2.2181348, - 41.4369497 - ], - [ - 2.2181348, - 41.4369497 - ], - [ - 2.2181348, - 41.4369497 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 106247654 - } - }, - { - "id": 106244653, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1200299, - 52.0889095 - ], - [ - 5.1200299, - 52.0889095 - ], - [ - 5.1200299, - 52.0889095 - ], - [ - 5.1200299, - 52.0889095 - ], - [ - 5.1200299, - 52.0889095 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106244653 - } - }, - { - "id": 106229310, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7112376, - 53.1439489 - ], - [ - 13.9240308, - 53.1439489 - ], - [ - 13.9240308, - 53.1669548 - ], - [ - 13.7112376, - 53.1669548 - ], - [ - 13.7112376, - 53.1439489 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 106229310 - } - }, - { - "id": 106225224, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.5356326, - 47.2200358 - ], - [ - -1.5351752, - 47.2200358 - ], - [ - -1.5351752, - 47.2202421 - ], - [ - -1.5356326, - 47.2202421 - ], - [ - -1.5356326, - 47.2200358 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 106225224 - } - }, - { - "id": 106218338, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2177214, - 51.1781828 - ], - [ - 3.2272124, - 51.1781828 - ], - [ - 3.2272124, - 51.1852644 - ], - [ - 3.2177214, - 51.1852644 - ], - [ - 3.2177214, - 51.1781828 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106218338 - } - }, - { - "id": 106218210, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2177214, - 51.1852644 - ], - [ - 3.2177214, - 51.1852644 - ], - [ - 3.2177214, - 51.1852644 - ], - [ - 3.2177214, - 51.1852644 - ], - [ - 3.2177214, - 51.1852644 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106218210 - } - }, - { - "id": 106206655, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2093006, - 51.2504045 - ], - [ - 3.2093006, - 51.2504045 - ], - [ - 3.2093006, - 51.2504045 - ], - [ - 3.2093006, - 51.2504045 - ], - [ - 3.2093006, - 51.2504045 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106206655 - } - }, - { - "id": 106206319, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2093006, - 51.2504045 - ], - [ - 3.2093006, - 51.2504045 - ], - [ - 3.2093006, - 51.2504045 - ], - [ - 3.2093006, - 51.2504045 - ], - [ - 3.2093006, - 51.2504045 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106206319 - } - }, - { - "id": 106199557, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2180326, - 51.1965341 - ], - [ - 3.2207564, - 51.1965341 - ], - [ - 3.2207564, - 51.2042282 - ], - [ - 3.2180326, - 51.2042282 - ], - [ - 3.2180326, - 51.1965341 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "Mapbox", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106199557 - } - }, - { - "id": 106199356, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2207564, - 51.1968115 - ], - [ - 3.2207564, - 51.1968115 - ], - [ - 3.2207564, - 51.1968115 - ], - [ - 3.2207564, - 51.1968115 - ], - [ - 3.2207564, - 51.1968115 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "Mapbox", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106199356 - } - }, - { - "id": 106174805, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2256675, - 51.2009292 - ], - [ - 3.2256675, - 51.2009292 - ], - [ - 3.2256675, - 51.2009292 - ], - [ - 3.2256675, - 51.2009292 - ], - [ - 3.2256675, - 51.2009292 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106174805 - } - }, - { - "id": 106162717, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2358518, - 50.7362727 - ], - [ - 4.2358518, - 50.7362727 - ], - [ - 4.2358518, - 50.7362727 - ], - [ - 4.2358518, - 50.7362727 - ], - [ - 4.2358518, - 50.7362727 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 106162717 - } - }, - { - "id": 106160156, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2960395, - 51.0188133 - ], - [ - 3.7617127, - 51.0188133 - ], - [ - 3.7617127, - 51.1904875 - ], - [ - 3.2960395, - 51.1904875 - ], - [ - 3.2960395, - 51.0188133 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete, joost schouppe" - }, - "id": 106160156 - } - }, - { - "id": 106159036, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7345168, - -34.6634595 - ], - [ - -58.5972709, - -34.6634595 - ], - [ - -58.5972709, - -34.6450947 - ], - [ - -58.7345168, - -34.6450947 - ], - [ - -58.7345168, - -34.6634595 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "EsriWorldImagery", - "language": "es" - }, - "id": 106159036 - } - }, - { - "id": 106157565, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.4111477, - 51.667655 - ], - [ - 14.4111477, - 51.667655 - ], - [ - 14.4111477, - 51.667655 - ], - [ - 14.4111477, - 51.667655 - ], - [ - 14.4111477, - 51.667655 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 106157565 - } - }, - { - "id": 106155038, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2127231, - 51.2041072 - ], - [ - 3.2269387, - 51.2041072 - ], - [ - 3.2269387, - 51.2174689 - ], - [ - 3.2127231, - 51.2174689 - ], - [ - 3.2127231, - 51.2041072 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106155038 - } - }, - { - "id": 106146705, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2837828, - 50.7132916 - ], - [ - 4.2837828, - 50.7132916 - ], - [ - 4.2837828, - 50.7132916 - ], - [ - 4.2837828, - 50.7132916 - ], - [ - 4.2837828, - 50.7132916 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106146705 - } - }, - { - "id": 106135263, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2108134, - 51.1936784 - ], - [ - 3.2222768, - 51.1936784 - ], - [ - 3.2222768, - 51.2100767 - ], - [ - 3.2108134, - 51.2100767 - ], - [ - 3.2108134, - 51.1936784 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106135263 - } - }, - { - "id": 106112177, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2524009, - 51.956147 - ], - [ - 6.2524009, - 51.956147 - ], - [ - 6.2524009, - 51.956147 - ], - [ - 6.2524009, - 51.956147 - ], - [ - 6.2524009, - 51.956147 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 106112177 - } - }, - { - "id": 106101463, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.4918446, - -34.5472383 - ], - [ - -58.4918063, - -34.5472383 - ], - [ - -58.4918063, - -34.5472206 - ], - [ - -58.4918446, - -34.5472206 - ], - [ - -58.4918446, - -34.5472383 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 106101463 - } - }, - { - "id": 106097152, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.1027765, - 51.9475961 - ], - [ - 6.2169491, - 51.9475961 - ], - [ - 6.2169491, - 51.9592185 - ], - [ - 6.1027765, - 51.9592185 - ], - [ - 6.1027765, - 51.9475961 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 106097152 - } - }, - { - "id": 106093301, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3497738, - 44.5030433 - ], - [ - 11.3497738, - 44.5030433 - ], - [ - 11.3497738, - 44.5030433 - ], - [ - 11.3497738, - 44.5030433 - ], - [ - 11.3497738, - 44.5030433 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106093301 - } - }, - { - "id": 106091074, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9702176, - 50.8951001 - ], - [ - 4.1519785, - 50.8951001 - ], - [ - 4.1519785, - 51.1680728 - ], - [ - 3.9702176, - 51.1680728 - ], - [ - 3.9702176, - 50.8951001 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete, joost schouppe" - }, - "id": 106091074 - } - }, - { - "id": 106072658, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7574342, - 51.1503181 - ], - [ - 2.8420482, - 51.1503181 - ], - [ - 2.8420482, - 51.1985845 - ], - [ - 2.7574342, - 51.1985845 - ], - [ - 2.7574342, - 51.1503181 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete, joost schouppe" - }, - "id": 106072658 - } - }, - { - "id": 106070096, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.5420542, - 24.9968233 - ], - [ - 121.5420542, - 24.9968233 - ], - [ - 121.5420542, - 24.9968233 - ], - [ - 121.5420542, - 24.9968233 - ], - [ - 121.5420542, - 24.9968233 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "zh_Hant", - "theme-creator": "Midgard" - }, - "id": 106070096 - } - }, - { - "id": 106058676, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.7617673, - -33.4866776 - ], - [ - -70.7578768, - -33.4866776 - ], - [ - -70.7578768, - -33.4862582 - ], - [ - -70.7617673, - -33.4862582 - ], - [ - -70.7617673, - -33.4866776 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 106058676 - } - }, - { - "id": 106058511, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6642932, - -33.5369547 - ], - [ - -70.6642932, - -33.5369547 - ], - [ - -70.6642932, - -33.5369547 - ], - [ - -70.6642932, - -33.5369547 - ], - [ - -70.6642932, - -33.5369547 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "ghostbikes", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106058511 - } - }, - { - "id": 106054883, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.6944958, - 49.2065668 - ], - [ - 16.6944958, - 49.2065668 - ], - [ - 16.6944958, - 49.2065668 - ], - [ - 16.6944958, - 49.2065668 - ], - [ - 16.6944958, - 49.2065668 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 106054883 - } - }, - { - "id": 106054597, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2386807, - 41.4391781 - ], - [ - 2.2403982, - 41.4391781 - ], - [ - 2.2403982, - 41.4392494 - ], - [ - 2.2386807, - 41.4392494 - ], - [ - 2.2386807, - 41.4391781 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 106054597 - } - }, - { - "id": 106054181, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.6374882, - 51.1084456 - ], - [ - 2.6815998, - 51.1084456 - ], - [ - 2.6815998, - 51.1167681 - ], - [ - 2.6374882, - 51.1167681 - ], - [ - 2.6374882, - 51.1084456 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete, joost schouppe" - }, - "id": 106054181 - } - }, - { - "id": 106051121, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.6425298, - 51.7474555 - ], - [ - 14.6425298, - 51.7474555 - ], - [ - 14.6425298, - 51.7474555 - ], - [ - 14.6425298, - 51.7474555 - ], - [ - 14.6425298, - 51.7474555 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 106051121 - } - }, - { - "id": 106050573, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8612884, - 51.0317476 - ], - [ - 2.865821, - 51.0317476 - ], - [ - 2.865821, - 51.0348253 - ], - [ - 2.8612884, - 51.0348253 - ], - [ - 2.8612884, - 51.0317476 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106050573 - } - }, - { - "id": 106047941, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198846, - 51.2157082 - ], - [ - 3.2198846, - 51.2157082 - ], - [ - 3.2198846, - 51.2157082 - ], - [ - 3.2198846, - 51.2157082 - ], - [ - 3.2198846, - 51.2157082 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106047941 - } - }, - { - "id": 106045737, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8552013, - 51.0328026 - ], - [ - 2.8656443, - 51.0328026 - ], - [ - 2.8656443, - 51.0360995 - ], - [ - 2.8552013, - 51.0360995 - ], - [ - 2.8552013, - 51.0328026 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106045737 - } - }, - { - "id": 106043773, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.779452, - 48.1086043 - ], - [ - 11.7847627, - 48.1086043 - ], - [ - 11.7847627, - 48.1107158 - ], - [ - 11.779452, - 48.1107158 - ], - [ - 11.779452, - 48.1086043 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 106043773 - } - }, - { - "id": 106043486, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198712, - 51.2157065 - ], - [ - 3.2198712, - 51.2157065 - ], - [ - 3.2198712, - 51.2157065 - ], - [ - 3.2198712, - 51.2157065 - ], - [ - 3.2198712, - 51.2157065 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106043486 - } - }, - { - "id": 106041609, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1831452, - 51.33934 - ], - [ - 5.2435011, - 51.33934 - ], - [ - 5.2435011, - 51.3763182 - ], - [ - 5.1831452, - 51.3763182 - ], - [ - 5.1831452, - 51.33934 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 106041609 - } - }, - { - "id": 106040090, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8737665, - 50.8058624 - ], - [ - 3.1655381, - 50.8058624 - ], - [ - 3.1655381, - 51.0282111 - ], - [ - 2.8737665, - 51.0282111 - ], - [ - 2.8737665, - 50.8058624 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete, joost schouppe" - }, - "id": 106040090 - } - }, - { - "id": 106039166, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.598192, - -34.645163 - ], - [ - -58.598192, - -34.645163 - ], - [ - -58.598192, - -34.645163 - ], - [ - -58.598192, - -34.645163 - ], - [ - -58.598192, - -34.645163 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 106039166 - } - }, - { - "id": 106039020, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2250521, - 51.261455 - ], - [ - 5.2962226, - 51.261455 - ], - [ - 5.2962226, - 51.3669064 - ], - [ - 5.2250521, - 51.3669064 - ], - [ - 5.2250521, - 51.261455 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "en", - "theme-creator": "Peter Elderson" - }, - "id": 106039020 - } - }, - { - "id": 106035974, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.9140444, - 52.5125487 - ], - [ - 9.9140444, - 52.5125487 - ], - [ - 9.9140444, - 52.5125487 - ], - [ - 9.9140444, - 52.5125487 - ], - [ - 9.9140444, - 52.5125487 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 106035974 - } - }, - { - "id": 106035531, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.9124996, - 52.5101294 - ], - [ - 9.9159808, - 52.5101294 - ], - [ - 9.9159808, - 52.5128898 - ], - [ - 9.9124996, - 52.5128898 - ], - [ - 9.9124996, - 52.5101294 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 106035531 - } - }, - { - "id": 106032433, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2398151, - 41.4397808 - ], - [ - 2.2406151, - 41.4397808 - ], - [ - 2.2406151, - 41.4402513 - ], - [ - 2.2398151, - 41.4402513 - ], - [ - 2.2398151, - 41.4397808 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 106032433 - } - }, - { - "id": 106031602, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1810248, - 51.1910897 - ], - [ - 3.217358, - 51.1910897 - ], - [ - 3.217358, - 51.2026317 - ], - [ - 3.1810248, - 51.2026317 - ], - [ - 3.1810248, - 51.1910897 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106031602 - } - }, - { - "id": 106031262, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5324857, - 51.0458911 - ], - [ - 4.668004, - 51.0458911 - ], - [ - 4.668004, - 51.1592763 - ], - [ - 4.5324857, - 51.1592763 - ], - [ - 4.5324857, - 51.0458911 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fietsstraten", - "imagery": "CyclOSM", - "language": "nl", - "theme-creator": "MapComplete, joost schouppe" - }, - "id": 106031262 - } - }, - { - "id": 106031010, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2007182, - 51.2703042 - ], - [ - 5.4039218, - 51.2703042 - ], - [ - 5.4039218, - 51.3320496 - ], - [ - 5.2007182, - 51.3320496 - ], - [ - 5.2007182, - 51.2703042 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "en", - "theme-creator": "Peter Elderson" - }, - "id": 106031010 - } - }, - { - "id": 106029375, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -82.4353525, - 38.4093729 - ], - [ - -82.4353257, - 38.4093729 - ], - [ - -82.4353257, - 38.409478 - ], - [ - -82.4353525, - 38.409478 - ], - [ - -82.4353525, - 38.4093729 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 106029375 - } - }, - { - "id": 106024174, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2415134, - 41.4420503 - ], - [ - 2.243133, - 41.4420503 - ], - [ - 2.243133, - 41.4434135 - ], - [ - 2.2415134, - 41.4434135 - ], - [ - 2.2415134, - 41.4420503 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 106024174 - } - }, - { - "id": 106023713, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7301734, - 51.0284282 - ], - [ - 13.7368766, - 51.0284282 - ], - [ - 13.7368766, - 51.0290078 - ], - [ - 13.7301734, - 51.0290078 - ], - [ - 13.7301734, - 51.0284282 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106023713 - } - }, - { - "id": 106023369, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.730683, - 51.0219694 - ], - [ - 13.7365455, - 51.0219694 - ], - [ - 13.7365455, - 51.0291518 - ], - [ - 13.730683, - 51.0291518 - ], - [ - 13.730683, - 51.0219694 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 106023369 - } - }, - { - "id": 106021684, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.5617332, - 13.9642587 - ], - [ - 121.5617332, - 13.9642587 - ], - [ - 121.5617332, - 13.9642587 - ], - [ - 121.5617332, - 13.9642587 - ], - [ - 121.5617332, - 13.9642587 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "streetlamps", - "imagery": "osm", - "language": "en" - }, - "id": 106021684 - } - }, - { - "id": 106020085, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.562634, - 13.9645049 - ], - [ - 121.5628028, - 13.9645049 - ], - [ - 121.5628028, - 13.9645997 - ], - [ - 121.562634, - 13.9645997 - ], - [ - 121.562634, - 13.9645049 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "streetlamps", - "imagery": "osm", - "language": "en" - }, - "id": 106020085 - } - }, - { - "id": 106018086, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2168444, - 51.1795212 - ], - [ - 3.2222768, - 51.1795212 - ], - [ - 3.2222768, - 51.2100767 - ], - [ - 3.2168444, - 51.2100767 - ], - [ - 3.2168444, - 51.1795212 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 106018086 - } - }, - { - "id": 106016740, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2206097, - 50.7924535 - ], - [ - 5.7207262, - 50.7924535 - ], - [ - 5.7207262, - 51.1387235 - ], - [ - 4.2206097, - 51.1387235 - ], - [ - 4.2206097, - 50.7924535 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete, joost schouppe" - }, - "id": 106016740 - } - }, - { - "id": 106013851, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3986269, - 51.2613646 - ], - [ - 5.4420887, - 51.2613646 - ], - [ - 5.4420887, - 51.2982042 - ], - [ - 5.3986269, - 51.2982042 - ], - [ - 5.3986269, - 51.2613646 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "en", - "theme-creator": "Peter Elderson" - }, - "id": 106013851 - } - }, - { - "id": 106006559, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.6330753, - 51.7437815 - ], - [ - 14.6330753, - 51.7437815 - ], - [ - 14.6330753, - 51.7437815 - ], - [ - 14.6330753, - 51.7437815 - ], - [ - 14.6330753, - 51.7437815 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 106006559 - } - }, - { - "id": 106000128, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.8656073, - -34.3709202 - ], - [ - -58.8656073, - -34.3709202 - ], - [ - -58.8656073, - -34.3709202 - ], - [ - -58.8656073, - -34.3709202 - ], - [ - -58.8656073, - -34.3709202 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 106000128 - } - }, - { - "id": 105999548, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.6440557, - -34.6528157 - ], - [ - -58.6431965, - -34.6528157 - ], - [ - -58.6431965, - -34.6523866 - ], - [ - -58.6440557, - -34.6523866 - ], - [ - -58.6440557, - -34.6528157 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 105999548 - } - }, - { - "id": 105998691, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 18.9856226, - 69.6482939 - ], - [ - 18.9856548, - 69.6482939 - ], - [ - 18.9856548, - 69.648305 - ], - [ - 18.9856226, - 69.648305 - ], - [ - 18.9856226, - 69.6482939 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105998691 - } - }, - { - "id": 105978830, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2426111, - 41.440952 - ], - [ - 2.2427948, - 41.440952 - ], - [ - 2.2427948, - 41.441139 - ], - [ - 2.2426111, - 41.441139 - ], - [ - 2.2426111, - 41.440952 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105978830 - } - }, - { - "id": 105978238, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2420455, - 41.4404337 - ], - [ - 2.2468087, - 41.4404337 - ], - [ - 2.2468087, - 41.4451125 - ], - [ - 2.2420455, - 41.4451125 - ], - [ - 2.2420455, - 41.4404337 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105978238 - } - }, - { - "id": 105977655, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2469291, - 41.4452447 - ], - [ - 2.2480743, - 41.4452447 - ], - [ - 2.2480743, - 41.4464594 - ], - [ - 2.2469291, - 41.4464594 - ], - [ - 2.2469291, - 41.4452447 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105977655 - } - }, - { - "id": 105977341, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2469614, - 41.4453836 - ], - [ - 2.2477664, - 41.4453836 - ], - [ - 2.2477664, - 41.4461666 - ], - [ - 2.2469614, - 41.4461666 - ], - [ - 2.2469614, - 41.4453836 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105977341 - } - }, - { - "id": 105976109, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5963626, - -34.6450242 - ], - [ - -58.5963626, - -34.6450242 - ], - [ - -58.5963626, - -34.6450242 - ], - [ - -58.5963626, - -34.6450242 - ], - [ - -58.5963626, - -34.6450242 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 105976109 - } - }, - { - "id": 105975823, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.246541, - 41.4449598 - ], - [ - 2.246541, - 41.4449598 - ], - [ - 2.246541, - 41.4449598 - ], - [ - 2.246541, - 41.4449598 - ], - [ - 2.246541, - 41.4449598 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105975823 - } - }, - { - "id": 105975143, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.242745, - 41.4413183 - ], - [ - 2.2466804, - 41.4413183 - ], - [ - 2.2466804, - 41.4451067 - ], - [ - 2.242745, - 41.4451067 - ], - [ - 2.242745, - 41.4413183 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105975143 - } - }, - { - "id": 105973903, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2407153, - 41.4393813 - ], - [ - 2.2424838, - 41.4393813 - ], - [ - 2.2424838, - 41.4410676 - ], - [ - 2.2407153, - 41.4410676 - ], - [ - 2.2407153, - 41.4393813 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105973903 - } - }, - { - "id": 105973481, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2406555, - 41.4393219 - ], - [ - 2.2408642, - 41.4393219 - ], - [ - 2.2408642, - 41.4395201 - ], - [ - 2.2406555, - 41.4395201 - ], - [ - 2.2406555, - 41.4393219 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105973481 - } - }, - { - "id": 105967734, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8965462, - 51.2428013 - ], - [ - 4.8993166, - 51.2428013 - ], - [ - 4.8993166, - 51.2458489 - ], - [ - 4.8965462, - 51.2458489 - ], - [ - 4.8965462, - 51.2428013 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "fietsstraten", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105967734 - } - }, - { - "id": 105966634, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2052357, - 51.2045543 - ], - [ - 3.2307771, - 51.2045543 - ], - [ - 3.2307771, - 51.2185727 - ], - [ - 3.2052357, - 51.2185727 - ], - [ - 3.2052357, - 51.2045543 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105966634 - } - }, - { - "id": 105961584, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.527849, - 25.010274 - ], - [ - 121.5418124, - 25.010274 - ], - [ - 121.5418124, - 25.021818 - ], - [ - 121.527849, - 25.021818 - ], - [ - 121.527849, - 25.010274 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105961584 - } - }, - { - "id": 105960694, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.5384409, - 25.0040183 - ], - [ - 121.5392067, - 25.0040183 - ], - [ - 121.5392067, - 25.0045327 - ], - [ - 121.5384409, - 25.0045327 - ], - [ - 121.5384409, - 25.0040183 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 105960694 - } - }, - { - "id": 105958093, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6671751, - 51.0651538 - ], - [ - 4.9827906, - 51.0651538 - ], - [ - 4.9827906, - 51.1574088 - ], - [ - 4.6671751, - 51.1574088 - ], - [ - 4.6671751, - 51.0651538 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105958093 - } - }, - { - "id": 105957714, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2409078, - 41.4395575 - ], - [ - 2.2409078, - 41.4395575 - ], - [ - 2.2409078, - 41.4395575 - ], - [ - 2.2409078, - 41.4395575 - ], - [ - 2.2409078, - 41.4395575 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105957714 - } - }, - { - "id": 105957149, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2403339, - 41.4389905 - ], - [ - 2.2405484, - 41.4389905 - ], - [ - 2.2405484, - 41.4392077 - ], - [ - 2.2403339, - 41.4392077 - ], - [ - 2.2403339, - 41.4389905 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105957149 - } - }, - { - "id": 105956109, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2157988, - 41.4370364 - ], - [ - 2.2270074, - 41.4370364 - ], - [ - 2.2270074, - 41.4430787 - ], - [ - 2.2157988, - 41.4430787 - ], - [ - 2.2157988, - 41.4370364 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105956109 - } - }, - { - "id": 105955772, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2406329, - 41.4386899 - ], - [ - 2.241286, - 41.4386899 - ], - [ - 2.241286, - 41.4390951 - ], - [ - 2.2406329, - 41.4390951 - ], - [ - 2.2406329, - 41.4386899 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105955772 - } - }, - { - "id": 105954534, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.9653397, - 52.3725338 - ], - [ - 13.9653397, - 52.3725338 - ], - [ - 13.9653397, - 52.3725338 - ], - [ - 13.9653397, - 52.3725338 - ], - [ - 13.9653397, - 52.3725338 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 105954534 - } - }, - { - "id": 105951675, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.4357159, - 43.508435 - ], - [ - 16.4357159, - 43.508435 - ], - [ - 16.4357159, - 43.508435 - ], - [ - 16.4357159, - 43.508435 - ], - [ - 16.4357159, - 43.508435 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 105951675 - } - }, - { - "id": 105951340, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.4590104, - 43.5044986 - ], - [ - 16.4592337, - 43.5044986 - ], - [ - 16.4592337, - 43.5045344 - ], - [ - 16.4590104, - 43.5045344 - ], - [ - 16.4590104, - 43.5044986 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 105951340 - } - }, - { - "id": 105950164, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2002831, - 51.1905568 - ], - [ - 3.2002831, - 51.1905568 - ], - [ - 3.2002831, - 51.1905568 - ], - [ - 3.2002831, - 51.1905568 - ], - [ - 3.2002831, - 51.1905568 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105950164 - } - }, - { - "id": 105943292, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.5586969, - 13.9628021 - ], - [ - 121.5618861, - 13.9628021 - ], - [ - 121.5618861, - 13.9652808 - ], - [ - 121.5586969, - 13.9652808 - ], - [ - 121.5586969, - 13.9628021 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "streetlamps", - "imagery": "osm", - "language": "en" - }, - "id": 105943292 - } - }, - { - "id": 105937496, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.5442727, - -33.5984637 - ], - [ - -70.496643, - -33.5984637 - ], - [ - -70.496643, - -33.5544712 - ], - [ - -70.5442727, - -33.5544712 - ], - [ - -70.5442727, - -33.5984637 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 105937496 - } - }, - { - "id": 105936609, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.558208, - 13.9620345 - ], - [ - 121.5613332, - 13.9620345 - ], - [ - 121.5613332, - 13.9650395 - ], - [ - 121.558208, - 13.9650395 - ], - [ - 121.558208, - 13.9620345 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "streetlamps", - "imagery": "osm", - "language": "en" - }, - "id": 105936609 - } - }, - { - "id": 105931217, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2529791, - 50.7420471 - ], - [ - 4.2557628, - 50.7420471 - ], - [ - 4.2557628, - 50.7434187 - ], - [ - 4.2529791, - 50.7434187 - ], - [ - 4.2529791, - 50.7420471 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete, joost schouppe" - }, - "id": 105931217 - } - }, - { - "id": 105926906, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2955177, - 50.7100694 - ], - [ - 4.2955177, - 50.7100694 - ], - [ - 4.2955177, - 50.7100694 - ], - [ - 4.2955177, - 50.7100694 - ], - [ - 4.2955177, - 50.7100694 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105926906 - } - }, - { - "id": 105919595, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.5628028, - 13.9645049 - ], - [ - 121.5628028, - 13.9645049 - ], - [ - 121.5628028, - 13.9645049 - ], - [ - 121.5628028, - 13.9645049 - ], - [ - 121.5628028, - 13.9645049 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "streetlamps", - "imagery": "Mapbox", - "language": "en" - }, - "id": 105919595 - } - }, - { - "id": 105913606, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.5593636, - 13.9620345 - ], - [ - 121.5605925, - 13.9620345 - ], - [ - 121.5605925, - 13.9649926 - ], - [ - 121.5593636, - 13.9649926 - ], - [ - 121.5593636, - 13.9620345 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "streetlamps", - "imagery": "osm", - "language": "en" - }, - "id": 105913606 - } - }, - { - "id": 105913605, - "type": "Feature", - "geometry": null, - "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": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "streetlamps", - "imagery": "osm", - "language": "en" - }, - "id": 105913605 - } - }, - { - "id": 105913448, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.5587264, - 13.9621974 - ], - [ - 121.5596503, - 13.9621974 - ], - [ - 121.5596503, - 13.9628459 - ], - [ - 121.5587264, - 13.9628459 - ], - [ - 121.5587264, - 13.9621974 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "streetlamps", - "imagery": "osm", - "language": "en" - }, - "id": 105913448 - } - }, - { - "id": 105913334, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.5583578, - 13.9628004 - ], - [ - 121.5592843, - 13.9628004 - ], - [ - 121.5592843, - 13.963351 - ], - [ - 121.5583578, - 13.963351 - ], - [ - 121.5583578, - 13.9628004 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "streetlamps", - "imagery": "osm", - "language": "en" - }, - "id": 105913334 - } - }, - { - "id": 105912076, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.5583107, - 13.9625616 - ], - [ - 121.562634, - 13.9625616 - ], - [ - 121.562634, - 13.9650395 - ], - [ - 121.5583107, - 13.9650395 - ], - [ - 121.5583107, - 13.9625616 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "streetlamps", - "imagery": "osm", - "language": "en" - }, - "id": 105912076 - } - }, - { - "id": 105911702, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.1650124, - 48.5651975 - ], - [ - 12.1712979, - 48.5651975 - ], - [ - 12.1712979, - 48.5776639 - ], - [ - 12.1650124, - 48.5776639 - ], - [ - 12.1650124, - 48.5651975 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 105911702 - } - }, - { - "id": 105911320, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.5602254, - 13.9629541 - ], - [ - 121.5622428, - 13.9629541 - ], - [ - 121.5622428, - 13.9652808 - ], - [ - 121.5602254, - 13.9652808 - ], - [ - 121.5602254, - 13.9629541 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "streetlamps", - "imagery": "osm", - "language": "en" - }, - "id": 105911320 - } - }, - { - "id": 105911293, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.1176302, - 48.5550199 - ], - [ - 12.1729991, - 48.5550199 - ], - [ - 12.1729991, - 48.6112567 - ], - [ - 12.1176302, - 48.6112567 - ], - [ - 12.1176302, - 48.5550199 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 105911293 - } - }, - { - "id": 105909453, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.5602254, - 13.9629541 - ], - [ - 121.5605365, - 13.9629541 - ], - [ - 121.5605365, - 13.9631129 - ], - [ - 121.5602254, - 13.9631129 - ], - [ - 121.5602254, - 13.9629541 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "streetlights", - "imagery": "osm", - "language": "en" - }, - "id": 105909453 - } - }, - { - "id": 105908867, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.5613266, - 13.9652043 - ], - [ - 121.5613266, - 13.9652043 - ], - [ - 121.5613266, - 13.9652043 - ], - [ - 121.5613266, - 13.9652043 - ], - [ - 121.5613266, - 13.9652043 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 105908867 - } - }, - { - "id": 105908527, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.4411152, - 47.0465848 - ], - [ - 15.4411152, - 47.0465848 - ], - [ - 15.4411152, - 47.0465848 - ], - [ - 15.4411152, - 47.0465848 - ], - [ - 15.4411152, - 47.0465848 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105908527 - } - }, - { - "id": 105901100, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.3609537, - 47.657352 - ], - [ - -122.357507, - 47.657352 - ], - [ - -122.357507, - 47.6629903 - ], - [ - -122.3609537, - 47.6629903 - ], - [ - -122.3609537, - 47.657352 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105901100 - } - }, - { - "id": 105899520, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3445779, - 50.8489989 - ], - [ - 5.0526434, - 50.8489989 - ], - [ - 5.0526434, - 51.1962641 - ], - [ - 4.3445779, - 51.1962641 - ], - [ - 4.3445779, - 50.8489989 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 105899520 - } - }, - { - "id": 105892449, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7295088, - 52.8390529 - ], - [ - 13.7295088, - 52.8390529 - ], - [ - 13.7295088, - 52.8390529 - ], - [ - 13.7295088, - 52.8390529 - ], - [ - 13.7295088, - 52.8390529 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 105892449 - } - }, - { - "id": 105886639, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.9323539, - 58.3491812 - ], - [ - 11.9346235, - 58.3491812 - ], - [ - 11.9346235, - 58.3500994 - ], - [ - 11.9323539, - 58.3500994 - ], - [ - 11.9323539, - 58.3491812 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105886639 - } - }, - { - "id": 105883927, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.230196, - 41.4503282 - ], - [ - 2.230196, - 41.4503282 - ], - [ - 2.230196, - 41.4503282 - ], - [ - 2.230196, - 41.4503282 - ], - [ - 2.230196, - 41.4503282 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105883927 - } - }, - { - "id": 105878208, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2491097, - 41.4526883 - ], - [ - 2.2491902, - 41.4526883 - ], - [ - 2.2491902, - 41.4528574 - ], - [ - 2.2491097, - 41.4528574 - ], - [ - 2.2491097, - 41.4526883 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105878208 - } - }, - { - "id": 105873635, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.5890863, - 45.515874 - ], - [ - 9.5890863, - 45.515874 - ], - [ - 9.5890863, - 45.515874 - ], - [ - 9.5890863, - 45.515874 - ], - [ - 9.5890863, - 45.515874 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105873635 - } - }, - { - "id": 105861949, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2302382, - 41.4503545 - ], - [ - 2.2302382, - 41.4503545 - ], - [ - 2.2302382, - 41.4503545 - ], - [ - 2.2302382, - 41.4503545 - ], - [ - 2.2302382, - 41.4503545 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105861949 - } - }, - { - "id": 105861451, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2302936, - 41.4503862 - ], - [ - 2.2302936, - 41.4503862 - ], - [ - 2.2302936, - 41.4503862 - ], - [ - 2.2302936, - 41.4503862 - ], - [ - 2.2302936, - 41.4503862 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105861451 - } - }, - { - "id": 105857810, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.218323, - 41.4347539 - ], - [ - 2.2213436, - 41.4347539 - ], - [ - 2.2213436, - 41.4358305 - ], - [ - 2.218323, - 41.4358305 - ], - [ - 2.218323, - 41.4347539 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105857810 - } - }, - { - "id": 105854608, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2220868, - 41.4379914 - ], - [ - 2.2253259, - 41.4379914 - ], - [ - 2.2253259, - 41.4388291 - ], - [ - 2.2220868, - 41.4388291 - ], - [ - 2.2220868, - 41.4379914 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105854608 - } - }, - { - "id": 105853706, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2483995, - 41.4543872 - ], - [ - 2.2489323, - 41.4543872 - ], - [ - 2.2489323, - 41.4548201 - ], - [ - 2.2483995, - 41.4548201 - ], - [ - 2.2483995, - 41.4543872 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105853706 - } - }, - { - "id": 105853623, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2474808, - 41.4467956 - ], - [ - 2.2480739, - 41.4467956 - ], - [ - 2.2480739, - 41.4472475 - ], - [ - 2.2474808, - 41.4472475 - ], - [ - 2.2474808, - 41.4467956 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105853623 - } - }, - { - "id": 105853585, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2465379, - 41.4522218 - ], - [ - 2.2465783, - 41.4522218 - ], - [ - 2.2465783, - 41.4522572 - ], - [ - 2.2465379, - 41.4522572 - ], - [ - 2.2465379, - 41.4522218 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105853585 - } - }, - { - "id": 105853357, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2161309, - 41.4381973 - ], - [ - 2.2191735, - 41.4381973 - ], - [ - 2.2191735, - 41.4399409 - ], - [ - 2.2161309, - 41.4399409 - ], - [ - 2.2161309, - 41.4381973 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105853357 - } - }, - { - "id": 105853089, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2483995, - 41.4536115 - ], - [ - 2.2491958, - 41.4536115 - ], - [ - 2.2491958, - 41.4548201 - ], - [ - 2.2483995, - 41.4548201 - ], - [ - 2.2483995, - 41.4536115 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105853089 - } - }, - { - "id": 105852959, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2179836, - 41.4372123 - ], - [ - 2.2179836, - 41.4372123 - ], - [ - 2.2179836, - 41.4372123 - ], - [ - 2.2179836, - 41.4372123 - ], - [ - 2.2179836, - 41.4372123 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105852959 - } - }, - { - "id": 105852637, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2183188, - 41.4373568 - ], - [ - 2.2192263, - 41.4373568 - ], - [ - 2.2192263, - 41.4378636 - ], - [ - 2.2183188, - 41.4378636 - ], - [ - 2.2183188, - 41.4373568 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105852637 - } - }, - { - "id": 105852480, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2303331, - 41.4503598 - ], - [ - 2.2309688, - 41.4503598 - ], - [ - 2.2309688, - 41.4510478 - ], - [ - 2.2303331, - 41.4510478 - ], - [ - 2.2303331, - 41.4503598 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105852480 - } - }, - { - "id": 105852380, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2491308, - 41.453319 - ], - [ - 2.2498122, - 41.453319 - ], - [ - 2.2498122, - 41.4540318 - ], - [ - 2.2491308, - 41.4540318 - ], - [ - 2.2491308, - 41.453319 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105852380 - } - }, - { - "id": 105852106, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2470741, - 41.4576561 - ], - [ - 2.2481691, - 41.4576561 - ], - [ - 2.2481691, - 41.4611621 - ], - [ - 2.2470741, - 41.4611621 - ], - [ - 2.2470741, - 41.4576561 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105852106 - } - }, - { - "id": 105851717, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2481119, - 41.4468798 - ], - [ - 2.252066, - 41.4468798 - ], - [ - 2.252066, - 41.4487434 - ], - [ - 2.2481119, - 41.4487434 - ], - [ - 2.2481119, - 41.4468798 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105851717 - } - }, - { - "id": 105851287, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2318392, - 41.4511845 - ], - [ - 2.2325388, - 41.4511845 - ], - [ - 2.2325388, - 41.4520565 - ], - [ - 2.2318392, - 41.4520565 - ], - [ - 2.2318392, - 41.4511845 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105851287 - } - }, - { - "id": 105850827, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2514325, - 41.4549361 - ], - [ - 2.2514325, - 41.4549361 - ], - [ - 2.2514325, - 41.4549361 - ], - [ - 2.2514325, - 41.4549361 - ], - [ - 2.2514325, - 41.4549361 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105850827 - } - }, - { - "id": 105850512, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2504751, - 41.454224 - ], - [ - 2.2510854, - 41.454224 - ], - [ - 2.2510854, - 41.4545281 - ], - [ - 2.2504751, - 41.4545281 - ], - [ - 2.2504751, - 41.454224 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105850512 - } - }, - { - "id": 105850423, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2312484, - 41.4526581 - ], - [ - 2.2313486, - 41.4526581 - ], - [ - 2.2313486, - 41.4526803 - ], - [ - 2.2312484, - 41.4526803 - ], - [ - 2.2312484, - 41.4526581 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105850423 - } - }, - { - "id": 105850341, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2443126, - 41.4515501 - ], - [ - 2.2443126, - 41.4515501 - ], - [ - 2.2443126, - 41.4515501 - ], - [ - 2.2443126, - 41.4515501 - ], - [ - 2.2443126, - 41.4515501 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105850341 - } - }, - { - "id": 105850116, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2181157, - 41.4368602 - ], - [ - 2.2205558, - 41.4368602 - ], - [ - 2.2205558, - 41.4386336 - ], - [ - 2.2181157, - 41.4386336 - ], - [ - 2.2181157, - 41.4368602 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105850116 - } - }, - { - "id": 105850081, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2475541, - 41.4599903 - ], - [ - 2.2485463, - 41.4599903 - ], - [ - 2.2485463, - 41.460573 - ], - [ - 2.2475541, - 41.460573 - ], - [ - 2.2475541, - 41.4599903 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105850081 - } - }, - { - "id": 105850018, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2509703, - 41.4545281 - ], - [ - 2.251496, - 41.4545281 - ], - [ - 2.251496, - 41.4558099 - ], - [ - 2.2509703, - 41.4558099 - ], - [ - 2.2509703, - 41.4545281 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105850018 - } - }, - { - "id": 105849917, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2312484, - 41.4526581 - ], - [ - 2.2312484, - 41.4526581 - ], - [ - 2.2312484, - 41.4526581 - ], - [ - 2.2312484, - 41.4526581 - ], - [ - 2.2312484, - 41.4526581 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105849917 - } - }, - { - "id": 105849844, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2429246, - 41.4506645 - ], - [ - 2.2457461, - 41.4506645 - ], - [ - 2.2457461, - 41.4541083 - ], - [ - 2.2429246, - 41.4541083 - ], - [ - 2.2429246, - 41.4506645 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105849844 - } - }, - { - "id": 105849719, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.247528, - 41.460573 - ], - [ - 2.2475541, - 41.460573 - ], - [ - 2.2475541, - 41.4606781 - ], - [ - 2.247528, - 41.4606781 - ], - [ - 2.247528, - 41.460573 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105849719 - } - }, - { - "id": 105847791, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6934897, - 52.2357734 - ], - [ - 13.7190995, - 52.2357734 - ], - [ - 13.7190995, - 52.2543771 - ], - [ - 13.6934897, - 52.2543771 - ], - [ - 13.6934897, - 52.2357734 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 105847791 - } - }, - { - "id": 105842201, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.6107503, - -34.6469197 - ], - [ - -58.4801012, - -34.6469197 - ], - [ - -58.4801012, - -34.5688904 - ], - [ - -58.6107503, - -34.5688904 - ], - [ - -58.6107503, - -34.6469197 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 105842201 - } - }, - { - "id": 105799996, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1398694, - 50.8132367 - ], - [ - 4.1772084, - 50.8132367 - ], - [ - 4.1772084, - 50.8311899 - ], - [ - 4.1398694, - 50.8311899 - ], - [ - 4.1398694, - 50.8132367 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete, joost schouppe" - }, - "id": 105799996 - } - }, - { - "id": 105789049, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4480757, - 51.0935406 - ], - [ - 3.4480757, - 51.0935406 - ], - [ - 3.4480757, - 51.0935406 - ], - [ - 3.4480757, - 51.0935406 - ], - [ - 3.4480757, - 51.0935406 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105789049 - } - }, - { - "id": 105787489, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9932969, - 50.8345362 - ], - [ - 3.9932969, - 50.8345362 - ], - [ - 3.9932969, - 50.8345362 - ], - [ - 3.9932969, - 50.8345362 - ], - [ - 3.9932969, - 50.8345362 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fritures", - "imagery": "AGIVFlandersGRB", - "language": "nl" - }, - "id": 105787489 - } - }, - { - "id": 105784078, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2143784, - 51.1908391 - ], - [ - 3.2143784, - 51.1908391 - ], - [ - 3.2143784, - 51.1908391 - ], - [ - 3.2143784, - 51.1908391 - ], - [ - 3.2143784, - 51.1908391 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105784078 - } - }, - { - "id": 105779816, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2143784, - 51.1908391 - ], - [ - 3.2157165, - 51.1908391 - ], - [ - 3.2157165, - 51.1931063 - ], - [ - 3.2143784, - 51.1931063 - ], - [ - 3.2143784, - 51.1908391 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105779816 - } - }, - { - "id": 105776011, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3760157, - 51.1190895 - ], - [ - 4.52951, - 51.1190895 - ], - [ - 4.52951, - 51.1895919 - ], - [ - 4.3760157, - 51.1895919 - ], - [ - 4.3760157, - 51.1190895 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "speelplekken", - "imagery": "CartoDB.Positron", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105776011 - } - }, - { - "id": 105770108, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4689089, - 51.1271267 - ], - [ - 4.5099118, - 51.1271267 - ], - [ - 4.5099118, - 51.1736913 - ], - [ - 4.4689089, - 51.1736913 - ], - [ - 4.4689089, - 51.1271267 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "speelplekken", - "imagery": "CartoDB.Positron", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105770108 - } - }, - { - "id": 105766002, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9132375, - 51.22716 - ], - [ - 2.9206108, - 51.22716 - ], - [ - 2.9206108, - 51.2289608 - ], - [ - 2.9132375, - 51.2289608 - ], - [ - 2.9132375, - 51.22716 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105766002 - } - }, - { - "id": 105764692, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4326507, - 51.1409844 - ], - [ - 4.4568073, - 51.1409844 - ], - [ - 4.4568073, - 51.1431763 - ], - [ - 4.4326507, - 51.1431763 - ], - [ - 4.4326507, - 51.1409844 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "speelplekken", - "imagery": "CartoDB.Positron", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105764692 - } - }, - { - "id": 105763889, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2450291, - 41.4506645 - ], - [ - 2.245891, - 41.4506645 - ], - [ - 2.245891, - 41.4513657 - ], - [ - 2.2450291, - 41.4513657 - ], - [ - 2.2450291, - 41.4506645 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105763889 - } - }, - { - "id": 105762389, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2450291, - 41.4506645 - ], - [ - 2.2450291, - 41.4506645 - ], - [ - 2.2450291, - 41.4506645 - ], - [ - 2.2450291, - 41.4506645 - ], - [ - 2.2450291, - 41.4506645 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105762389 - } - }, - { - "id": 105745344, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 139.7362366, - 35.7696039 - ], - [ - 139.7362366, - 35.7696039 - ], - [ - 139.7362366, - 35.7696039 - ], - [ - 139.7362366, - 35.7696039 - ], - [ - 139.7362366, - 35.7696039 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105745344 - } - }, - { - "id": 105743538, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -52.6268828, - -27.0704663 - ], - [ - -52.6268828, - -27.0704663 - ], - [ - -52.6268828, - -27.0704663 - ], - [ - -52.6268828, - -27.0704663 - ], - [ - -52.6268828, - -27.0704663 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 105743538 - } - }, - { - "id": 105738229, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2457176, - 41.4511451 - ], - [ - 2.2457176, - 41.4511451 - ], - [ - 2.2457176, - 41.4511451 - ], - [ - 2.2457176, - 41.4511451 - ], - [ - 2.2457176, - 41.4511451 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 105738229 - } - }, - { - "id": 105735385, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5610879, - 53.0193794 - ], - [ - 6.5610879, - 53.0193794 - ], - [ - 6.5610879, - 53.0193794 - ], - [ - 6.5610879, - 53.0193794 - ], - [ - 6.5610879, - 53.0193794 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 105735385 - } - }, - { - "id": 105732069, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -52.6249731, - -27.0701085 - ], - [ - -52.6249731, - -27.0701085 - ], - [ - -52.6249731, - -27.0701085 - ], - [ - -52.6249731, - -27.0701085 - ], - [ - -52.6249731, - -27.0701085 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105732069 - } - }, - { - "id": 105731710, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -52.6276368, - -27.0701627 - ], - [ - -52.6276368, - -27.0701627 - ], - [ - -52.6276368, - -27.0701627 - ], - [ - -52.6276368, - -27.0701627 - ], - [ - -52.6276368, - -27.0701627 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 105731710 - } - }, - { - "id": 105723896, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.6113574, - -34.6470819 - ], - [ - -58.6056624, - -34.6470819 - ], - [ - -58.6056624, - -34.6457033 - ], - [ - -58.6113574, - -34.6457033 - ], - [ - -58.6113574, - -34.6470819 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 105723896 - } - }, - { - "id": 105723828, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5972709, - -34.6450947 - ], - [ - -58.5972709, - -34.6450947 - ], - [ - -58.5972709, - -34.6450947 - ], - [ - -58.5972709, - -34.6450947 - ], - [ - -58.5972709, - -34.6450947 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 105723828 - } - }, - { - "id": 105723801, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1954819, - 51.2022528 - ], - [ - 3.2268691, - 51.2022528 - ], - [ - 3.2268691, - 51.256839 - ], - [ - 3.1954819, - 51.256839 - ], - [ - 3.1954819, - 51.2022528 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105723801 - } - }, - { - "id": 105714421, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1533463, - 52.0844293 - ], - [ - 5.1533463, - 52.0844293 - ], - [ - 5.1533463, - 52.0844293 - ], - [ - 5.1533463, - 52.0844293 - ], - [ - 5.1533463, - 52.0844293 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105714421 - } - }, - { - "id": 105711334, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5359346, - 51.3830698 - ], - [ - 4.5359346, - 51.3830698 - ], - [ - 4.5359346, - 51.3830698 - ], - [ - 4.5359346, - 51.3830698 - ], - [ - 4.5359346, - 51.3830698 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105711334 - } - }, - { - "id": 105704959, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.4846171, - -33.5905772 - ], - [ - -70.4846171, - -33.5905772 - ], - [ - -70.4846171, - -33.5905772 - ], - [ - -70.4846171, - -33.5905772 - ], - [ - -70.4846171, - -33.5905772 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "ghostbikes", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105704959 - } - }, - { - "id": 105694177, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9132375, - 51.22716 - ], - [ - 2.916786, - 51.22716 - ], - [ - 2.916786, - 51.2277915 - ], - [ - 2.9132375, - 51.2277915 - ], - [ - 2.9132375, - 51.22716 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "fietsstraten", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105694177 - } - }, - { - "id": 105693580, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3621585, - 44.4986788 - ], - [ - 11.3622995, - 44.4986788 - ], - [ - 11.3622995, - 44.4999111 - ], - [ - 11.3621585, - 44.4999111 - ], - [ - 11.3621585, - 44.4986788 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105693580 - } - }, - { - "id": 105680393, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.652272, - -34.6555593 - ], - [ - -58.5897309, - -34.6555593 - ], - [ - -58.5897309, - -34.6452714 - ], - [ - -58.652272, - -34.6452714 - ], - [ - -58.652272, - -34.6555593 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 105680393 - } - }, - { - "id": 105676236, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9111099, - 51.2219418 - ], - [ - 2.9122103, - 51.2219418 - ], - [ - 2.9122103, - 51.222401 - ], - [ - 2.9111099, - 51.222401 - ], - [ - 2.9111099, - 51.2219418 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "theme": "fietsstraten", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 105676236 - } - }, - { - "id": 105673859, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1866847, - 51.1898621 - ], - [ - 3.2018441, - 51.1898621 - ], - [ - 3.2018441, - 51.256839 - ], - [ - 3.1866847, - 51.256839 - ], - [ - 3.1866847, - 51.1898621 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed_brugge", - "imagery": "HDM_HOT", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 105673859 - } - }, - { - "id": 105669136, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.5750791, - 48.2651495 - ], - [ - 13.6343854, - 48.2651495 - ], - [ - 13.6343854, - 48.3139602 - ], - [ - 13.5750791, - 48.3139602 - ], - [ - 13.5750791, - 48.2651495 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 105669136 - } - }, - { - "id": 105658938, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.3204692, - 45.6978436 - ], - [ - -0.3120047, - 45.6978436 - ], - [ - -0.3120047, - 45.7001984 - ], - [ - -0.3204692, - 45.7001984 - ], - [ - -0.3204692, - 45.6978436 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "buildings", - "imagery": "osm", - "language": "fr" - }, - "id": 105658938 - } - }, - { - "id": 105658468, - "type": "Feature", - "geometry": null, - "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:40:51Z", - "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": "buildings", - "imagery": "osm", - "language": "fr" - }, - "id": 105658468 - } - }, - { - "id": 105658372, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.3144553, - 45.6977868 - ], - [ - -0.3130029, - 45.6977868 - ], - [ - -0.3130029, - 45.6985001 - ], - [ - -0.3144553, - 45.6985001 - ], - [ - -0.3144553, - 45.6977868 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "buildings", - "imagery": "osm", - "language": "fr" - }, - "id": 105658372 - } - }, - { - "id": 105658173, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.3135508, - 45.6994506 - ], - [ - -0.3134865, - 45.6994506 - ], - [ - -0.3134865, - 45.6995077 - ], - [ - -0.3135508, - 45.6995077 - ], - [ - -0.3135508, - 45.6994506 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "buildings", - "imagery": "osm", - "language": "fr" - }, - "id": 105658173 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2021-7.json b/Docs/Tools/stats/stats.2021-7.json deleted file mode 100644 index b775278136..0000000000 --- a/Docs/Tools/stats/stats.2021-7.json +++ /dev/null @@ -1,42042 +0,0 @@ -{ - "features": [ - { - "id": 108959257, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -78.7003344, - 26.5404793 - ], - [ - -78.7003344, - 26.5404793 - ], - [ - -78.7003344, - 26.5404793 - ], - [ - -78.7003344, - 26.5404793 - ], - [ - -78.7003344, - 26.5404793 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 108959257 - } - }, - { - "id": 108956863, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.4660055, - 44.415769 - ], - [ - 6.4672769, - 44.415769 - ], - [ - 6.4672769, - 44.416179 - ], - [ - 6.4660055, - 44.416179 - ], - [ - 6.4660055, - 44.415769 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 108956863 - } - }, - { - "id": 108953733, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2439621, - 51.095523 - ], - [ - 4.2439621, - 51.095523 - ], - [ - 4.2439621, - 51.095523 - ], - [ - 4.2439621, - 51.095523 - ], - [ - 4.2439621, - 51.095523 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "AGIV", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108953733 - } - }, - { - "id": 108928737, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1133904, - 52.0868573 - ], - [ - 5.2358571, - 52.0868573 - ], - [ - 5.2358571, - 52.0921175 - ], - [ - 5.1133904, - 52.0921175 - ], - [ - 5.1133904, - 52.0868573 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108928737 - } - }, - { - "id": 108921995, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9106483, - 51.0705028 - ], - [ - 4.9113382, - 51.0705028 - ], - [ - 4.9113382, - 51.0711637 - ], - [ - 4.9106483, - 51.0711637 - ], - [ - 4.9106483, - 51.0705028 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 108921995 - } - }, - { - "id": 108917989, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6962306, - 52.1436707 - ], - [ - 4.6962306, - 52.1436707 - ], - [ - 4.6962306, - 52.1436707 - ], - [ - 4.6962306, - 52.1436707 - ], - [ - 4.6962306, - 52.1436707 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "wandelknooppunten", - "imagery": "osm", - "language": "nl", - "theme-creator": "Peter Elderson" - }, - "id": 108917989 - } - }, - { - "id": 108913793, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5996431, - 50.6650229 - ], - [ - 4.6012526, - 50.6650229 - ], - [ - 4.6012526, - 50.6658971 - ], - [ - 4.5996431, - 50.6658971 - ], - [ - 4.5996431, - 50.6650229 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fietsstraten", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108913793 - } - }, - { - "id": 108913244, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.4684958, - -34.535434 - ], - [ - -58.468454, - -34.535434 - ], - [ - -58.468454, - -34.5354149 - ], - [ - -58.4684958, - -34.5354149 - ], - [ - -58.4684958, - -34.535434 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 108913244 - } - }, - { - "id": 108910248, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4724862, - 47.023171 - ], - [ - 7.4744278, - 47.023171 - ], - [ - 7.4744278, - 47.0246517 - ], - [ - 7.4724862, - 47.0246517 - ], - [ - 7.4724862, - 47.023171 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 108910248 - } - }, - { - "id": 108904991, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.5063587, - 46.0541681 - ], - [ - 14.5063587, - 46.0541681 - ], - [ - 14.5063587, - 46.0541681 - ], - [ - 14.5063587, - 46.0541681 - ], - [ - 14.5063587, - 46.0541681 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 108904991 - } - }, - { - "id": 108903379, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.042544, - 44.0834712 - ], - [ - 7.042544, - 44.0834712 - ], - [ - 7.042544, - 44.0834712 - ], - [ - 7.042544, - 44.0834712 - ], - [ - 7.042544, - 44.0834712 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 108903379 - } - }, - { - "id": 108900714, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1856784, - 50.8010194 - ], - [ - 3.1860995, - 50.8010194 - ], - [ - 3.1860995, - 50.8012245 - ], - [ - 3.1856784, - 50.8012245 - ], - [ - 3.1856784, - 50.8010194 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "boomgaarden", - "imagery": "osm", - "language": "nl" - }, - "id": 108900714 - } - }, - { - "id": 108899480, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.042544, - 44.0834712 - ], - [ - 7.042544, - 44.0834712 - ], - [ - 7.042544, - 44.0834712 - ], - [ - 7.042544, - 44.0834712 - ], - [ - 7.042544, - 44.0834712 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 108899480 - } - }, - { - "id": 108899343, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.0426022, - 44.0833241 - ], - [ - 7.0426022, - 44.0833241 - ], - [ - 7.0426022, - 44.0833241 - ], - [ - 7.0426022, - 44.0833241 - ], - [ - 7.0426022, - 44.0833241 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 108899343 - } - }, - { - "id": 108893407, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7665933, - -34.6642008 - ], - [ - -58.5438412, - -34.6642008 - ], - [ - -58.5438412, - -34.6398969 - ], - [ - -58.7665933, - -34.6398969 - ], - [ - -58.7665933, - -34.6642008 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImagery", - "language": "es" - }, - "id": 108893407 - } - }, - { - "id": 108887082, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.042544, - 44.0834712 - ], - [ - 7.0427218, - 44.0834712 - ], - [ - 7.0427218, - 44.0839784 - ], - [ - 7.042544, - 44.0839784 - ], - [ - 7.042544, - 44.0834712 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 108887082 - } - }, - { - "id": 108850883, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.4452137, - -34.6198902 - ], - [ - -58.4452137, - -34.6198902 - ], - [ - -58.4452137, - -34.6198902 - ], - [ - -58.4452137, - -34.6198902 - ], - [ - -58.4452137, - -34.6198902 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImagery", - "language": "es" - }, - "id": 108850883 - } - }, - { - "id": 108847389, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4166006, - 46.9367244 - ], - [ - 7.4167176, - 46.9367244 - ], - [ - 7.4167176, - 46.9368086 - ], - [ - 7.4166006, - 46.9368086 - ], - [ - 7.4166006, - 46.9367244 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 108847389 - } - }, - { - "id": 108846702, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.6629114, - 54.0071391 - ], - [ - 11.6629114, - 54.0071391 - ], - [ - 11.6629114, - 54.0071391 - ], - [ - 11.6629114, - 54.0071391 - ], - [ - 11.6629114, - 54.0071391 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 108846702 - } - }, - { - "id": 108846162, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2233767, - 41.4346103 - ], - [ - 2.2277562, - 41.4346103 - ], - [ - 2.2277562, - 41.4354229 - ], - [ - 2.2233767, - 41.4354229 - ], - [ - 2.2233767, - 41.4346103 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 108846162 - } - }, - { - "id": 108845967, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2239295, - 41.4347653 - ], - [ - 2.2244299, - 41.4347653 - ], - [ - 2.2244299, - 41.4350818 - ], - [ - 2.2239295, - 41.4350818 - ], - [ - 2.2239295, - 41.4347653 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 108845967 - } - }, - { - "id": 108845962, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "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: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": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 108845962 - } - }, - { - "id": 108845960, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "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:44Z", - "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": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 108845960 - } - }, - { - "id": 108845957, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "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:43Z", - "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": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 108845957 - } - }, - { - "id": 108845953, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "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:34Z", - "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": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 108845953 - } - }, - { - "id": 108843616, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2210774, - 41.4318106 - ], - [ - 2.2242755, - 41.4318106 - ], - [ - 2.2242755, - 41.4348199 - ], - [ - 2.2210774, - 41.4348199 - ], - [ - 2.2210774, - 41.4318106 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 108843616 - } - }, - { - "id": 108840568, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.9443169, - 47.0467914 - ], - [ - 8.3732638, - 47.0467914 - ], - [ - 8.3732638, - 47.2887705 - ], - [ - 7.9443169, - 47.2887705 - ], - [ - 7.9443169, - 47.0467914 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108840568 - } - }, - { - "id": 108837580, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.116178, - 14.5786877 - ], - [ - 121.116178, - 14.5786877 - ], - [ - 121.116178, - 14.5786877 - ], - [ - 121.116178, - 14.5786877 - ], - [ - 121.116178, - 14.5786877 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108837580 - } - }, - { - "id": 108834111, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.5895507, - 51.0933052 - ], - [ - 2.5895507, - 51.0933052 - ], - [ - 2.5895507, - 51.0933052 - ], - [ - 2.5895507, - 51.0933052 - ], - [ - 2.5895507, - 51.0933052 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108834111 - } - }, - { - "id": 108832023, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7047731, - 51.075759 - ], - [ - 3.7047731, - 51.075759 - ], - [ - 3.7047731, - 51.075759 - ], - [ - 3.7047731, - 51.075759 - ], - [ - 3.7047731, - 51.075759 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/project/cycle-infra/", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "nl" - }, - "id": 108832023 - } - }, - { - "id": 108828280, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7864739, - -34.6667819 - ], - [ - -58.5656127, - -34.6667819 - ], - [ - -58.5656127, - -34.6406714 - ], - [ - -58.7864739, - -34.6406714 - ], - [ - -58.7864739, - -34.6667819 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImagery", - "language": "es" - }, - "id": 108828280 - } - }, - { - "id": 108827981, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1947221, - 51.192416 - ], - [ - 4.2061034, - 51.192416 - ], - [ - 4.2061034, - 51.1933976 - ], - [ - 4.1947221, - 51.1933976 - ], - [ - 4.1947221, - 51.192416 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 108827981 - } - }, - { - "id": 108827539, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5695252, - 53.017952 - ], - [ - 6.5695252, - 53.017952 - ], - [ - 6.5695252, - 53.017952 - ], - [ - 6.5695252, - 53.017952 - ], - [ - 6.5695252, - 53.017952 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/project/cycle-infra/", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 108827539 - } - }, - { - "id": 108826890, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4375698, - 51.0927658 - ], - [ - 3.4585383, - 51.0927658 - ], - [ - 3.4585383, - 51.1030732 - ], - [ - 3.4375698, - 51.1030732 - ], - [ - 3.4375698, - 51.0927658 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/project/cycle-infra/", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 108826890 - } - }, - { - "id": 108826680, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7016472, - 51.0747279 - ], - [ - 3.7076812, - 51.0747279 - ], - [ - 3.7076812, - 51.0768653 - ], - [ - 3.7016472, - 51.0768653 - ], - [ - 3.7016472, - 51.0747279 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/project/cycle-infra/", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "nl" - }, - "id": 108826680 - } - }, - { - "id": 108815732, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6957551, - 51.068765 - ], - [ - 3.7152925, - 51.068765 - ], - [ - 3.7152925, - 51.0772342 - ], - [ - 3.6957551, - 51.0772342 - ], - [ - 3.6957551, - 51.068765 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/project/cycle-infra/", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "nl" - }, - "id": 108815732 - } - }, - { - "id": 108808636, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2623547, - 51.0158273 - ], - [ - 3.2624593, - 51.0158273 - ], - [ - 3.2624593, - 51.0158694 - ], - [ - 3.2623547, - 51.0158694 - ], - [ - 3.2623547, - 51.0158273 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "boomgaarden", - "imagery": "AGIV10cm", - "language": "nl" - }, - "id": 108808636 - } - }, - { - "id": 108778702, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7456124, - 51.036743 - ], - [ - 3.7456124, - 51.036743 - ], - [ - 3.7456124, - 51.036743 - ], - [ - 3.7456124, - 51.036743 - ], - [ - 3.7456124, - 51.036743 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bicyclelib", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 108778702 - } - }, - { - "id": 108778207, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0808656, - 51.3281815 - ], - [ - 5.0808656, - 51.3281815 - ], - [ - 5.0808656, - 51.3281815 - ], - [ - 5.0808656, - 51.3281815 - ], - [ - 5.0808656, - 51.3281815 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 108778207 - } - }, - { - "id": 108777669, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7403728, - 51.0339897 - ], - [ - 3.7403728, - 51.0339897 - ], - [ - 3.7403728, - 51.0339897 - ], - [ - 3.7403728, - 51.0339897 - ], - [ - 3.7403728, - 51.0339897 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 108777669 - } - }, - { - "id": 108777466, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7423387, - 51.0350406 - ], - [ - 3.7423387, - 51.0350406 - ], - [ - 3.7423387, - 51.0350406 - ], - [ - 3.7423387, - 51.0350406 - ], - [ - 3.7423387, - 51.0350406 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 108777466 - } - }, - { - "id": 108776638, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7416816, - 51.0331734 - ], - [ - 3.7436959, - 51.0331734 - ], - [ - 3.7436959, - 51.0358856 - ], - [ - 3.7416816, - 51.0358856 - ], - [ - 3.7416816, - 51.0331734 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fritures", - "imagery": "osm", - "language": "en" - }, - "id": 108776638 - } - }, - { - "id": 108769204, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9774026, - 50.6589766 - ], - [ - 5.9774026, - 50.6589766 - ], - [ - 5.9774026, - 50.6589766 - ], - [ - 5.9774026, - 50.6589766 - ], - [ - 5.9774026, - 50.6589766 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108769204 - } - }, - { - "id": 108768073, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2308816, - 52.0868573 - ], - [ - 5.2441156, - 52.0868573 - ], - [ - 5.2441156, - 52.0934608 - ], - [ - 5.2308816, - 52.0934608 - ], - [ - 5.2308816, - 52.0868573 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108768073 - } - }, - { - "id": 108766854, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7460979, - 51.0359087 - ], - [ - 3.7474407, - 51.0359087 - ], - [ - 3.7474407, - 51.0429316 - ], - [ - 3.7460979, - 51.0429316 - ], - [ - 3.7460979, - 51.0359087 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108766854 - } - }, - { - "id": 108764539, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5533368, - 50.991728 - ], - [ - 4.5533368, - 50.991728 - ], - [ - 4.5533368, - 50.991728 - ], - [ - 4.5533368, - 50.991728 - ], - [ - 4.5533368, - 50.991728 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "deletion": "yes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108764539 - } - }, - { - "id": 108764519, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5533368, - 50.991728 - ], - [ - 4.5533368, - 50.991728 - ], - [ - 4.5533368, - 50.991728 - ], - [ - 4.5533368, - 50.991728 - ], - [ - 4.5533368, - 50.991728 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108764519 - } - }, - { - "id": 108764380, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2311794, - 51.2202459 - ], - [ - 3.2311794, - 51.2202459 - ], - [ - 3.2311794, - 51.2202459 - ], - [ - 3.2311794, - 51.2202459 - ], - [ - 3.2311794, - 51.2202459 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "natuurpunt", - "imagery": "CartoDB.Positron", - "language": "en" - }, - "id": 108764380 - } - }, - { - "id": 108764179, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5498526, - 50.9909412 - ], - [ - 4.5498526, - 50.9909412 - ], - [ - 4.5498526, - 50.9909412 - ], - [ - 4.5498526, - 50.9909412 - ], - [ - 4.5498526, - 50.9909412 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "deletion": "yes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108764179 - } - }, - { - "id": 108764159, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5498526, - 50.9909412 - ], - [ - 4.5498526, - 50.9909412 - ], - [ - 4.5498526, - 50.9909412 - ], - [ - 4.5498526, - 50.9909412 - ], - [ - 4.5498526, - 50.9909412 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108764159 - } - }, - { - "id": 108763605, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2238221, - 51.2194899 - ], - [ - 3.2319653, - 51.2194899 - ], - [ - 3.2319653, - 51.221568 - ], - [ - 3.2238221, - 51.221568 - ], - [ - 3.2238221, - 51.2194899 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "natuurpunt", - "imagery": "CartoDB.Positron", - "language": "en" - }, - "id": 108763605 - } - }, - { - "id": 108763331, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.737028, - 51.028128 - ], - [ - 3.7569863, - 51.028128 - ], - [ - 3.7569863, - 51.0347367 - ], - [ - 3.737028, - 51.0347367 - ], - [ - 3.737028, - 51.028128 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108763331 - } - }, - { - "id": 108760889, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.77258, - -34.6665238 - ], - [ - -58.5352622, - -34.6665238 - ], - [ - -58.5352622, - -34.6394555 - ], - [ - -58.77258, - -34.6394555 - ], - [ - -58.77258, - -34.6665238 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImagery", - "language": "es" - }, - "id": 108760889 - } - }, - { - "id": 108760468, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.218301, - 51.214947 - ], - [ - 3.2195995, - 51.214947 - ], - [ - 3.2195995, - 51.2152977 - ], - [ - 3.218301, - 51.2152977 - ], - [ - 3.218301, - 51.214947 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 108760468 - } - }, - { - "id": 108760335, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4391632, - 50.8767193 - ], - [ - 4.4391632, - 50.8767193 - ], - [ - 4.4391632, - 50.8767193 - ], - [ - 4.4391632, - 50.8767193 - ], - [ - 4.4391632, - 50.8767193 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "deletion": "yes", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 108760335 - } - }, - { - "id": 108760312, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4391632, - 50.8767193 - ], - [ - 4.4391632, - 50.8767193 - ], - [ - 4.4391632, - 50.8767193 - ], - [ - 4.4391632, - 50.8767193 - ], - [ - 4.4391632, - 50.8767193 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 108760312 - } - }, - { - "id": 108756674, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1100631, - 48.5490101 - ], - [ - 9.1100631, - 48.5490101 - ], - [ - 9.1100631, - 48.5490101 - ], - [ - 9.1100631, - 48.5490101 - ], - [ - 9.1100631, - 48.5490101 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 108756674 - } - }, - { - "id": 108753434, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2182807, - 51.2136589 - ], - [ - 3.2210903, - 51.2136589 - ], - [ - 3.2210903, - 51.217223 - ], - [ - 3.2182807, - 51.217223 - ], - [ - 3.2182807, - 51.2136589 - ] - ] - ] - }, - "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, - "metadata": { - "host": "localhost:1234", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 108753434 - } - }, - { - "id": 108753077, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9333999, - 48.4778847 - ], - [ - 9.1333763, - 48.4778847 - ], - [ - 9.1333763, - 48.5639458 - ], - [ - 8.9333999, - 48.5639458 - ], - [ - 8.9333999, - 48.4778847 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 108753077 - } - }, - { - "id": 108752910, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6402512, - 50.995621 - ], - [ - 3.6418605, - 50.995621 - ], - [ - 3.6418605, - 50.9971166 - ], - [ - 3.6402512, - 50.9971166 - ], - [ - 3.6402512, - 50.995621 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "natuurpunt", - "imagery": "CartoDB.Positron", - "language": "nl" - }, - "id": 108752910 - } - }, - { - "id": 108742931, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.6428985, - 44.8982967 - ], - [ - 6.6428985, - 44.8982967 - ], - [ - 6.6428985, - 44.8982967 - ], - [ - 6.6428985, - 44.8982967 - ], - [ - 6.6428985, - 44.8982967 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108742931 - } - }, - { - "id": 108739795, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.633988, - 44.8940661 - ], - [ - 6.633988, - 44.8940661 - ], - [ - 6.633988, - 44.8940661 - ], - [ - 6.633988, - 44.8940661 - ], - [ - 6.633988, - 44.8940661 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108739795 - } - }, - { - "id": 108736493, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2537717, - 51.2182316 - ], - [ - 3.2537717, - 51.2182316 - ], - [ - 3.2537717, - 51.2182316 - ], - [ - 3.2537717, - 51.2182316 - ], - [ - 3.2537717, - 51.2182316 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 108736493 - } - }, - { - "id": 108725681, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.2843001, - 51.4935636 - ], - [ - 10.6408602, - 51.4935636 - ], - [ - 10.6408602, - 52.4233196 - ], - [ - 7.2843001, - 52.4233196 - ], - [ - 7.2843001, - 51.4935636 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 108725681 - } - }, - { - "id": 108709342, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2216745, - 51.3042444 - ], - [ - 3.2216745, - 51.3042444 - ], - [ - 3.2216745, - 51.3042444 - ], - [ - 3.2216745, - 51.3042444 - ], - [ - 3.2216745, - 51.3042444 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "openwindpowermap", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 108709342 - } - }, - { - "id": 108709337, - "type": "Feature", - "geometry": null, - "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: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": "openwindpowermap", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 108709337 - } - }, - { - "id": 108709334, - "type": "Feature", - "geometry": null, - "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:22Z", - "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", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 108709334 - } - }, - { - "id": 108709323, - "type": "Feature", - "geometry": null, - "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:06Z", - "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", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 108709323 - } - }, - { - "id": 108708914, - "type": "Feature", - "geometry": null, - "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:56:11Z", - "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", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 108708914 - } - }, - { - "id": 108708912, - "type": "Feature", - "geometry": null, - "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:56: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": "openwindpowermap", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 108708912 - } - }, - { - "id": 108708909, - "type": "Feature", - "geometry": null, - "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:59Z", - "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", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 108708909 - } - }, - { - "id": 108708907, - "type": "Feature", - "geometry": null, - "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:56Z", - "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", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 108708907 - } - }, - { - "id": 108708906, - "type": "Feature", - "geometry": null, - "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:55Z", - "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", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 108708906 - } - }, - { - "id": 108708905, - "type": "Feature", - "geometry": null, - "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:52Z", - "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", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 108708905 - } - }, - { - "id": 108708900, - "type": "Feature", - "geometry": null, - "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: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": "openwindpowermap", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 108708900 - } - }, - { - "id": 108708899, - "type": "Feature", - "geometry": null, - "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: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": "openwindpowermap", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 108708899 - } - }, - { - "id": 108708898, - "type": "Feature", - "geometry": null, - "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: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": "openwindpowermap", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 108708898 - } - }, - { - "id": 108708896, - "type": "Feature", - "geometry": null, - "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:42Z", - "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", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 108708896 - } - }, - { - "id": 108708885, - "type": "Feature", - "geometry": null, - "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: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": "openwindpowermap", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 108708885 - } - }, - { - "id": 108708871, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2200171, - 51.3042444 - ], - [ - 3.2216745, - 51.3042444 - ], - [ - 3.2216745, - 51.3062665 - ], - [ - 3.2200171, - 51.3062665 - ], - [ - 3.2200171, - 51.3042444 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "openwindpowermap", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 108708871 - } - }, - { - "id": 108708867, - "type": "Feature", - "geometry": null, - "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:00Z", - "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", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 108708867 - } - }, - { - "id": 108708866, - "type": "Feature", - "geometry": null, - "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:59Z", - "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", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 108708866 - } - }, - { - "id": 108708863, - "type": "Feature", - "geometry": null, - "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:56Z", - "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", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 108708863 - } - }, - { - "id": 108708854, - "type": "Feature", - "geometry": null, - "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:47Z", - "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", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 108708854 - } - }, - { - "id": 108708826, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2183697, - 51.3062665 - ], - [ - 3.2200171, - 51.3062665 - ], - [ - 3.2200171, - 51.308292 - ], - [ - 3.2183697, - 51.308292 - ], - [ - 3.2183697, - 51.3062665 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "openwindpowermap", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 108708826 - } - }, - { - "id": 108708820, - "type": "Feature", - "geometry": null, - "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:06Z", - "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", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 108708820 - } - }, - { - "id": 108708818, - "type": "Feature", - "geometry": null, - "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:02Z", - "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", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 108708818 - } - }, - { - "id": 108708816, - "type": "Feature", - "geometry": null, - "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:53:59Z", - "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", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 108708816 - } - }, - { - "id": 108708815, - "type": "Feature", - "geometry": null, - "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:53: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": "openwindpowermap", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 108708815 - } - }, - { - "id": 108708814, - "type": "Feature", - "geometry": null, - "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:53:55Z", - "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", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 108708814 - } - }, - { - "id": 108708808, - "type": "Feature", - "geometry": null, - "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:53:43Z", - "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", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 108708808 - } - }, - { - "id": 108708640, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2167152, - 51.308292 - ], - [ - 3.2183697, - 51.308292 - ], - [ - 3.2183697, - 51.3103144 - ], - [ - 3.2167152, - 51.3103144 - ], - [ - 3.2167152, - 51.308292 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "openwindpowermap", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 108708640 - } - }, - { - "id": 108706282, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.1194974, - 49.6696867 - ], - [ - 6.1194974, - 49.6696867 - ], - [ - 6.1194974, - 49.6696867 - ], - [ - 6.1194974, - 49.6696867 - ], - [ - 6.1194974, - 49.6696867 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108706282 - } - }, - { - "id": 108703673, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7452784, - 51.0366699 - ], - [ - 3.7459275, - 51.0366699 - ], - [ - 3.7459275, - 51.0374929 - ], - [ - 3.7452784, - 51.0374929 - ], - [ - 3.7452784, - 51.0366699 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108703673 - } - }, - { - "id": 108703402, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7423999, - 51.0368176 - ], - [ - 3.7455823, - 51.0368176 - ], - [ - 3.7455823, - 51.0373388 - ], - [ - 3.7423999, - 51.0373388 - ], - [ - 3.7423999, - 51.0368176 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "lebeno", - "uid": "1710114", - "editor": "MapComplete 0.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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108703402 - } - }, - { - "id": 108702879, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7454008, - 51.0368833 - ], - [ - 3.7454008, - 51.0368833 - ], - [ - 3.7454008, - 51.0368833 - ], - [ - 3.7454008, - 51.0368833 - ], - [ - 3.7454008, - 51.0368833 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108702879 - } - }, - { - "id": 108702612, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7454953, - 51.0373494 - ], - [ - 3.7454953, - 51.0373494 - ], - [ - 3.7454953, - 51.0373494 - ], - [ - 3.7454953, - 51.0373494 - ], - [ - 3.7454953, - 51.0373494 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 108702612 - } - }, - { - "id": 108701765, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4449506, - 51.1392231 - ], - [ - 4.4459021, - 51.1392231 - ], - [ - 4.4459021, - 51.1400583 - ], - [ - 4.4449506, - 51.1400583 - ], - [ - 4.4449506, - 51.1392231 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "nl" - }, - "id": 108701765 - } - }, - { - "id": 108691847, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7290746, - -34.6641545 - ], - [ - -58.5275307, - -34.6641545 - ], - [ - -58.5275307, - -34.6390208 - ], - [ - -58.7290746, - -34.6390208 - ], - [ - -58.7290746, - -34.6641545 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 108691847 - } - }, - { - "id": 108690606, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9716206, - 51.1227841 - ], - [ - 4.9728203, - 51.1227841 - ], - [ - 4.9728203, - 51.1233002 - ], - [ - 4.9716206, - 51.1233002 - ], - [ - 4.9716206, - 51.1227841 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 108690606 - } - }, - { - "id": 108680475, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.5425827, - 52.2556346 - ], - [ - 10.5425827, - 52.2556346 - ], - [ - 10.5425827, - 52.2556346 - ], - [ - 10.5425827, - 52.2556346 - ], - [ - 10.5425827, - 52.2556346 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 108680475 - } - }, - { - "id": 108680212, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.530704, - 52.2579515 - ], - [ - 10.530704, - 52.2579515 - ], - [ - 10.530704, - 52.2579515 - ], - [ - 10.530704, - 52.2579515 - ], - [ - 10.530704, - 52.2579515 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108680212 - } - }, - { - "id": 108678356, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.5205818, - 42.5275233 - ], - [ - 1.5205818, - 42.5275233 - ], - [ - 1.5205818, - 42.5275233 - ], - [ - 1.5205818, - 42.5275233 - ], - [ - 1.5205818, - 42.5275233 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 108678356 - } - }, - { - "id": 108676310, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.3581012, - 48.6451789 - ], - [ - 9.3581226, - 48.6451789 - ], - [ - 9.3581226, - 48.6452179 - ], - [ - 9.3581012, - 48.6452179 - ], - [ - 9.3581012, - 48.6451789 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 108676310 - } - }, - { - "id": 108670320, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1197442, - 52.0889652 - ], - [ - 5.1197442, - 52.0889652 - ], - [ - 5.1197442, - 52.0889652 - ], - [ - 5.1197442, - 52.0889652 - ], - [ - 5.1197442, - 52.0889652 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108670320 - } - }, - { - "id": 108652577, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -72.6167449, - -38.7327441 - ], - [ - -72.6167449, - -38.7327441 - ], - [ - -72.6167449, - -38.7327441 - ], - [ - -72.6167449, - -38.7327441 - ], - [ - -72.6167449, - -38.7327441 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 108652577 - } - }, - { - "id": 108649257, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5300885, - 51.2271739 - ], - [ - 4.5307458, - 51.2271739 - ], - [ - 4.5307458, - 51.2272998 - ], - [ - 4.5300885, - 51.2272998 - ], - [ - 4.5300885, - 51.2271739 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fietsstraten", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108649257 - } - }, - { - "id": 108648942, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -76.6160533, - 39.3244445 - ], - [ - -76.6160533, - 39.3244445 - ], - [ - -76.6160533, - 39.3244445 - ], - [ - -76.6160533, - 39.3244445 - ], - [ - -76.6160533, - 39.3244445 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 108648942 - } - }, - { - "id": 108642981, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -76.9843903, - 38.9417097 - ], - [ - -76.9843903, - 38.9417097 - ], - [ - -76.9843903, - 38.9417097 - ], - [ - -76.9843903, - 38.9417097 - ], - [ - -76.9843903, - 38.9417097 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "Mapbox", - "language": "en" - }, - "id": 108642981 - } - }, - { - "id": 108642896, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -76.9929744, - 38.9352868 - ], - [ - -76.9929744, - 38.9352868 - ], - [ - -76.9929744, - 38.9352868 - ], - [ - -76.9929744, - 38.9352868 - ], - [ - -76.9929744, - 38.9352868 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "ghostbikes", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108642896 - } - }, - { - "id": 108631066, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.981973, - 50.957847 - ], - [ - 3.9819891, - 50.957847 - ], - [ - 3.9819891, - 50.9578876 - ], - [ - 3.981973, - 50.9578876 - ], - [ - 3.981973, - 50.957847 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "cyclofix", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 108631066 - } - }, - { - "id": 108630792, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.6679136, - -34.6601812 - ], - [ - -58.6678797, - -34.6601812 - ], - [ - -58.6678797, - -34.6601111 - ], - [ - -58.6679136, - -34.6601111 - ], - [ - -58.6679136, - -34.6601812 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 108630792 - } - }, - { - "id": 108629843, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9202898, - 45.5651718 - ], - [ - 5.9202898, - 45.5651718 - ], - [ - 5.9202898, - 45.5651718 - ], - [ - 5.9202898, - 45.5651718 - ], - [ - 5.9202898, - 45.5651718 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 108629843 - } - }, - { - "id": 108627710, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.717643, - -34.6661333 - ], - [ - -58.717643, - -34.6661333 - ], - [ - -58.717643, - -34.6661333 - ], - [ - -58.717643, - -34.6661333 - ], - [ - -58.717643, - -34.6661333 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "Mapbox", - "language": "es" - }, - "id": 108627710 - } - }, - { - "id": 108627240, - "type": "Feature", - "geometry": null, - "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:53Z", - "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/feature/road-splitting/", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108627240 - } - }, - { - "id": 108627214, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9226714, - 45.5651055 - ], - [ - 5.9226714, - 45.5651055 - ], - [ - 5.9226714, - 45.5651055 - ], - [ - 5.9226714, - 45.5651055 - ], - [ - 5.9226714, - 45.5651055 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108627214 - } - }, - { - "id": 108627066, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9228191, - 45.5646536 - ], - [ - 5.9228191, - 45.5646536 - ], - [ - 5.9228191, - 45.5646536 - ], - [ - 5.9228191, - 45.5646536 - ], - [ - 5.9228191, - 45.5646536 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108627066 - } - }, - { - "id": 108610298, - "type": "Feature", - "geometry": null, - "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:29:27Z", - "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": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 108610298 - } - }, - { - "id": 108609516, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1992957, - 51.2504341 - ], - [ - 3.1992957, - 51.2504341 - ], - [ - 3.1992957, - 51.2504341 - ], - [ - 3.1992957, - 51.2504341 - ], - [ - 3.1992957, - 51.2504341 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 108609516 - } - }, - { - "id": 108580733, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.7732198, - -33.6005263 - ], - [ - -70.5717154, - -33.6005263 - ], - [ - -70.5717154, - -33.4869734 - ], - [ - -70.7732198, - -33.4869734 - ], - [ - -70.7732198, - -33.6005263 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "trees", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 108580733 - } - }, - { - "id": 108579166, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.7104652, - -36.8697646 - ], - [ - 174.7104652, - -36.8697646 - ], - [ - 174.7104652, - -36.8697646 - ], - [ - 174.7104652, - -36.8697646 - ], - [ - 174.7104652, - -36.8697646 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108579166 - } - }, - { - "id": 108577675, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.7732198, - -33.4885153 - ], - [ - -70.7730614, - -33.4885153 - ], - [ - -70.7730614, - -33.4884324 - ], - [ - -70.7732198, - -33.4884324 - ], - [ - -70.7732198, - -33.4885153 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 108577675 - } - }, - { - "id": 108562748, - "type": "Feature", - "geometry": null, - "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: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/feature/road-splitting/", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 108562748 - } - }, - { - "id": 108562747, - "type": "Feature", - "geometry": null, - "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: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/feature/road-splitting/", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 108562747 - } - }, - { - "id": 108562739, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5352854, - 46.2692277 - ], - [ - 5.5352854, - 46.2692277 - ], - [ - 5.5352854, - 46.2692277 - ], - [ - 5.5352854, - 46.2692277 - ], - [ - 5.5352854, - 46.2692277 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 108562739 - } - }, - { - "id": 108562725, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5349834, - 46.2692277 - ], - [ - 5.5352854, - 46.2692277 - ], - [ - 5.5352854, - 46.2692291 - ], - [ - 5.5349834, - 46.2692291 - ], - [ - 5.5349834, - 46.2692277 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 108562725 - } - }, - { - "id": 108558900, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9716206, - 51.1227841 - ], - [ - 4.9728203, - 51.1227841 - ], - [ - 4.9728203, - 51.1233002 - ], - [ - 4.9716206, - 51.1233002 - ], - [ - 4.9716206, - 51.1227841 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 108558900 - } - }, - { - "id": 108556779, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6268241, - 50.8638451 - ], - [ - 4.6279088, - 50.8638451 - ], - [ - 4.6279088, - 50.8648498 - ], - [ - 4.6268241, - 50.8648498 - ], - [ - 4.6268241, - 50.8638451 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 108556779 - } - }, - { - "id": 108550458, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 84.948122, - 56.4554209 - ], - [ - 84.9794609, - 56.4554209 - ], - [ - 84.9794609, - 56.4899795 - ], - [ - 84.948122, - 56.4899795 - ], - [ - 84.948122, - 56.4554209 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108550458 - } - }, - { - "id": 108538629, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2074582, - 41.528594 - ], - [ - 2.2637272, - 41.528594 - ], - [ - 2.2637272, - 41.5589886 - ], - [ - 2.2074582, - 41.5589886 - ], - [ - 2.2074582, - 41.528594 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 108538629 - } - }, - { - "id": 108538300, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.957282, - 48.0559482 - ], - [ - 4.9574117, - 48.0559482 - ], - [ - 4.9574117, - 48.0560264 - ], - [ - 4.957282, - 48.0560264 - ], - [ - 4.957282, - 48.0559482 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108538300 - } - }, - { - "id": 108532499, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.504129, - 49.5927947 - ], - [ - 4.504129, - 49.5927947 - ], - [ - 4.504129, - 49.5927947 - ], - [ - 4.504129, - 49.5927947 - ], - [ - 4.504129, - 49.5927947 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108532499 - } - }, - { - "id": 108532464, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5040458, - 49.5927651 - ], - [ - 4.5040458, - 49.5927651 - ], - [ - 4.5040458, - 49.5927651 - ], - [ - 4.5040458, - 49.5927651 - ], - [ - 4.5040458, - 49.5927651 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108532464 - } - }, - { - "id": 108532098, - "type": "Feature", - "geometry": null, - "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:11:32Z", - "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/feature/road-splitting/", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 108532098 - } - }, - { - "id": 108532058, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5034987, - 49.5928573 - ], - [ - 4.5034987, - 49.5928573 - ], - [ - 4.5034987, - 49.5928573 - ], - [ - 4.5034987, - 49.5928573 - ], - [ - 4.5034987, - 49.5928573 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 108532058 - } - }, - { - "id": 108531914, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5034987, - 49.5928573 - ], - [ - 4.5034987, - 49.5928573 - ], - [ - 4.5034987, - 49.5928573 - ], - [ - 4.5034987, - 49.5928573 - ], - [ - 4.5034987, - 49.5928573 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 108531914 - } - }, - { - "id": 108522608, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.6309517, - 51.9574755 - ], - [ - 7.6310315, - 51.9574755 - ], - [ - 7.6310315, - 51.9575165 - ], - [ - 7.6309517, - 51.9575165 - ], - [ - 7.6309517, - 51.9574755 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "benches", - "imagery": "osm", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 108522608 - } - }, - { - "id": 108516737, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7905991, - -34.660918 - ], - [ - -58.751522, - -34.660918 - ], - [ - -58.751522, - -34.6501246 - ], - [ - -58.7905991, - -34.6501246 - ], - [ - -58.7905991, - -34.660918 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 108516737 - } - }, - { - "id": 108508414, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.069506, - 48.8824157 - ], - [ - 2.069506, - 48.8824157 - ], - [ - 2.069506, - 48.8824157 - ], - [ - 2.069506, - 48.8824157 - ], - [ - 2.069506, - 48.8824157 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108508414 - } - }, - { - "id": 108505885, - "type": "Feature", - "geometry": null, - "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:53Z", - "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/feature/road-splitting/", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108505885 - } - }, - { - "id": 108505884, - "type": "Feature", - "geometry": null, - "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:53Z", - "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/feature/road-splitting/", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108505884 - } - }, - { - "id": 108505883, - "type": "Feature", - "geometry": null, - "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:53Z", - "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/feature/road-splitting/", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108505883 - } - }, - { - "id": 108505875, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8838655, - 50.7742916 - ], - [ - 3.8838655, - 50.7742916 - ], - [ - 3.8838655, - 50.7742916 - ], - [ - 3.8838655, - 50.7742916 - ], - [ - 3.8838655, - 50.7742916 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108505875 - } - }, - { - "id": 108505874, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108505874 - } - }, - { - "id": 108505869, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8838655, - 50.7742916 - ], - [ - 3.8838655, - 50.7742916 - ], - [ - 3.8838655, - 50.7742916 - ], - [ - 3.8838655, - 50.7742916 - ], - [ - 3.8838655, - 50.7742916 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108505869 - } - }, - { - "id": 108505836, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8838655, - 50.7742916 - ], - [ - 3.8838655, - 50.7742916 - ], - [ - 3.8838655, - 50.7742916 - ], - [ - 3.8838655, - 50.7742916 - ], - [ - 3.8838655, - 50.7742916 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108505836 - } - }, - { - "id": 108505800, - "type": "Feature", - "geometry": null, - "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:21:12Z", - "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/feature/road-splitting/", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 108505800 - } - }, - { - "id": 108505799, - "type": "Feature", - "geometry": null, - "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:21:12Z", - "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/feature/road-splitting/", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 108505799 - } - }, - { - "id": 108505798, - "type": "Feature", - "geometry": null, - "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:21:12Z", - "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/feature/road-splitting/", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 108505798 - } - }, - { - "id": 108505791, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8836831, - 50.7740032 - ], - [ - 3.8836831, - 50.7740032 - ], - [ - 3.8836831, - 50.7740032 - ], - [ - 3.8836831, - 50.7740032 - ], - [ - 3.8836831, - 50.7740032 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 108505791 - } - }, - { - "id": 108505790, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 108505790 - } - }, - { - "id": 108505781, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8836831, - 50.7740032 - ], - [ - 3.8836831, - 50.7740032 - ], - [ - 3.8836831, - 50.7740032 - ], - [ - 3.8836831, - 50.7740032 - ], - [ - 3.8836831, - 50.7740032 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 108505781 - } - }, - { - "id": 108505761, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8836831, - 50.7740032 - ], - [ - 3.8836831, - 50.7740032 - ], - [ - 3.8836831, - 50.7740032 - ], - [ - 3.8836831, - 50.7740032 - ], - [ - 3.8836831, - 50.7740032 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 108505761 - } - }, - { - "id": 108499953, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2806716, - 41.5920707 - ], - [ - 2.2860494, - 41.5920707 - ], - [ - 2.2860494, - 41.6001002 - ], - [ - 2.2806716, - 41.6001002 - ], - [ - 2.2806716, - 41.5920707 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 108499953 - } - }, - { - "id": 108499761, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2118254, - 41.5428944 - ], - [ - 2.2189331, - 41.5428944 - ], - [ - 2.2189331, - 41.546921 - ], - [ - 2.2118254, - 41.546921 - ], - [ - 2.2118254, - 41.5428944 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108499761 - } - }, - { - "id": 108499693, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.0629672, - 49.567449 - ], - [ - 6.0629672, - 49.567449 - ], - [ - 6.0629672, - 49.567449 - ], - [ - 6.0629672, - 49.567449 - ], - [ - 6.0629672, - 49.567449 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108499693 - } - }, - { - "id": 108498025, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3066473, - 50.9250678 - ], - [ - 5.3927046, - 50.9250678 - ], - [ - 5.3927046, - 51.0101146 - ], - [ - 4.3066473, - 51.0101146 - ], - [ - 4.3066473, - 50.9250678 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 108498025 - } - }, - { - "id": 108497725, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5296926, - -34.6390782 - ], - [ - -58.5296926, - -34.6390782 - ], - [ - -58.5296926, - -34.6390782 - ], - [ - -58.5296926, - -34.6390782 - ], - [ - -58.5296926, - -34.6390782 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "osm", - "language": "es" - }, - "id": 108497725 - } - }, - { - "id": 108497719, - "type": "Feature", - "geometry": null, - "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: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": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "osm", - "language": "es" - }, - "id": 108497719 - } - }, - { - "id": 108497707, - "type": "Feature", - "geometry": null, - "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:13Z", - "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": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "osm", - "language": "es" - }, - "id": 108497707 - } - }, - { - "id": 108495359, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7913609, - -34.6639758 - ], - [ - -58.5352689, - -34.6639758 - ], - [ - -58.5352689, - -34.6395019 - ], - [ - -58.7913609, - -34.6395019 - ], - [ - -58.7913609, - -34.6639758 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImagery", - "language": "es" - }, - "id": 108495359 - } - }, - { - "id": 108493319, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.5872921, - 43.1389492 - ], - [ - 16.5872921, - 43.1389492 - ], - [ - 16.5872921, - 43.1389492 - ], - [ - 16.5872921, - 43.1389492 - ], - [ - 16.5872921, - 43.1389492 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108493319 - } - }, - { - "id": 108483772, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.3282186, - 45.5159509 - ], - [ - 10.3283904, - 45.5159509 - ], - [ - 10.3283904, - 45.5161425 - ], - [ - 10.3282186, - 45.5161425 - ], - [ - 10.3282186, - 45.5159509 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "climbing", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 108483772 - } - }, - { - "id": 108463738, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.5691639, - 45.4782467 - ], - [ - -73.5635787, - 45.4782467 - ], - [ - -73.5635787, - 45.4793732 - ], - [ - -73.5691639, - 45.4793732 - ], - [ - -73.5691639, - 45.4782467 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108463738 - } - }, - { - "id": 108456169, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -93.5570759, - 41.6753625 - ], - [ - -93.5570759, - 41.6753625 - ], - [ - -93.5570759, - 41.6753625 - ], - [ - -93.5570759, - 41.6753625 - ], - [ - -93.5570759, - 41.6753625 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 108456169 - } - }, - { - "id": 108454283, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7821555, - -34.6585816 - ], - [ - -58.5275307, - -34.6585816 - ], - [ - -58.5275307, - -34.6390208 - ], - [ - -58.7821555, - -34.6390208 - ], - [ - -58.7821555, - -34.6585816 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "osm", - "language": "es" - }, - "id": 108454283 - } - }, - { - "id": 108436582, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3071756, - 51.230587 - ], - [ - 5.3073342, - 51.230587 - ], - [ - 5.3073342, - 51.2307645 - ], - [ - 5.3071756, - 51.2307645 - ], - [ - 5.3071756, - 51.230587 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 108436582 - } - }, - { - "id": 108435131, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3037404, - 51.2343257 - ], - [ - 5.3089677, - 51.2343257 - ], - [ - 5.3089677, - 51.2502837 - ], - [ - 5.3037404, - 51.2502837 - ], - [ - 5.3037404, - 51.2343257 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 108435131 - } - }, - { - "id": 108433663, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2416066, - 51.2127435 - ], - [ - 3.2482534, - 51.2127435 - ], - [ - 3.2482534, - 51.2137184 - ], - [ - 3.2416066, - 51.2137184 - ], - [ - 3.2416066, - 51.2127435 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/project/cycle-infra/", - "theme": "cycle_infra", - "imagery": "CartoDB.Positron", - "language": "en" - }, - "id": 108433663 - } - }, - { - "id": 108430716, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.78892, - -34.6654186 - ], - [ - -58.5393351, - -34.6654186 - ], - [ - -58.5393351, - -34.63961 - ], - [ - -58.78892, - -34.63961 - ], - [ - -58.78892, - -34.6654186 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "osm", - "language": "es" - }, - "id": 108430716 - } - }, - { - "id": 108428293, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.2410566, - 41.1138873 - ], - [ - 2.4010541, - 41.1138873 - ], - [ - 2.4010541, - 41.57351 - ], - [ - 1.2410566, - 41.57351 - ], - [ - 1.2410566, - 41.1138873 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 108428293 - } - }, - { - "id": 108416991, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2099896, - 51.2189471 - ], - [ - 3.2099896, - 51.2189471 - ], - [ - 3.2099896, - 51.2189471 - ], - [ - 3.2099896, - 51.2189471 - ], - [ - 3.2099896, - 51.2189471 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/project/cycle-infra/", - "theme": "cycle_infra", - "imagery": "osm", - "language": "nl" - }, - "id": 108416991 - } - }, - { - "id": 108415854, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3654078, - 51.0009163 - ], - [ - 5.3654882, - 51.0009163 - ], - [ - 5.3654882, - 51.0010868 - ], - [ - 5.3654078, - 51.0010868 - ], - [ - 5.3654078, - 51.0009163 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "AGIV10cm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108415854 - } - }, - { - "id": 108397905, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 152.7770245, - -28.2011927 - ], - [ - 152.7834074, - -28.2011927 - ], - [ - 152.7834074, - -28.1947249 - ], - [ - 152.7770245, - -28.1947249 - ], - [ - 152.7770245, - -28.2011927 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 108397905 - } - }, - { - "id": 108390805, - "type": "Feature", - "geometry": null, - "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": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 108390805 - } - }, - { - "id": 108390804, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7910967, - -34.6501798 - ], - [ - -58.7910967, - -34.6501798 - ], - [ - -58.7910967, - -34.6501798 - ], - [ - -58.7910967, - -34.6501798 - ], - [ - -58.7910967, - -34.6501798 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 108390804 - } - }, - { - "id": 108390803, - "type": "Feature", - "geometry": null, - "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": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 108390803 - } - }, - { - "id": 108390802, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5935962, - -34.6448995 - ], - [ - -58.5935962, - -34.6448995 - ], - [ - -58.5935962, - -34.6448995 - ], - [ - -58.5935962, - -34.6448995 - ], - [ - -58.5935962, - -34.6448995 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 108390802 - } - }, - { - "id": 108390801, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 108390801 - } - }, - { - "id": 108390788, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5935962, - -34.6448995 - ], - [ - -58.5935962, - -34.6448995 - ], - [ - -58.5935962, - -34.6448995 - ], - [ - -58.5935962, - -34.6448995 - ], - [ - -58.5935962, - -34.6448995 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 108390788 - } - }, - { - "id": 108389294, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7880751, - -34.6505571 - ], - [ - -58.7880751, - -34.6505571 - ], - [ - -58.7880751, - -34.6505571 - ], - [ - -58.7880751, - -34.6505571 - ], - [ - -58.7880751, - -34.6505571 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 108389294 - } - }, - { - "id": 108389293, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 108389293 - } - }, - { - "id": 108388301, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3089677, - 51.2343257 - ], - [ - 5.3089677, - 51.2343257 - ], - [ - 5.3089677, - 51.2343257 - ], - [ - 5.3089677, - 51.2343257 - ], - [ - 5.3089677, - 51.2343257 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "AGIV10cm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 108388301 - } - }, - { - "id": 108388258, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7881181, - -34.6505571 - ], - [ - -58.7876272, - -34.6505571 - ], - [ - -58.7876272, - -34.650385 - ], - [ - -58.7881181, - -34.650385 - ], - [ - -58.7881181, - -34.6505571 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 108388258 - } - }, - { - "id": 108381433, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2436999, - 50.5964984 - ], - [ - 4.2436999, - 50.5964984 - ], - [ - 4.2436999, - 50.5964984 - ], - [ - 4.2436999, - 50.5964984 - ], - [ - 4.2436999, - 50.5964984 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "imagery": "osm", - "language": "nl" - }, - "id": 108381433 - } - }, - { - "id": 108380604, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.0528616, - 52.2680928 - ], - [ - 8.0528616, - 52.2680928 - ], - [ - 8.0528616, - 52.2680928 - ], - [ - 8.0528616, - 52.2680928 - ], - [ - 8.0528616, - 52.2680928 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 108380604 - } - }, - { - "id": 108369264, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.3702023, - -34.634782 - ], - [ - -71.3701855, - -34.634782 - ], - [ - -71.3701855, - -34.6347034 - ], - [ - -71.3702023, - -34.6347034 - ], - [ - -71.3702023, - -34.634782 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "trees", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 108369264 - } - }, - { - "id": 108368191, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.6875647, - -34.6642207 - ], - [ - -58.5246179, - -34.6642207 - ], - [ - -58.5246179, - -34.6386589 - ], - [ - -58.6875647, - -34.6386589 - ], - [ - -58.6875647, - -34.6642207 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 108368191 - } - }, - { - "id": 108367822, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7725854, - -34.664139 - ], - [ - -58.7307993, - -34.664139 - ], - [ - -58.7307993, - -34.6553693 - ], - [ - -58.7725854, - -34.6553693 - ], - [ - -58.7725854, - -34.664139 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 108367822 - } - }, - { - "id": 108359961, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.8227697, - 47.2275413 - ], - [ - 8.8227697, - 47.2275413 - ], - [ - 8.8227697, - 47.2275413 - ], - [ - 8.8227697, - 47.2275413 - ], - [ - 8.8227697, - 47.2275413 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 108359961 - } - }, - { - "id": 108351111, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.5874281, - -36.0949011 - ], - [ - 174.5874281, - -36.0949011 - ], - [ - 174.5874281, - -36.0949011 - ], - [ - 174.5874281, - -36.0949011 - ], - [ - 174.5874281, - -36.0949011 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108351111 - } - }, - { - "id": 108345017, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7881181, - -34.6506188 - ], - [ - -58.7879357, - -34.6506188 - ], - [ - -58.7879357, - -34.6504798 - ], - [ - -58.7881181, - -34.6504798 - ], - [ - -58.7881181, - -34.6506188 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "osm", - "language": "es" - }, - "id": 108345017 - } - }, - { - "id": 108345010, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.369179, - -34.6341883 - ], - [ - -71.368369, - -34.6341883 - ], - [ - -71.368369, - -34.6329944 - ], - [ - -71.369179, - -34.6329944 - ], - [ - -71.369179, - -34.6341883 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 108345010 - } - }, - { - "id": 108342671, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7910953, - -34.6643508 - ], - [ - -58.5926078, - -34.6643508 - ], - [ - -58.5926078, - -34.6448752 - ], - [ - -58.7910953, - -34.6448752 - ], - [ - -58.7910953, - -34.6643508 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 108342671 - } - }, - { - "id": 108342662, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5657603, - -34.6407465 - ], - [ - -58.5657603, - -34.6407465 - ], - [ - -58.5657603, - -34.6407465 - ], - [ - -58.5657603, - -34.6407465 - ], - [ - -58.5657603, - -34.6407465 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 108342662 - } - }, - { - "id": 108337961, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0202606, - 51.1832674 - ], - [ - 5.0205388, - 51.1832674 - ], - [ - 5.0205388, - 51.1834661 - ], - [ - 5.0202606, - 51.1834661 - ], - [ - 5.0202606, - 51.1832674 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108337961 - } - }, - { - "id": 108337894, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0205408, - 51.1834753 - ], - [ - 5.0205408, - 51.1834753 - ], - [ - 5.0205408, - 51.1834753 - ], - [ - 5.0205408, - 51.1834753 - ], - [ - 5.0205408, - 51.1834753 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108337894 - } - }, - { - "id": 108337404, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9989449, - 51.1633785 - ], - [ - 5.0045228, - 51.1633785 - ], - [ - 5.0045228, - 51.1683733 - ], - [ - 4.9989449, - 51.1683733 - ], - [ - 4.9989449, - 51.1633785 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 108337404 - } - }, - { - "id": 108336700, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.591224, - 50.3595479 - ], - [ - 7.591224, - 50.3595479 - ], - [ - 7.591224, - 50.3595479 - ], - [ - 7.591224, - 50.3595479 - ], - [ - 7.591224, - 50.3595479 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 108336700 - } - }, - { - "id": 108336297, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.5590554, - 50.3447884 - ], - [ - 7.5940133, - 50.3447884 - ], - [ - 7.5940133, - 50.3624378 - ], - [ - 7.5590554, - 50.3624378 - ], - [ - 7.5590554, - 50.3447884 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108336297 - } - }, - { - "id": 108321249, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7769976, - -34.6666231 - ], - [ - -58.5296926, - -34.6666231 - ], - [ - -58.5296926, - -34.6390782 - ], - [ - -58.7769976, - -34.6390782 - ], - [ - -58.7769976, - -34.6666231 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 108321249 - } - }, - { - "id": 108298931, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2232821, - 51.2190089 - ], - [ - 3.2290055, - 51.2190089 - ], - [ - 3.2290055, - 51.2223995 - ], - [ - 3.2232821, - 51.2223995 - ], - [ - 3.2232821, - 51.2190089 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/project/cycle-infra/", - "theme": "cycle_infra", - "imagery": "osm", - "language": "nl" - }, - "id": 108298931 - } - }, - { - "id": 108293269, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4403321, - 51.1030244 - ], - [ - 4.5179075, - 51.1030244 - ], - [ - 4.5179075, - 51.1964213 - ], - [ - 4.4403321, - 51.1964213 - ], - [ - 4.4403321, - 51.1030244 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "speelplekken_temp", - "imagery": "CartoDB.Positron", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 108293269 - } - }, - { - "id": 108279039, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7887698, - -34.650802 - ], - [ - -58.7887698, - -34.650802 - ], - [ - -58.7887698, - -34.650802 - ], - [ - -58.7887698, - -34.650802 - ], - [ - -58.7887698, - -34.650802 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 108279039 - } - }, - { - "id": 108269386, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7248091, - 51.0463223 - ], - [ - 3.7248091, - 51.0463223 - ], - [ - 3.7248091, - 51.0463223 - ], - [ - 3.7248091, - 51.0463223 - ], - [ - 3.7248091, - 51.0463223 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 108269386 - } - }, - { - "id": 108264053, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2444888, - 41.4527621 - ], - [ - 2.2444888, - 41.4527621 - ], - [ - 2.2444888, - 41.4527621 - ], - [ - 2.2444888, - 41.4527621 - ], - [ - 2.2444888, - 41.4527621 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 108264053 - } - }, - { - "id": 108261778, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.3660218, - 48.6472134 - ], - [ - 9.3793657, - 48.6472134 - ], - [ - 9.3793657, - 48.6717318 - ], - [ - 9.3660218, - 48.6717318 - ], - [ - 9.3660218, - 48.6472134 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108261778 - } - }, - { - "id": 108261301, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.363424, - 48.6288742 - ], - [ - 9.4436662, - 48.6288742 - ], - [ - 9.4436662, - 48.666039 - ], - [ - 9.363424, - 48.666039 - ], - [ - 9.363424, - 48.6288742 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 108261301 - } - }, - { - "id": 108260504, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.3557864, - 48.6367391 - ], - [ - 9.3836063, - 48.6367391 - ], - [ - 9.3836063, - 48.6494923 - ], - [ - 9.3557864, - 48.6494923 - ], - [ - 9.3557864, - 48.6367391 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 108260504 - } - }, - { - "id": 108257506, - "type": "Feature", - "geometry": null, - "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:51:46Z", - "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": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 108257506 - } - }, - { - "id": 108257302, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5627589, - -34.6401551 - ], - [ - -58.5493854, - -34.6401551 - ], - [ - -58.5493854, - -34.6398296 - ], - [ - -58.5627589, - -34.6398296 - ], - [ - -58.5627589, - -34.6401551 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 108257302 - } - }, - { - "id": 108257280, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5773514, - -34.6425593 - ], - [ - -58.5773514, - -34.6425593 - ], - [ - -58.5773514, - -34.6425593 - ], - [ - -58.5773514, - -34.6425593 - ], - [ - -58.5773514, - -34.6425593 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 108257280 - } - }, - { - "id": 108256380, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.592998, - 14.0253039 - ], - [ - 121.592998, - 14.0253039 - ], - [ - 121.592998, - 14.0253039 - ], - [ - 121.592998, - 14.0253039 - ], - [ - 121.592998, - 14.0253039 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 108256380 - } - }, - { - "id": 108255793, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7512752, - -34.6655686 - ], - [ - -58.5773514, - -34.6655686 - ], - [ - -58.5773514, - -34.6425251 - ], - [ - -58.7512752, - -34.6425251 - ], - [ - -58.7512752, - -34.6655686 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 108255793 - } - }, - { - "id": 108252933, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4033236, - 51.1453697 - ], - [ - 3.4033236, - 51.1453697 - ], - [ - 3.4033236, - 51.1453697 - ], - [ - 3.4033236, - 51.1453697 - ], - [ - 3.4033236, - 51.1453697 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 108252933 - } - }, - { - "id": 108242726, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5733531, - 53.0271121 - ], - [ - 6.5733828, - 53.0271121 - ], - [ - 6.5733828, - 53.0276192 - ], - [ - 6.5733531, - 53.0276192 - ], - [ - 6.5733531, - 53.0271121 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/project/cycle-infra/", - "theme": "cycle_infra", - "imagery": "osm", - "language": "nl" - }, - "id": 108242726 - } - }, - { - "id": 108241385, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.9470255, - 56.9688806 - ], - [ - 13.9470255, - 56.9688806 - ], - [ - 13.9470255, - 56.9688806 - ], - [ - 13.9470255, - 56.9688806 - ], - [ - 13.9470255, - 56.9688806 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 108241385 - } - }, - { - "id": 108235828, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6281972, - 52.9422425 - ], - [ - 5.6281972, - 52.9422425 - ], - [ - 5.6281972, - 52.9422425 - ], - [ - 5.6281972, - 52.9422425 - ], - [ - 5.6281972, - 52.9422425 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108235828 - } - }, - { - "id": 108234701, - "type": "Feature", - "geometry": null, - "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:54: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": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 108234701 - } - }, - { - "id": 108234620, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6276608, - 52.9441933 - ], - [ - 5.6276608, - 52.9441933 - ], - [ - 5.6276608, - 52.9441933 - ], - [ - 5.6276608, - 52.9441933 - ], - [ - 5.6276608, - 52.9441933 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 108234620 - } - }, - { - "id": 108232811, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.8685618, - 48.5949675 - ], - [ - 8.9064752, - 48.5949675 - ], - [ - 8.9064752, - 48.6416534 - ], - [ - 8.8685618, - 48.6416534 - ], - [ - 8.8685618, - 48.5949675 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 108232811 - } - }, - { - "id": 108216139, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5302183, - -34.6390572 - ], - [ - -58.5302183, - -34.6390572 - ], - [ - -58.5302183, - -34.6390572 - ], - [ - -58.5302183, - -34.6390572 - ], - [ - -58.5302183, - -34.6390572 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 108216139 - } - }, - { - "id": 108210956, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.6555399, - -34.4580123 - ], - [ - -58.6555399, - -34.4580123 - ], - [ - -58.6555399, - -34.4580123 - ], - [ - -58.6555399, - -34.4580123 - ], - [ - -58.6555399, - -34.4580123 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 108210956 - } - }, - { - "id": 108199285, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.1830368, - 47.2578633 - ], - [ - 10.1830368, - 47.2578633 - ], - [ - 10.1830368, - 47.2578633 - ], - [ - 10.1830368, - 47.2578633 - ], - [ - 10.1830368, - 47.2578633 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 108199285 - } - }, - { - "id": 108198429, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -8.2547254, - 51.793002 - ], - [ - -8.2546079, - 51.793002 - ], - [ - -8.2546079, - 51.7930743 - ], - [ - -8.2547254, - 51.7930743 - ], - [ - -8.2547254, - 51.793002 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/OpenLighthouseMap/OpenLighthouseMap.json", - "imagery": "Stamen.TonerLite", - "language": "en", - "theme-creator": "Seppe Santens" - }, - "id": 108198429 - } - }, - { - "id": 108197990, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -66.3765043, - 48.0658886 - ], - [ - -66.3763715, - 48.0658886 - ], - [ - -66.3763715, - 48.0659182 - ], - [ - -66.3765043, - 48.0659182 - ], - [ - -66.3765043, - 48.0658886 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108197990 - } - }, - { - "id": 108188651, - "type": "Feature", - "geometry": null, - "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:20:26Z", - "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": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 108188651 - } - }, - { - "id": 108188557, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.837549, - 52.4468179 - ], - [ - 5.837549, - 52.4468179 - ], - [ - 5.837549, - 52.4468179 - ], - [ - 5.837549, - 52.4468179 - ], - [ - 5.837549, - 52.4468179 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 108188557 - } - }, - { - "id": 108188508, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.8361274, - 52.4474947 - ], - [ - 5.8361274, - 52.4474947 - ], - [ - 5.8361274, - 52.4474947 - ], - [ - 5.8361274, - 52.4474947 - ], - [ - 5.8361274, - 52.4474947 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108188508 - } - }, - { - "id": 108187047, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.1754642, - 47.26041 - ], - [ - 10.1754642, - 47.26041 - ], - [ - 10.1754642, - 47.26041 - ], - [ - 10.1754642, - 47.26041 - ], - [ - 10.1754642, - 47.26041 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "nl" - }, - "id": 108187047 - } - }, - { - "id": 108186945, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.1830368, - 47.2578633 - ], - [ - 10.1830368, - 47.2578633 - ], - [ - 10.1830368, - 47.2578633 - ], - [ - 10.1830368, - 47.2578633 - ], - [ - 10.1830368, - 47.2578633 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 108186945 - } - }, - { - "id": 108185095, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1290193, - 52.0854267 - ], - [ - 5.1290193, - 52.0854267 - ], - [ - 5.1290193, - 52.0854267 - ], - [ - 5.1290193, - 52.0854267 - ], - [ - 5.1290193, - 52.0854267 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108185095 - } - }, - { - "id": 108184541, - "type": "Feature", - "geometry": null, - "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:12:02Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.mobanisto.de", - "theme": "cyclenodes", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 108184541 - } - }, - { - "id": 108184506, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.6194635, - 51.7501632 - ], - [ - 14.6194635, - 51.7501632 - ], - [ - 14.6194635, - 51.7501632 - ], - [ - 14.6194635, - 51.7501632 - ], - [ - 14.6194635, - 51.7501632 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.mobanisto.de", - "theme": "cyclenodes", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 108184506 - } - }, - { - "id": 108184012, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1265906, - 52.0909803 - ], - [ - 5.1265906, - 52.0909803 - ], - [ - 5.1265906, - 52.0909803 - ], - [ - 5.1265906, - 52.0909803 - ], - [ - 5.1265906, - 52.0909803 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108184012 - } - }, - { - "id": 108180260, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.5982079, - 51.7678379 - ], - [ - 14.6032185, - 51.7678379 - ], - [ - 14.6032185, - 51.8007806 - ], - [ - 14.5982079, - 51.8007806 - ], - [ - 14.5982079, - 51.7678379 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.mobanisto.de", - "theme": "cyclenodes", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 108180260 - } - }, - { - "id": 108175423, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -78.67481, - 26.5374944 - ], - [ - -78.6735554, - 26.5374944 - ], - [ - -78.6735554, - 26.5394116 - ], - [ - -78.67481, - 26.5394116 - ], - [ - -78.67481, - 26.5374944 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benchesandpicnictables", - "imagery": "osm", - "language": "en", - "theme-creator": "Peter Elderson" - }, - "id": 108175423 - } - }, - { - "id": 108161942, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2016386, - 41.5398537 - ], - [ - 2.2668358, - 41.5398537 - ], - [ - 2.2668358, - 41.57351 - ], - [ - 2.2016386, - 41.57351 - ], - [ - 2.2016386, - 41.5398537 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 108161942 - } - }, - { - "id": 108160119, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2080541, - 41.8045116 - ], - [ - 2.2080541, - 41.8045116 - ], - [ - 2.2080541, - 41.8045116 - ], - [ - 2.2080541, - 41.8045116 - ], - [ - 2.2080541, - 41.8045116 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 108160119 - } - }, - { - "id": 108156178, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.8218416, - 48.1952926 - ], - [ - 11.8218416, - 48.1952926 - ], - [ - 11.8218416, - 48.1952926 - ], - [ - 11.8218416, - 48.1952926 - ], - [ - 11.8218416, - 48.1952926 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 108156178 - } - }, - { - "id": 108153380, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7766221, - 52.851453 - ], - [ - 13.7766221, - 52.851453 - ], - [ - 13.7766221, - 52.851453 - ], - [ - 13.7766221, - 52.851453 - ], - [ - 13.7766221, - 52.851453 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "EsriWorldImagery", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 108153380 - } - }, - { - "id": 108151544, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.1325849, - 52.0110929 - ], - [ - 6.1325849, - 52.0110929 - ], - [ - 6.1325849, - 52.0110929 - ], - [ - 6.1325849, - 52.0110929 - ], - [ - 6.1325849, - 52.0110929 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 108151544 - } - }, - { - "id": 108150893, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2091409, - 41.5407298 - ], - [ - 2.2092857, - 41.5407298 - ], - [ - 2.2092857, - 41.540959 - ], - [ - 2.2091409, - 41.540959 - ], - [ - 2.2091409, - 41.5407298 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108150893 - } - }, - { - "id": 108148756, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.1941379, - 51.9981742 - ], - [ - 6.1941889, - 51.9981742 - ], - [ - 6.1941889, - 51.9985161 - ], - [ - 6.1941379, - 51.9985161 - ], - [ - 6.1941379, - 51.9981742 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 108148756 - } - }, - { - "id": 108136748, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.3684587, - 53.1441682 - ], - [ - 6.3684587, - 53.1441682 - ], - [ - 6.3684587, - 53.1441682 - ], - [ - 6.3684587, - 53.1441682 - ], - [ - 6.3684587, - 53.1441682 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "EsriWorldImagery", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 108136748 - } - }, - { - "id": 108122622, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 33.1601129, - 47.686212 - ], - [ - 33.1605546, - 47.686212 - ], - [ - 33.1605546, - 47.6864997 - ], - [ - 33.1601129, - 47.6864997 - ], - [ - 33.1601129, - 47.686212 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "ru" - }, - "id": 108122622 - } - }, - { - "id": 108122546, - "type": "Feature", - "geometry": null, - "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:57: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": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 108122546 - } - }, - { - "id": 108120813, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.0222968, - 52.0248942 - ], - [ - 6.0224685, - 52.0248942 - ], - [ - 6.0224685, - 52.0249602 - ], - [ - 6.0222968, - 52.0249602 - ], - [ - 6.0222968, - 52.0248942 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 108120813 - } - }, - { - "id": 108120510, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7910953, - -34.6649001 - ], - [ - -58.5324419, - -34.6649001 - ], - [ - -58.5324419, - -34.6392966 - ], - [ - -58.7910953, - -34.6392966 - ], - [ - -58.7910953, - -34.6649001 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImagery", - "language": "es" - }, - "id": 108120510 - } - }, - { - "id": 108114751, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3874463, - 52.1004194 - ], - [ - 5.4032722, - 52.1004194 - ], - [ - 5.4032722, - 52.1285352 - ], - [ - 5.3874463, - 52.1285352 - ], - [ - 5.3874463, - 52.1004194 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 108114751 - } - }, - { - "id": 108109786, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5494476, - 51.2072464 - ], - [ - 4.5497078, - 51.2072464 - ], - [ - 4.5497078, - 51.2076161 - ], - [ - 4.5494476, - 51.2076161 - ], - [ - 4.5494476, - 51.2072464 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 108109786 - } - }, - { - "id": 108109522, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5495039, - 51.2072901 - ], - [ - 4.5495039, - 51.2072901 - ], - [ - 4.5495039, - 51.2072901 - ], - [ - 4.5495039, - 51.2072901 - ], - [ - 4.5495039, - 51.2072901 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 108109522 - } - }, - { - "id": 108106716, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.872804, - 50.9807968 - ], - [ - 3.8851878, - 50.9807968 - ], - [ - 3.8851878, - 51.0090734 - ], - [ - 3.872804, - 51.0090734 - ], - [ - 3.872804, - 50.9807968 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 108106716 - } - }, - { - "id": 108106660, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8647842, - 50.9992925 - ], - [ - 3.8647842, - 50.9992925 - ], - [ - 3.8647842, - 50.9992925 - ], - [ - 3.8647842, - 50.9992925 - ], - [ - 3.8647842, - 50.9992925 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 108106660 - } - }, - { - "id": 108100227, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5959507, - 47.4439212 - ], - [ - -0.5460761, - 47.4439212 - ], - [ - -0.5460761, - 47.5114581 - ], - [ - -0.5959507, - 47.5114581 - ], - [ - -0.5959507, - 47.4439212 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 108100227 - } - }, - { - "id": 108081603, - "type": "Feature", - "geometry": null, - "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: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": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108081603 - } - }, - { - "id": 108081595, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.3820118, - 47.8124236 - ], - [ - -122.382011, - 47.8124236 - ], - [ - -122.382011, - 47.8124236 - ], - [ - -122.3820118, - 47.8124236 - ], - [ - -122.3820118, - 47.8124236 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108081595 - } - }, - { - "id": 108078217, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7864846, - -34.6642383 - ], - [ - -58.7288386, - -34.6642383 - ], - [ - -58.7288386, - -34.6514441 - ], - [ - -58.7864846, - -34.6514441 - ], - [ - -58.7864846, - -34.6642383 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 108078217 - } - }, - { - "id": 108077506, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -66.3923603, - 48.0658702 - ], - [ - -66.3923603, - 48.0658702 - ], - [ - -66.3923603, - 48.0658702 - ], - [ - -66.3923603, - 48.0658702 - ], - [ - -66.3923603, - 48.0658702 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108077506 - } - }, - { - "id": 108075710, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.1111803, - 45.9067356 - ], - [ - 6.1111803, - 45.9067356 - ], - [ - 6.1111803, - 45.9067356 - ], - [ - 6.1111803, - 45.9067356 - ], - [ - 6.1111803, - 45.9067356 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 108075710 - } - }, - { - "id": 108074316, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -66.3873506, - 48.0590423 - ], - [ - -66.3518509, - 48.0590423 - ], - [ - -66.3518509, - 48.0660528 - ], - [ - -66.3873506, - 48.0660528 - ], - [ - -66.3873506, - 48.0590423 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108074316 - } - }, - { - "id": 108074108, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -66.3758779, - 48.06631 - ], - [ - -66.3758779, - 48.06631 - ], - [ - -66.3758779, - 48.06631 - ], - [ - -66.3758779, - 48.06631 - ], - [ - -66.3758779, - 48.06631 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 108074108 - } - }, - { - "id": 108073998, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -66.3629784, - 48.0553653 - ], - [ - -66.352922, - 48.0553653 - ], - [ - -66.352922, - 48.0590807 - ], - [ - -66.3629784, - 48.0590807 - ], - [ - -66.3629784, - 48.0553653 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 108073998 - } - }, - { - "id": 108073664, - "type": "Feature", - "geometry": null, - "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:50: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": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 108073664 - } - }, - { - "id": 108073663, - "type": "Feature", - "geometry": null, - "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:50: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": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 108073663 - } - }, - { - "id": 108073662, - "type": "Feature", - "geometry": null, - "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:50: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": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 108073662 - } - }, - { - "id": 108073661, - "type": "Feature", - "geometry": null, - "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:50: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": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 108073661 - } - }, - { - "id": 108073645, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -66.3533624, - 48.0590423 - ], - [ - -66.3518509, - 48.0590423 - ], - [ - -66.3518509, - 48.0606552 - ], - [ - -66.3533624, - 48.0606552 - ], - [ - -66.3533624, - 48.0590423 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 108073645 - } - }, - { - "id": 108073644, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 108073644 - } - }, - { - "id": 108073624, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 108073624 - } - }, - { - "id": 108073623, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -66.3533624, - 48.0590423 - ], - [ - -66.3518509, - 48.0590423 - ], - [ - -66.3518509, - 48.0606552 - ], - [ - -66.3533624, - 48.0606552 - ], - [ - -66.3533624, - 48.0590423 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 108073623 - } - }, - { - "id": 108073474, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -66.3533624, - 48.0590423 - ], - [ - -66.3518509, - 48.0590423 - ], - [ - -66.3518509, - 48.0606552 - ], - [ - -66.3533624, - 48.0606552 - ], - [ - -66.3533624, - 48.0590423 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 108073474 - } - }, - { - "id": 108070696, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.213278, - 41.5388879 - ], - [ - 2.213278, - 41.5388879 - ], - [ - 2.213278, - 41.5388879 - ], - [ - 2.213278, - 41.5388879 - ], - [ - 2.213278, - 41.5388879 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 108070696 - } - }, - { - "id": 108069647, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2113542, - 41.5358874 - ], - [ - 2.2118794, - 41.5358874 - ], - [ - 2.2118794, - 41.5369906 - ], - [ - 2.2113542, - 41.5369906 - ], - [ - 2.2113542, - 41.5358874 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108069647 - } - }, - { - "id": 108069646, - "type": "Feature", - "geometry": null, - "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: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": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108069646 - } - }, - { - "id": 108069548, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2230925, - 41.4536368 - ], - [ - 2.2297856, - 41.4536368 - ], - [ - 2.2297856, - 41.4610978 - ], - [ - 2.2230925, - 41.4610978 - ], - [ - 2.2230925, - 41.4536368 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 108069548 - } - }, - { - "id": 108069513, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2102961, - 41.5365651 - ], - [ - 2.2113685, - 41.5365651 - ], - [ - 2.2113685, - 41.5379381 - ], - [ - 2.2102961, - 41.5379381 - ], - [ - 2.2102961, - 41.5365651 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108069513 - } - }, - { - "id": 108069477, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.21127, - 41.5385792 - ], - [ - 2.21127, - 41.5385792 - ], - [ - 2.21127, - 41.5385792 - ], - [ - 2.21127, - 41.5385792 - ], - [ - 2.21127, - 41.5385792 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108069477 - } - }, - { - "id": 108069450, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2244047, - 41.4591366 - ], - [ - 2.2249984, - 41.4591366 - ], - [ - 2.2249984, - 41.4596584 - ], - [ - 2.2244047, - 41.4596584 - ], - [ - 2.2244047, - 41.4591366 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 108069450 - } - }, - { - "id": 108069436, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2240657, - 41.4588307 - ], - [ - 2.2240657, - 41.4588307 - ], - [ - 2.2240657, - 41.4588307 - ], - [ - 2.2240657, - 41.4588307 - ], - [ - 2.2240657, - 41.4588307 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "EsriWorldImageryClarity", - "language": "ca" - }, - "id": 108069436 - } - }, - { - "id": 108069345, - "type": "Feature", - "geometry": null, - "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": 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", - "theme-creator": "MapComplete" - }, - "id": 108069345 - } - }, - { - "id": 108069344, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2076969, - 41.5385792 - ], - [ - 2.21127, - 41.5385792 - ], - [ - 2.21127, - 41.5434164 - ], - [ - 2.2076969, - 41.5434164 - ], - [ - 2.2076969, - 41.5385792 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108069344 - } - }, - { - "id": 108069343, - "type": "Feature", - "geometry": null, - "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": 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", - "theme-creator": "MapComplete" - }, - "id": 108069343 - } - }, - { - "id": 108069342, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.207518, - 41.5435661 - ], - [ - 2.207518, - 41.5435661 - ], - [ - 2.207518, - 41.5435661 - ], - [ - 2.207518, - 41.5435661 - ], - [ - 2.207518, - 41.5435661 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108069342 - } - }, - { - "id": 108069328, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2225635, - 41.4575037 - ], - [ - 2.2238982, - 41.4575037 - ], - [ - 2.2238982, - 41.4586903 - ], - [ - 2.2225635, - 41.4586903 - ], - [ - 2.2225635, - 41.4575037 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 108069328 - } - }, - { - "id": 108069302, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2217541, - 41.4567621 - ], - [ - 2.2217541, - 41.4567621 - ], - [ - 2.2217541, - 41.4567621 - ], - [ - 2.2217541, - 41.4567621 - ], - [ - 2.2217541, - 41.4567621 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 108069302 - } - }, - { - "id": 108055158, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7570152, - -34.659698 - ], - [ - -58.5349403, - -34.659698 - ], - [ - -58.5349403, - -34.6395835 - ], - [ - -58.7570152, - -34.6395835 - ], - [ - -58.7570152, - -34.659698 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 108055158 - } - }, - { - "id": 108044245, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0197204, - 50.4645167 - ], - [ - 4.8616347, - 50.4645167 - ], - [ - 4.8616347, - 51.0636044 - ], - [ - 4.0197204, - 51.0636044 - ], - [ - 4.0197204, - 50.4645167 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "bookcases", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 108044245 - } - }, - { - "id": 108005513, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.763997, - -34.6656789 - ], - [ - -58.7002194, - -34.6656789 - ], - [ - -58.7002194, - -34.6576793 - ], - [ - -58.763997, - -34.6576793 - ], - [ - -58.763997, - -34.6656789 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 108005513 - } - }, - { - "id": 108003508, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5282576, - -34.639012 - ], - [ - -58.5281289, - -34.639012 - ], - [ - -58.5281289, - -34.6390075 - ], - [ - -58.5282576, - -34.6390075 - ], - [ - -58.5282576, - -34.639012 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "RailwaySignalsARG", - "imagery": "EsriWorldImageryClarity", - "language": "en" - }, - "id": 108003508 - } - }, - { - "id": 107994642, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9940647, - 48.5014852 - ], - [ - 8.9940647, - 48.5014852 - ], - [ - 8.9940647, - 48.5014852 - ], - [ - 8.9940647, - 48.5014852 - ], - [ - 8.9940647, - 48.5014852 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107994642 - } - }, - { - "id": 107982711, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7596974, - -34.6663341 - ], - [ - -58.5380021, - -34.6663341 - ], - [ - -58.5380021, - -34.6398726 - ], - [ - -58.7596974, - -34.6398726 - ], - [ - -58.7596974, - -34.6663341 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "RailwaySignalsARG", - "imagery": "EsriWorldImageryClarity", - "language": "en" - }, - "id": 107982711 - } - }, - { - "id": 107982302, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7682121, - 52.8421823 - ], - [ - 13.7682121, - 52.8421823 - ], - [ - 13.7682121, - 52.8421823 - ], - [ - 13.7682121, - 52.8421823 - ], - [ - 13.7682121, - 52.8421823 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "EsriWorldImagery", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 107982302 - } - }, - { - "id": 107980055, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5417852, - 47.450397 - ], - [ - -0.5417852, - 47.450397 - ], - [ - -0.5417852, - 47.450397 - ], - [ - -0.5417852, - 47.450397 - ], - [ - -0.5417852, - 47.450397 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 107980055 - } - }, - { - "id": 107976415, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0629178, - 14.6475876 - ], - [ - 121.0629178, - 14.6475876 - ], - [ - 121.0629178, - 14.6475876 - ], - [ - 121.0629178, - 14.6475876 - ], - [ - 121.0629178, - 14.6475876 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107976415 - } - }, - { - "id": 107965514, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6605991, - 49.4144262 - ], - [ - 8.6703714, - 49.4144262 - ], - [ - 8.6703714, - 49.416691 - ], - [ - 8.6605991, - 49.416691 - ], - [ - 8.6605991, - 49.4144262 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107965514 - } - }, - { - "id": 107955142, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5605352, - 53.0164088 - ], - [ - 6.5624331, - 53.0164088 - ], - [ - 6.5624331, - 53.018019 - ], - [ - 6.5605352, - 53.018019 - ], - [ - 6.5605352, - 53.0164088 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/master/", - "theme": "benches", - "imagery": "osm", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 107955142 - } - }, - { - "id": 107951099, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4490298, - 51.0919498 - ], - [ - 3.4491, - 51.0919498 - ], - [ - 3.4491, - 51.0920831 - ], - [ - 3.4490298, - 51.0920831 - ], - [ - 3.4490298, - 51.0919498 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 107951099 - } - }, - { - "id": 107937707, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7883729, - -34.6643574 - ], - [ - -58.5903078, - -34.6643574 - ], - [ - -58.5903078, - -34.6443963 - ], - [ - -58.7883729, - -34.6443963 - ], - [ - -58.7883729, - -34.6643574 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "RailwaySignalsARG", - "imagery": "EsriWorldImageryClarity", - "language": "en" - }, - "id": 107937707 - } - }, - { - "id": 107937706, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5674018, - -34.6408447 - ], - [ - -58.5674018, - -34.6408447 - ], - [ - -58.5674018, - -34.6408447 - ], - [ - -58.5674018, - -34.6408447 - ], - [ - -58.5674018, - -34.6408447 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "RailwaySignalsARG", - "imagery": "EsriWorldImageryClarity", - "language": "en" - }, - "id": 107937706 - } - }, - { - "id": 107937683, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5674018, - -34.6408789 - ], - [ - -58.567391, - -34.6408789 - ], - [ - -58.567391, - -34.6408447 - ], - [ - -58.5674018, - -34.6408447 - ], - [ - -58.5674018, - -34.6408789 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "RailwaySignalsARG", - "imagery": "EsriWorldImageryClarity", - "language": "en" - }, - "id": 107937683 - } - }, - { - "id": 107937680, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5497877, - -34.6397402 - ], - [ - -58.5497877, - -34.6397402 - ], - [ - -58.5497877, - -34.6397402 - ], - [ - -58.5497877, - -34.6397402 - ], - [ - -58.5497877, - -34.6397402 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "RailwaySignalsARG", - "imagery": "EsriWorldImageryClarity", - "language": "en" - }, - "id": 107937680 - } - }, - { - "id": 107937669, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5497877, - -34.6397402 - ], - [ - -58.5497877, - -34.6397402 - ], - [ - -58.5497877, - -34.6396806 - ], - [ - -58.5497877, - -34.6396806 - ], - [ - -58.5497877, - -34.6397402 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "RailwaySignalsARG", - "imagery": "EsriWorldImageryClarity", - "language": "en" - }, - "id": 107937669 - } - }, - { - "id": 107937641, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 38.2310877, - 55.5511083 - ], - [ - 38.236096, - 55.5511083 - ], - [ - 38.236096, - 55.5621959 - ], - [ - 38.2310877, - 55.5621959 - ], - [ - 38.2310877, - 55.5511083 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107937641 - } - }, - { - "id": 107937565, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.7109274, - 55.8018651 - ], - [ - 37.7109274, - 55.8018651 - ], - [ - 37.7109274, - 55.8018651 - ], - [ - 37.7109274, - 55.8018651 - ], - [ - 37.7109274, - 55.8018651 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 107937565 - } - }, - { - "id": 107937146, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.0769222, - 50.7779514 - ], - [ - 15.0769222, - 50.7779514 - ], - [ - 15.0769222, - 50.7779514 - ], - [ - 15.0769222, - 50.7779514 - ], - [ - 15.0769222, - 50.7779514 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "Mapbox", - "language": "en" - }, - "id": 107937146 - } - }, - { - "id": 107934811, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.0595318, - 50.7697147 - ], - [ - 15.0595318, - 50.7697147 - ], - [ - 15.0595318, - 50.7697147 - ], - [ - 15.0595318, - 50.7697147 - ], - [ - 15.0595318, - 50.7697147 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107934811 - } - }, - { - "id": 107934101, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.1611758, - 52.2200963 - ], - [ - 13.1999311, - 52.2200963 - ], - [ - 13.1999311, - 52.2409556 - ], - [ - 13.1611758, - 52.2409556 - ], - [ - 13.1611758, - 52.2200963 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 107934101 - } - }, - { - "id": 107930960, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.0556925, - 50.7733671 - ], - [ - 15.0556925, - 50.7733671 - ], - [ - 15.0556925, - 50.7733671 - ], - [ - 15.0556925, - 50.7733671 - ], - [ - 15.0556925, - 50.7733671 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "artworks", - "imagery": "EsriWorldImagery", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107930960 - } - }, - { - "id": 107930934, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3741746, - 44.4884123 - ], - [ - 11.3754653, - 44.4884123 - ], - [ - 11.3754653, - 44.508924 - ], - [ - 11.3741746, - 44.508924 - ], - [ - 11.3741746, - 44.4884123 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107930934 - } - }, - { - "id": 107913936, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.6432815, - -34.6524193 - ], - [ - -58.5275897, - -34.6524193 - ], - [ - -58.5275897, - -34.639034 - ], - [ - -58.6432815, - -34.639034 - ], - [ - -58.6432815, - -34.6524193 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "RailwaySignalsARG", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 107913936 - } - }, - { - "id": 107908727, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7900653, - -34.6505637 - ], - [ - -58.7887564, - -34.6505637 - ], - [ - -58.7887564, - -34.6501842 - ], - [ - -58.7900653, - -34.6501842 - ], - [ - -58.7900653, - -34.6505637 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "RailwaySignalsARG", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 107908727 - } - }, - { - "id": 107904564, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7078171, - 51.0520396 - ], - [ - 3.7078171, - 51.0520396 - ], - [ - 3.7078171, - 51.0520396 - ], - [ - 3.7078171, - 51.0520396 - ], - [ - 3.7078171, - 51.0520396 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "bookcases", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 107904564 - } - }, - { - "id": 107891229, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2422781, - 50.7376412 - ], - [ - 4.2426698, - 50.7376412 - ], - [ - 4.2426698, - 50.7379335 - ], - [ - 4.2422781, - 50.7379335 - ], - [ - 4.2422781, - 50.7376412 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "nl" - }, - "id": 107891229 - } - }, - { - "id": 107884831, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.1102142, - 57.1578867 - ], - [ - -2.1102142, - 57.1578867 - ], - [ - -2.1102142, - 57.1578867 - ], - [ - -2.1102142, - 57.1578867 - ], - [ - -2.1102142, - 57.1578867 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107884831 - } - }, - { - "id": 107874799, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6666103, - -33.4409908 - ], - [ - -70.6665647, - -33.4409908 - ], - [ - -70.6665647, - -33.4407137 - ], - [ - -70.6666103, - -33.4407137 - ], - [ - -70.6666103, - -33.4409908 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 107874799 - } - }, - { - "id": 107868386, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.0609169, - 50.7747628 - ], - [ - 15.0612723, - 50.7747628 - ], - [ - 15.0612723, - 50.7748941 - ], - [ - 15.0609169, - 50.7748941 - ], - [ - 15.0609169, - 50.7747628 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 107868386 - } - }, - { - "id": 107867779, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.0012555, - 50.7356145 - ], - [ - 15.0012555, - 50.7356145 - ], - [ - 15.0012555, - 50.7356145 - ], - [ - 15.0012555, - 50.7356145 - ], - [ - 15.0012555, - 50.7356145 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cyclofix", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107867779 - } - }, - { - "id": 107866381, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7905991, - -34.6501842 - ], - [ - -58.5275897, - -34.6501842 - ], - [ - -58.5275897, - -34.639098 - ], - [ - -58.7905991, - -34.639098 - ], - [ - -58.7905991, - -34.6501842 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "RailwaySignalsARG", - "imagery": "EsriWorldImageryClarity", - "language": "en" - }, - "id": 107866381 - } - }, - { - "id": 107864456, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.0599096, - 50.7745699 - ], - [ - 15.0599096, - 50.7745699 - ], - [ - 15.0599096, - 50.7745699 - ], - [ - 15.0599096, - 50.7745699 - ], - [ - 15.0599096, - 50.7745699 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107864456 - } - }, - { - "id": 107862428, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4675711, - 51.1448843 - ], - [ - 4.4688604, - 51.1448843 - ], - [ - 4.4688604, - 51.146017 - ], - [ - 4.4675711, - 51.146017 - ], - [ - 4.4675711, - 51.1448843 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "speelplekken", - "imagery": "CartoDB.Positron", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 107862428 - } - }, - { - "id": 107858355, - "type": "Feature", - "geometry": null, - "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-12T19:00: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": "cyclofix", - "imagery": "EsriWorldImagery", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107858355 - } - }, - { - "id": 107858287, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.0579905, - 50.7696993 - ], - [ - 15.0579905, - 50.7696993 - ], - [ - 15.0579905, - 50.7696993 - ], - [ - 15.0579905, - 50.7696993 - ], - [ - 15.0579905, - 50.7696993 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cyclofix", - "imagery": "EsriWorldImagery", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107858287 - } - }, - { - "id": 107858279, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.0567831, - 50.7710809 - ], - [ - 15.0567831, - 50.7710809 - ], - [ - 15.0567831, - 50.7710809 - ], - [ - 15.0567831, - 50.7710809 - ], - [ - 15.0567831, - 50.7710809 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cyclofix", - "imagery": "EsriWorldImagery", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107858279 - } - }, - { - "id": 107858278, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.0567831, - 50.7710809 - ], - [ - 15.0567831, - 50.7710809 - ], - [ - 15.0567831, - 50.7710809 - ], - [ - 15.0567831, - 50.7710809 - ], - [ - 15.0567831, - 50.7710809 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cyclofix", - "imagery": "EsriWorldImagery", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107858278 - } - }, - { - "id": 107857284, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.6355089, - 51.7175046 - ], - [ - 14.6627989, - 51.7175046 - ], - [ - 14.6627989, - 51.7269987 - ], - [ - 14.6355089, - 51.7269987 - ], - [ - 14.6355089, - 51.7175046 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.mobanisto.de", - "theme": "cyclenodes", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 107857284 - } - }, - { - "id": 107853376, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9048671, - 49.5481711 - ], - [ - 6.5079349, - 49.5481711 - ], - [ - 6.5079349, - 49.8682602 - ], - [ - 5.9048671, - 49.8682602 - ], - [ - 5.9048671, - 49.5481711 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107853376 - } - }, - { - "id": 107852873, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.6390123, - 51.7370046 - ], - [ - 14.6510152, - 51.7370046 - ], - [ - 14.6510152, - 51.7452833 - ], - [ - 14.6390123, - 51.7452833 - ], - [ - 14.6390123, - 51.7370046 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.mobanisto.de", - "theme": "cyclenodes", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 107852873 - } - }, - { - "id": 107852821, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.8155757, - 49.8873291 - ], - [ - 6.0809326, - 49.8873291 - ], - [ - 6.0809326, - 49.9457247 - ], - [ - 5.8155757, - 49.9457247 - ], - [ - 5.8155757, - 49.8873291 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107852821 - } - }, - { - "id": 107852270, - "type": "Feature", - "geometry": null, - "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:39: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": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107852270 - } - }, - { - "id": 107852154, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2426351, - 50.7384463 - ], - [ - 4.2426351, - 50.7384463 - ], - [ - 4.2426351, - 50.7384463 - ], - [ - 4.2426351, - 50.7384463 - ], - [ - 4.2426351, - 50.7384463 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852154 - } - }, - { - "id": 107852153, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852153 - } - }, - { - "id": 107852152, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852152 - } - }, - { - "id": 107852151, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852151 - } - }, - { - "id": 107852150, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852150 - } - }, - { - "id": 107852149, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852149 - } - }, - { - "id": 107852148, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852148 - } - }, - { - "id": 107852147, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852147 - } - }, - { - "id": 107852146, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852146 - } - }, - { - "id": 107852136, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3343592, - 51.0111175 - ], - [ - 4.3343592, - 51.0111175 - ], - [ - 4.3343592, - 51.0111175 - ], - [ - 4.3343592, - 51.0111175 - ], - [ - 4.3343592, - 51.0111175 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852136 - } - }, - { - "id": 107852135, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852135 - } - }, - { - "id": 107852134, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852134 - } - }, - { - "id": 107852133, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852133 - } - }, - { - "id": 107852132, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852132 - } - }, - { - "id": 107852122, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3343592, - 51.0111175 - ], - [ - 4.3343592, - 51.0111175 - ], - [ - 4.3343592, - 51.0111175 - ], - [ - 4.3343592, - 51.0111175 - ], - [ - 4.3343592, - 51.0111175 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852122 - } - }, - { - "id": 107852121, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852121 - } - }, - { - "id": 107852120, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852120 - } - }, - { - "id": 107852108, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3343592, - 51.0111175 - ], - [ - 4.3343592, - 51.0111175 - ], - [ - 4.3343592, - 51.0111175 - ], - [ - 4.3343592, - 51.0111175 - ], - [ - 4.3343592, - 51.0111175 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852108 - } - }, - { - "id": 107852081, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3343592, - 51.0111175 - ], - [ - 4.3343592, - 51.0111175 - ], - [ - 4.3343592, - 51.0111175 - ], - [ - 4.3343592, - 51.0111175 - ], - [ - 4.3343592, - 51.0111175 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852081 - } - }, - { - "id": 107852080, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852080 - } - }, - { - "id": 107852079, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852079 - } - }, - { - "id": 107852078, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852078 - } - }, - { - "id": 107852077, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852077 - } - }, - { - "id": 107852076, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852076 - } - }, - { - "id": 107852075, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852075 - } - }, - { - "id": 107852074, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852074 - } - }, - { - "id": 107852073, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852073 - } - }, - { - "id": 107852061, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3401609, - 51.0127806 - ], - [ - 4.3401609, - 51.0127806 - ], - [ - 4.3401609, - 51.0127806 - ], - [ - 4.3401609, - 51.0127806 - ], - [ - 4.3401609, - 51.0127806 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852061 - } - }, - { - "id": 107852059, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852059 - } - }, - { - "id": 107852058, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852058 - } - }, - { - "id": 107852057, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852057 - } - }, - { - "id": 107852056, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852056 - } - }, - { - "id": 107852055, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852055 - } - }, - { - "id": 107852054, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852054 - } - }, - { - "id": 107852036, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3401609, - 51.0127806 - ], - [ - 4.3401609, - 51.0127806 - ], - [ - 4.3401609, - 51.0127806 - ], - [ - 4.3401609, - 51.0127806 - ], - [ - 4.3401609, - 51.0127806 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852036 - } - }, - { - "id": 107852035, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852035 - } - }, - { - "id": 107852034, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852034 - } - }, - { - "id": 107852033, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852033 - } - }, - { - "id": 107852032, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852032 - } - }, - { - "id": 107852022, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3401609, - 51.0127806 - ], - [ - 4.3401609, - 51.0127806 - ], - [ - 4.3401609, - 51.0127806 - ], - [ - 4.3401609, - 51.0127806 - ], - [ - 4.3401609, - 51.0127806 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852022 - } - }, - { - "id": 107852021, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852021 - } - }, - { - "id": 107852020, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852020 - } - }, - { - "id": 107852005, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3401609, - 51.0127806 - ], - [ - 4.3401609, - 51.0127806 - ], - [ - 4.3401609, - 51.0127806 - ], - [ - 4.3401609, - 51.0127806 - ], - [ - 4.3401609, - 51.0127806 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107852005 - } - }, - { - "id": 107851987, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3401609, - 51.0127806 - ], - [ - 4.3401609, - 51.0127806 - ], - [ - 4.3401609, - 51.0127806 - ], - [ - 4.3401609, - 51.0127806 - ], - [ - 4.3401609, - 51.0127806 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107851987 - } - }, - { - "id": 107851986, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107851986 - } - }, - { - "id": 107851985, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107851985 - } - }, - { - "id": 107851983, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107851983 - } - }, - { - "id": 107851972, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3401977, - 51.0127793 - ], - [ - 4.3401977, - 51.0127793 - ], - [ - 4.3401977, - 51.0127793 - ], - [ - 4.3401977, - 51.0127793 - ], - [ - 4.3401977, - 51.0127793 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107851972 - } - }, - { - "id": 107851858, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3401977, - 51.0127793 - ], - [ - 4.4813249, - 51.0127793 - ], - [ - 4.4813249, - 51.0170923 - ], - [ - 4.3401977, - 51.0170923 - ], - [ - 4.3401977, - 51.0127793 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107851858 - } - }, - { - "id": 107851857, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107851857 - } - }, - { - "id": 107851856, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107851856 - } - }, - { - "id": 107851853, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4806194, - 51.0166452 - ], - [ - 4.4806194, - 51.0166452 - ], - [ - 4.4806194, - 51.0166452 - ], - [ - 4.4806194, - 51.0166452 - ], - [ - 4.4806194, - 51.0166452 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107851853 - } - }, - { - "id": 107851839, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4806194, - 51.0166452 - ], - [ - 4.4806194, - 51.0166452 - ], - [ - 4.4806194, - 51.0166452 - ], - [ - 4.4806194, - 51.0166452 - ], - [ - 4.4806194, - 51.0166452 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107851839 - } - }, - { - "id": 107851838, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4806194, - 51.0166452 - ], - [ - 4.4806194, - 51.0166452 - ], - [ - 4.4806194, - 51.0166452 - ], - [ - 4.4806194, - 51.0166452 - ], - [ - 4.4806194, - 51.0166452 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107851838 - } - }, - { - "id": 107841738, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7910578, - -34.650065 - ], - [ - -58.7910578, - -34.650065 - ], - [ - -58.7910578, - -34.650065 - ], - [ - -58.7910578, - -34.650065 - ], - [ - -58.7910578, - -34.650065 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "RailwaySignalsARG", - "imagery": "EsriWorldImageryClarity", - "language": "en" - }, - "id": 107841738 - } - }, - { - "id": 107840050, - "type": "Feature", - "geometry": null, - "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:37: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": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107840050 - } - }, - { - "id": 107840049, - "type": "Feature", - "geometry": null, - "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": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "deletion": "yes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107840049 - } - }, - { - "id": 107840048, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4891864, - 51.2049038 - ], - [ - 4.4891864, - 51.2049038 - ], - [ - 4.4891864, - 51.2049038 - ], - [ - 4.4891864, - 51.2049038 - ], - [ - 4.4891864, - 51.2049038 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "deletion": "yes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107840048 - } - }, - { - "id": 107840002, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4891864, - 51.2049038 - ], - [ - 4.4891864, - 51.2049038 - ], - [ - 4.4891864, - 51.2049038 - ], - [ - 4.4891864, - 51.2049038 - ], - [ - 4.4891864, - 51.2049038 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107840002 - } - }, - { - "id": 107826441, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8668709, - 51.1136799 - ], - [ - 4.9016806, - 51.1136799 - ], - [ - 4.9016806, - 51.1257133 - ], - [ - 4.8668709, - 51.1257133 - ], - [ - 4.8668709, - 51.1136799 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107826441 - } - }, - { - "id": 107820621, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9019891, - 51.12581 - ], - [ - 4.9019891, - 51.12581 - ], - [ - 4.9019891, - 51.12581 - ], - [ - 4.9019891, - 51.12581 - ], - [ - 4.9019891, - 51.12581 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107820621 - } - }, - { - "id": 107799153, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2183929, - 51.2185418 - ], - [ - 3.2183929, - 51.2185418 - ], - [ - 3.2183929, - 51.2185418 - ], - [ - 3.2183929, - 51.2185418 - ], - [ - 3.2183929, - 51.2185418 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 107799153 - } - }, - { - "id": 107798754, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2248947, - 41.4422966 - ], - [ - 2.2248947, - 41.4422966 - ], - [ - 2.2248947, - 41.4422966 - ], - [ - 2.2248947, - 41.4422966 - ], - [ - 2.2248947, - 41.4422966 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 107798754 - } - }, - { - "id": 107795579, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.8882263, - 50.1890977 - ], - [ - 10.8882263, - 50.1890977 - ], - [ - 10.8882263, - 50.1890977 - ], - [ - 10.8882263, - 50.1890977 - ], - [ - 10.8882263, - 50.1890977 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107795579 - } - }, - { - "id": 107795005, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2246971, - 41.4406379 - ], - [ - 2.2254521, - 41.4406379 - ], - [ - 2.2254521, - 41.4410431 - ], - [ - 2.2246971, - 41.4410431 - ], - [ - 2.2246971, - 41.4406379 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 107795005 - } - }, - { - "id": 107788249, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.2334841, - 53.5417364 - ], - [ - 10.2500172, - 53.5417364 - ], - [ - 10.2500172, - 53.5583922 - ], - [ - 10.2334841, - 53.5583922 - ], - [ - 10.2334841, - 53.5417364 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 107788249 - } - }, - { - "id": 107786968, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2737703, - 45.4693406 - ], - [ - 9.2737703, - 45.4693406 - ], - [ - 9.2737703, - 45.4693406 - ], - [ - 9.2737703, - 45.4693406 - ], - [ - 9.2737703, - 45.4693406 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107786968 - } - }, - { - "id": 107783672, - "type": "Feature", - "geometry": null, - "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:22Z", - "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": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783672 - } - }, - { - "id": 107783671, - "type": "Feature", - "geometry": null, - "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:22Z", - "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": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783671 - } - }, - { - "id": 107783670, - "type": "Feature", - "geometry": null, - "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:22Z", - "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": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783670 - } - }, - { - "id": 107783669, - "type": "Feature", - "geometry": null, - "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:22Z", - "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": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783669 - } - }, - { - "id": 107783668, - "type": "Feature", - "geometry": null, - "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:22Z", - "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": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783668 - } - }, - { - "id": 107783667, - "type": "Feature", - "geometry": null, - "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:22Z", - "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": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783667 - } - }, - { - "id": 107783666, - "type": "Feature", - "geometry": null, - "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:22Z", - "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": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783666 - } - }, - { - "id": 107783665, - "type": "Feature", - "geometry": null, - "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:22Z", - "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": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783665 - } - }, - { - "id": 107783664, - "type": "Feature", - "geometry": null, - "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:22Z", - "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": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783664 - } - }, - { - "id": 107783655, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783655 - } - }, - { - "id": 107783654, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783654 - } - }, - { - "id": 107783653, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3262046, - 50.9300686 - ], - [ - 5.3262046, - 50.9300686 - ], - [ - 5.3262046, - 50.9300686 - ], - [ - 5.3262046, - 50.9300686 - ], - [ - 5.3262046, - 50.9300686 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783653 - } - }, - { - "id": 107783652, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783652 - } - }, - { - "id": 107783651, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783651 - } - }, - { - "id": 107783650, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783650 - } - }, - { - "id": 107783649, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783649 - } - }, - { - "id": 107783639, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783639 - } - }, - { - "id": 107783638, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783638 - } - }, - { - "id": 107783637, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3262046, - 50.9300686 - ], - [ - 5.3262046, - 50.9300686 - ], - [ - 5.3262046, - 50.9300686 - ], - [ - 5.3262046, - 50.9300686 - ], - [ - 5.3262046, - 50.9300686 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783637 - } - }, - { - "id": 107783636, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783636 - } - }, - { - "id": 107783635, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783635 - } - }, - { - "id": 107783626, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3262046, - 50.9300686 - ], - [ - 5.3262046, - 50.9300686 - ], - [ - 5.3262046, - 50.9300686 - ], - [ - 5.3262046, - 50.9300686 - ], - [ - 5.3262046, - 50.9300686 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783626 - } - }, - { - "id": 107783580, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3262046, - 50.9300686 - ], - [ - 5.3262046, - 50.9300686 - ], - [ - 5.3262046, - 50.9300686 - ], - [ - 5.3262046, - 50.9300686 - ], - [ - 5.3262046, - 50.9300686 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783580 - } - }, - { - "id": 107783579, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783579 - } - }, - { - "id": 107783578, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783578 - } - }, - { - "id": 107783577, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783577 - } - }, - { - "id": 107783576, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783576 - } - }, - { - "id": 107783575, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783575 - } - }, - { - "id": 107783574, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783574 - } - }, - { - "id": 107783573, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783573 - } - }, - { - "id": 107783572, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783572 - } - }, - { - "id": 107783564, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783564 - } - }, - { - "id": 107783563, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3266203, - 50.930143 - ], - [ - 5.3266203, - 50.930143 - ], - [ - 5.3266203, - 50.930143 - ], - [ - 5.3266203, - 50.930143 - ], - [ - 5.3266203, - 50.930143 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783563 - } - }, - { - "id": 107783562, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783562 - } - }, - { - "id": 107783561, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783561 - } - }, - { - "id": 107783560, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783560 - } - }, - { - "id": 107783553, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3266203, - 50.930143 - ], - [ - 5.3266203, - 50.930143 - ], - [ - 5.3266203, - 50.930143 - ], - [ - 5.3266203, - 50.930143 - ], - [ - 5.3266203, - 50.930143 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783553 - } - }, - { - "id": 107783552, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783552 - } - }, - { - "id": 107783551, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783551 - } - }, - { - "id": 107783539, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3266203, - 50.930143 - ], - [ - 5.3266203, - 50.930143 - ], - [ - 5.3266203, - 50.930143 - ], - [ - 5.3266203, - 50.930143 - ], - [ - 5.3266203, - 50.930143 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783539 - } - }, - { - "id": 107783531, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783531 - } - }, - { - "id": 107783530, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3266203, - 50.930143 - ], - [ - 5.3266203, - 50.930143 - ], - [ - 5.3266203, - 50.930143 - ], - [ - 5.3266203, - 50.930143 - ], - [ - 5.3266203, - 50.930143 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783530 - } - }, - { - "id": 107783529, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783529 - } - }, - { - "id": 107783528, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783528 - } - }, - { - "id": 107783527, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783527 - } - }, - { - "id": 107783515, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3270119, - 50.9300872 - ], - [ - 5.3270119, - 50.9300872 - ], - [ - 5.3270119, - 50.9300872 - ], - [ - 5.3270119, - 50.9300872 - ], - [ - 5.3270119, - 50.9300872 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783515 - } - }, - { - "id": 107783514, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783514 - } - }, - { - "id": 107783513, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783513 - } - }, - { - "id": 107783506, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3270119, - 50.9300872 - ], - [ - 5.3270119, - 50.9300872 - ], - [ - 5.3270119, - 50.9300872 - ], - [ - 5.3270119, - 50.9300872 - ], - [ - 5.3270119, - 50.9300872 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783506 - } - }, - { - "id": 107783484, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783484 - } - }, - { - "id": 107783483, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3270119, - 50.9300872 - ], - [ - 5.3270119, - 50.9300872 - ], - [ - 5.3270119, - 50.9300872 - ], - [ - 5.3270119, - 50.9300872 - ], - [ - 5.3270119, - 50.9300872 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783483 - } - }, - { - "id": 107783476, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3266767, - 50.930006 - ], - [ - 5.3266767, - 50.930006 - ], - [ - 5.3266767, - 50.930006 - ], - [ - 5.3266767, - 50.930006 - ], - [ - 5.3266767, - 50.930006 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107783476 - } - }, - { - "id": 107783380, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3266767, - 50.930006 - ], - [ - 5.3266767, - 50.930006 - ], - [ - 5.3266767, - 50.930006 - ], - [ - 5.3266767, - 50.930006 - ], - [ - 5.3266767, - 50.930006 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107783380 - } - }, - { - "id": 107783379, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107783379 - } - }, - { - "id": 107783378, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107783378 - } - }, - { - "id": 107783374, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3779639, - 51.0125987 - ], - [ - 4.3779639, - 51.0125987 - ], - [ - 4.3779639, - 51.0125987 - ], - [ - 4.3779639, - 51.0125987 - ], - [ - 4.3779639, - 51.0125987 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107783374 - } - }, - { - "id": 107783359, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3779639, - 51.0125987 - ], - [ - 4.3779639, - 51.0125987 - ], - [ - 4.3779639, - 51.0125987 - ], - [ - 4.3779639, - 51.0125987 - ], - [ - 4.3779639, - 51.0125987 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107783359 - } - }, - { - "id": 107783358, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107783358 - } - }, - { - "id": 107783357, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107783357 - } - }, - { - "id": 107783283, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3779565, - 51.0125692 - ], - [ - 4.3779565, - 51.0125692 - ], - [ - 4.3779565, - 51.0125692 - ], - [ - 4.3779565, - 51.0125692 - ], - [ - 4.3779565, - 51.0125692 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107783283 - } - }, - { - "id": 107783269, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3779565, - 51.0125692 - ], - [ - 4.3779565, - 51.0125692 - ], - [ - 4.3779565, - 51.0125692 - ], - [ - 4.3779565, - 51.0125692 - ], - [ - 4.3779565, - 51.0125692 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107783269 - } - }, - { - "id": 107783048, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107783048 - } - }, - { - "id": 107783047, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107783047 - } - }, - { - "id": 107783046, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.377978, - 51.0126105 - ], - [ - 4.377978, - 51.0126105 - ], - [ - 4.377978, - 51.0126105 - ], - [ - 4.377978, - 51.0126105 - ], - [ - 4.377978, - 51.0126105 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107783046 - } - }, - { - "id": 107783045, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107783045 - } - }, - { - "id": 107783044, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107783044 - } - }, - { - "id": 107783036, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4367378, - 51.0385184 - ], - [ - 4.4367378, - 51.0385184 - ], - [ - 4.4367378, - 51.0385184 - ], - [ - 4.4367378, - 51.0385184 - ], - [ - 4.4367378, - 51.0385184 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107783036 - } - }, - { - "id": 107783035, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107783035 - } - }, - { - "id": 107783034, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107783034 - } - }, - { - "id": 107783030, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4367378, - 51.0385184 - ], - [ - 4.4367378, - 51.0385184 - ], - [ - 4.4367378, - 51.0385184 - ], - [ - 4.4367378, - 51.0385184 - ], - [ - 4.4367378, - 51.0385184 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107783030 - } - }, - { - "id": 107783007, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4367378, - 51.0385184 - ], - [ - 4.4367378, - 51.0385184 - ], - [ - 4.4367378, - 51.0385184 - ], - [ - 4.4367378, - 51.0385184 - ], - [ - 4.4367378, - 51.0385184 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107783007 - } - }, - { - "id": 107783006, - "type": "Feature", - "geometry": null, - "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:29Z", - "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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107783006 - } - }, - { - "id": 107783005, - "type": "Feature", - "geometry": null, - "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:29Z", - "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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107783005 - } - }, - { - "id": 107783004, - "type": "Feature", - "geometry": null, - "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:29Z", - "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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107783004 - } - }, - { - "id": 107783003, - "type": "Feature", - "geometry": null, - "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:29Z", - "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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107783003 - } - }, - { - "id": 107782992, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4367713, - 51.0385019 - ], - [ - 4.4367713, - 51.0385019 - ], - [ - 4.4367713, - 51.0385019 - ], - [ - 4.4367713, - 51.0385019 - ], - [ - 4.4367713, - 51.0385019 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107782992 - } - }, - { - "id": 107782991, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107782991 - } - }, - { - "id": 107782990, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107782990 - } - }, - { - "id": 107782985, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4367713, - 51.0385019 - ], - [ - 4.4367713, - 51.0385019 - ], - [ - 4.4367713, - 51.0385019 - ], - [ - 4.4367713, - 51.0385019 - ], - [ - 4.4367713, - 51.0385019 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107782985 - } - }, - { - "id": 107782975, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107782975 - } - }, - { - "id": 107782974, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4367713, - 51.0385019 - ], - [ - 4.4367713, - 51.0385019 - ], - [ - 4.4367713, - 51.0385019 - ], - [ - 4.4367713, - 51.0385019 - ], - [ - 4.4367713, - 51.0385019 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107782974 - } - }, - { - "id": 107782973, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107782973 - } - }, - { - "id": 107782972, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107782972 - } - }, - { - "id": 107782971, - "type": "Feature", - "geometry": null, - "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": 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": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107782971 - } - }, - { - "id": 107782964, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4367264, - 51.0385066 - ], - [ - 4.4367264, - 51.0385066 - ], - [ - 4.4367264, - 51.0385066 - ], - [ - 4.4367264, - 51.0385066 - ], - [ - 4.4367264, - 51.0385066 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107782964 - } - }, - { - "id": 107782963, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107782963 - } - }, - { - "id": 107782962, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107782962 - } - }, - { - "id": 107782949, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4367264, - 51.0385066 - ], - [ - 4.4367264, - 51.0385066 - ], - [ - 4.4367264, - 51.0385066 - ], - [ - 4.4367264, - 51.0385066 - ], - [ - 4.4367264, - 51.0385066 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107782949 - } - }, - { - "id": 107782926, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4367264, - 51.0385066 - ], - [ - 4.4367264, - 51.0385066 - ], - [ - 4.4367264, - 51.0385066 - ], - [ - 4.4367264, - 51.0385066 - ], - [ - 4.4367264, - 51.0385066 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107782926 - } - }, - { - "id": 107782878, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4367693, - 51.0385285 - ], - [ - 4.4367693, - 51.0385285 - ], - [ - 4.4367693, - 51.0385285 - ], - [ - 4.4367693, - 51.0385285 - ], - [ - 4.4367693, - 51.0385285 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107782878 - } - }, - { - "id": 107782877, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4367693, - 51.0385285 - ], - [ - 4.4367693, - 51.0385285 - ], - [ - 4.4367693, - 51.0385285 - ], - [ - 4.4367693, - 51.0385285 - ], - [ - 4.4367693, - 51.0385285 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 107782877 - } - }, - { - "id": 107780917, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.5590623, - 51.7230939 - ], - [ - 14.628679, - 51.7230939 - ], - [ - 14.628679, - 51.740593 - ], - [ - 14.5590623, - 51.740593 - ], - [ - 14.5590623, - 51.7230939 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.mobanisto.de", - "theme": "cyclenodes", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 107780917 - } - }, - { - "id": 107779257, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1025686, - 52.0690786 - ], - [ - 5.1025686, - 52.0690786 - ], - [ - 5.1025686, - 52.0690786 - ], - [ - 5.1025686, - 52.0690786 - ], - [ - 5.1025686, - 52.0690786 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "EsriWorldImageryClarity", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107779257 - } - }, - { - "id": 107779011, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 29.4700729, - 64.1187623 - ], - [ - 29.52928, - 64.1187623 - ], - [ - 29.52928, - 64.1280213 - ], - [ - 29.4700729, - 64.1280213 - ], - [ - 29.4700729, - 64.1187623 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 107779011 - } - }, - { - "id": 107778610, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 29.504362, - 64.1267868 - ], - [ - 29.5209973, - 64.1267868 - ], - [ - 29.5209973, - 64.1285977 - ], - [ - 29.504362, - 64.1285977 - ], - [ - 29.504362, - 64.1267868 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107778610 - } - }, - { - "id": 107778187, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 29.5076767, - 64.1082429 - ], - [ - 29.5906819, - 64.1082429 - ], - [ - 29.5906819, - 64.1159073 - ], - [ - 29.5076767, - 64.1159073 - ], - [ - 29.5076767, - 64.1082429 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107778187 - } - }, - { - "id": 107768284, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.7677469, - 50.9369172 - ], - [ - 6.7677469, - 50.9369172 - ], - [ - 6.7677469, - 50.9369172 - ], - [ - 6.7677469, - 50.9369172 - ], - [ - 6.7677469, - 50.9369172 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107768284 - } - }, - { - "id": 107768238, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.7415319, - 50.9594129 - ], - [ - 6.7415319, - 50.9594129 - ], - [ - 6.7415319, - 50.9594129 - ], - [ - 6.7415319, - 50.9594129 - ], - [ - 6.7415319, - 50.9594129 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107768238 - } - }, - { - "id": 107768237, - "type": "Feature", - "geometry": null, - "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": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107768237 - } - }, - { - "id": 107768233, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.7966445, - 50.9163979 - ], - [ - 6.796741, - 50.9163979 - ], - [ - 6.796741, - 50.9164809 - ], - [ - 6.7966445, - 50.9164809 - ], - [ - 6.7966445, - 50.9163979 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107768233 - } - }, - { - "id": 107768230, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.7966445, - 50.9163979 - ], - [ - 6.796741, - 50.9163979 - ], - [ - 6.796741, - 50.9164809 - ], - [ - 6.7966445, - 50.9164809 - ], - [ - 6.7966445, - 50.9163979 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107768230 - } - }, - { - "id": 107768226, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.7964666, - 50.9163685 - ], - [ - 6.796741, - 50.9163685 - ], - [ - 6.796741, - 50.9164809 - ], - [ - 6.7964666, - 50.9164809 - ], - [ - 6.7964666, - 50.9163685 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107768226 - } - }, - { - "id": 107759779, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2454381, - 41.4501279 - ], - [ - 2.2533753, - 41.4501279 - ], - [ - 2.2533753, - 41.4542544 - ], - [ - 2.2454381, - 41.4542544 - ], - [ - 2.2454381, - 41.4501279 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "EsriWorldImageryClarity", - "language": "ca" - }, - "id": 107759779 - } - }, - { - "id": 107758733, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.1164367, - 49.4359709 - ], - [ - 11.1164367, - 49.4359709 - ], - [ - 11.1164367, - 49.4359709 - ], - [ - 11.1164367, - 49.4359709 - ], - [ - 11.1164367, - 49.4359709 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "ghostbikes", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107758733 - } - }, - { - "id": 107757533, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -8.5328982, - 51.9803454 - ], - [ - -8.5323468, - 51.9803454 - ], - [ - -8.5323468, - 51.9807271 - ], - [ - -8.5328982, - 51.9807271 - ], - [ - -8.5328982, - 51.9803454 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 107757533 - } - }, - { - "id": 107752830, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2074467, - 51.2144965 - ], - [ - 3.2074467, - 51.2144965 - ], - [ - 3.2074467, - 51.2144965 - ], - [ - 3.2074467, - 51.2144965 - ], - [ - 3.2074467, - 51.2144965 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "charging_stations", - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 107752830 - } - }, - { - "id": 107749131, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.240745, - 50.7341532 - ], - [ - 4.240745, - 50.7341532 - ], - [ - 4.240745, - 50.7341532 - ], - [ - 4.240745, - 50.7341532 - ], - [ - 4.240745, - 50.7341532 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osmfr", - "language": "nl" - }, - "id": 107749131 - } - }, - { - "id": 107747529, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198444, - 51.2156981 - ], - [ - 3.2198444, - 51.2156981 - ], - [ - 3.2198444, - 51.2156981 - ], - [ - 3.2198444, - 51.2156981 - ], - [ - 3.2198444, - 51.2156981 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107747529 - } - }, - { - "id": 107746904, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9708566, - 51.1064667 - ], - [ - 5.0114175, - 51.1064667 - ], - [ - 5.0114175, - 51.1304436 - ], - [ - 4.9708566, - 51.1304436 - ], - [ - 4.9708566, - 51.1064667 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 107746904 - } - }, - { - "id": 107746775, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9708566, - 51.1064667 - ], - [ - 4.9708566, - 51.1064667 - ], - [ - 4.9708566, - 51.1064667 - ], - [ - 4.9708566, - 51.1064667 - ], - [ - 4.9708566, - 51.1064667 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 107746775 - } - }, - { - "id": 107745354, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4060008, - 51.1604386 - ], - [ - 4.4563086, - 51.1604386 - ], - [ - 4.4563086, - 51.1713022 - ], - [ - 4.4060008, - 51.1713022 - ], - [ - 4.4060008, - 51.1604386 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107745354 - } - }, - { - "id": 107744755, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2067121, - 51.1064667 - ], - [ - 4.9708566, - 51.1064667 - ], - [ - 4.9708566, - 51.2149111 - ], - [ - 3.2067121, - 51.2149111 - ], - [ - 3.2067121, - 51.1064667 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107744755 - } - }, - { - "id": 107744218, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.6348378, - 51.7458095 - ], - [ - 14.6348378, - 51.7458095 - ], - [ - 14.6348378, - 51.7458095 - ], - [ - 14.6348378, - 51.7458095 - ], - [ - 14.6348378, - 51.7458095 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://matrix-client.matrix.org/_matrix/media/r0/download/matrix.org/vZjzqHFPkWoLoCNmFloJqZJr", - "imagery": "osm", - "language": "en" - }, - "id": 107744218 - } - }, - { - "id": 107744185, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9708566, - 51.1064667 - ], - [ - 4.9708566, - 51.1064667 - ], - [ - 4.9708566, - 51.1064667 - ], - [ - 4.9708566, - 51.1064667 - ], - [ - 4.9708566, - 51.1064667 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 107744185 - } - }, - { - "id": 107741841, - "type": "Feature", - "geometry": null, - "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:15:52Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107741841 - } - }, - { - "id": 107741834, - "type": "Feature", - "geometry": null, - "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:15:41Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107741834 - } - }, - { - "id": 107741827, - "type": "Feature", - "geometry": null, - "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:15:29Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107741827 - } - }, - { - "id": 107741782, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.40456, - 51.0092742 - ], - [ - 4.40456, - 51.0092742 - ], - [ - 4.40456, - 51.0092742 - ], - [ - 4.40456, - 51.0092742 - ], - [ - 4.40456, - 51.0092742 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107741782 - } - }, - { - "id": 107741773, - "type": "Feature", - "geometry": null, - "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:56Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107741773 - } - }, - { - "id": 107741754, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.36441, - 51.0112133 - ], - [ - 4.36441, - 51.0112133 - ], - [ - 4.36441, - 51.0112133 - ], - [ - 4.36441, - 51.0112133 - ], - [ - 4.36441, - 51.0112133 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107741754 - } - }, - { - "id": 107741752, - "type": "Feature", - "geometry": null, - "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:21Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107741752 - } - }, - { - "id": 107741744, - "type": "Feature", - "geometry": null, - "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:09Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107741744 - } - }, - { - "id": 107741717, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3657538, - 51.011274 - ], - [ - 4.3657538, - 51.011274 - ], - [ - 4.3657538, - 51.011274 - ], - [ - 4.3657538, - 51.011274 - ], - [ - 4.3657538, - 51.011274 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 107741717 - } - }, - { - "id": 107740381, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1237487, - 52.0895507 - ], - [ - 5.1237487, - 52.0895507 - ], - [ - 5.1237487, - 52.0895507 - ], - [ - 5.1237487, - 52.0895507 - ], - [ - 5.1237487, - 52.0895507 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107740381 - } - }, - { - "id": 107739303, - "type": "Feature", - "geometry": null, - "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:02:52Z", - "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": "en", - "theme-creator": "MapComplete" - }, - "id": 107739303 - } - }, - { - "id": 107739286, - "type": "Feature", - "geometry": null, - "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:02: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": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107739286 - } - }, - { - "id": 107739260, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.0559522, - 51.544285 - ], - [ - -0.0554451, - 51.544285 - ], - [ - -0.0554451, - 51.5443953 - ], - [ - -0.0559522, - 51.5443953 - ], - [ - -0.0559522, - 51.544285 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107739260 - } - }, - { - "id": 107738932, - "type": "Feature", - "geometry": null, - "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:51Z", - "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", - "imagery": "osm", - "language": "en" - }, - "id": 107738932 - } - }, - { - "id": 107738924, - "type": "Feature", - "geometry": null, - "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: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": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 107738924 - } - }, - { - "id": 107738922, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.578588, - 50.8733287 - ], - [ - 14.5791167, - 50.8733287 - ], - [ - 14.5791167, - 50.8736211 - ], - [ - 14.578588, - 50.8736211 - ], - [ - 14.578588, - 50.8733287 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 107738922 - } - }, - { - "id": 107738907, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.5788995, - 50.8738155 - ], - [ - 14.5795137, - 50.8738155 - ], - [ - 14.5795137, - 50.8739963 - ], - [ - 14.5788995, - 50.8739963 - ], - [ - 14.5788995, - 50.8738155 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 107738907 - } - }, - { - "id": 107738867, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.578766, - 50.8738893 - ], - [ - 14.5788685, - 50.8738893 - ], - [ - 14.5788685, - 50.8740141 - ], - [ - 14.578766, - 50.8740141 - ], - [ - 14.578766, - 50.8738893 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 107738867 - } - }, - { - "id": 107735170, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.0309161, - 47.2420926 - ], - [ - 6.0309161, - 47.2420926 - ], - [ - 6.0309161, - 47.2420926 - ], - [ - 6.0309161, - 47.2420926 - ], - [ - 6.0309161, - 47.2420926 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107735170 - } - }, - { - "id": 107731704, - "type": "Feature", - "geometry": null, - "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-10T03:31:52Z", - "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": "en", - "theme-creator": "MapComplete" - }, - "id": 107731704 - } - }, - { - "id": 107730202, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0537792, - 14.6195668 - ], - [ - 121.0537792, - 14.6195668 - ], - [ - 121.0537792, - 14.6195668 - ], - [ - 121.0537792, - 14.6195668 - ], - [ - 121.0537792, - 14.6195668 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107730202 - } - }, - { - "id": 107730044, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.0155506, - 5.4114159 - ], - [ - -4.0155506, - 5.4114159 - ], - [ - -4.0155506, - 5.4114159 - ], - [ - -4.0155506, - 5.4114159 - ], - [ - -4.0155506, - 5.4114159 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 107730044 - } - }, - { - "id": 107729507, - "type": "Feature", - "geometry": null, - "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:32:10Z", - "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": "en", - "theme-creator": "MapComplete" - }, - "id": 107729507 - } - }, - { - "id": 107729338, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0790995, - 14.6063744 - ], - [ - 121.0791009, - 14.6063744 - ], - [ - 121.0791009, - 14.6063865 - ], - [ - 121.0790995, - 14.6063865 - ], - [ - 121.0790995, - 14.6063744 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107729338 - } - }, - { - "id": 107729334, - "type": "Feature", - "geometry": null, - "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:14Z", - "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": "en", - "theme-creator": "MapComplete" - }, - "id": 107729334 - } - }, - { - "id": 107729332, - "type": "Feature", - "geometry": null, - "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:02Z", - "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": "en", - "theme-creator": "MapComplete" - }, - "id": 107729332 - } - }, - { - "id": 107729292, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0605946, - 14.645733 - ], - [ - 121.0605946, - 14.645733 - ], - [ - 121.0605946, - 14.645733 - ], - [ - 121.0605946, - 14.645733 - ], - [ - 121.0605946, - 14.645733 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107729292 - } - }, - { - "id": 107727020, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.5753566, - 50.7696993 - ], - [ - 15.0579905, - 50.7696993 - ], - [ - 15.0579905, - 50.8753447 - ], - [ - 14.5753566, - 50.8753447 - ], - [ - 14.5753566, - 50.7696993 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cyclofix", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107727020 - } - }, - { - "id": 107723869, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9991383, - 48.501704 - ], - [ - 9.0003003, - 48.501704 - ], - [ - 9.0003003, - 48.5017547 - ], - [ - 8.9991383, - 48.5017547 - ], - [ - 8.9991383, - 48.501704 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107723869 - } - }, - { - "id": 107723834, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9966005, - 48.5017112 - ], - [ - 8.9974958, - 48.5017112 - ], - [ - 8.9974958, - 48.501776 - ], - [ - 8.9966005, - 48.501776 - ], - [ - 8.9966005, - 48.5017112 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107723834 - } - }, - { - "id": 107719694, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2197613, - 51.2156729 - ], - [ - 3.2197613, - 51.2156729 - ], - [ - 3.2197613, - 51.2156729 - ], - [ - 3.2197613, - 51.2156729 - ], - [ - 3.2197613, - 51.2156729 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "bookcases", - "imagery": "osm", - "deletion": "yes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107719694 - } - }, - { - "id": 107719691, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2197613, - 51.2156729 - ], - [ - 3.2197613, - 51.2156729 - ], - [ - 3.2197613, - 51.2156729 - ], - [ - 3.2197613, - 51.2156729 - ], - [ - 3.2197613, - 51.2156729 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107719691 - } - }, - { - "id": 107719684, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198634, - 51.2156948 - ], - [ - 3.2198634, - 51.2156948 - ], - [ - 3.2198634, - 51.2156948 - ], - [ - 3.2198634, - 51.2156948 - ], - [ - 3.2198634, - 51.2156948 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "bookcases", - "imagery": "osm", - "deletion": "yes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107719684 - } - }, - { - "id": 107719490, - "type": "Feature", - "geometry": null, - "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:50:10Z", - "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": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107719490 - } - }, - { - "id": 107719425, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 1, - "name": "suspect_word" - } - ], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.8.3c", - "comment": "Deleting a point with #MapComplete for theme #bookcases: testing point", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2021-07-09T17:48: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": "bookcases", - "imagery": "osm", - "deletion": "yes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107719425 - } - }, - { - "id": 107719413, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198634, - 51.2156948 - ], - [ - 3.2198634, - 51.2156948 - ], - [ - 3.2198634, - 51.2156948 - ], - [ - 3.2198634, - 51.2156948 - ], - [ - 3.2198634, - 51.2156948 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107719413 - } - }, - { - "id": 107719356, - "type": "Feature", - "geometry": null, - "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": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2021-07-09T17:46:45Z", - "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": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107719356 - } - }, - { - "id": 107719337, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.069903, - 51.481657 - ], - [ - 0.069903, - 51.481657 - ], - [ - 0.069903, - 51.481657 - ], - [ - 0.069903, - 51.481657 - ], - [ - 0.069903, - 51.481657 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107719337 - } - }, - { - "id": 107719251, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.7728561, - 41.6312769 - ], - [ - -4.7728561, - 41.6312769 - ], - [ - -4.7728561, - 41.6312769 - ], - [ - -4.7728561, - 41.6312769 - ], - [ - -4.7728561, - 41.6312769 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107719251 - } - }, - { - "id": 107719243, - "type": "Feature", - "geometry": null, - "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:42Z", - "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": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107719243 - } - }, - { - "id": 107719236, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.7766709, - 41.6295739 - ], - [ - -4.7766709, - 41.6295739 - ], - [ - -4.7766709, - 41.6295739 - ], - [ - -4.7766709, - 41.6295739 - ], - [ - -4.7766709, - 41.6295739 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107719236 - } - }, - { - "id": 107719140, - "type": "Feature", - "geometry": null, - "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:40: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": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 107719140 - } - }, - { - "id": 107719052, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.8976679, - 48.6349738 - ], - [ - 8.9033198, - 48.6349738 - ], - [ - 8.9033198, - 48.6457673 - ], - [ - 8.8976679, - 48.6457673 - ], - [ - 8.8976679, - 48.6349738 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 107719052 - } - }, - { - "id": 107719049, - "type": "Feature", - "geometry": null, - "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: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": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 107719049 - } - }, - { - "id": 107718957, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.8935872, - 48.6451507 - ], - [ - 8.9033927, - 48.6451507 - ], - [ - 8.9033927, - 48.6561832 - ], - [ - 8.8935872, - 48.6561832 - ], - [ - 8.8935872, - 48.6451507 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 107718957 - } - }, - { - "id": 107717888, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.8458718, - 53.4766276 - ], - [ - 9.8468992, - 53.4766276 - ], - [ - 9.8468992, - 53.4771683 - ], - [ - 9.8458718, - 53.4771683 - ], - [ - 9.8458718, - 53.4766276 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107717888 - } - }, - { - "id": 107717289, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4507341, - 52.5077952 - ], - [ - 13.4507341, - 52.5077952 - ], - [ - 13.4507341, - 52.5077952 - ], - [ - 13.4507341, - 52.5077952 - ], - [ - 13.4507341, - 52.5077952 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 107717289 - } - }, - { - "id": 107717158, - "type": "Feature", - "geometry": null, - "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:53: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": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 107717158 - } - }, - { - "id": 107717095, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.4588175, - 39.4645176 - ], - [ - -0.4588175, - 39.4645176 - ], - [ - -0.4588175, - 39.4645176 - ], - [ - -0.4588175, - 39.4645176 - ], - [ - -0.4588175, - 39.4645176 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 107717095 - } - }, - { - "id": 107716873, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -21.8864554, - 64.100429 - ], - [ - -21.8731905, - 64.100429 - ], - [ - -21.8731905, - 64.1021864 - ], - [ - -21.8864554, - 64.1021864 - ], - [ - -21.8864554, - 64.100429 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 107716873 - } - }, - { - "id": 107716217, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.4855334, - 48.8051415 - ], - [ - 2.4855334, - 48.8051415 - ], - [ - 2.4855334, - 48.8051415 - ], - [ - 2.4855334, - 48.8051415 - ], - [ - 2.4855334, - 48.8051415 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107716217 - } - }, - { - "id": 107715408, - "type": "Feature", - "geometry": null, - "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:13: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": "benches", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 107715408 - } - }, - { - "id": 107715397, - "type": "Feature", - "geometry": null, - "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:13: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": "benches", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 107715397 - } - }, - { - "id": 107715337, - "type": "Feature", - "geometry": null, - "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:12:01Z", - "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": "Mapbox", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 107715337 - } - }, - { - "id": 107715333, - "type": "Feature", - "geometry": null, - "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:11:59Z", - "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": "Mapbox", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 107715333 - } - }, - { - "id": 107715285, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.277398, - 54.0719806 - ], - [ - -2.277398, - 54.0719806 - ], - [ - -2.277398, - 54.0719806 - ], - [ - -2.277398, - 54.0719806 - ], - [ - -2.277398, - 54.0719806 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 107715285 - } - }, - { - "id": 107707582, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0417856, - 48.52397 - ], - [ - 9.0417856, - 48.52397 - ], - [ - 9.0417856, - 48.52397 - ], - [ - 9.0417856, - 48.52397 - ], - [ - 9.0417856, - 48.52397 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "ghostbikes", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107707582 - } - }, - { - "id": 107706119, - "type": "Feature", - "geometry": null, - "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:16Z", - "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": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107706119 - } - }, - { - "id": 107706110, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9958313, - 48.5015779 - ], - [ - 8.9958313, - 48.5015779 - ], - [ - 8.9958313, - 48.5015779 - ], - [ - 8.9958313, - 48.5015779 - ], - [ - 8.9958313, - 48.5015779 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107706110 - } - }, - { - "id": 107701543, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 30.3278951, - 59.9976663 - ], - [ - 30.3326713, - 59.9976663 - ], - [ - 30.3326713, - 59.9980341 - ], - [ - 30.3278951, - 59.9980341 - ], - [ - 30.3278951, - 59.9976663 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 107701543 - } - }, - { - "id": 107699458, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.0826311, - 50.8650795 - ], - [ - -0.0777566, - 50.8650795 - ], - [ - -0.0777566, - 50.8695304 - ], - [ - -0.0826311, - 50.8695304 - ], - [ - -0.0826311, - 50.8650795 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 107699458 - } - }, - { - "id": 107699135, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.0936783, - 50.8628063 - ], - [ - -0.0921023, - 50.8628063 - ], - [ - -0.0921023, - 50.8638683 - ], - [ - -0.0936783, - 50.8638683 - ], - [ - -0.0936783, - 50.8628063 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 107699135 - } - }, - { - "id": 107698362, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.134994, - 50.8393412 - ], - [ - -0.082738, - 50.8393412 - ], - [ - -0.082738, - 50.8620547 - ], - [ - -0.134994, - 50.8620547 - ], - [ - -0.134994, - 50.8393412 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 107698362 - } - }, - { - "id": 107693811, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.5621302, - 48.1476623 - ], - [ - 11.5682078, - 48.1476623 - ], - [ - 11.5682078, - 48.1494587 - ], - [ - 11.5621302, - 48.1494587 - ], - [ - 11.5621302, - 48.1476623 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107693811 - } - }, - { - "id": 107693578, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.215425, - 51.2155449 - ], - [ - 3.2154855, - 51.2155449 - ], - [ - 3.2154855, - 51.2156013 - ], - [ - 3.215425, - 51.2156013 - ], - [ - 3.215425, - 51.2155449 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 107693578 - } - }, - { - "id": 107690848, - "type": "Feature", - "geometry": null, - "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: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": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107690848 - } - }, - { - "id": 107690820, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.927819, - 51.2218324 - ], - [ - 2.9284641, - 51.2218324 - ], - [ - 2.9284641, - 51.2223414 - ], - [ - 2.927819, - 51.2223414 - ], - [ - 2.927819, - 51.2218324 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107690820 - } - }, - { - "id": 107678120, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.371635, - 47.6815637 - ], - [ - -122.371635, - 47.6815637 - ], - [ - -122.371635, - 47.6815637 - ], - [ - -122.371635, - 47.6815637 - ], - [ - -122.371635, - 47.6815637 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107678120 - } - }, - { - "id": 107665134, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7858194, - -34.6617189 - ], - [ - -58.6432815, - -34.6617189 - ], - [ - -58.6432815, - -34.6516956 - ], - [ - -58.7858194, - -34.6516956 - ], - [ - -58.7858194, - -34.6617189 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "RailwaySignalsARG", - "imagery": "EsriWorldImagery", - "language": "en" - }, - "id": 107665134 - } - }, - { - "id": 107665005, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5302049, - -34.6390782 - ], - [ - -58.5276273, - -34.6390782 - ], - [ - -58.5276273, - -34.639034 - ], - [ - -58.5302049, - -34.639034 - ], - [ - -58.5302049, - -34.6390782 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "RailwaySignalsARG", - "imagery": "EsriWorldImageryClarity", - "language": "en" - }, - "id": 107665005 - } - }, - { - "id": 107659989, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2217294, - 51.212738 - ], - [ - 3.2217294, - 51.212738 - ], - [ - 3.2217294, - 51.212738 - ], - [ - 3.2217294, - 51.212738 - ], - [ - 3.2217294, - 51.212738 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107659989 - } - }, - { - "id": 107659843, - "type": "Feature", - "geometry": null, - "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:37:27Z", - "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": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 107659843 - } - }, - { - "id": 107659818, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2120516, - 51.191464 - ], - [ - 3.2120516, - 51.191464 - ], - [ - 3.2120516, - 51.191464 - ], - [ - 3.2120516, - 51.191464 - ], - [ - 3.2120516, - 51.191464 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 107659818 - } - }, - { - "id": 107657644, - "type": "Feature", - "geometry": null, - "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:39: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": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107657644 - } - }, - { - "id": 107657613, - "type": "Feature", - "geometry": null, - "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: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": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107657613 - } - }, - { - "id": 107657581, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -74.2995597, - 40.0142938 - ], - [ - -74.2995597, - 40.0142938 - ], - [ - -74.2995597, - 40.0142938 - ], - [ - -74.2995597, - 40.0142938 - ], - [ - -74.2995597, - 40.0142938 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107657581 - } - }, - { - "id": 107657567, - "type": "Feature", - "geometry": null, - "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:22Z", - "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", - "theme-creator": "MapComplete" - }, - "id": 107657567 - } - }, - { - "id": 107657541, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -74.2060228, - 39.9653965 - ], - [ - -74.2046061, - 39.9653965 - ], - [ - -74.2046061, - 39.9664648 - ], - [ - -74.2060228, - 39.9664648 - ], - [ - -74.2060228, - 39.9653965 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107657541 - } - }, - { - "id": 107655746, - "type": "Feature", - "geometry": null, - "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-08T18:52:07Z", - "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": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107655746 - } - }, - { - "id": 107655696, - "type": "Feature", - "geometry": null, - "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-08T18:50: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": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107655696 - } - }, - { - "id": 107655682, - "type": "Feature", - "geometry": null, - "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-08T18:50: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": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107655682 - } - }, - { - "id": 107655620, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9196087, - 51.2342711 - ], - [ - 2.9196087, - 51.2342711 - ], - [ - 2.9196087, - 51.2342711 - ], - [ - 2.9196087, - 51.2342711 - ], - [ - 2.9196087, - 51.2342711 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107655620 - } - }, - { - "id": 107651887, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.4460485, - -34.6202624 - ], - [ - -58.4460034, - -34.6202624 - ], - [ - -58.4460034, - -34.6201099 - ], - [ - -58.4460485, - -34.6201099 - ], - [ - -58.4460485, - -34.6202624 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "en" - }, - "id": 107651887 - } - }, - { - "id": 107651886, - "type": "Feature", - "geometry": null, - "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:21: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": "hailhydrant", - "imagery": "osm", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107651886 - } - }, - { - "id": 107651881, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.4450562, - -34.6196799 - ], - [ - -58.4450562, - -34.6196799 - ], - [ - -58.4450562, - -34.6196799 - ], - [ - -58.4450562, - -34.6196799 - ], - [ - -58.4450562, - -34.6196799 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "en" - }, - "id": 107651881 - } - }, - { - "id": 107651797, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.4450464, - -34.6198593 - ], - [ - -58.4450098, - -34.6198593 - ], - [ - -58.4450098, - -34.6197174 - ], - [ - -58.4450464, - -34.6197174 - ], - [ - -58.4450464, - -34.6198593 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "en" - }, - "id": 107651797 - } - }, - { - "id": 107651789, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.4183453, - -34.6090322 - ], - [ - -58.4183453, - -34.6090322 - ], - [ - -58.4183453, - -34.6090322 - ], - [ - -58.4183453, - -34.6090322 - ], - [ - -58.4183453, - -34.6090322 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "en" - }, - "id": 107651789 - } - }, - { - "id": 107651778, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.7964383, - 41.6151806 - ], - [ - -4.7964383, - 41.6151806 - ], - [ - -4.7964383, - 41.6151806 - ], - [ - -4.7964383, - 41.6151806 - ], - [ - -4.7964383, - 41.6151806 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "osm", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107651778 - } - }, - { - "id": 107651703, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.4188387, - -34.6091736 - ], - [ - -58.4115256, - -34.6091736 - ], - [ - -58.4115256, - -34.6087586 - ], - [ - -58.4188387, - -34.6087586 - ], - [ - -58.4188387, - -34.6091736 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "en" - }, - "id": 107651703 - } - }, - { - "id": 107648773, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2210216, - 41.4353475 - ], - [ - 2.2210216, - 41.4353475 - ], - [ - 2.2210216, - 41.4353475 - ], - [ - 2.2210216, - 41.4353475 - ], - [ - 2.2210216, - 41.4353475 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "EsriWorldImageryClarity", - "language": "ca" - }, - "id": 107648773 - } - }, - { - "id": 107648733, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2209787, - 41.4353262 - ], - [ - 2.2209787, - 41.4353262 - ], - [ - 2.2209787, - 41.4353262 - ], - [ - 2.2209787, - 41.4353262 - ], - [ - 2.2209787, - 41.4353262 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "EsriWorldImageryClarity", - "language": "ca" - }, - "id": 107648733 - } - }, - { - "id": 107648540, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2208569, - 41.4352656 - ], - [ - 2.2208569, - 41.4352656 - ], - [ - 2.2208569, - 41.4352656 - ], - [ - 2.2208569, - 41.4352656 - ], - [ - 2.2208569, - 41.4352656 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "EsriWorldImageryClarity", - "language": "ca" - }, - "id": 107648540 - } - }, - { - "id": 107647798, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.221693, - 41.4360179 - ], - [ - 2.2224973, - 41.4360179 - ], - [ - 2.2224973, - 41.4371516 - ], - [ - 2.221693, - 41.4371516 - ], - [ - 2.221693, - 41.4360179 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "EsriWorldImageryClarity", - "language": "ca" - }, - "id": 107647798 - } - }, - { - "id": 107647079, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2211704, - 41.4387847 - ], - [ - 2.2227109, - 41.4387847 - ], - [ - 2.2227109, - 41.440519 - ], - [ - 2.2211704, - 41.440519 - ], - [ - 2.2211704, - 41.4387847 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "EsriWorldImageryClarity", - "language": "ca" - }, - "id": 107647079 - } - }, - { - "id": 107646670, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2223235, - 41.440701 - ], - [ - 2.2234818, - 41.440701 - ], - [ - 2.2234818, - 41.4445879 - ], - [ - 2.2223235, - 41.4445879 - ], - [ - 2.2223235, - 41.440701 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 107646670 - } - }, - { - "id": 107646653, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2223795, - 41.4444085 - ], - [ - 2.2223795, - 41.4444085 - ], - [ - 2.2223795, - 41.4444085 - ], - [ - 2.2223795, - 41.4444085 - ], - [ - 2.2223795, - 41.4444085 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 107646653 - } - }, - { - "id": 107639693, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7356439, - 51.041662 - ], - [ - 3.7356439, - 51.041662 - ], - [ - 3.7356439, - 51.041662 - ], - [ - 3.7356439, - 51.041662 - ], - [ - 3.7356439, - 51.041662 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107639693 - } - }, - { - "id": 107639372, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2208054, - 51.2103751 - ], - [ - 3.2208054, - 51.2103751 - ], - [ - 3.2208054, - 51.2103751 - ], - [ - 3.2208054, - 51.2103751 - ], - [ - 3.2208054, - 51.2103751 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107639372 - } - }, - { - "id": 107637544, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9965305, - 48.5015504 - ], - [ - 8.9965305, - 48.5015504 - ], - [ - 8.9965305, - 48.5015504 - ], - [ - 8.9965305, - 48.5015504 - ], - [ - 8.9965305, - 48.5015504 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107637544 - } - }, - { - "id": 107637369, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0559303, - 48.5230202 - ], - [ - 9.0565347, - 48.5230202 - ], - [ - 9.0565347, - 48.5233232 - ], - [ - 9.0559303, - 48.5233232 - ], - [ - 9.0559303, - 48.5230202 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 107637369 - } - }, - { - "id": 107632293, - "type": "Feature", - "geometry": null, - "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:43:22Z", - "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": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107632293 - } - }, - { - "id": 107632277, - "type": "Feature", - "geometry": null, - "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:43:14Z", - "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": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107632277 - } - }, - { - "id": 107632055, - "type": "Feature", - "geometry": null, - "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:40:45Z", - "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": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107632055 - } - }, - { - "id": 107631905, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7356439, - 51.041662 - ], - [ - 3.7356439, - 51.041662 - ], - [ - 3.7356439, - 51.041662 - ], - [ - 3.7356439, - 51.041662 - ], - [ - 3.7356439, - 51.041662 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107631905 - } - }, - { - "id": 107630898, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9903969, - 48.4980299 - ], - [ - 9.0511951, - 48.4980299 - ], - [ - 9.0511951, - 48.5159303 - ], - [ - 8.9903969, - 48.5159303 - ], - [ - 8.9903969, - 48.4980299 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 107630898 - } - }, - { - "id": 107630486, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9928167, - 48.4991855 - ], - [ - 9.0002781, - 48.4991855 - ], - [ - 9.0002781, - 48.5014291 - ], - [ - 8.9928167, - 48.5014291 - ], - [ - 8.9928167, - 48.4991855 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107630486 - } - }, - { - "id": 107630466, - "type": "Feature", - "geometry": null, - "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: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": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107630466 - } - }, - { - "id": 107630455, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9958313, - 48.5015779 - ], - [ - 8.9958313, - 48.5015779 - ], - [ - 8.9958313, - 48.5015779 - ], - [ - 8.9958313, - 48.5015779 - ], - [ - 8.9958313, - 48.5015779 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107630455 - } - }, - { - "id": 107628222, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9159613, - 51.2317231 - ], - [ - 2.9201757, - 51.2317231 - ], - [ - 2.9201757, - 51.2343802 - ], - [ - 2.9159613, - 51.2343802 - ], - [ - 2.9159613, - 51.2317231 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107628222 - } - }, - { - "id": 107627625, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9172704, - 51.2339395 - ], - [ - 2.9192117, - 51.2339395 - ], - [ - 2.9192117, - 51.2342658 - ], - [ - 2.9172704, - 51.2342658 - ], - [ - 2.9172704, - 51.2339395 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "AGIV10cm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107627625 - } - }, - { - "id": 107626737, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9168272, - 51.2339232 - ], - [ - 2.9168272, - 51.2339232 - ], - [ - 2.9168272, - 51.2339232 - ], - [ - 2.9168272, - 51.2339232 - ], - [ - 2.9168272, - 51.2339232 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107626737 - } - }, - { - "id": 107624823, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9168272, - 51.2338965 - ], - [ - 2.9169801, - 51.2338965 - ], - [ - 2.9169801, - 51.2339232 - ], - [ - 2.9168272, - 51.2339232 - ], - [ - 2.9168272, - 51.2338965 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107624823 - } - }, - { - "id": 107615864, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2194673, - 51.2131627 - ], - [ - 3.2194673, - 51.2131627 - ], - [ - 3.2194673, - 51.2131627 - ], - [ - 3.2194673, - 51.2131627 - ], - [ - 3.2194673, - 51.2131627 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107615864 - } - }, - { - "id": 107613706, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9192117, - 51.2342658 - ], - [ - 2.9192117, - 51.2342658 - ], - [ - 2.9192117, - 51.2342658 - ], - [ - 2.9192117, - 51.2342658 - ], - [ - 2.9192117, - 51.2342658 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107613706 - } - }, - { - "id": 107591399, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7866643, - -34.6514154 - ], - [ - -58.7866643, - -34.6514154 - ], - [ - -58.7866643, - -34.6514154 - ], - [ - -58.7866643, - -34.6514154 - ], - [ - -58.7866643, - -34.6514154 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "RailwaySignalsARG", - "imagery": "osm", - "language": "es" - }, - "id": 107591399 - } - }, - { - "id": 107586930, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9195952, - 51.2343802 - ], - [ - 2.9195952, - 51.2343802 - ], - [ - 2.9195952, - 51.2343802 - ], - [ - 2.9195952, - 51.2343802 - ], - [ - 2.9195952, - 51.2343802 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107586930 - } - }, - { - "id": 107586116, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1987433, - 52.0670819 - ], - [ - 5.1987433, - 52.0670819 - ], - [ - 5.1987433, - 52.0670819 - ], - [ - 5.1987433, - 52.0670819 - ], - [ - 5.1987433, - 52.0670819 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107586116 - } - }, - { - "id": 107581411, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 20.4317797, - 44.8152335 - ], - [ - 20.4317797, - 44.8152335 - ], - [ - 20.4317797, - 44.8152335 - ], - [ - 20.4317797, - 44.8152335 - ], - [ - 20.4317797, - 44.8152335 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 107581411 - } - }, - { - "id": 107561417, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5527011, - 50.9974593 - ], - [ - 4.5527011, - 50.9974593 - ], - [ - 4.5527011, - 50.9974593 - ], - [ - 4.5527011, - 50.9974593 - ], - [ - 4.5527011, - 50.9974593 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "waste_basket", - "imagery": "osm", - "language": "en" - }, - "id": 107561417 - } - }, - { - "id": 107554704, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.5557197, - 13.9643939 - ], - [ - 121.5557197, - 13.9643939 - ], - [ - 121.5557197, - 13.9643939 - ], - [ - 121.5557197, - 13.9643939 - ], - [ - 121.5557197, - 13.9643939 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107554704 - } - }, - { - "id": 107527653, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7872624, - -34.6514312 - ], - [ - -58.7867072, - -34.6514312 - ], - [ - -58.7867072, - -34.6513871 - ], - [ - -58.7872624, - -34.6513871 - ], - [ - -58.7872624, - -34.6514312 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "RailwaySignalsARG", - "imagery": "osm", - "language": "en" - }, - "id": 107527653 - } - }, - { - "id": 107525315, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7877131, - -34.6512345 - ], - [ - -58.7875012, - -34.6512345 - ], - [ - -58.7875012, - -34.6509917 - ], - [ - -58.7877131, - -34.6509917 - ], - [ - -58.7877131, - -34.6512345 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "RailwaySignalsARG", - "imagery": "osm", - "language": "es" - }, - "id": 107525315 - } - }, - { - "id": 107517409, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3531842, - 44.531113 - ], - [ - 11.3531842, - 44.531113 - ], - [ - 11.3531842, - 44.531113 - ], - [ - 11.3531842, - 44.531113 - ], - [ - 11.3531842, - 44.531113 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107517409 - } - }, - { - "id": 107510508, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1213796, - 52.0759235 - ], - [ - 5.1213796, - 52.0759235 - ], - [ - 5.1213796, - 52.0759235 - ], - [ - 5.1213796, - 52.0759235 - ], - [ - 5.1213796, - 52.0759235 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107510508 - } - }, - { - "id": 107504627, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.3041186, - 48.1610421 - ], - [ - 16.3041186, - 48.1610421 - ], - [ - 16.3041186, - 48.1610421 - ], - [ - 16.3041186, - 48.1610421 - ], - [ - 16.3041186, - 48.1610421 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107504627 - } - }, - { - "id": 107500130, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.4546041, - -34.624 - ], - [ - -58.4546041, - -34.624 - ], - [ - -58.4546041, - -34.624 - ], - [ - -58.4546041, - -34.624 - ], - [ - -58.4546041, - -34.624 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 107500130 - } - }, - { - "id": 107493601, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 43.8774472, - 56.2496226 - ], - [ - 43.8774472, - 56.2496226 - ], - [ - 43.8774472, - 56.2496226 - ], - [ - 43.8774472, - 56.2496226 - ], - [ - 43.8774472, - 56.2496226 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "alexashh", - "uid": "9054103", - "editor": "MapComplete 0.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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107493601 - } - }, - { - "id": 107456799, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1124561, - 51.1812325 - ], - [ - 5.1124561, - 51.1812325 - ], - [ - 5.1124561, - 51.1812325 - ], - [ - 5.1124561, - 51.1812325 - ], - [ - 5.1124561, - 51.1812325 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cyclofix", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107456799 - } - }, - { - "id": 107446673, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1242227, - 52.0818547 - ], - [ - 5.1242227, - 52.0818547 - ], - [ - 5.1242227, - 52.0818547 - ], - [ - 5.1242227, - 52.0818547 - ], - [ - 5.1242227, - 52.0818547 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107446673 - } - }, - { - "id": 107440134, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4505599, - 51.1920798 - ], - [ - 4.4505599, - 51.1920798 - ], - [ - 4.4505599, - 51.1920798 - ], - [ - 4.4505599, - 51.1920798 - ], - [ - 4.4505599, - 51.1920798 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "ghostbikes", - "imagery": "CartoDB.Positron", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 107440134 - } - }, - { - "id": 107439210, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5610727, - 53.0192702 - ], - [ - 6.5616783, - 53.0192702 - ], - [ - 6.5616783, - 53.0192929 - ], - [ - 6.5610727, - 53.0192929 - ], - [ - 6.5610727, - 53.0192702 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://osm.rlin.eu/streetlighting.json", - "imagery": "osm", - "language": "nl", - "theme-creator": "RobinLinde" - }, - "id": 107439210 - } - }, - { - "id": 107438593, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5513386, - 50.9966912 - ], - [ - 4.5513386, - 50.9966912 - ], - [ - 4.5513386, - 50.9966912 - ], - [ - 4.5513386, - 50.9966912 - ], - [ - 4.5513386, - 50.9966912 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 107438593 - } - }, - { - "id": 107438158, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5478141, - 50.9985093 - ], - [ - 4.5478141, - 50.9985093 - ], - [ - 4.5478141, - 50.9985093 - ], - [ - 4.5478141, - 50.9985093 - ], - [ - 4.5478141, - 50.9985093 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 107438158 - } - }, - { - "id": 107438020, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4902217, - 51.2035762 - ], - [ - 4.4902217, - 51.2035762 - ], - [ - 4.4902217, - 51.2035762 - ], - [ - 4.4902217, - 51.2035762 - ], - [ - 4.4902217, - 51.2035762 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 107438020 - } - }, - { - "id": 107437838, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7284127, - 51.0665171 - ], - [ - 3.7284127, - 51.0665171 - ], - [ - 3.7284127, - 51.0665171 - ], - [ - 3.7284127, - 51.0665171 - ], - [ - 3.7284127, - 51.0665171 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 107437838 - } - }, - { - "id": 107437805, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4893856, - 51.2049139 - ], - [ - 4.4907146, - 51.2049139 - ], - [ - 4.4907146, - 51.2055226 - ], - [ - 4.4893856, - 51.2055226 - ], - [ - 4.4893856, - 51.2049139 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "AGIV", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 107437805 - } - }, - { - "id": 107436132, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.0110496, - 50.7870724 - ], - [ - 2.0110496, - 50.7870724 - ], - [ - 2.0110496, - 50.7870724 - ], - [ - 2.0110496, - 50.7870724 - ], - [ - 2.0110496, - 50.7870724 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 107436132 - } - }, - { - "id": 107436011, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0179933, - 51.388831 - ], - [ - 5.0179933, - 51.388831 - ], - [ - 5.0179933, - 51.388831 - ], - [ - 5.0179933, - 51.388831 - ], - [ - 5.0179933, - 51.388831 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "AGIV", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 107436011 - } - }, - { - "id": 107435925, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0157416, - 51.3917567 - ], - [ - 5.0157416, - 51.3917567 - ], - [ - 5.0157416, - 51.3917567 - ], - [ - 5.0157416, - 51.3917567 - ], - [ - 5.0157416, - 51.3917567 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 107435925 - } - }, - { - "id": 107433268, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.076896, - 51.3233979 - ], - [ - 5.076896, - 51.3233979 - ], - [ - 5.076896, - 51.3233979 - ], - [ - 5.076896, - 51.3233979 - ], - [ - 5.076896, - 51.3233979 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107433268 - } - }, - { - "id": 107430359, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2047918, - 41.506901 - ], - [ - 2.3890409, - 41.506901 - ], - [ - 2.3890409, - 41.5487849 - ], - [ - 2.2047918, - 41.5487849 - ], - [ - 2.2047918, - 41.506901 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107430359 - } - }, - { - "id": 107429499, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2857413, - 49.1512365 - ], - [ - 9.2879766, - 49.1512365 - ], - [ - 9.2879766, - 49.1518671 - ], - [ - 9.2857413, - 49.1518671 - ], - [ - 9.2857413, - 49.1512365 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107429499 - } - }, - { - "id": 107428602, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5535673, - 53.0081 - ], - [ - 6.556139, - 53.0081 - ], - [ - 6.556139, - 53.0104113 - ], - [ - 6.5535673, - 53.0104113 - ], - [ - 6.5535673, - 53.0081 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fietsstraten", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107428602 - } - }, - { - "id": 107428362, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.0073312, - 49.4024851 - ], - [ - 11.0073312, - 49.4024851 - ], - [ - 11.0073312, - 49.4024851 - ], - [ - 11.0073312, - 49.4024851 - ], - [ - 11.0073312, - 49.4024851 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107428362 - } - }, - { - "id": 107406325, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2292951, - 41.4469764 - ], - [ - 2.2321552, - 41.4469764 - ], - [ - 2.2321552, - 41.4473754 - ], - [ - 2.2292951, - 41.4473754 - ], - [ - 2.2292951, - 41.4469764 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 107406325 - } - }, - { - "id": 107404092, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5801438, - 52.9886576 - ], - [ - 6.5801438, - 52.9886576 - ], - [ - 6.5801438, - 52.9886576 - ], - [ - 6.5801438, - 52.9886576 - ], - [ - 6.5801438, - 52.9886576 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 107404092 - } - }, - { - "id": 107399445, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7809923, - 48.2798105 - ], - [ - 11.7824652, - 48.2798105 - ], - [ - 11.7824652, - 48.28044 - ], - [ - 11.7809923, - 48.28044 - ], - [ - 11.7809923, - 48.2798105 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 107399445 - } - }, - { - "id": 107399232, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2281002, - 41.447417 - ], - [ - 2.2286431, - 41.447417 - ], - [ - 2.2286431, - 41.447453 - ], - [ - 2.2281002, - 41.447453 - ], - [ - 2.2281002, - 41.447417 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 107399232 - } - }, - { - "id": 107398394, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -79.5328617, - 43.1849863 - ], - [ - -79.5328617, - 43.1849863 - ], - [ - -79.5328617, - 43.1849863 - ], - [ - -79.5328617, - 43.1849863 - ], - [ - -79.5328617, - 43.1849863 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107398394 - } - }, - { - "id": 107393708, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.9085613, - 53.6620053 - ], - [ - 9.9096327, - 53.6620053 - ], - [ - 9.9096327, - 53.6653281 - ], - [ - 9.9085613, - 53.6653281 - ], - [ - 9.9085613, - 53.6620053 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 107393708 - } - }, - { - "id": 107391739, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1465075, - 48.9024177 - ], - [ - 2.1465075, - 48.9024177 - ], - [ - 2.1465075, - 48.9024177 - ], - [ - 2.1465075, - 48.9024177 - ], - [ - 2.1465075, - 48.9024177 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107391739 - } - }, - { - "id": 107390271, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9057778, - 51.228239 - ], - [ - 4.9069139, - 51.228239 - ], - [ - 4.9069139, - 51.2287886 - ], - [ - 4.9057778, - 51.2287886 - ], - [ - 4.9057778, - 51.228239 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 107390271 - } - }, - { - "id": 107384119, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.7780563, - 41.6243887 - ], - [ - -4.7676399, - 41.6243887 - ], - [ - -4.7676399, - 41.628766 - ], - [ - -4.7780563, - 41.628766 - ], - [ - -4.7780563, - 41.6243887 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "osm", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107384119 - } - }, - { - "id": 107379203, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.7960611, - 41.6173469 - ], - [ - -4.7915014, - 41.6173469 - ], - [ - -4.7915014, - 41.6206205 - ], - [ - -4.7960611, - 41.6206205 - ], - [ - -4.7960611, - 41.6173469 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "osm", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107379203 - } - }, - { - "id": 107379066, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.8066017, - 41.6189584 - ], - [ - -4.7994641, - 41.6189584 - ], - [ - -4.7994641, - 41.621045 - ], - [ - -4.8066017, - 41.621045 - ], - [ - -4.8066017, - 41.6189584 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107379066 - } - }, - { - "id": 107378298, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8420487, - 50.8715807 - ], - [ - 4.8836353, - 50.8715807 - ], - [ - 4.8836353, - 50.8816233 - ], - [ - 4.8420487, - 50.8816233 - ], - [ - 4.8420487, - 50.8715807 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 107378298 - } - }, - { - "id": 107377442, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8779343, - 50.8749435 - ], - [ - 4.8779343, - 50.8749435 - ], - [ - 4.8779343, - 50.8749435 - ], - [ - 4.8779343, - 50.8749435 - ], - [ - 4.8779343, - 50.8749435 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 107377442 - } - }, - { - "id": 107377157, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.5999967, - 47.5721039 - ], - [ - 7.5999967, - 47.5721039 - ], - [ - 7.5999967, - 47.5721039 - ], - [ - 7.5999967, - 47.5721039 - ], - [ - 7.5999967, - 47.5721039 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 107377157 - } - }, - { - "id": 107376632, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8990223, - 50.4681868 - ], - [ - 4.8994242, - 50.4681868 - ], - [ - 4.8994242, - 50.4683662 - ], - [ - 4.8990223, - 50.4683662 - ], - [ - 4.8990223, - 50.4681868 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/units/", - "theme": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 107376632 - } - }, - { - "id": 107376395, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -7.7163123, - 41.2700132 - ], - [ - -7.6742925, - 41.2700132 - ], - [ - -7.6742925, - 41.2760961 - ], - [ - -7.7163123, - 41.2760961 - ], - [ - -7.7163123, - 41.2700132 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107376395 - } - }, - { - "id": 107375700, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -7.9234546, - 41.2658843 - ], - [ - -7.659696, - 41.2658843 - ], - [ - -7.659696, - 41.2871804 - ], - [ - -7.9234546, - 41.2871804 - ], - [ - -7.9234546, - 41.2658843 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107375700 - } - }, - { - "id": 107375646, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -7.69645, - 41.270046 - ], - [ - -7.6742113, - 41.270046 - ], - [ - -7.6742113, - 41.270683 - ], - [ - -7.69645, - 41.270683 - ], - [ - -7.69645, - 41.270046 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 107375646 - } - }, - { - "id": 107374450, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7889388, - -34.6506381 - ], - [ - -58.7889388, - -34.6506381 - ], - [ - -58.7889388, - -34.6506381 - ], - [ - -58.7889388, - -34.6506381 - ], - [ - -58.7889388, - -34.6506381 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 107374450 - } - }, - { - "id": 107374210, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.788963, - -34.650659 - ], - [ - -58.788963, - -34.650659 - ], - [ - -58.788963, - -34.650659 - ], - [ - -58.788963, - -34.650659 - ], - [ - -58.788963, - -34.650659 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107374210 - } - }, - { - "id": 107374133, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7891185, - -34.6502794 - ], - [ - -58.7891185, - -34.6502794 - ], - [ - -58.7891185, - -34.6502794 - ], - [ - -58.7891185, - -34.6502794 - ], - [ - -58.7891185, - -34.6502794 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107374133 - } - }, - { - "id": 107370331, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.7977265, - 41.6162885 - ], - [ - -4.7728561, - 41.6162885 - ], - [ - -4.7728561, - 41.6312769 - ], - [ - -4.7977265, - 41.6312769 - ], - [ - -4.7977265, - 41.6162885 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "osm", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107370331 - } - }, - { - "id": 107367471, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2193819, - 51.1822834 - ], - [ - 5.2193819, - 51.1822834 - ], - [ - 5.2193819, - 51.1822834 - ], - [ - 5.2193819, - 51.1822834 - ], - [ - 5.2193819, - 51.1822834 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 107367471 - } - }, - { - "id": 107366484, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2321908, - 41.442863 - ], - [ - 2.2366701, - 41.442863 - ], - [ - 2.2366701, - 41.446118 - ], - [ - 2.2321908, - 41.446118 - ], - [ - 2.2321908, - 41.442863 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 107366484 - } - }, - { - "id": 107364400, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7872839, - -34.651193 - ], - [ - -58.7872839, - -34.651193 - ], - [ - -58.7872839, - -34.651193 - ], - [ - -58.7872839, - -34.651193 - ], - [ - -58.7872839, - -34.651193 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "RailwaySignalsARG", - "imagery": "osm", - "language": "en" - }, - "id": 107364400 - } - }, - { - "id": 107358016, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9731745, - 52.3375458 - ], - [ - 4.9788667, - 52.3375458 - ], - [ - 4.9788667, - 52.3381962 - ], - [ - 4.9731745, - 52.3381962 - ], - [ - 4.9731745, - 52.3375458 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107358016 - } - }, - { - "id": 107357608, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1366315, - 50.6942047 - ], - [ - 3.1366315, - 50.6942047 - ], - [ - 3.1366315, - 50.6942047 - ], - [ - 3.1366315, - 50.6942047 - ], - [ - 3.1366315, - 50.6942047 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 107357608 - } - }, - { - "id": 107357033, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.281029, - 48.1636019 - ], - [ - 16.38993, - 48.1636019 - ], - [ - 16.38993, - 48.2113868 - ], - [ - 16.281029, - 48.2113868 - ], - [ - 16.281029, - 48.1636019 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 107357033 - } - }, - { - "id": 107357028, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5583594, - 47.4644831 - ], - [ - -0.5583594, - 47.4644831 - ], - [ - -0.5583594, - 47.4644831 - ], - [ - -0.5583594, - 47.4644831 - ], - [ - -0.5583594, - 47.4644831 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 107357028 - } - }, - { - "id": 107351906, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2207792, - 51.2168779 - ], - [ - 3.2207792, - 51.2168779 - ], - [ - 3.2207792, - 51.2168779 - ], - [ - 3.2207792, - 51.2168779 - ], - [ - 3.2207792, - 51.2168779 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 107351906 - } - }, - { - "id": 107349092, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1376255, - 50.6908535 - ], - [ - 3.1409985, - 50.6908535 - ], - [ - 3.1409985, - 50.692158 - ], - [ - 3.1376255, - 50.692158 - ], - [ - 3.1376255, - 50.6908535 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 107349092 - } - }, - { - "id": 107348158, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9971666, - 51.3440596 - ], - [ - 5.1271854, - 51.3440596 - ], - [ - 5.1271854, - 51.4110181 - ], - [ - 4.9971666, - 51.4110181 - ], - [ - 4.9971666, - 51.3440596 - ] - ] - ] - }, - "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, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 107348158 - } - }, - { - "id": 107346987, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1252835, - 52.0836943 - ], - [ - 5.1252835, - 52.0836943 - ], - [ - 5.1252835, - 52.0836943 - ], - [ - 5.1252835, - 52.0836943 - ], - [ - 5.1252835, - 52.0836943 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107346987 - } - }, - { - "id": 107345763, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.221248, - 51.2158345 - ], - [ - 3.221339, - 51.2158345 - ], - [ - 3.221339, - 51.2159827 - ], - [ - 3.221248, - 51.2159827 - ], - [ - 3.221248, - 51.2158345 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 107345763 - } - }, - { - "id": 107342913, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.788639, - 51.2645906 - ], - [ - 4.788639, - 51.2645906 - ], - [ - 4.788639, - 51.2645906 - ], - [ - 4.788639, - 51.2645906 - ], - [ - 4.788639, - 51.2645906 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 107342913 - } - }, - { - "id": 107338502, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7889281, - -34.6511289 - ], - [ - -58.7876004, - -34.6511289 - ], - [ - -58.7876004, - -34.6506652 - ], - [ - -58.7889281, - -34.6506652 - ], - [ - -58.7889281, - -34.6511289 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "RailwaySignalsARG", - "imagery": "osm", - "language": "en" - }, - "id": 107338502 - } - }, - { - "id": 107335315, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.219882, - 51.2157065 - ], - [ - 3.219882, - 51.2157065 - ], - [ - 3.219882, - 51.2157065 - ], - [ - 3.219882, - 51.2157065 - ], - [ - 3.219882, - 51.2157065 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "bookcases", - "imagery": "osm", - "deletion": "yes", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 107335315 - } - }, - { - "id": 107334758, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198712, - 51.2156981 - ], - [ - 3.2198712, - 51.2156981 - ], - [ - 3.2198712, - 51.2156981 - ], - [ - 3.2198712, - 51.2156981 - ], - [ - 3.2198712, - 51.2156981 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "bookcases", - "imagery": "osm", - "deletion": "yes", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 107334758 - } - }, - { - "id": 107334707, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2198712, - 51.2156981 - ], - [ - 3.219882, - 51.2156981 - ], - [ - 3.219882, - 51.2157065 - ], - [ - 3.2198712, - 51.2157065 - ], - [ - 3.2198712, - 51.2156981 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "bookcases", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 107334707 - } - }, - { - "id": 107326187, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8990223, - 50.4681868 - ], - [ - 4.8994242, - 50.4681868 - ], - [ - 4.8994242, - 50.4683662 - ], - [ - 4.8990223, - 50.4683662 - ], - [ - 4.8990223, - 50.4681868 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 107326187 - } - }, - { - "id": 107323688, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2297063, - 41.4501555 - ], - [ - 2.2302675, - 41.4501555 - ], - [ - 2.2302675, - 41.4503486 - ], - [ - 2.2297063, - 41.4503486 - ], - [ - 2.2297063, - 41.4501555 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 107323688 - } - }, - { - "id": 107318880, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.7766602, - 41.623888 - ], - [ - -4.767592, - 41.623888 - ], - [ - -4.767592, - 41.6312499 - ], - [ - -4.7766602, - 41.6312499 - ], - [ - -4.7766602, - 41.623888 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107318880 - } - }, - { - "id": 107312724, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3253657, - 51.1093114 - ], - [ - 4.3253657, - 51.1093114 - ], - [ - 4.3253657, - 51.1093114 - ], - [ - 4.3253657, - 51.1093114 - ], - [ - 4.3253657, - 51.1093114 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107312724 - } - }, - { - "id": 107312030, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.277056, - 53.4048886 - ], - [ - -2.277056, - 53.4048886 - ], - [ - -2.277056, - 53.4048886 - ], - [ - -2.277056, - 53.4048886 - ], - [ - -2.277056, - 53.4048886 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "EsriWorldImageryClarity", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 107312030 - } - }, - { - "id": 107283786, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -93.6530346, - 41.7361019 - ], - [ - -93.6494485, - 41.7361019 - ], - [ - -93.6494485, - 41.7378782 - ], - [ - -93.6530346, - 41.7378782 - ], - [ - -93.6530346, - 41.7361019 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107283786 - } - }, - { - "id": 107283257, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2228402, - -39.8375582 - ], - [ - -73.2227075, - -39.8375582 - ], - [ - -73.2227075, - -39.8375162 - ], - [ - -73.2228402, - -39.8375162 - ], - [ - -73.2228402, - -39.8375582 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 107283257 - } - }, - { - "id": 107278218, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.447999, - 51.091878 - ], - [ - 3.4493543, - 51.091878 - ], - [ - 3.4493543, - 51.0922876 - ], - [ - 3.447999, - 51.0922876 - ], - [ - 3.447999, - 51.091878 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 107278218 - } - }, - { - "id": 107278133, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.7766602, - 41.6251621 - ], - [ - -4.7676399, - 41.6251621 - ], - [ - -4.7676399, - 41.6312499 - ], - [ - -4.7766602, - 41.6312499 - ], - [ - -4.7766602, - 41.6251621 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107278133 - } - }, - { - "id": 107276579, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2120516, - 51.191464 - ], - [ - 3.2120516, - 51.191464 - ], - [ - 3.2120516, - 51.191464 - ], - [ - 3.2120516, - 51.191464 - ], - [ - 3.2120516, - 51.191464 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 107276579 - } - }, - { - "id": 107270901, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.224388, - 50.7138962 - ], - [ - 4.224388, - 50.7138962 - ], - [ - 4.224388, - 50.7138962 - ], - [ - 4.224388, - 50.7138962 - ], - [ - 4.224388, - 50.7138962 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 107270901 - } - }, - { - "id": 107269915, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.7727844, - 41.6283179 - ], - [ - -4.7727844, - 41.6283179 - ], - [ - -4.7727844, - 41.6283179 - ], - [ - -4.7727844, - 41.6283179 - ], - [ - -4.7727844, - 41.6283179 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107269915 - } - }, - { - "id": 107264848, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.122183, - 52.0788916 - ], - [ - 5.122183, - 52.0788916 - ], - [ - 5.122183, - 52.0788916 - ], - [ - 5.122183, - 52.0788916 - ], - [ - 5.122183, - 52.0788916 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107264848 - } - }, - { - "id": 107262666, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.6527009, - -34.6555197 - ], - [ - -58.644448, - -34.6555197 - ], - [ - -58.644448, - -34.6529841 - ], - [ - -58.6527009, - -34.6529841 - ], - [ - -58.6527009, - -34.6555197 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 107262666 - } - }, - { - "id": 107243866, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1110544, - 52.0827213 - ], - [ - 5.1110544, - 52.0827213 - ], - [ - 5.1110544, - 52.0827213 - ], - [ - 5.1110544, - 52.0827213 - ], - [ - 5.1110544, - 52.0827213 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 107243866 - } - }, - { - "id": 107233544, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -93.6529393, - 41.7323019 - ], - [ - -93.6527207, - 41.7323019 - ], - [ - -93.6527207, - 41.7343776 - ], - [ - -93.6529393, - 41.7343776 - ], - [ - -93.6529393, - 41.7323019 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 107233544 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2021-8.json b/Docs/Tools/stats/stats.2021-8.json deleted file mode 100644 index 6590f05f4c..0000000000 --- a/Docs/Tools/stats/stats.2021-8.json +++ /dev/null @@ -1,32326 +0,0 @@ -{ - "features": [ - { - "id": 110522977, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.9652812, - 43.286326 - ], - [ - -3.881245, - 43.286326 - ], - [ - -3.881245, - 43.317462 - ], - [ - -3.9652812, - 43.317462 - ], - [ - -3.9652812, - 43.286326 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110522977 - } - }, - { - "id": 110500377, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9239677, - 52.2839406 - ], - [ - 8.9268073, - 52.2839406 - ], - [ - 8.9268073, - 52.2878551 - ], - [ - 8.9239677, - 52.2878551 - ], - [ - 8.9239677, - 52.2839406 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 110500377 - } - }, - { - "id": 110499778, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9352699, - 52.3086901 - ], - [ - 8.9357146, - 52.3086901 - ], - [ - 8.9357146, - 52.3101211 - ], - [ - 8.9352699, - 52.3101211 - ], - [ - 8.9352699, - 52.3086901 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110499778 - } - }, - { - "id": 110499125, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2601325, - 50.7373676 - ], - [ - 4.2601325, - 50.7373676 - ], - [ - 4.2601325, - 50.7373676 - ], - [ - 4.2601325, - 50.7373676 - ], - [ - 4.2601325, - 50.7373676 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 110499125 - } - }, - { - "id": 110483407, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7654876, - 51.4912031 - ], - [ - 4.7732333, - 51.4912031 - ], - [ - 4.7732333, - 51.4913649 - ], - [ - 4.7654876, - 51.4913649 - ], - [ - 4.7654876, - 51.4912031 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclestreets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110483407 - } - }, - { - "id": 110482912, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9208828, - 51.0927259 - ], - [ - 4.9911859, - 51.0927259 - ], - [ - 4.9911859, - 51.1582234 - ], - [ - 4.9208828, - 51.1582234 - ], - [ - 4.9208828, - 51.0927259 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "nl" - }, - "id": 110482912 - } - }, - { - "id": 110479119, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7207186, - 51.6254756 - ], - [ - 13.7208276, - 51.6254756 - ], - [ - 13.7208276, - 51.6269018 - ], - [ - 13.7207186, - 51.6269018 - ], - [ - 13.7207186, - 51.6254756 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110479119 - } - }, - { - "id": 110474449, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.5652936, - 51.9702387 - ], - [ - 13.5652936, - 51.9702387 - ], - [ - 13.5652936, - 51.9702387 - ], - [ - 13.5652936, - 51.9702387 - ], - [ - 13.5652936, - 51.9702387 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110474449 - } - }, - { - "id": 110474280, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.1588903, - 52.4506053 - ], - [ - 14.1588903, - 52.4506053 - ], - [ - 14.1588903, - 52.4506053 - ], - [ - 14.1588903, - 52.4506053 - ], - [ - 14.1588903, - 52.4506053 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110474280 - } - }, - { - "id": 110468824, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6031775, - -33.42405 - ], - [ - -70.6030358, - -33.42405 - ], - [ - -70.6030358, - -33.4240207 - ], - [ - -70.6031775, - -33.4240207 - ], - [ - -70.6031775, - -33.42405 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 110468824 - } - }, - { - "id": 110466911, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7198746, - 52.8247118 - ], - [ - 13.7990534, - 52.8247118 - ], - [ - 13.7990534, - 52.858904 - ], - [ - 13.7198746, - 52.858904 - ], - [ - 13.7198746, - 52.8247118 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110466911 - } - }, - { - "id": 110465435, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.91956, - 52.5122283 - ], - [ - 9.91956, - 52.5122283 - ], - [ - 9.91956, - 52.5122283 - ], - [ - 9.91956, - 52.5122283 - ], - [ - 9.91956, - 52.5122283 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 110465435 - } - }, - { - "id": 110461689, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7570232, - -34.6667643 - ], - [ - -58.5276273, - -34.6667643 - ], - [ - -58.5276273, - -34.6390219 - ], - [ - -58.7570232, - -34.6390219 - ], - [ - -58.7570232, - -34.6667643 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "osm", - "language": "es" - }, - "id": 110461689 - } - }, - { - "id": 110461433, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2327525, - 51.212346 - ], - [ - 3.2327525, - 51.212346 - ], - [ - 3.2327525, - 51.212346 - ], - [ - 3.2327525, - 51.212346 - ], - [ - 3.2327525, - 51.212346 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "bookcases", - "imagery": "osm", - "deletion": "yes", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110461433 - } - }, - { - "id": 110457054, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.8907714, - 48.6732764 - ], - [ - 7.2508335, - 48.6732764 - ], - [ - 7.2508335, - 48.7351296 - ], - [ - 5.8907714, - 48.7351296 - ], - [ - 5.8907714, - 48.6732764 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110457054 - } - }, - { - "id": 110451095, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7212452, - 52.8325133 - ], - [ - 13.7369335, - 52.8325133 - ], - [ - 13.7369335, - 52.8377179 - ], - [ - 13.7212452, - 52.8377179 - ], - [ - 13.7212452, - 52.8325133 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110451095 - } - }, - { - "id": 110449938, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7137297, - 52.8321017 - ], - [ - 13.7369066, - 52.8321017 - ], - [ - 13.7369066, - 52.8443394 - ], - [ - 13.7137297, - 52.8443394 - ], - [ - 13.7137297, - 52.8321017 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110449938 - } - }, - { - "id": 110448225, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.461066, - 50.7810491 - ], - [ - 5.4634153, - 50.7810491 - ], - [ - 5.4634153, - 50.7829941 - ], - [ - 5.461066, - 50.7829941 - ], - [ - 5.461066, - 50.7810491 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 110448225 - } - }, - { - "id": 110428059, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6031775, - -33.42405 - ], - [ - -70.6030358, - -33.42405 - ], - [ - -70.6030358, - -33.4240207 - ], - [ - -70.6031775, - -33.4240207 - ], - [ - -70.6031775, - -33.42405 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "fr", - "theme-creator": "Midgard" - }, - "id": 110428059 - } - }, - { - "id": 110420814, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9914571, - 48.4983347 - ], - [ - 8.9919683, - 48.4983347 - ], - [ - 8.9919683, - 48.4985387 - ], - [ - 8.9914571, - 48.4985387 - ], - [ - 8.9914571, - 48.4983347 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110420814 - } - }, - { - "id": 110417964, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.2557221, - 43.7859072 - ], - [ - 11.2557221, - 43.7859072 - ], - [ - 11.2557221, - 43.7859072 - ], - [ - 11.2557221, - 43.7859072 - ], - [ - 11.2557221, - 43.7859072 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110417964 - } - }, - { - "id": 110416754, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.878176, - 52.3875656 - ], - [ - 12.878176, - 52.3875656 - ], - [ - 12.878176, - 52.3875656 - ], - [ - 12.878176, - 52.3875656 - ], - [ - 12.878176, - 52.3875656 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110416754 - } - }, - { - "id": 110416126, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.3338032, - 47.8180013 - ], - [ - 8.3338032, - 47.8180013 - ], - [ - 8.3338032, - 47.8180013 - ], - [ - 8.3338032, - 47.8180013 - ], - [ - 8.3338032, - 47.8180013 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 110416126 - } - }, - { - "id": 110413360, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7197208, - 51.0524991 - ], - [ - 13.7289546, - 51.0524991 - ], - [ - 13.7289546, - 51.0574402 - ], - [ - 13.7197208, - 51.0574402 - ], - [ - 13.7197208, - 51.0524991 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110413360 - } - }, - { - "id": 110412870, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.8615811, - 52.3855979 - ], - [ - 12.8615811, - 52.3855979 - ], - [ - 12.8615811, - 52.3855979 - ], - [ - 12.8615811, - 52.3855979 - ], - [ - 12.8615811, - 52.3855979 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110412870 - } - }, - { - "id": 110411836, - "type": "Feature", - "geometry": null, - "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-29T13:00: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": "drinking_water", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110411836 - } - }, - { - "id": 110411635, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.6954055, - 37.7413784 - ], - [ - -3.6912776, - 37.7413784 - ], - [ - -3.6912776, - 37.7428631 - ], - [ - -3.6954055, - 37.7428631 - ], - [ - -3.6954055, - 37.7413784 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110411635 - } - }, - { - "id": 110408479, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.5215607, - 41.6305262 - ], - [ - -4.5215607, - 41.6305262 - ], - [ - -4.5215607, - 41.6305262 - ], - [ - -4.5215607, - 41.6305262 - ], - [ - -4.5215607, - 41.6305262 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110408479 - } - }, - { - "id": 110406920, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.459437, - 51.3650876 - ], - [ - 4.459437, - 51.3650876 - ], - [ - 4.459437, - 51.3650876 - ], - [ - 4.459437, - 51.3650876 - ], - [ - 4.459437, - 51.3650876 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110406920 - } - }, - { - "id": 110406038, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.5606319, - 51.9693745 - ], - [ - 13.6181215, - 51.9693745 - ], - [ - 13.6181215, - 51.9754956 - ], - [ - 13.5606319, - 51.9754956 - ], - [ - 13.5606319, - 51.9693745 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110406038 - } - }, - { - "id": 110404922, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2678505, - 50.74381 - ], - [ - 4.2678505, - 50.74381 - ], - [ - 4.2678505, - 50.74381 - ], - [ - 4.2678505, - 50.74381 - ], - [ - 4.2678505, - 50.74381 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "cyclofix", - "imagery": "AGIV10cm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110404922 - } - }, - { - "id": 110404373, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5124488, - 47.4452066 - ], - [ - -0.5124488, - 47.4452066 - ], - [ - -0.5124488, - 47.4452066 - ], - [ - -0.5124488, - 47.4452066 - ], - [ - -0.5124488, - 47.4452066 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 110404373 - } - }, - { - "id": 110404088, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5133567, - 47.4451131 - ], - [ - -0.5133567, - 47.4451131 - ], - [ - -0.5133567, - 47.4451131 - ], - [ - -0.5133567, - 47.4451131 - ], - [ - -0.5133567, - 47.4451131 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 110404088 - } - }, - { - "id": 110402536, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.9729156, - 51.8382039 - ], - [ - 13.9897773, - 51.8382039 - ], - [ - 13.9897773, - 51.8466023 - ], - [ - 13.9729156, - 51.8466023 - ], - [ - 13.9729156, - 51.8382039 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110402536 - } - }, - { - "id": 110401909, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1118555, - 50.7995312 - ], - [ - 4.1118555, - 50.7995312 - ], - [ - 4.1118555, - 50.7995312 - ], - [ - 4.1118555, - 50.7995312 - ], - [ - 4.1118555, - 50.7995312 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110401909 - } - }, - { - "id": 110401090, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.6959372, - 37.7408119 - ], - [ - -3.6915025, - 37.7408119 - ], - [ - -3.6915025, - 37.7466374 - ], - [ - -3.6959372, - 37.7466374 - ], - [ - -3.6959372, - 37.7408119 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110401090 - } - }, - { - "id": 110396066, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.5231646, - 41.630438 - ], - [ - -4.5231646, - 41.630438 - ], - [ - -4.5231646, - 41.630438 - ], - [ - -4.5231646, - 41.630438 - ], - [ - -4.5231646, - 41.630438 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110396066 - } - }, - { - "id": 110395474, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4655305, - 50.7791435 - ], - [ - 5.4711684, - 50.7791435 - ], - [ - 5.4711684, - 50.7831345 - ], - [ - 5.4655305, - 50.7831345 - ], - [ - 5.4655305, - 50.7791435 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclestreets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110395474 - } - }, - { - "id": 110392599, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.0077223, - 51.4381799 - ], - [ - 7.0077223, - 51.4381799 - ], - [ - 7.0077223, - 51.4381799 - ], - [ - 7.0077223, - 51.4381799 - ], - [ - 7.0077223, - 51.4381799 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artwork", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110392599 - } - }, - { - "id": 110392546, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.0096636, - 51.4387791 - ], - [ - 7.0096636, - 51.4387791 - ], - [ - 7.0096636, - 51.4387791 - ], - [ - 7.0096636, - 51.4387791 - ], - [ - 7.0096636, - 51.4387791 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "parkings", - "imagery": "osm", - "language": "en" - }, - "id": 110392546 - } - }, - { - "id": 110391900, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.889307, - 51.0556829 - ], - [ - 4.8906168, - 51.0556829 - ], - [ - 4.8906168, - 51.0565095 - ], - [ - 4.889307, - 51.0565095 - ], - [ - 4.889307, - 51.0556829 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 110391900 - } - }, - { - "id": 110391628, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9888208, - 51.1638865 - ], - [ - 4.9888208, - 51.1638865 - ], - [ - 4.9888208, - 51.1638865 - ], - [ - 4.9888208, - 51.1638865 - ], - [ - 4.9888208, - 51.1638865 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110391628 - } - }, - { - "id": 110388360, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.6981758, - 37.734455 - ], - [ - -3.6946041, - 37.734455 - ], - [ - -3.6946041, - 37.7466374 - ], - [ - -3.6981758, - 37.7466374 - ], - [ - -3.6981758, - 37.734455 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110388360 - } - }, - { - "id": 110387566, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9068538, - 51.0911055 - ], - [ - 4.907967, - 51.0911055 - ], - [ - 4.907967, - 51.0920025 - ], - [ - 4.9068538, - 51.0920025 - ], - [ - 4.9068538, - 51.0911055 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Frans_Napaters", - "uid": "3574538", - "editor": "MapComplete 0.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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 110387566 - } - }, - { - "id": 110381615, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.271279, - 51.057879 - ], - [ - 4.271279, - 51.057879 - ], - [ - 4.271279, - 51.057879 - ], - [ - 4.271279, - 51.057879 - ], - [ - 4.271279, - 51.057879 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "AGIV", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 110381615 - } - }, - { - "id": 110380688, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8892452, - 51.0556781 - ], - [ - 4.8906257, - 51.0556781 - ], - [ - 4.8906257, - 51.0565095 - ], - [ - 4.8892452, - 51.0565095 - ], - [ - 4.8892452, - 51.0556781 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 110380688 - } - }, - { - "id": 110375071, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9859605, - 51.1576155 - ], - [ - 5.0015368, - 51.1576155 - ], - [ - 5.0015368, - 51.1639424 - ], - [ - 4.9859605, - 51.1639424 - ], - [ - 4.9859605, - 51.1576155 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110375071 - } - }, - { - "id": 110374800, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7502989, - 51.4088837 - ], - [ - 13.7838763, - 51.4088837 - ], - [ - 13.7838763, - 51.4421969 - ], - [ - 13.7502989, - 51.4421969 - ], - [ - 13.7502989, - 51.4088837 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110374800 - } - }, - { - "id": 110374240, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.2706164, - 44.5230379 - ], - [ - 11.2706164, - 44.5230379 - ], - [ - 11.2706164, - 44.5230379 - ], - [ - 11.2706164, - 44.5230379 - ], - [ - 11.2706164, - 44.5230379 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110374240 - } - }, - { - "id": 110372483, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3756708, - 51.5825079 - ], - [ - 13.3889871, - 51.5825079 - ], - [ - 13.3889871, - 51.5870441 - ], - [ - 13.3756708, - 51.5870441 - ], - [ - 13.3756708, - 51.5825079 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110372483 - } - }, - { - "id": 110372196, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2686778, - 51.0605068 - ], - [ - 4.2686778, - 51.0605068 - ], - [ - 4.2686778, - 51.0605068 - ], - [ - 4.2686778, - 51.0605068 - ], - [ - 4.2686778, - 51.0605068 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "AGIV", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 110372196 - } - }, - { - "id": 110371506, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.5179344, - 45.5046634 - ], - [ - -73.5179344, - 45.5046634 - ], - [ - -73.5179344, - 45.5046634 - ], - [ - -73.5179344, - 45.5046634 - ], - [ - -73.5179344, - 45.5046634 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110371506 - } - }, - { - "id": 110370542, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2202923, - 50.748141 - ], - [ - 4.2202923, - 50.748141 - ], - [ - 4.2202923, - 50.748141 - ], - [ - 4.2202923, - 50.748141 - ], - [ - 4.2202923, - 50.748141 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9042426135", - "name": "Fietsbieb Halle", - "osm_id": 9042426135, - "reasons": [ - 43 - ], - "version": 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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110370542 - } - }, - { - "id": 110368630, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.7171638, - 48.688034 - ], - [ - 5.7171638, - 48.688034 - ], - [ - 5.7171638, - 48.688034 - ], - [ - 5.7171638, - 48.688034 - ], - [ - 5.7171638, - 48.688034 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110368630 - } - }, - { - "id": 110365638, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1256902, - 50.6541734 - ], - [ - 3.1439862, - 50.6541734 - ], - [ - 3.1439862, - 50.6960312 - ], - [ - 3.1256902, - 50.6960312 - ], - [ - 3.1256902, - 50.6541734 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "fr" - }, - "id": 110365638 - } - }, - { - "id": 110363347, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.0471272, - 37.2517689 - ], - [ - -122.047127, - 37.2517689 - ], - [ - -122.047127, - 37.2517689 - ], - [ - -122.0471272, - 37.2517689 - ], - [ - -122.0471272, - 37.2517689 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110363347 - } - }, - { - "id": 110361908, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.5653507, - 45.4788934 - ], - [ - -73.5653507, - 45.4788934 - ], - [ - -73.5653507, - 45.4788934 - ], - [ - -73.5653507, - 45.4788934 - ], - [ - -73.5653507, - 45.4788934 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110361908 - } - }, - { - "id": 110360732, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4795645, - 50.8591534 - ], - [ - 5.6690699, - 50.8591534 - ], - [ - 5.6690699, - 51.0930146 - ], - [ - 3.4795645, - 51.0930146 - ], - [ - 3.4795645, - 50.8591534 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_highways", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "L'imaginaire" - }, - "id": 110360732 - } - }, - { - "id": 110354638, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.484309, - 53.8368359 - ], - [ - -1.4280837, - 53.8368359 - ], - [ - -1.4280837, - 53.8685583 - ], - [ - -1.484309, - 53.8685583 - ], - [ - -1.484309, - 53.8368359 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110354638 - } - }, - { - "id": 110351802, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6819299, - 51.677429 - ], - [ - 13.6819299, - 51.677429 - ], - [ - 13.6819299, - 51.677429 - ], - [ - 13.6819299, - 51.677429 - ], - [ - 13.6819299, - 51.677429 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110351802 - } - }, - { - "id": 110345728, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.7218111, - 37.7355389 - ], - [ - -3.7218111, - 37.7355389 - ], - [ - -3.7218111, - 37.7355389 - ], - [ - -3.7218111, - 37.7355389 - ], - [ - -3.7218111, - 37.7355389 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "imagery": "osm", - "language": "nl" - }, - "id": 110345728 - } - }, - { - "id": 110341888, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.6932501, - 51.6456486 - ], - [ - 14.6932501, - 51.6456486 - ], - [ - 14.6932501, - 51.6456486 - ], - [ - 14.6932501, - 51.6456486 - ], - [ - 14.6932501, - 51.6456486 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110341888 - } - }, - { - "id": 110341268, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4563581, - 50.7603302 - ], - [ - 5.3366173, - 50.7603302 - ], - [ - 5.3366173, - 51.1914193 - ], - [ - 3.4563581, - 51.1914193 - ], - [ - 3.4563581, - 50.7603302 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_highways", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "L'imaginaire" - }, - "id": 110341268 - } - }, - { - "id": 110331166, - "type": "Feature", - "geometry": null, - "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-27T09:49:25Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_highways", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "L'imaginaire" - }, - "id": 110331166 - } - }, - { - "id": 110328737, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.4345096, - 41.6106455 - ], - [ - -4.4345096, - 41.6106455 - ], - [ - -4.4345096, - 41.6106455 - ], - [ - -4.4345096, - 41.6106455 - ], - [ - -4.4345096, - 41.6106455 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110328737 - } - }, - { - "id": 110311804, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.5735592, - 45.4787169 - ], - [ - -73.5635787, - 45.4787169 - ], - [ - -73.5635787, - 45.4793732 - ], - [ - -73.5735592, - 45.4793732 - ], - [ - -73.5735592, - 45.4787169 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110311804 - } - }, - { - "id": 110311324, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7301797, - -34.6640971 - ], - [ - -58.40994, - -34.6640971 - ], - [ - -58.40994, - -34.6087006 - ], - [ - -58.7301797, - -34.6087006 - ], - [ - -58.7301797, - -34.6640971 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "osm", - "language": "es" - }, - "id": 110311324 - } - }, - { - "id": 110310132, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6934628, - 51.0415158 - ], - [ - 3.6939847, - 51.0415158 - ], - [ - 3.6939847, - 51.0417911 - ], - [ - 3.6934628, - 51.0417911 - ], - [ - 3.6934628, - 51.0415158 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_highways", - "imagery": "osm", - "language": "en", - "theme-creator": "L'imaginaire" - }, - "id": 110310132 - } - }, - { - "id": 110302017, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4259574, - 51.2126193 - ], - [ - 4.4259574, - 51.2126193 - ], - [ - 4.4259574, - 51.2126193 - ], - [ - 4.4259574, - 51.2126193 - ], - [ - 4.4259574, - 51.2126193 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "fritures", - "imagery": "osm", - "language": "en" - }, - "id": 110302017 - } - }, - { - "id": 110295287, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9903969, - 48.4980299 - ], - [ - 8.9910487, - 48.4980299 - ], - [ - 8.9910487, - 48.4983523 - ], - [ - 8.9903969, - 48.4983523 - ], - [ - 8.9903969, - 48.4980299 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110295287 - } - }, - { - "id": 110291443, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2085659, - 41.5459407 - ], - [ - 2.2127688, - 41.5459407 - ], - [ - 2.2127688, - 41.5475618 - ], - [ - 2.2085659, - 41.5475618 - ], - [ - 2.2085659, - 41.5459407 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "parkings", - "imagery": "osm", - "language": "en" - }, - "id": 110291443 - } - }, - { - "id": 110288047, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.763148, - -34.6657561 - ], - [ - -58.5493854, - -34.6657561 - ], - [ - -58.5493854, - -34.6398296 - ], - [ - -58.763148, - -34.6398296 - ], - [ - -58.763148, - -34.6657561 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "osm", - "language": "es" - }, - "id": 110288047 - } - }, - { - "id": 110287012, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.6365021, - 52.015425 - ], - [ - 14.6365021, - 52.015425 - ], - [ - 14.6365021, - 52.015425 - ], - [ - 14.6365021, - 52.015425 - ], - [ - 14.6365021, - 52.015425 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110287012 - } - }, - { - "id": 110285848, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.6721768, - 51.9473461 - ], - [ - 14.6721768, - 51.9473461 - ], - [ - 14.6721768, - 51.9473461 - ], - [ - 14.6721768, - 51.9473461 - ], - [ - 14.6721768, - 51.9473461 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 110285848 - } - }, - { - "id": 110281843, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2297336, - 50.8954102 - ], - [ - 4.2297336, - 50.8954102 - ], - [ - 4.2297336, - 50.8954102 - ], - [ - 4.2297336, - 50.8954102 - ], - [ - 4.2297336, - 50.8954102 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110281843 - } - }, - { - "id": 110279162, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.71425, - 51.9491832 - ], - [ - 14.71425, - 51.9491832 - ], - [ - 14.71425, - 51.9491832 - ], - [ - 14.71425, - 51.9491832 - ], - [ - 14.71425, - 51.9491832 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 110279162 - } - }, - { - "id": 110278890, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.5593499, - 13.9636129 - ], - [ - 121.5593499, - 13.9636129 - ], - [ - 121.5593499, - 13.9636129 - ], - [ - 121.5593499, - 13.9636129 - ], - [ - 121.5593499, - 13.9636129 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "streetlamps", - "imagery": "osm", - "language": "en" - }, - "id": 110278890 - } - }, - { - "id": 110275748, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.7108772, - 50.6550157 - ], - [ - 5.7108772, - 50.6550157 - ], - [ - 5.7108772, - 50.6550157 - ], - [ - 5.7108772, - 50.6550157 - ], - [ - 5.7108772, - 50.6550157 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110275748 - } - }, - { - "id": 110274106, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5583292, - 50.7859898 - ], - [ - 5.5583292, - 50.7859898 - ], - [ - 5.5583292, - 50.7859898 - ], - [ - 5.5583292, - 50.7859898 - ], - [ - 5.5583292, - 50.7859898 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "nl" - }, - "id": 110274106 - } - }, - { - "id": 110268266, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.5795903, - 41.5859942 - ], - [ - -4.523567, - 41.5859942 - ], - [ - -4.523567, - 41.6310134 - ], - [ - -4.5795903, - 41.6310134 - ], - [ - -4.5795903, - 41.5859942 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110268266 - } - }, - { - "id": 110260590, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.5977571, - -33.5708396 - ], - [ - -70.597672, - -33.5708396 - ], - [ - -70.597672, - -33.5707265 - ], - [ - -70.5977571, - -33.5707265 - ], - [ - -70.5977571, - -33.5708396 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "climbing", - "imagery": "osm", - "language": "fr", - "theme-creator": "Christian Neumann " - }, - "id": 110260590 - } - }, - { - "id": 110256028, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.6320166, - 50.7971005 - ], - [ - 5.1588804, - 50.7971005 - ], - [ - 5.1588804, - 51.2381323 - ], - [ - 2.6320166, - 51.2381323 - ], - [ - 2.6320166, - 50.7971005 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_highways", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "L'imaginaire" - }, - "id": 110256028 - } - }, - { - "id": 110251690, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -79.038426, - -2.8624529 - ], - [ - -79.038426, - -2.8624529 - ], - [ - -79.038426, - -2.8624529 - ], - [ - -79.038426, - -2.8624529 - ], - [ - -79.038426, - -2.8624529 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 110251690 - } - }, - { - "id": 110250614, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.4356167, - 51.890284 - ], - [ - 14.4529098, - 51.890284 - ], - [ - 14.4529098, - 51.8958927 - ], - [ - 14.4356167, - 51.8958927 - ], - [ - 14.4356167, - 51.890284 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110250614 - } - }, - { - "id": 110249682, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.8526738, - 52.1649094 - ], - [ - 12.855248, - 52.1649094 - ], - [ - 12.855248, - 52.1666764 - ], - [ - 12.8526738, - 52.1666764 - ], - [ - 12.8526738, - 52.1649094 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110249682 - } - }, - { - "id": 110243813, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.0585135, - 51.5434224 - ], - [ - -0.0585135, - 51.5434224 - ], - [ - -0.0585135, - 51.5434224 - ], - [ - -0.0585135, - 51.5434224 - ], - [ - -0.0585135, - 51.5434224 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110243813 - } - }, - { - "id": 110238612, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.2882186, - 52.0194508 - ], - [ - 14.3685785, - 52.0194508 - ], - [ - 14.3685785, - 52.0376192 - ], - [ - 14.2882186, - 52.0376192 - ], - [ - 14.2882186, - 52.0194508 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110238612 - } - }, - { - "id": 110236764, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.3353862, - 39.4604794 - ], - [ - -3.3335274, - 39.4604794 - ], - [ - -3.3335274, - 39.4649094 - ], - [ - -3.3353862, - 39.4649094 - ], - [ - -3.3353862, - 39.4604794 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "imagery": "PNOA-Spain-TMS", - "language": "nl" - }, - "id": 110236764 - } - }, - { - "id": 110235467, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.3282872, - 52.0326218 - ], - [ - 14.3282926, - 52.0326218 - ], - [ - 14.3282926, - 52.0326306 - ], - [ - 14.3282872, - 52.0326306 - ], - [ - 14.3282872, - 52.0326218 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110235467 - } - }, - { - "id": 110234434, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.3545962, - 45.4323164 - ], - [ - 12.3545962, - 45.4323164 - ], - [ - 12.3545962, - 45.4323164 - ], - [ - 12.3545962, - 45.4323164 - ], - [ - 12.3545962, - 45.4323164 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110234434 - } - }, - { - "id": 110232873, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7607549, - -34.6656833 - ], - [ - -58.527583, - -34.6656833 - ], - [ - -58.527583, - -34.6390219 - ], - [ - -58.7607549, - -34.6390219 - ], - [ - -58.7607549, - -34.6656833 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "osm", - "language": "es" - }, - "id": 110232873 - } - }, - { - "id": 110227343, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.3042502, - 51.799496 - ], - [ - 14.3042502, - 51.799496 - ], - [ - 14.3042502, - 51.799496 - ], - [ - 14.3042502, - 51.799496 - ], - [ - 14.3042502, - 51.799496 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110227343 - } - }, - { - "id": 110224603, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.330247, - 45.4307374 - ], - [ - 12.3303449, - 45.4307374 - ], - [ - 12.3303449, - 45.4310003 - ], - [ - 12.330247, - 45.4310003 - ], - [ - 12.330247, - 45.4307374 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 110224603 - } - }, - { - "id": 110222055, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6002786, - 51.1516226 - ], - [ - 3.6024372, - 51.1516226 - ], - [ - 3.6024372, - 51.1534628 - ], - [ - 3.6002786, - 51.1534628 - ], - [ - 3.6002786, - 51.1516226 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cyclestreets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110222055 - } - }, - { - "id": 110220790, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.7403371, - 51.46117 - ], - [ - 14.7750968, - 51.46117 - ], - [ - 14.7750968, - 51.4707802 - ], - [ - 14.7403371, - 51.4707802 - ], - [ - 14.7403371, - 51.46117 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110220790 - } - }, - { - "id": 110219133, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.3236236, - 45.4289724 - ], - [ - 12.3339585, - 45.4289724 - ], - [ - 12.3339585, - 45.4341631 - ], - [ - 12.3236236, - 45.4341631 - ], - [ - 12.3236236, - 45.4289724 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110219133 - } - }, - { - "id": 110210088, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -5.941734, - 37.2431772 - ], - [ - -5.724066, - 37.2431772 - ], - [ - -5.724066, - 37.3016835 - ], - [ - -5.941734, - 37.3016835 - ], - [ - -5.941734, - 37.2431772 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 110210088 - } - }, - { - "id": 110205818, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -5.9371702, - 37.3109191 - ], - [ - -5.8360282, - 37.3109191 - ], - [ - -5.8360282, - 37.3396878 - ], - [ - -5.9371702, - 37.3396878 - ], - [ - -5.9371702, - 37.3109191 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110205818 - } - }, - { - "id": 110205391, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.5913047, - 45.5174774 - ], - [ - -73.5912323, - 45.5174774 - ], - [ - -73.5912323, - 45.517538 - ], - [ - -73.5913047, - 45.517538 - ], - [ - -73.5913047, - 45.5174774 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110205391 - } - }, - { - "id": 110200544, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.0242866, - 51.6839101 - ], - [ - 14.0435529, - 51.6839101 - ], - [ - 14.0435529, - 51.694154 - ], - [ - 14.0242866, - 51.694154 - ], - [ - 14.0242866, - 51.6839101 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110200544 - } - }, - { - "id": 110197630, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.1561676, - 52.4396062 - ], - [ - 14.1916293, - 52.4396062 - ], - [ - 14.1916293, - 52.4532087 - ], - [ - 14.1561676, - 52.4532087 - ], - [ - 14.1561676, - 52.4396062 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110197630 - } - }, - { - "id": 110195980, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7290773, - -34.6641159 - ], - [ - -58.7290773, - -34.6641159 - ], - [ - -58.7290773, - -34.6641159 - ], - [ - -58.7290773, - -34.6641159 - ], - [ - -58.7290773, - -34.6641159 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 110195980 - } - }, - { - "id": 110195344, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5584142, - 50.7860886 - ], - [ - 5.5584142, - 50.7860886 - ], - [ - 5.5584142, - 50.7860886 - ], - [ - 5.5584142, - 50.7860886 - ], - [ - 5.5584142, - 50.7860886 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "AGIV10cm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110195344 - } - }, - { - "id": 110193404, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5925962, - 44.3287832 - ], - [ - 6.5925962, - 44.3287832 - ], - [ - 6.5925962, - 44.3287832 - ], - [ - 6.5925962, - 44.3287832 - ], - [ - 6.5925962, - 44.3287832 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110193404 - } - }, - { - "id": 110192320, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.4257015, - 44.4611836 - ], - [ - 11.4257015, - 44.4611836 - ], - [ - 11.4257015, - 44.4611836 - ], - [ - 11.4257015, - 44.4611836 - ], - [ - 11.4257015, - 44.4611836 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110192320 - } - }, - { - "id": 110192119, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1061331, - 51.0665522 - ], - [ - 3.1621286, - 51.0665522 - ], - [ - 3.1621286, - 51.1251496 - ], - [ - 3.1061331, - 51.1251496 - ], - [ - 3.1061331, - 51.0665522 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_highways", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "L'imaginaire" - }, - "id": 110192119 - } - }, - { - "id": 110190369, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.601183, - 50.8089108 - ], - [ - 5.6018773, - 50.8089108 - ], - [ - 5.6018773, - 50.8092837 - ], - [ - 5.601183, - 50.8092837 - ], - [ - 5.601183, - 50.8089108 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclestreets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110190369 - } - }, - { - "id": 110188312, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.3267343, - 45.4409673 - ], - [ - 12.3267343, - 45.4409673 - ], - [ - 12.3267343, - 45.4409673 - ], - [ - 12.3267343, - 45.4409673 - ], - [ - 12.3267343, - 45.4409673 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110188312 - } - }, - { - "id": 110185535, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.6369916, - 51.6370247 - ], - [ - 14.7370943, - 51.6370247 - ], - [ - 14.7370943, - 51.6718748 - ], - [ - 14.6369916, - 51.6718748 - ], - [ - 14.6369916, - 51.6370247 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110185535 - } - }, - { - "id": 110183455, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.3213063, - 52.0215487 - ], - [ - 14.3846834, - 52.0215487 - ], - [ - 14.3846834, - 52.0420651 - ], - [ - 14.3213063, - 52.0420651 - ], - [ - 14.3213063, - 52.0215487 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110183455 - } - }, - { - "id": 110178344, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1767718, - 48.5005919 - ], - [ - 9.1767718, - 48.5005919 - ], - [ - 9.1767718, - 48.5005919 - ], - [ - 9.1767718, - 48.5005919 - ], - [ - 9.1767718, - 48.5005919 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 110178344 - } - }, - { - "id": 110177856, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2032143, - 48.5266916 - ], - [ - 9.2034341, - 48.5266916 - ], - [ - 9.2034341, - 48.5509151 - ], - [ - 9.2032143, - 48.5509151 - ], - [ - 9.2032143, - 48.5266916 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110177856 - } - }, - { - "id": 110177596, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.40994, - -34.6088596 - ], - [ - -58.40994, - -34.6088596 - ], - [ - -58.40994, - -34.6088596 - ], - [ - -58.40994, - -34.6088596 - ], - [ - -58.40994, - -34.6088596 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "osm", - "language": "es" - }, - "id": 110177596 - } - }, - { - "id": 110176789, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.4886309, - -34.6344151 - ], - [ - -58.4596751, - -34.6344151 - ], - [ - -58.4596751, - -34.6259296 - ], - [ - -58.4886309, - -34.6259296 - ], - [ - -58.4886309, - -34.6344151 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 110176789 - } - }, - { - "id": 110175590, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4834965, - 52.1562531 - ], - [ - 13.4852684, - 52.1562531 - ], - [ - 13.4852684, - 52.1567414 - ], - [ - 13.4834965, - 52.1567414 - ], - [ - 13.4834965, - 52.1562531 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110175590 - } - }, - { - "id": 110168021, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4414722, - 51.0848877 - ], - [ - 3.4791521, - 51.0848877 - ], - [ - 3.4791521, - 51.0957782 - ], - [ - 3.4414722, - 51.0957782 - ], - [ - 3.4414722, - 51.0848877 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_highways", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "L'imaginaire" - }, - "id": 110168021 - } - }, - { - "id": 110165364, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.3254217, - 45.4320999 - ], - [ - 12.3452714, - 45.4320999 - ], - [ - 12.3452714, - 45.4383903 - ], - [ - 12.3254217, - 45.4383903 - ], - [ - 12.3254217, - 45.4320999 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110165364 - } - }, - { - "id": 110157524, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2964054, - 50.8006365 - ], - [ - 4.3026277, - 50.8006365 - ], - [ - 4.3026277, - 50.8090998 - ], - [ - 4.2964054, - 50.8090998 - ], - [ - 4.2964054, - 50.8006365 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_highways", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "L'imaginaire" - }, - "id": 110157524 - } - }, - { - "id": 110140295, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6265257, - -33.4430721 - ], - [ - -70.626232, - -33.4430721 - ], - [ - -70.626232, - -33.4428542 - ], - [ - -70.6265257, - -33.4428542 - ], - [ - -70.6265257, - -33.4430721 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "climbing", - "imagery": "osm", - "language": "fr", - "theme-creator": "Christian Neumann " - }, - "id": 110140295 - } - }, - { - "id": 110139566, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.5579423, - 45.5058439 - ], - [ - -73.5579423, - 45.5058439 - ], - [ - -73.5579423, - 45.5058439 - ], - [ - -73.5579423, - 45.5058439 - ], - [ - -73.5579423, - 45.5058439 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110139566 - } - }, - { - "id": 110137534, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.7065313, - 37.5964563 - ], - [ - -3.7064804, - 37.5964563 - ], - [ - -3.7064804, - 37.5964606 - ], - [ - -3.7065313, - 37.5964606 - ], - [ - -3.7065313, - 37.5964563 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 110137534 - } - }, - { - "id": 110136424, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6198471, - 45.4683392 - ], - [ - -73.5579423, - 45.4683392 - ], - [ - -73.5579423, - 45.5329459 - ], - [ - -73.6198471, - 45.5329459 - ], - [ - -73.6198471, - 45.4683392 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110136424 - } - }, - { - "id": 110130304, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4116894, - 52.2672468 - ], - [ - 13.483057, - 52.2672468 - ], - [ - 13.483057, - 52.3086754 - ], - [ - 13.4116894, - 52.3086754 - ], - [ - 13.4116894, - 52.2672468 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110130304 - } - }, - { - "id": 110127744, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.6026324, - 45.5132456 - ], - [ - -73.566287, - 45.5132456 - ], - [ - -73.566287, - 45.5357524 - ], - [ - -73.6026324, - 45.5357524 - ], - [ - -73.6026324, - 45.5132456 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110127744 - } - }, - { - "id": 110124100, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4266904, - 52.1859955 - ], - [ - 13.4266904, - 52.1859955 - ], - [ - 13.4266904, - 52.1859955 - ], - [ - 13.4266904, - 52.1859955 - ], - [ - 13.4266904, - 52.1859955 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110124100 - } - }, - { - "id": 110116925, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7913616, - -34.6576606 - ], - [ - -58.597405, - -34.6576606 - ], - [ - -58.597405, - -34.6450793 - ], - [ - -58.7913616, - -34.6450793 - ], - [ - -58.7913616, - -34.6576606 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 110116925 - } - }, - { - "id": 110106301, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.2372702, - 56.0589763 - ], - [ - -3.2311586, - 56.0589763 - ], - [ - -3.2311586, - 56.0629877 - ], - [ - -3.2372702, - 56.0629877 - ], - [ - -3.2372702, - 56.0589763 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110106301 - } - }, - { - "id": 110104018, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1172445, - 51.2118257 - ], - [ - 4.1172445, - 51.2118257 - ], - [ - 4.1172445, - 51.2118257 - ], - [ - 4.1172445, - 51.2118257 - ], - [ - 4.1172445, - 51.2118257 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "imagery": "osm", - "language": "nl" - }, - "id": 110104018 - } - }, - { - "id": 110103556, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1167349, - 51.2119877 - ], - [ - 4.1167349, - 51.2119877 - ], - [ - 4.1167349, - 51.2119877 - ], - [ - 4.1167349, - 51.2119877 - ], - [ - 4.1167349, - 51.2119877 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 110103556 - } - }, - { - "id": 110102326, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4638884, - 50.8436071 - ], - [ - 3.4638884, - 50.8436071 - ], - [ - 3.4638884, - 50.8436071 - ], - [ - 3.4638884, - 50.8436071 - ], - [ - 3.4638884, - 50.8436071 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110102326 - } - }, - { - "id": 110097992, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.6915036, - 41.612191 - ], - [ - -4.6915036, - 41.612191 - ], - [ - -4.6915036, - 41.612191 - ], - [ - -4.6915036, - 41.612191 - ], - [ - -4.6915036, - 41.612191 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110097992 - } - }, - { - "id": 110097643, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.4213254, - 46.4587897 - ], - [ - 10.4227854, - 46.4587897 - ], - [ - 10.4227854, - 46.4593926 - ], - [ - 10.4213254, - 46.4593926 - ], - [ - 10.4213254, - 46.4587897 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "Mapbox", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110097643 - } - }, - { - "id": 110097482, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.4209475, - 46.4592242 - ], - [ - 10.4209475, - 46.4592242 - ], - [ - 10.4209475, - 46.4592242 - ], - [ - 10.4209475, - 46.4592242 - ], - [ - 10.4209475, - 46.4592242 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "Mapbox", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110097482 - } - }, - { - "id": 110096388, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9078375, - 44.5248764 - ], - [ - 3.9078375, - 44.5248764 - ], - [ - 3.9078375, - 44.5248764 - ], - [ - 3.9078375, - 44.5248764 - ], - [ - 3.9078375, - 44.5248764 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110096388 - } - }, - { - "id": 110095302, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.628119, - 45.3799255 - ], - [ - -71.9287025, - 45.3799255 - ], - [ - -71.9287025, - 45.5207667 - ], - [ - -73.628119, - 45.5207667 - ], - [ - -73.628119, - 45.3799255 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 110095302 - } - }, - { - "id": 110082522, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.5527882, - 45.4987638 - ], - [ - -73.5527882, - 45.4987638 - ], - [ - -73.5527882, - 45.4987638 - ], - [ - -73.5527882, - 45.4987638 - ], - [ - -73.5527882, - 45.4987638 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110082522 - } - }, - { - "id": 110082444, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.2212061, - 56.0637904 - ], - [ - -3.2212061, - 56.0637904 - ], - [ - -3.2212061, - 56.0637904 - ], - [ - -3.2212061, - 56.0637904 - ], - [ - -3.2212061, - 56.0637904 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110082444 - } - }, - { - "id": 110079932, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.5793813, - 45.4781635 - ], - [ - -73.5524031, - 45.4781635 - ], - [ - -73.5524031, - 45.5166397 - ], - [ - -73.5793813, - 45.5166397 - ], - [ - -73.5793813, - 45.4781635 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110079932 - } - }, - { - "id": 110076005, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2249916, - 51.2104043 - ], - [ - 3.2249916, - 51.2104043 - ], - [ - 3.2249916, - 51.2104043 - ], - [ - 3.2249916, - 51.2104043 - ], - [ - 3.2249916, - 51.2104043 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "benches", - "imagery": "osm", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 110076005 - } - }, - { - "id": 110075290, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2250398, - 51.2104409 - ], - [ - 3.2250398, - 51.2104409 - ], - [ - 3.2250398, - 51.2104409 - ], - [ - 3.2250398, - 51.2104409 - ], - [ - 3.2250398, - 51.2104409 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110075290 - } - }, - { - "id": 110071072, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.4258672, - 46.4564 - ], - [ - 10.4269679, - 46.4564 - ], - [ - 10.4269679, - 46.4579885 - ], - [ - 10.4258672, - 46.4579885 - ], - [ - 10.4258672, - 46.4564 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "Mapbox", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110071072 - } - }, - { - "id": 110067918, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0076153, - 51.1226982 - ], - [ - 5.0076153, - 51.1226982 - ], - [ - 5.0076153, - 51.1226982 - ], - [ - 5.0076153, - 51.1226982 - ], - [ - 5.0076153, - 51.1226982 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110067918 - } - }, - { - "id": 110067510, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.5646386, - 42.5236249 - ], - [ - -1.5646386, - 42.5236249 - ], - [ - -1.5646386, - 42.5236249 - ], - [ - -1.5646386, - 42.5236249 - ], - [ - -1.5646386, - 42.5236249 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "osm", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 110067510 - } - }, - { - "id": 110064264, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.2978821, - 39.8384492 - ], - [ - -1.2978821, - 39.8384492 - ], - [ - -1.2978821, - 39.8384492 - ], - [ - -1.2978821, - 39.8384492 - ], - [ - -1.2978821, - 39.8384492 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110064264 - } - }, - { - "id": 110061565, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7702009, - 52.8467904 - ], - [ - 13.7737361, - 52.8467904 - ], - [ - 13.7737361, - 52.8498665 - ], - [ - 13.7702009, - 52.8498665 - ], - [ - 13.7702009, - 52.8467904 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "EsriWorldImagery", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110061565 - } - }, - { - "id": 110061355, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5357657, - 50.8133871 - ], - [ - 3.5357657, - 50.8133871 - ], - [ - 3.5357657, - 50.8133871 - ], - [ - 3.5357657, - 50.8133871 - ], - [ - 3.5357657, - 50.8133871 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110061355 - } - }, - { - "id": 110057356, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2209394, - 51.216821 - ], - [ - 3.2209394, - 51.216821 - ], - [ - 3.2209394, - 51.216821 - ], - [ - 3.2209394, - 51.216821 - ], - [ - 3.2209394, - 51.216821 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "deletion": "yes", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110057356 - } - }, - { - "id": 110057338, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2206618, - 51.2165633 - ], - [ - 3.2206618, - 51.2165633 - ], - [ - 3.2206618, - 51.2165633 - ], - [ - 3.2206618, - 51.2165633 - ], - [ - 3.2206618, - 51.2165633 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "deletion": "yes", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110057338 - } - }, - { - "id": 110057279, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2206618, - 51.2165633 - ], - [ - 3.2209394, - 51.2165633 - ], - [ - 3.2209394, - 51.216821 - ], - [ - 3.2206618, - 51.216821 - ], - [ - 3.2206618, - 51.2165633 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110057279 - } - }, - { - "id": 110056245, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.1579392, - 53.7129136 - ], - [ - 7.1579392, - 53.7129136 - ], - [ - 7.1579392, - 53.7129136 - ], - [ - 7.1579392, - 53.7129136 - ], - [ - 7.1579392, - 53.7129136 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 110056245 - } - }, - { - "id": 110056207, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9909365, - 51.157324 - ], - [ - 4.9919445, - 51.157324 - ], - [ - 4.9919445, - 51.1579365 - ], - [ - 4.9909365, - 51.1579365 - ], - [ - 4.9909365, - 51.157324 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "nl", - "theme-creator": "joost schouppe" - }, - "id": 110056207 - } - }, - { - "id": 110051017, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.5653051, - 42.5204366 - ], - [ - -1.5587659, - 42.5204366 - ], - [ - -1.5587659, - 42.5256336 - ], - [ - -1.5653051, - 42.5256336 - ], - [ - -1.5653051, - 42.5204366 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "osm", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 110051017 - } - }, - { - "id": 110049566, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2356747, - 50.7318342 - ], - [ - 4.2356747, - 50.7318342 - ], - [ - 4.2356747, - 50.7318342 - ], - [ - 4.2356747, - 50.7318342 - ], - [ - 4.2356747, - 50.7318342 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110049566 - } - }, - { - "id": 110047699, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.7381868, - 42.406185 - ], - [ - 0.7381868, - 42.406185 - ], - [ - 0.7381868, - 42.406185 - ], - [ - 0.7381868, - 42.406185 - ], - [ - 0.7381868, - 42.406185 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "es", - "theme-creator": "MapComplete" - }, - "id": 110047699 - } - }, - { - "id": 110047690, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.738211, - 42.4061771 - ], - [ - 0.738211, - 42.4061771 - ], - [ - 0.738211, - 42.4061771 - ], - [ - 0.738211, - 42.4061771 - ], - [ - 0.738211, - 42.4061771 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "maps", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110047690 - } - }, - { - "id": 110046008, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -74.6654114, - 5.4540737 - ], - [ - -74.6654114, - 5.4540737 - ], - [ - -74.6654114, - 5.4540737 - ], - [ - -74.6654114, - 5.4540737 - ], - [ - -74.6654114, - 5.4540737 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 110046008 - } - }, - { - "id": 110045351, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -74.6654114, - 5.4540737 - ], - [ - -74.6654114, - 5.4540737 - ], - [ - -74.6654114, - 5.4540737 - ], - [ - -74.6654114, - 5.4540737 - ], - [ - -74.6654114, - 5.4540737 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 110045351 - } - }, - { - "id": 110044272, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3471302, - 50.8637621 - ], - [ - 4.3471302, - 50.8637621 - ], - [ - 4.3471302, - 50.8637621 - ], - [ - 4.3471302, - 50.8637621 - ], - [ - 4.3471302, - 50.8637621 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "UrbISOrtho2020", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110044272 - } - }, - { - "id": 110043349, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2962168, - 50.8527515 - ], - [ - 4.2968882, - 50.8527515 - ], - [ - 4.2968882, - 50.8531782 - ], - [ - 4.2962168, - 50.8531782 - ], - [ - 4.2962168, - 50.8527515 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 110043349 - } - }, - { - "id": 110042658, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4836664, - 50.8971684 - ], - [ - 4.4836664, - 50.8971684 - ], - [ - 4.4836664, - 50.8971684 - ], - [ - 4.4836664, - 50.8971684 - ], - [ - 4.4836664, - 50.8971684 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "AGIV", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110042658 - } - }, - { - "id": 110042555, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3741829, - 50.8670757 - ], - [ - 4.3741829, - 50.8670757 - ], - [ - 4.3741829, - 50.8670757 - ], - [ - 4.3741829, - 50.8670757 - ], - [ - 4.3741829, - 50.8670757 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110042555 - } - }, - { - "id": 110039590, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3694891, - 52.6344907 - ], - [ - 13.3767846, - 52.6344907 - ], - [ - 13.3767846, - 52.6510551 - ], - [ - 13.3694891, - 52.6510551 - ], - [ - 13.3694891, - 52.6344907 - ] - ] - ] - }, - "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, - "metadata": { - "host": "www.waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110039590 - } - }, - { - "id": 110034768, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.4548464, - 39.6470931 - ], - [ - -1.3358301, - 39.6470931 - ], - [ - -1.3358301, - 39.6705071 - ], - [ - -1.4548464, - 39.6705071 - ], - [ - -1.4548464, - 39.6470931 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "PNOA-Spain-TMS", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110034768 - } - }, - { - "id": 110034454, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2154662, - 51.2179199 - ], - [ - 3.2154662, - 51.2179199 - ], - [ - 3.2154662, - 51.2179199 - ], - [ - 3.2154662, - 51.2179199 - ], - [ - 3.2154662, - 51.2179199 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110034454 - } - }, - { - "id": 110028706, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0892718, - 51.2916455 - ], - [ - 3.1030905, - 51.2916455 - ], - [ - 3.1030905, - 51.3082783 - ], - [ - 3.0892718, - 51.3082783 - ], - [ - 3.0892718, - 51.2916455 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110028706 - } - }, - { - "id": 110022345, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.3285665, - 39.7400149 - ], - [ - -1.2697296, - 39.7400149 - ], - [ - -1.2697296, - 39.8978671 - ], - [ - -1.3285665, - 39.8978671 - ], - [ - -1.3285665, - 39.7400149 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "osm", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 110022345 - } - }, - { - "id": 110022207, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.3286778, - 39.7387032 - ], - [ - -1.3249442, - 39.7387032 - ], - [ - -1.3249442, - 39.7428219 - ], - [ - -1.3286778, - 39.7428219 - ], - [ - -1.3286778, - 39.7387032 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110022207 - } - }, - { - "id": 110014819, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3895412, - 52.6930158 - ], - [ - 13.3895412, - 52.6930158 - ], - [ - 13.3895412, - 52.6930158 - ], - [ - 13.3895412, - 52.6930158 - ], - [ - 13.3895412, - 52.6930158 - ] - ] - ] - }, - "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, - "metadata": { - "host": "www.waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110014819 - } - }, - { - "id": 110003826, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.3891089, - 39.7148562 - ], - [ - -1.3838432, - 39.7148562 - ], - [ - -1.3838432, - 39.7237688 - ], - [ - -1.3891089, - 39.7237688 - ], - [ - -1.3891089, - 39.7148562 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "PNOA-Spain-TMS", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110003826 - } - }, - { - "id": 110000187, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.3838432, - 39.7148562 - ], - [ - -1.3838432, - 39.7148562 - ], - [ - -1.3838432, - 39.7148562 - ], - [ - -1.3838432, - 39.7148562 - ], - [ - -1.3838432, - 39.7148562 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "PNOA-Spain", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110000187 - } - }, - { - "id": 109999132, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1438842, - 51.1712649 - ], - [ - 4.1438842, - 51.1712649 - ], - [ - 4.1438842, - 51.1712649 - ], - [ - 4.1438842, - 51.1712649 - ], - [ - 4.1438842, - 51.1712649 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109999132 - } - }, - { - "id": 109997272, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.4424683, - 39.7147574 - ], - [ - -1.4366107, - 39.7147574 - ], - [ - -1.4366107, - 39.7288488 - ], - [ - -1.4424683, - 39.7288488 - ], - [ - -1.4424683, - 39.7147574 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "PNOA-Spain-TMS", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109997272 - } - }, - { - "id": 109978806, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9496238, - 51.3236484 - ], - [ - 4.9598559, - 51.3236484 - ], - [ - 4.9598559, - 51.3316472 - ], - [ - 4.9496238, - 51.3316472 - ], - [ - 4.9496238, - 51.3236484 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclestreets", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 109978806 - } - }, - { - "id": 109978281, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8235426, - 50.8125974 - ], - [ - 3.8238215, - 50.8125974 - ], - [ - 3.8238215, - 50.8128041 - ], - [ - 3.8235426, - 50.8128041 - ], - [ - 3.8235426, - 50.8125974 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 109978281 - } - }, - { - "id": 109972440, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3935227, - 50.9254313 - ], - [ - 5.3935227, - 50.9254313 - ], - [ - 5.3935227, - 50.9254313 - ], - [ - 5.3935227, - 50.9254313 - ], - [ - 5.3935227, - 50.9254313 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 109972440 - } - }, - { - "id": 109958309, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3422469, - 50.8520859 - ], - [ - 4.3422469, - 50.8520859 - ], - [ - 4.3422469, - 50.8520859 - ], - [ - 4.3422469, - 50.8520859 - ], - [ - 4.3422469, - 50.8520859 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "UrbISOrtho2020", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 109958309 - } - }, - { - "id": 109948012, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.3767324, - 39.8111947 - ], - [ - -1.3722233, - 39.8111947 - ], - [ - -1.3722233, - 39.8166767 - ], - [ - -1.3767324, - 39.8166767 - ], - [ - -1.3767324, - 39.8111947 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109948012 - } - }, - { - "id": 109934175, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.7120102, - 44.6178122 - ], - [ - 5.7120102, - 44.6178122 - ], - [ - 5.7120102, - 44.6178122 - ], - [ - 5.7120102, - 44.6178122 - ], - [ - 5.7120102, - 44.6178122 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 109934175 - } - }, - { - "id": 109930221, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.4678113, - -34.6283393 - ], - [ - -58.4112076, - -34.6283393 - ], - [ - -58.4112076, - -34.608562 - ], - [ - -58.4678113, - -34.608562 - ], - [ - -58.4678113, - -34.6283393 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 109930221 - } - }, - { - "id": 109929700, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5135425, - -34.6374941 - ], - [ - -58.4676282, - -34.6374941 - ], - [ - -58.4676282, - -34.6282685 - ], - [ - -58.5135425, - -34.6282685 - ], - [ - -58.5135425, - -34.6374941 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 109929700 - } - }, - { - "id": 109927240, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7216073, - -34.6654164 - ], - [ - -58.428407, - -34.6654164 - ], - [ - -58.428407, - -34.6127073 - ], - [ - -58.7216073, - -34.6127073 - ], - [ - -58.7216073, - -34.6654164 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 109927240 - } - }, - { - "id": 109918408, - "type": "Feature", - "geometry": null, - "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-19T08:47: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": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109918408 - } - }, - { - "id": 109915087, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.372692, - 50.9392505 - ], - [ - 5.3727329, - 50.9392505 - ], - [ - 5.3727329, - 50.9392514 - ], - [ - 5.372692, - 50.9392514 - ], - [ - 5.372692, - 50.9392505 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "AGIV", - "language": "nl" - }, - "id": 109915087 - } - }, - { - "id": 109911262, - "type": "Feature", - "geometry": null, - "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-19T06:38:12Z", - "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": "drinking_water", - "imagery": "EsriWorldImagery", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109911262 - } - }, - { - "id": 109911259, - "type": "Feature", - "geometry": null, - "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-19T06:38:07Z", - "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": "drinking_water", - "imagery": "EsriWorldImagery", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109911259 - } - }, - { - "id": 109909901, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3801724, - 52.6455683 - ], - [ - 13.3841233, - 52.6455683 - ], - [ - 13.3841233, - 52.6517585 - ], - [ - 13.3801724, - 52.6517585 - ], - [ - 13.3801724, - 52.6455683 - ] - ] - ] - }, - "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, - "metadata": { - "host": "www.waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 109909901 - } - }, - { - "id": 109901177, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.6214536, - -34.6482005 - ], - [ - -58.5034928, - -34.6482005 - ], - [ - -58.5034928, - -34.6365094 - ], - [ - -58.6214536, - -34.6365094 - ], - [ - -58.6214536, - -34.6482005 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 109901177 - } - }, - { - "id": 109886410, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-18T16:41:31Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109886410 - } - }, - { - "id": 109886276, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-18T16:39: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109886276 - } - }, - { - "id": 109883660, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3760091, - 52.6425615 - ], - [ - 13.3863521, - 52.6425615 - ], - [ - 13.3863521, - 52.64938 - ], - [ - 13.3760091, - 52.64938 - ], - [ - 13.3760091, - 52.6425615 - ] - ] - ] - }, - "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, - "metadata": { - "host": "www.waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 109883660 - } - }, - { - "id": 109876629, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.6506039, - -34.6548331 - ], - [ - -58.6031717, - -34.6548331 - ], - [ - -58.6031717, - -34.6459079 - ], - [ - -58.6506039, - -34.6459079 - ], - [ - -58.6506039, - -34.6548331 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 109876629 - } - }, - { - "id": 109856297, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3717914, - 50.9255446 - ], - [ - 5.3930935, - 50.9255446 - ], - [ - 5.3930935, - 50.9397348 - ], - [ - 5.3717914, - 50.9397348 - ], - [ - 5.3717914, - 50.9255446 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 109856297 - } - }, - { - "id": 109828109, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5124964, - 51.1358371 - ], - [ - 3.5124964, - 51.1358371 - ], - [ - 3.5124964, - 51.1358371 - ], - [ - 3.5124964, - 51.1358371 - ], - [ - 3.5124964, - 51.1358371 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109828109 - } - }, - { - "id": 109827431, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.2344698, - 52.3196097 - ], - [ - 13.2344698, - 52.3196097 - ], - [ - 13.2344698, - 52.3196097 - ], - [ - 13.2344698, - 52.3196097 - ], - [ - 13.2344698, - 52.3196097 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/project/cycle-infra/", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 109827431 - } - }, - { - "id": 109826364, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T17:42:56Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109826364 - } - }, - { - "id": 109826359, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T17:42:50Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109826359 - } - }, - { - "id": 109825145, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T17:12:46Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109825145 - } - }, - { - "id": 109825101, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T17:11: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109825101 - } - }, - { - "id": 109824989, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T17:08:55Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109824989 - } - }, - { - "id": 109824953, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T17:08:06Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109824953 - } - }, - { - "id": 109824387, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T16:54: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109824387 - } - }, - { - "id": 109824377, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T16:54:42Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109824377 - } - }, - { - "id": 109824371, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T16:54: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109824371 - } - }, - { - "id": 109824152, - "type": "Feature", - "geometry": null, - "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-08-17T16:50:00Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109824152 - } - }, - { - "id": 109824142, - "type": "Feature", - "geometry": null, - "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-08-17T16:49:51Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109824142 - } - }, - { - "id": 109823871, - "type": "Feature", - "geometry": null, - "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-08-17T16:44:16Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109823871 - } - }, - { - "id": 109818176, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.2839305, - 39.8491353 - ], - [ - -1.2839305, - 39.8491353 - ], - [ - -1.2839305, - 39.8491353 - ], - [ - -1.2839305, - 39.8491353 - ], - [ - -1.2839305, - 39.8491353 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "PNOA-Spain-TMS", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109818176 - } - }, - { - "id": 109815717, - "type": "Feature", - "geometry": null, - "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-17T14:10:02Z", - "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": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109815717 - } - }, - { - "id": 109815692, - "type": "Feature", - "geometry": null, - "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-17T14:09:31Z", - "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": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109815692 - } - }, - { - "id": 109815615, - "type": "Feature", - "geometry": null, - "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-17T14:08:12Z", - "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": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109815615 - } - }, - { - "id": 109811703, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7898196, - 53.1297759 - ], - [ - 11.7898196, - 53.1297759 - ], - [ - 11.7898196, - 53.1297759 - ], - [ - 11.7898196, - 53.1297759 - ], - [ - 11.7898196, - 53.1297759 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 109811703 - } - }, - { - "id": 109805079, - "type": "Feature", - "geometry": null, - "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-17T11:04: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": "drinking_water", - "imagery": "fr.orthohr.2018", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109805079 - } - }, - { - "id": 109805063, - "type": "Feature", - "geometry": null, - "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-17T11:04:47Z", - "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": "drinking_water", - "imagery": "fr.orthohr.2018", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109805063 - } - }, - { - "id": 109804844, - "type": "Feature", - "geometry": null, - "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-17T11:01:32Z", - "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": "drinking_water", - "imagery": "osmfr", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109804844 - } - }, - { - "id": 109804832, - "type": "Feature", - "geometry": null, - "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-17T11:01: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": "drinking_water", - "imagery": "osmfr", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109804832 - } - }, - { - "id": 109804827, - "type": "Feature", - "geometry": null, - "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-17T11:01:17Z", - "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": "drinking_water", - "imagery": "osmfr", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109804827 - } - }, - { - "id": 109804745, - "type": "Feature", - "geometry": null, - "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-17T11:00: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": "drinking_water", - "imagery": "osmfr", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109804745 - } - }, - { - "id": 109804740, - "type": "Feature", - "geometry": null, - "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-17T11:00:01Z", - "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": "drinking_water", - "imagery": "osmfr", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109804740 - } - }, - { - "id": 109804731, - "type": "Feature", - "geometry": null, - "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-17T10:59:55Z", - "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": "drinking_water", - "imagery": "osmfr", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109804731 - } - }, - { - "id": 109802343, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1955207, - 50.9398049 - ], - [ - 4.2260134, - 50.9398049 - ], - [ - 4.2260134, - 50.9401294 - ], - [ - 4.1955207, - 50.9401294 - ], - [ - 4.1955207, - 50.9398049 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 109802343 - } - }, - { - "id": 109801908, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7519278, - 53.1113867 - ], - [ - 11.7952109, - 53.1113867 - ], - [ - 11.7952109, - 53.1336513 - ], - [ - 11.7519278, - 53.1336513 - ], - [ - 11.7519278, - 53.1113867 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 109801908 - } - }, - { - "id": 109794441, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1856617, - 50.9228428 - ], - [ - 4.1856617, - 50.9228428 - ], - [ - 4.1856617, - 50.9228428 - ], - [ - 4.1856617, - 50.9228428 - ], - [ - 4.1856617, - 50.9228428 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 109794441 - } - }, - { - "id": 109792924, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T07:52:58Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109792924 - } - }, - { - "id": 109789795, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:55: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109789795 - } - }, - { - "id": 109789688, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:53: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109789688 - } - }, - { - "id": 109789673, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:53:27Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109789673 - } - }, - { - "id": 109789667, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:53:18Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109789667 - } - }, - { - "id": 109789627, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:52: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109789627 - } - }, - { - "id": 109789622, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:52: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109789622 - } - }, - { - "id": 109789619, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:52: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109789619 - } - }, - { - "id": 109789615, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:52:36Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109789615 - } - }, - { - "id": 109789608, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109789608 - } - }, - { - "id": 109789596, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:52:16Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109789596 - } - }, - { - "id": 109789581, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:52:06Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109789581 - } - }, - { - "id": 109789571, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:51:56Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109789571 - } - }, - { - "id": 109789535, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:51:18Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109789535 - } - }, - { - "id": 109789471, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:50: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109789471 - } - }, - { - "id": 109789291, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:47: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109789291 - } - }, - { - "id": 109789290, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:47: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109789290 - } - }, - { - "id": 109789281, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:46:51Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109789281 - } - }, - { - "id": 109789262, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:46: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109789262 - } - }, - { - "id": 109789257, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:46: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109789257 - } - }, - { - "id": 109789252, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:46:18Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109789252 - } - }, - { - "id": 109789246, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:46:12Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109789246 - } - }, - { - "id": 109789241, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:46:07Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109789241 - } - }, - { - "id": 109789235, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:45:59Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109789235 - } - }, - { - "id": 109789220, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:45:46Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109789220 - } - }, - { - "id": 109789213, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:45: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109789213 - } - }, - { - "id": 109789199, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:45:26Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109789199 - } - }, - { - "id": 109789089, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:43: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109789089 - } - }, - { - "id": 109788897, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:39:50Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109788897 - } - }, - { - "id": 109788836, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:38:50Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109788836 - } - }, - { - "id": 109788792, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:37:51Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109788792 - } - }, - { - "id": 109788625, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:34:13Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109788625 - } - }, - { - "id": 109788616, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:33:55Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109788616 - } - }, - { - "id": 109788610, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:33: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109788610 - } - }, - { - "id": 109788587, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:33:15Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109788587 - } - }, - { - "id": 109788559, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:32:44Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109788559 - } - }, - { - "id": 109788554, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:32:40Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109788554 - } - }, - { - "id": 109788546, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:32:34Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109788546 - } - }, - { - "id": 109788543, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:32: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109788543 - } - }, - { - "id": 109788533, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:32:15Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109788533 - } - }, - { - "id": 109788515, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:31:55Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109788515 - } - }, - { - "id": 109788502, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-17T06:31: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109788502 - } - }, - { - "id": 109775936, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3724459, - 50.8688436 - ], - [ - 4.3724459, - 50.8688436 - ], - [ - 4.3724459, - 50.8688436 - ], - [ - 4.3724459, - 50.8688436 - ], - [ - 4.3724459, - 50.8688436 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "UrbISOrtho2020", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 109775936 - } - }, - { - "id": 109775800, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3724942, - 50.8687861 - ], - [ - 4.3780387, - 50.8687861 - ], - [ - 4.3780387, - 50.8876158 - ], - [ - 4.3724942, - 50.8876158 - ], - [ - 4.3724942, - 50.8687861 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109775800 - } - }, - { - "id": 109775676, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3783551, - 50.8881464 - ], - [ - 4.3786598, - 50.8881464 - ], - [ - 4.3786598, - 50.8884307 - ], - [ - 4.3783551, - 50.8884307 - ], - [ - 4.3783551, - 50.8881464 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 109775676 - } - }, - { - "id": 109769322, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1164035, - 52.0920784 - ], - [ - 5.1164035, - 52.0920784 - ], - [ - 5.1164035, - 52.0920784 - ], - [ - 5.1164035, - 52.0920784 - ], - [ - 5.1164035, - 52.0920784 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artworks", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109769322 - } - }, - { - "id": 109762842, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2130498, - 51.195938 - ], - [ - 3.2160907, - 51.195938 - ], - [ - 3.2160907, - 51.2047361 - ], - [ - 3.2130498, - 51.2047361 - ], - [ - 3.2130498, - 51.195938 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 109762842 - } - }, - { - "id": 109760777, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3974308, - 51.0411647 - ], - [ - 3.3974308, - 51.0411647 - ], - [ - 3.3974308, - 51.0411647 - ], - [ - 3.3974308, - 51.0411647 - ], - [ - 3.3974308, - 51.0411647 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 109760777 - } - }, - { - "id": 109748535, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0365363, - 51.0975191 - ], - [ - 4.499322, - 51.0975191 - ], - [ - 4.499322, - 51.2111801 - ], - [ - 4.0365363, - 51.2111801 - ], - [ - 4.0365363, - 51.0975191 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "bookcases", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 109748535 - } - }, - { - "id": 109741000, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2307161, - 50.7329081 - ], - [ - 4.2416846, - 50.7329081 - ], - [ - 4.2416846, - 50.7423602 - ], - [ - 4.2307161, - 50.7423602 - ], - [ - 4.2307161, - 50.7329081 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 109741000 - } - }, - { - "id": 109737824, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3584945, - 49.1064946 - ], - [ - 11.449205, - 49.1064946 - ], - [ - 11.449205, - 49.3068008 - ], - [ - 11.3584945, - 49.3068008 - ], - [ - 11.3584945, - 49.1064946 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 109737824 - } - }, - { - "id": 109733552, - "type": "Feature", - "geometry": null, - "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-16T07:56: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": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109733552 - } - }, - { - "id": 109733548, - "type": "Feature", - "geometry": null, - "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-16T07:56: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": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109733548 - } - }, - { - "id": 109732661, - "type": "Feature", - "geometry": null, - "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-16T07:40:22Z", - "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": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109732661 - } - }, - { - "id": 109731040, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7248091, - 51.0463223 - ], - [ - 3.7248091, - 51.0463223 - ], - [ - 3.7248091, - 51.0463223 - ], - [ - 3.7248091, - 51.0463223 - ], - [ - 3.7248091, - 51.0463223 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 109731040 - } - }, - { - "id": 109715393, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.4758828, - 51.4308656 - ], - [ - -2.4758828, - 51.4308656 - ], - [ - -2.4758828, - 51.4308656 - ], - [ - -2.4758828, - 51.4308656 - ], - [ - -2.4758828, - 51.4308656 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_infra", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109715393 - } - }, - { - "id": 109715034, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2356076, - -39.8240754 - ], - [ - -73.2356076, - -39.8240754 - ], - [ - -73.2356076, - -39.8240754 - ], - [ - -73.2356076, - -39.8240754 - ], - [ - -73.2356076, - -39.8240754 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 109715034 - } - }, - { - "id": 109714688, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2205661, - -39.8448739 - ], - [ - -73.2205157, - -39.8448739 - ], - [ - -73.2205157, - -39.8448488 - ], - [ - -73.2205661, - -39.8448488 - ], - [ - -73.2205661, - -39.8448739 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 109714688 - } - }, - { - "id": 109713660, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2378767, - -39.8236297 - ], - [ - -73.2378767, - -39.8236297 - ], - [ - -73.2378767, - -39.8236297 - ], - [ - -73.2378767, - -39.8236297 - ], - [ - -73.2378767, - -39.8236297 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 109713660 - } - }, - { - "id": 109708815, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.2348293, - 52.7751278 - ], - [ - 13.2348293, - 52.7751278 - ], - [ - 13.2348293, - 52.7751278 - ], - [ - 13.2348293, - 52.7751278 - ], - [ - 13.2348293, - 52.7751278 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 109708815 - } - }, - { - "id": 109707687, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2657906, - 50.7518968 - ], - [ - 4.2659944, - 50.7518968 - ], - [ - 4.2659944, - 50.751907 - ], - [ - 4.2657906, - 50.751907 - ], - [ - 4.2657906, - 50.7518968 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 109707687 - } - }, - { - "id": 109705960, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4209442, - 51.1680601 - ], - [ - 4.831597, - 51.1680601 - ], - [ - 4.831597, - 51.2298512 - ], - [ - 4.4209442, - 51.2298512 - ], - [ - 4.4209442, - 51.1680601 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 109705960 - } - }, - { - "id": 109698024, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -6.9363832, - 37.2787774 - ], - [ - -6.9301135, - 37.2787774 - ], - [ - -6.9301135, - 37.2799024 - ], - [ - -6.9363832, - 37.2799024 - ], - [ - -6.9363832, - 37.2787774 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "1roadAlllanes", - "imagery": "osm", - "language": "es" - }, - "id": 109698024 - } - }, - { - "id": 109695915, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.795037, - 45.8565394 - ], - [ - 8.795037, - 45.8565394 - ], - [ - 8.795037, - 45.8565394 - ], - [ - 8.795037, - 45.8565394 - ], - [ - 8.795037, - 45.8565394 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109695915 - } - }, - { - "id": 109691592, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4916025, - 52.0465638 - ], - [ - 13.5069758, - 52.0465638 - ], - [ - 13.5069758, - 52.0814087 - ], - [ - 13.4916025, - 52.0814087 - ], - [ - 13.4916025, - 52.0465638 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 109691592 - } - }, - { - "id": 109689884, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.356503, - 50.8256352 - ], - [ - 3.3776253, - 50.8256352 - ], - [ - 3.3776253, - 50.8420027 - ], - [ - 3.356503, - 50.8420027 - ], - [ - 3.356503, - 50.8256352 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "boomgaarden", - "imagery": "osm", - "language": "nl" - }, - "id": 109689884 - } - }, - { - "id": 109684988, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3860505, - 52.1656603 - ], - [ - 13.3860505, - 52.1656603 - ], - [ - 13.3860505, - 52.1656603 - ], - [ - 13.3860505, - 52.1656603 - ], - [ - 13.3860505, - 52.1656603 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 109684988 - } - }, - { - "id": 109684544, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -78.6901746, - 26.5394022 - ], - [ - -78.6894382, - 26.5394022 - ], - [ - -78.6894382, - 26.5404519 - ], - [ - -78.6901746, - 26.5404519 - ], - [ - -78.6901746, - 26.5394022 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 109684544 - } - }, - { - "id": 109682330, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.397347, - 52.181098 - ], - [ - 13.4307083, - 52.181098 - ], - [ - 13.4307083, - 52.1960765 - ], - [ - 13.397347, - 52.1960765 - ], - [ - 13.397347, - 52.181098 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 109682330 - } - }, - { - "id": 109681987, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -75.5026871, - 5.0664182 - ], - [ - -75.5026871, - 5.0664182 - ], - [ - -75.5026871, - 5.0664182 - ], - [ - -75.5026871, - 5.0664182 - ], - [ - -75.5026871, - 5.0664182 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "osm", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 109681987 - } - }, - { - "id": 109681368, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9853966, - 51.1618036 - ], - [ - 4.9862239, - 51.1618036 - ], - [ - 4.9862239, - 51.1618907 - ], - [ - 4.9853966, - 51.1618907 - ], - [ - 4.9853966, - 51.1618036 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete, joost schouppe" - }, - "id": 109681368 - } - }, - { - "id": 109681253, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9191038, - 51.0874666 - ], - [ - 4.9424966, - 51.0874666 - ], - [ - 4.9424966, - 51.0934869 - ], - [ - 4.9191038, - 51.0934869 - ], - [ - 4.9191038, - 51.0874666 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "AGIV10cm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109681253 - } - }, - { - "id": 109681051, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.5630858, - 38.5227377 - ], - [ - -3.5630858, - 38.5227377 - ], - [ - -3.5630858, - 38.5227377 - ], - [ - -3.5630858, - 38.5227377 - ], - [ - -3.5630858, - 38.5227377 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "PNOA-Spain-TMS", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109681051 - } - }, - { - "id": 109680715, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4143206, - 50.9979201 - ], - [ - 4.4143206, - 50.9979201 - ], - [ - 4.4143206, - 50.9979201 - ], - [ - 4.4143206, - 50.9979201 - ], - [ - 4.4143206, - 50.9979201 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "boomgaarden", - "imagery": "osm", - "language": "nl" - }, - "id": 109680715 - } - }, - { - "id": 109679404, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.0363926, - 39.8640242 - ], - [ - -4.0363926, - 39.8640242 - ], - [ - -4.0363926, - 39.8640242 - ], - [ - -4.0363926, - 39.8640242 - ], - [ - -4.0363926, - 39.8640242 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109679404 - } - }, - { - "id": 109672940, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.2288932, - 52.7606098 - ], - [ - 13.2288932, - 52.7606098 - ], - [ - 13.2288932, - 52.7606098 - ], - [ - 13.2288932, - 52.7606098 - ], - [ - 13.2288932, - 52.7606098 - ] - ] - ] - }, - "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, - "metadata": { - "host": "www.waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 109672940 - } - }, - { - "id": 109670676, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.501007, - 52.0465533 - ], - [ - 13.501007, - 52.0465533 - ], - [ - 13.501007, - 52.0465533 - ], - [ - 13.501007, - 52.0465533 - ], - [ - 13.501007, - 52.0465533 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 109670676 - } - }, - { - "id": 109670624, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0998557, - 50.5541406 - ], - [ - 5.0998557, - 50.5541406 - ], - [ - 5.0998557, - 50.5541406 - ], - [ - 5.0998557, - 50.5541406 - ], - [ - 5.0998557, - 50.5541406 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 109670624 - } - }, - { - "id": 109668785, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.2396879, - 52.777924 - ], - [ - 13.2483959, - 52.777924 - ], - [ - 13.2483959, - 52.7858193 - ], - [ - 13.2396879, - 52.7858193 - ], - [ - 13.2396879, - 52.777924 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 109668785 - } - }, - { - "id": 109666645, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4120858, - 52.1844628 - ], - [ - 13.4241718, - 52.1844628 - ], - [ - 13.4241718, - 52.1937978 - ], - [ - 13.4120858, - 52.1937978 - ], - [ - 13.4120858, - 52.1844628 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 109666645 - } - }, - { - "id": 109666479, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.5029216, - 52.0431825 - ], - [ - 13.5088977, - 52.0431825 - ], - [ - 13.5088977, - 52.0504166 - ], - [ - 13.5029216, - 52.0504166 - ], - [ - 13.5029216, - 52.0431825 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 109666479 - } - }, - { - "id": 109656492, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9917211, - 48.4983152 - ], - [ - 9.0043866, - 48.4983152 - ], - [ - 9.0043866, - 48.5006717 - ], - [ - 8.9917211, - 48.5006717 - ], - [ - 8.9917211, - 48.4983152 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109656492 - } - }, - { - "id": 109650693, - "type": "Feature", - "geometry": null, - "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-08-13T22:05:12Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650693 - } - }, - { - "id": 109650689, - "type": "Feature", - "geometry": null, - "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-08-13T22:05:01Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650689 - } - }, - { - "id": 109650687, - "type": "Feature", - "geometry": null, - "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-08-13T22:04:58Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650687 - } - }, - { - "id": 109650677, - "type": "Feature", - "geometry": null, - "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-08-13T22:04:12Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650677 - } - }, - { - "id": 109650672, - "type": "Feature", - "geometry": null, - "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-08-13T22:03: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650672 - } - }, - { - "id": 109650661, - "type": "Feature", - "geometry": null, - "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-08-13T22:03:18Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650661 - } - }, - { - "id": 109650656, - "type": "Feature", - "geometry": null, - "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-08-13T22:03:10Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650656 - } - }, - { - "id": 109650653, - "type": "Feature", - "geometry": null, - "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-08-13T22:03:03Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650653 - } - }, - { - "id": 109650646, - "type": "Feature", - "geometry": null, - "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-08-13T22:02:55Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650646 - } - }, - { - "id": 109650642, - "type": "Feature", - "geometry": null, - "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-08-13T22:02:42Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650642 - } - }, - { - "id": 109650598, - "type": "Feature", - "geometry": null, - "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-08-13T22:00:09Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650598 - } - }, - { - "id": 109650503, - "type": "Feature", - "geometry": null, - "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-08-13T21:55:47Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650503 - } - }, - { - "id": 109650498, - "type": "Feature", - "geometry": null, - "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-08-13T21:55: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650498 - } - }, - { - "id": 109650466, - "type": "Feature", - "geometry": null, - "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-08-13T21:53:58Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650466 - } - }, - { - "id": 109650463, - "type": "Feature", - "geometry": null, - "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-08-13T21:53:50Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650463 - } - }, - { - "id": 109650442, - "type": "Feature", - "geometry": null, - "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-08-13T21:52: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650442 - } - }, - { - "id": 109650438, - "type": "Feature", - "geometry": null, - "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-08-13T21:52: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650438 - } - }, - { - "id": 109650436, - "type": "Feature", - "geometry": null, - "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-08-13T21:52: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650436 - } - }, - { - "id": 109650429, - "type": "Feature", - "geometry": null, - "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-08-13T21:52:26Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650429 - } - }, - { - "id": 109650420, - "type": "Feature", - "geometry": null, - "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-08-13T21:52:17Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650420 - } - }, - { - "id": 109650408, - "type": "Feature", - "geometry": null, - "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-08-13T21:52:09Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650408 - } - }, - { - "id": 109650398, - "type": "Feature", - "geometry": null, - "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-08-13T21:51: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650398 - } - }, - { - "id": 109650378, - "type": "Feature", - "geometry": null, - "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-08-13T21:50: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650378 - } - }, - { - "id": 109650366, - "type": "Feature", - "geometry": null, - "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-08-13T21:49:58Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650366 - } - }, - { - "id": 109650362, - "type": "Feature", - "geometry": null, - "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-08-13T21:49:46Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650362 - } - }, - { - "id": 109650332, - "type": "Feature", - "geometry": null, - "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-08-13T21:49:04Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650332 - } - }, - { - "id": 109650330, - "type": "Feature", - "geometry": null, - "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-08-13T21:48:55Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650330 - } - }, - { - "id": 109650328, - "type": "Feature", - "geometry": null, - "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-08-13T21:48: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650328 - } - }, - { - "id": 109650327, - "type": "Feature", - "geometry": null, - "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-08-13T21:48:42Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650327 - } - }, - { - "id": 109650322, - "type": "Feature", - "geometry": null, - "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-08-13T21:48: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650322 - } - }, - { - "id": 109650312, - "type": "Feature", - "geometry": null, - "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-08-13T21:48:03Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650312 - } - }, - { - "id": 109650307, - "type": "Feature", - "geometry": null, - "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-08-13T21:47:47Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650307 - } - }, - { - "id": 109650259, - "type": "Feature", - "geometry": null, - "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-08-13T21:45: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650259 - } - }, - { - "id": 109650220, - "type": "Feature", - "geometry": null, - "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-08-13T21:44:13Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650220 - } - }, - { - "id": 109650206, - "type": "Feature", - "geometry": null, - "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-08-13T21:44:04Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650206 - } - }, - { - "id": 109650185, - "type": "Feature", - "geometry": null, - "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-08-13T21:43: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650185 - } - }, - { - "id": 109650121, - "type": "Feature", - "geometry": null, - "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-08-13T21:41:16Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650121 - } - }, - { - "id": 109650070, - "type": "Feature", - "geometry": null, - "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-08-13T21:39: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650070 - } - }, - { - "id": 109650018, - "type": "Feature", - "geometry": null, - "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-08-13T21:38:40Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109650018 - } - }, - { - "id": 109649989, - "type": "Feature", - "geometry": null, - "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-08-13T21:37: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109649989 - } - }, - { - "id": 109649987, - "type": "Feature", - "geometry": null, - "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-08-13T21:37:31Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109649987 - } - }, - { - "id": 109649955, - "type": "Feature", - "geometry": null, - "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-08-13T21:35:43Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109649955 - } - }, - { - "id": 109649950, - "type": "Feature", - "geometry": null, - "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-08-13T21:35: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109649950 - } - }, - { - "id": 109649943, - "type": "Feature", - "geometry": null, - "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-08-13T21:35:04Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109649943 - } - }, - { - "id": 109649913, - "type": "Feature", - "geometry": null, - "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-08-13T21:33:59Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109649913 - } - }, - { - "id": 109649864, - "type": "Feature", - "geometry": null, - "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-08-13T21:32:12Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109649864 - } - }, - { - "id": 109649678, - "type": "Feature", - "geometry": null, - "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-08-13T21:26: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109649678 - } - }, - { - "id": 109649675, - "type": "Feature", - "geometry": null, - "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-08-13T21:26: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109649675 - } - }, - { - "id": 109647929, - "type": "Feature", - "geometry": null, - "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-08-13T20:19: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109647929 - } - }, - { - "id": 109647846, - "type": "Feature", - "geometry": null, - "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-08-13T20:16:26Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109647846 - } - }, - { - "id": 109647022, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.5365349, - 52.291653 - ], - [ - 13.5365349, - 52.291653 - ], - [ - 13.5365349, - 52.291653 - ], - [ - 13.5365349, - 52.291653 - ], - [ - 13.5365349, - 52.291653 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 109647022 - } - }, - { - "id": 109644803, - "type": "Feature", - "geometry": null, - "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-08-13T18:44:51Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109644803 - } - }, - { - "id": 109643459, - "type": "Feature", - "geometry": null, - "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-08-13T18:06:47Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109643459 - } - }, - { - "id": 109642972, - "type": "Feature", - "geometry": null, - "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-08-13T17:55:34Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109642972 - } - }, - { - "id": 109642934, - "type": "Feature", - "geometry": null, - "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-08-13T17:54:46Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109642934 - } - }, - { - "id": 109642780, - "type": "Feature", - "geometry": null, - "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-08-13T17:51:27Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109642780 - } - }, - { - "id": 109642775, - "type": "Feature", - "geometry": null, - "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-08-13T17:51:20Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109642775 - } - }, - { - "id": 109641788, - "type": "Feature", - "geometry": null, - "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-08-13T17:24: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109641788 - } - }, - { - "id": 109641773, - "type": "Feature", - "geometry": null, - "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-08-13T17:24: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109641773 - } - }, - { - "id": 109641733, - "type": "Feature", - "geometry": null, - "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-08-13T17:23:16Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109641733 - } - }, - { - "id": 109641628, - "type": "Feature", - "geometry": null, - "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-08-13T17:20:56Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109641628 - } - }, - { - "id": 109641622, - "type": "Feature", - "geometry": null, - "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-08-13T17:20:51Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109641622 - } - }, - { - "id": 109641467, - "type": "Feature", - "geometry": null, - "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-08-13T17:17: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": "climbing", - "imagery": "fr.ign.bdortho", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109641467 - } - }, - { - "id": 109641186, - "type": "Feature", - "geometry": null, - "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-08-13T17:11: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": "climbing", - "imagery": "fr.ign.bdortho", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109641186 - } - }, - { - "id": 109641165, - "type": "Feature", - "geometry": null, - "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-08-13T17:10:56Z", - "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": "climbing", - "imagery": "fr.ign.bdortho", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109641165 - } - }, - { - "id": 109641155, - "type": "Feature", - "geometry": null, - "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-08-13T17:10: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": "climbing", - "imagery": "fr.ign.bdortho", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109641155 - } - }, - { - "id": 109641149, - "type": "Feature", - "geometry": null, - "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-08-13T17:10: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": "climbing", - "imagery": "fr.ign.bdortho", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109641149 - } - }, - { - "id": 109641143, - "type": "Feature", - "geometry": null, - "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-08-13T17:10:11Z", - "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": "climbing", - "imagery": "fr.ign.bdortho", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109641143 - } - }, - { - "id": 109641075, - "type": "Feature", - "geometry": null, - "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-08-13T17:08: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109641075 - } - }, - { - "id": 109641006, - "type": "Feature", - "geometry": null, - "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-08-13T17:06: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109641006 - } - }, - { - "id": 109641001, - "type": "Feature", - "geometry": null, - "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-08-13T17:06:40Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109641001 - } - }, - { - "id": 109640914, - "type": "Feature", - "geometry": null, - "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-08-13T17:04:56Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109640914 - } - }, - { - "id": 109640902, - "type": "Feature", - "geometry": null, - "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-08-13T17:04: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109640902 - } - }, - { - "id": 109640850, - "type": "Feature", - "geometry": null, - "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-08-13T17:03:42Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109640850 - } - }, - { - "id": 109640840, - "type": "Feature", - "geometry": null, - "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-08-13T17:03:26Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109640840 - } - }, - { - "id": 109640833, - "type": "Feature", - "geometry": null, - "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-08-13T17:03:10Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109640833 - } - }, - { - "id": 109640820, - "type": "Feature", - "geometry": null, - "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-08-13T17:02:46Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109640820 - } - }, - { - "id": 109640809, - "type": "Feature", - "geometry": null, - "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-08-13T17:02: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109640809 - } - }, - { - "id": 109640791, - "type": "Feature", - "geometry": null, - "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-08-13T17:01: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109640791 - } - }, - { - "id": 109640782, - "type": "Feature", - "geometry": null, - "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-08-13T17:01: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109640782 - } - }, - { - "id": 109640763, - "type": "Feature", - "geometry": null, - "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-08-13T17:01:00Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109640763 - } - }, - { - "id": 109640754, - "type": "Feature", - "geometry": null, - "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-08-13T17:00:52Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109640754 - } - }, - { - "id": 109640727, - "type": "Feature", - "geometry": null, - "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-08-13T17:00:07Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109640727 - } - }, - { - "id": 109640573, - "type": "Feature", - "geometry": null, - "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-08-13T16:56:46Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109640573 - } - }, - { - "id": 109640493, - "type": "Feature", - "geometry": null, - "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-08-13T16:54: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109640493 - } - }, - { - "id": 109640119, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.8553236, - 52.1696745 - ], - [ - 12.8553236, - 52.1696745 - ], - [ - 12.8553236, - 52.1696745 - ], - [ - 12.8553236, - 52.1696745 - ], - [ - 12.8553236, - 52.1696745 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 109640119 - } - }, - { - "id": 109638329, - "type": "Feature", - "geometry": null, - "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-13T15:59:43Z", - "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": "drinking_water", - "imagery": "CartoDB.PositronNoLabels", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109638329 - } - }, - { - "id": 109638304, - "type": "Feature", - "geometry": null, - "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-13T15:59:09Z", - "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": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109638304 - } - }, - { - "id": 109638294, - "type": "Feature", - "geometry": null, - "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-13T15:58:55Z", - "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": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109638294 - } - }, - { - "id": 109638293, - "type": "Feature", - "geometry": null, - "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-13T15:58: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": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109638293 - } - }, - { - "id": 109638246, - "type": "Feature", - "geometry": null, - "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-13T15:58:02Z", - "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": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109638246 - } - }, - { - "id": 109638152, - "type": "Feature", - "geometry": null, - "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-08-13T15:55: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": "climbing", - "imagery": "osmfr-occitan", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109638152 - } - }, - { - "id": 109638149, - "type": "Feature", - "geometry": null, - "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-08-13T15:55: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": "climbing", - "imagery": "osmfr-occitan", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109638149 - } - }, - { - "id": 109638148, - "type": "Feature", - "geometry": null, - "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-08-13T15:55: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": "climbing", - "imagery": "osmfr-occitan", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109638148 - } - }, - { - "id": 109638019, - "type": "Feature", - "geometry": null, - "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-08-13T15:51: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109638019 - } - }, - { - "id": 109634600, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.8553236, - 52.1696745 - ], - [ - 12.8553236, - 52.1696745 - ], - [ - 12.8553236, - 52.1696745 - ], - [ - 12.8553236, - 52.1696745 - ], - [ - 12.8553236, - 52.1696745 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 109634600 - } - }, - { - "id": 109631449, - "type": "Feature", - "geometry": null, - "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-08-13T13:21:11Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109631449 - } - }, - { - "id": 109624444, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7251042, - 51.0269592 - ], - [ - 13.7251042, - 51.0269592 - ], - [ - 13.7251042, - 51.0269592 - ], - [ - 13.7251042, - 51.0269592 - ], - [ - 13.7251042, - 51.0269592 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 109624444 - } - }, - { - "id": 109621983, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3305722, - 50.9304482 - ], - [ - 5.3305722, - 50.9304482 - ], - [ - 5.3305722, - 50.9304482 - ], - [ - 5.3305722, - 50.9304482 - ], - [ - 5.3305722, - 50.9304482 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109621983 - } - }, - { - "id": 109617139, - "type": "Feature", - "geometry": null, - "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-08-13T09:23:01Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109617139 - } - }, - { - "id": 109616631, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7766141, - -34.6571277 - ], - [ - -58.6583099, - -34.6571277 - ], - [ - -58.6583099, - -34.6541933 - ], - [ - -58.7766141, - -34.6541933 - ], - [ - -58.7766141, - -34.6571277 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "en" - }, - "id": 109616631 - } - }, - { - "id": 109602112, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3782117, - 52.643748 - ], - [ - 13.3782117, - 52.643748 - ], - [ - 13.3782117, - 52.643748 - ], - [ - 13.3782117, - 52.643748 - ], - [ - 13.3782117, - 52.643748 - ] - ] - ] - }, - "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, - "metadata": { - "host": "www.waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 109602112 - } - }, - { - "id": 109600592, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -74.248082, - 39.9636998 - ], - [ - -74.2019104, - 39.9636998 - ], - [ - -74.2019104, - 39.9767006 - ], - [ - -74.248082, - 39.9767006 - ], - [ - -74.248082, - 39.9636998 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109600592 - } - }, - { - "id": 109587520, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.8543204, - 52.1685311 - ], - [ - 12.8543204, - 52.1685311 - ], - [ - 12.8543204, - 52.1685311 - ], - [ - 12.8543204, - 52.1685311 - ], - [ - 12.8543204, - 52.1685311 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 109587520 - } - }, - { - "id": 109586305, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2974781, - 49.5207528 - ], - [ - 6.2974781, - 49.5207528 - ], - [ - 6.2974781, - 49.5207528 - ], - [ - 6.2974781, - 49.5207528 - ], - [ - 6.2974781, - 49.5207528 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109586305 - } - }, - { - "id": 109576148, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -97.1550427, - 49.7674708 - ], - [ - -97.1550427, - 49.7674708 - ], - [ - -97.1550427, - 49.7674708 - ], - [ - -97.1550427, - 49.7674708 - ], - [ - -97.1550427, - 49.7674708 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109576148 - } - }, - { - "id": 109574626, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1750542, - 50.8107011 - ], - [ - 3.1750542, - 50.8107011 - ], - [ - 3.1750542, - 50.8107011 - ], - [ - 3.1750542, - 50.8107011 - ], - [ - 3.1750542, - 50.8107011 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "boomgaarden", - "imagery": "osm", - "language": "nl" - }, - "id": 109574626 - } - }, - { - "id": 109573845, - "type": "Feature", - "geometry": null, - "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-08-12T12:56:58Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109573845 - } - }, - { - "id": 109573780, - "type": "Feature", - "geometry": null, - "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-08-12T12:55:40Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109573780 - } - }, - { - "id": 109573653, - "type": "Feature", - "geometry": null, - "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-08-12T12:53:10Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109573653 - } - }, - { - "id": 109573146, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.4957546, - -34.6352868 - ], - [ - -58.4078679, - -34.6352868 - ], - [ - -58.4078679, - -34.6083131 - ], - [ - -58.4957546, - -34.6083131 - ], - [ - -58.4957546, - -34.6352868 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "EsriWorldImageryClarity", - "language": "en" - }, - "id": 109573146 - } - }, - { - "id": 109570905, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7248689, - -34.6668018 - ], - [ - -58.4243944, - -34.6668018 - ], - [ - -58.4243944, - -34.611151 - ], - [ - -58.7248689, - -34.611151 - ], - [ - -58.7248689, - -34.6668018 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "en" - }, - "id": 109570905 - } - }, - { - "id": 109565139, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5020497, - 53.055716 - ], - [ - 8.5020497, - 53.055716 - ], - [ - 8.5020497, - 53.055716 - ], - [ - 8.5020497, - 53.055716 - ], - [ - 8.5020497, - 53.055716 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 109565139 - } - }, - { - "id": 109555175, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3741941, - 52.6357059 - ], - [ - 13.3741941, - 52.6357059 - ], - [ - 13.3741941, - 52.6357059 - ], - [ - 13.3741941, - 52.6357059 - ], - [ - 13.3741941, - 52.6357059 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 109555175 - } - }, - { - "id": 109552872, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3923023, - 50.9260044 - ], - [ - 5.3929219, - 50.9260044 - ], - [ - 5.3929219, - 50.9262682 - ], - [ - 5.3923023, - 50.9262682 - ], - [ - 5.3923023, - 50.9260044 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 109552872 - } - }, - { - "id": 109534553, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2427119, - 41.4399491 - ], - [ - 2.2437214, - 41.4399491 - ], - [ - 2.2437214, - 41.4405423 - ], - [ - 2.2427119, - 41.4405423 - ], - [ - 2.2427119, - 41.4399491 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 109534553 - } - }, - { - "id": 109534467, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "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:36:56Z", - "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": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 109534467 - } - }, - { - "id": 109533772, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2411075, - 41.4399347 - ], - [ - 2.2429479, - 41.4399347 - ], - [ - 2.2429479, - 41.4406443 - ], - [ - 2.2411075, - 41.4406443 - ], - [ - 2.2411075, - 41.4399347 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 109533772 - } - }, - { - "id": 109532162, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -97.1550427, - 49.7674708 - ], - [ - -97.1550427, - 49.7674708 - ], - [ - -97.1550427, - 49.7674708 - ], - [ - -97.1550427, - 49.7674708 - ], - [ - -97.1550427, - 49.7674708 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "EsriWorldImagery", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109532162 - } - }, - { - "id": 109524702, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Koen Rijnsent", - "uid": "4569696", - "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-11T15:36: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": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109524702 - } - }, - { - "id": 109524517, - "type": "Feature", - "geometry": null, - "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-11T15:31: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": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109524517 - } - }, - { - "id": 109524498, - "type": "Feature", - "geometry": null, - "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-11T15:31:18Z", - "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": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109524498 - } - }, - { - "id": 109524475, - "type": "Feature", - "geometry": null, - "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-11T15:30:47Z", - "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": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109524475 - } - }, - { - "id": 109517519, - "type": "Feature", - "geometry": null, - "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-11T12:51: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": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109517519 - } - }, - { - "id": 109510058, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Koen Rijnsent", - "uid": "4569696", - "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-11T10:42:17Z", - "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": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109510058 - } - }, - { - "id": 109505004, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4057129, - 52.496731 - ], - [ - 13.4063746, - 52.496731 - ], - [ - 13.4063746, - 52.4972799 - ], - [ - 13.4057129, - 52.4972799 - ], - [ - 13.4057129, - 52.496731 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "fr" - }, - "id": 109505004 - } - }, - { - "id": 109499010, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.235782, - 50.7350492 - ], - [ - 4.235782, - 50.7350492 - ], - [ - 4.235782, - 50.7350492 - ], - [ - 4.235782, - 50.7350492 - ], - [ - 4.235782, - 50.7350492 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109499010 - } - }, - { - "id": 109483365, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.998016, - 48.501502 - ], - [ - 8.998016, - 48.501502 - ], - [ - 8.998016, - 48.501502 - ], - [ - 8.998016, - 48.501502 - ], - [ - 8.998016, - 48.501502 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109483365 - } - }, - { - "id": 109480331, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0526434, - 51.1962641 - ], - [ - 5.0526434, - 51.1962641 - ], - [ - 5.0526434, - 51.1962641 - ], - [ - 5.0526434, - 51.1962641 - ], - [ - 5.0526434, - 51.1962641 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 109480331 - } - }, - { - "id": 109469599, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.0808309, - 48.628725 - ], - [ - 2.0872065, - 48.628725 - ], - [ - 2.0872065, - 48.6429105 - ], - [ - 2.0808309, - 48.6429105 - ], - [ - 2.0808309, - 48.628725 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 109469599 - } - }, - { - "id": 109468259, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 84.9651188, - 56.4974077 - ], - [ - 84.9651188, - 56.4974077 - ], - [ - 84.9651188, - 56.4974077 - ], - [ - 84.9651188, - 56.4974077 - ], - [ - 84.9651188, - 56.4974077 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "ru", - "theme-creator": "Florian Edelmann" - }, - "id": 109468259 - } - }, - { - "id": 109464033, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.7458764, - 44.2187273 - ], - [ - 6.7458764, - 44.2187273 - ], - [ - 6.7458764, - 44.2187273 - ], - [ - 6.7458764, - 44.2187273 - ], - [ - 6.7458764, - 44.2187273 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109464033 - } - }, - { - "id": 109456292, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7222653, - 50.8648226 - ], - [ - 4.7274682, - 50.8648226 - ], - [ - 4.7274682, - 50.8833394 - ], - [ - 4.7222653, - 50.8833394 - ], - [ - 4.7222653, - 50.8648226 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 109456292 - } - }, - { - "id": 109455777, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7250126, - 50.8831611 - ], - [ - 4.7285046, - 50.8831611 - ], - [ - 4.7285046, - 50.8844658 - ], - [ - 4.7250126, - 50.8844658 - ], - [ - 4.7250126, - 50.8831611 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 109455777 - } - }, - { - "id": 109455601, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7250126, - 50.8831611 - ], - [ - 4.7285046, - 50.8831611 - ], - [ - 4.7285046, - 50.8838977 - ], - [ - 4.7250126, - 50.8838977 - ], - [ - 4.7250126, - 50.8831611 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fietsstraten", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 109455601 - } - }, - { - "id": 109453573, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7051627, - 51.0768653 - ], - [ - 3.7122865, - 51.0768653 - ], - [ - 3.7122865, - 51.0787158 - ], - [ - 3.7051627, - 51.0787158 - ], - [ - 3.7051627, - 51.0768653 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/project/cycle-infra/", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "nl" - }, - "id": 109453573 - } - }, - { - "id": 109451043, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3169403, - 50.8352832 - ], - [ - 4.3169403, - 50.8352832 - ], - [ - 4.3169403, - 50.8352832 - ], - [ - 4.3169403, - 50.8352832 - ], - [ - 4.3169403, - 50.8352832 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109451043 - } - }, - { - "id": 109443038, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -77.1386368, - 38.8791015 - ], - [ - -77.0661293, - 38.8791015 - ], - [ - -77.0661293, - 38.9046259 - ], - [ - -77.1386368, - 38.9046259 - ], - [ - -77.1386368, - 38.8791015 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109443038 - } - }, - { - "id": 109442107, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3920904, - 50.9251811 - ], - [ - 5.3925437, - 50.9251811 - ], - [ - 5.3925437, - 50.926138 - ], - [ - 5.3920904, - 50.926138 - ], - [ - 5.3920904, - 50.9251811 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 109442107 - } - }, - { - "id": 109419770, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Koen Rijnsent", - "uid": "4569696", - "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-09T16:50:10Z", - "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": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109419770 - } - }, - { - "id": 109419762, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Koen Rijnsent", - "uid": "4569696", - "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-09T16:50:02Z", - "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": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109419762 - } - }, - { - "id": 109414938, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 84.9845127, - 56.4635192 - ], - [ - 84.9845127, - 56.4635192 - ], - [ - 84.9845127, - 56.4635192 - ], - [ - 84.9845127, - 56.4635192 - ], - [ - 84.9845127, - 56.4635192 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 109414938 - } - }, - { - "id": 109413746, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2332017, - 50.7376383 - ], - [ - 4.2332688, - 50.7376383 - ], - [ - 4.2332688, - 50.737685 - ], - [ - 4.2332017, - 50.737685 - ], - [ - 4.2332017, - 50.7376383 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "cyclofix", - "imagery": "AGIV10cm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109413746 - } - }, - { - "id": 109408644, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 84.9845127, - 56.4635192 - ], - [ - 84.9845127, - 56.4635192 - ], - [ - 84.9845127, - 56.4635192 - ], - [ - 84.9845127, - 56.4635192 - ], - [ - 84.9845127, - 56.4635192 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "ru", - "theme-creator": "Florian Edelmann" - }, - "id": 109408644 - } - }, - { - "id": 109404059, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7930757, - -34.6496325 - ], - [ - -58.793041, - -34.6496325 - ], - [ - -58.793041, - -34.6495504 - ], - [ - -58.7930757, - -34.6495504 - ], - [ - -58.7930757, - -34.6496325 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "en" - }, - "id": 109404059 - } - }, - { - "id": 109402241, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.792592, - -34.6498488 - ], - [ - -58.7921253, - -34.6498488 - ], - [ - -58.7921253, - -34.6497473 - ], - [ - -58.792592, - -34.6497473 - ], - [ - -58.792592, - -34.6498488 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "en" - }, - "id": 109402241 - } - }, - { - "id": 109399976, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4425507, - 52.5434797 - ], - [ - 13.4425507, - 52.5434797 - ], - [ - 13.4425507, - 52.5434797 - ], - [ - 13.4425507, - 52.5434797 - ], - [ - 13.4425507, - 52.5434797 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 109399976 - } - }, - { - "id": 109396091, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 153.0415517, - -27.2316365 - ], - [ - 153.0415517, - -27.2316365 - ], - [ - 153.0415517, - -27.2316365 - ], - [ - 153.0415517, - -27.2316365 - ], - [ - 153.0415517, - -27.2316365 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109396091 - } - }, - { - "id": 109393990, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 20.4569453, - 44.8209414 - ], - [ - 20.4569453, - 44.8209414 - ], - [ - 20.4569453, - 44.8209414 - ], - [ - 20.4569453, - 44.8209414 - ], - [ - 20.4569453, - 44.8209414 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109393990 - } - }, - { - "id": 109393464, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 20.4569453, - 44.8209414 - ], - [ - 20.4569453, - 44.8209414 - ], - [ - 20.4569453, - 44.8209414 - ], - [ - 20.4569453, - 44.8209414 - ], - [ - 20.4569453, - 44.8209414 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109393464 - } - }, - { - "id": 109385823, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 20.4569453, - 44.8209414 - ], - [ - 20.4569453, - 44.8209414 - ], - [ - 20.4569453, - 44.8209414 - ], - [ - 20.4569453, - 44.8209414 - ], - [ - 20.4569453, - 44.8209414 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109385823 - } - }, - { - "id": 109379519, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9955803, - 48.4988714 - ], - [ - 8.9955803, - 48.4988714 - ], - [ - 8.9955803, - 48.4988714 - ], - [ - 8.9955803, - 48.4988714 - ], - [ - 8.9955803, - 48.4988714 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109379519 - } - }, - { - "id": 109364340, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.427251, - 51.184372 - ], - [ - 4.427251, - 51.184372 - ], - [ - 4.427251, - 51.184372 - ], - [ - 4.427251, - 51.184372 - ], - [ - 4.427251, - 51.184372 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 109364340 - } - }, - { - "id": 109360825, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.287091, - 50.8832415 - ], - [ - -0.2844632, - 50.8832415 - ], - [ - -0.2844632, - 50.8845235 - ], - [ - -0.287091, - 50.8845235 - ], - [ - -0.287091, - 50.8832415 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 109360825 - } - }, - { - "id": 109360393, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Brec10", - "uid": "13615286", - "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-08T19:36:32Z", - "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": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 109360393 - } - }, - { - "id": 109360380, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-08T19:36:02Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109360380 - } - }, - { - "id": 109360378, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-08T19:35:55Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109360378 - } - }, - { - "id": 109360358, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-08T19:35: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109360358 - } - }, - { - "id": 109360353, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-08T19:35:09Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109360353 - } - }, - { - "id": 109359928, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-08T19:22: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109359928 - } - }, - { - "id": 109359902, - "type": "Feature", - "geometry": null, - "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-08T19:22:14Z", - "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": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109359902 - } - }, - { - "id": 109359900, - "type": "Feature", - "geometry": null, - "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-08T19:22:11Z", - "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": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109359900 - } - }, - { - "id": 109359899, - "type": "Feature", - "geometry": null, - "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-08T19:22:09Z", - "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": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109359899 - } - }, - { - "id": 109359895, - "type": "Feature", - "geometry": null, - "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-08T19:22:06Z", - "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": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109359895 - } - }, - { - "id": 109359809, - "type": "Feature", - "geometry": null, - "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-08T19:19:59Z", - "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": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109359809 - } - }, - { - "id": 109357280, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.152942, - 50.7576221 - ], - [ - 4.152942, - 50.7576221 - ], - [ - 4.152942, - 50.7576221 - ], - [ - 4.152942, - 50.7576221 - ], - [ - 4.152942, - 50.7576221 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109357280 - } - }, - { - "id": 109354762, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.1384507, - 50.8423129 - ], - [ - -0.1384507, - 50.8423129 - ], - [ - -0.1384507, - 50.8423129 - ], - [ - -0.1384507, - 50.8423129 - ], - [ - -0.1384507, - 50.8423129 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109354762 - } - }, - { - "id": 109351604, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 84.9651188, - 56.4974077 - ], - [ - 84.9651188, - 56.4974077 - ], - [ - 84.9651188, - 56.4974077 - ], - [ - 84.9651188, - 56.4974077 - ], - [ - 84.9651188, - 56.4974077 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "ru", - "theme-creator": "Florian Edelmann" - }, - "id": 109351604 - } - }, - { - "id": 109348467, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 84.9507832, - 56.4744741 - ], - [ - 84.9507832, - 56.4744741 - ], - [ - 84.9507832, - 56.4744741 - ], - [ - 84.9507832, - 56.4744741 - ], - [ - 84.9507832, - 56.4744741 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 109348467 - } - }, - { - "id": 109344961, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.4998852, - -34.6358959 - ], - [ - -58.410684, - -34.6358959 - ], - [ - -58.410684, - -34.6086694 - ], - [ - -58.4998852, - -34.6086694 - ], - [ - -58.4998852, - -34.6358959 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "en" - }, - "id": 109344961 - } - }, - { - "id": 109343473, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7345463, - -34.6663164 - ], - [ - -58.5072532, - -34.6663164 - ], - [ - -58.5072532, - -34.6368956 - ], - [ - -58.7345463, - -34.6368956 - ], - [ - -58.7345463, - -34.6663164 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "en" - }, - "id": 109343473 - } - }, - { - "id": 109343368, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.5867712, - 47.5701279 - ], - [ - 7.5999967, - 47.5701279 - ], - [ - 7.5999967, - 47.5721039 - ], - [ - 7.5867712, - 47.5721039 - ], - [ - 7.5867712, - 47.5701279 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 109343368 - } - }, - { - "id": 109340605, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3379653, - 52.5069243 - ], - [ - 13.3379653, - 52.5069243 - ], - [ - 13.3379653, - 52.5069243 - ], - [ - 13.3379653, - 52.5069243 - ], - [ - 13.3379653, - 52.5069243 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 109340605 - } - }, - { - "id": 109334273, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3482148, - 50.9353292 - ], - [ - 5.3482148, - 50.9353292 - ], - [ - 5.3482148, - 50.9353292 - ], - [ - 5.3482148, - 50.9353292 - ], - [ - 5.3482148, - 50.9353292 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 109334273 - } - }, - { - "id": 109331331, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.7545237, - -33.4904837 - ], - [ - -70.7541838, - -33.4904837 - ], - [ - -70.7541838, - -33.4902922 - ], - [ - -70.7545237, - -33.4902922 - ], - [ - -70.7545237, - -33.4904837 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "trees", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 109331331 - } - }, - { - "id": 109326660, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4238564, - 51.1821339 - ], - [ - 4.4245757, - 51.1821339 - ], - [ - 4.4245757, - 51.1831935 - ], - [ - 4.4238564, - 51.1831935 - ], - [ - 4.4238564, - 51.1821339 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 109326660 - } - }, - { - "id": 109323074, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4202396, - 51.2096933 - ], - [ - 5.4202396, - 51.2096933 - ], - [ - 5.4202396, - 51.2096933 - ], - [ - 5.4202396, - 51.2096933 - ], - [ - 5.4202396, - 51.2096933 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 109323074 - } - }, - { - "id": 109322899, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.216397, - 51.2097473 - ], - [ - 3.2180282, - 51.2097473 - ], - [ - 3.2180282, - 51.2103584 - ], - [ - 3.216397, - 51.2103584 - ], - [ - 3.216397, - 51.2097473 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "cycle_infra", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109322899 - } - }, - { - "id": 109322556, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1536965, - 51.1020483 - ], - [ - 3.1536965, - 51.1020483 - ], - [ - 3.1536965, - 51.1020483 - ], - [ - 3.1536965, - 51.1020483 - ], - [ - 3.1536965, - 51.1020483 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109322556 - } - }, - { - "id": 109309764, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.152942, - 50.7576221 - ], - [ - 4.152942, - 50.7576221 - ], - [ - 4.152942, - 50.7576221 - ], - [ - 4.152942, - 50.7576221 - ], - [ - 4.152942, - 50.7576221 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "AGIV", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109309764 - } - }, - { - "id": 109309188, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.4870278, - -34.6340685 - ], - [ - -58.4619639, - -34.6340685 - ], - [ - -58.4619639, - -34.6265829 - ], - [ - -58.4870278, - -34.6265829 - ], - [ - -58.4870278, - -34.6340685 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "en" - }, - "id": 109309188 - } - }, - { - "id": 109309162, - "type": "Feature", - "geometry": null, - "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:41:10Z", - "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": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "en" - }, - "id": 109309162 - } - }, - { - "id": 109309156, - "type": "Feature", - "geometry": null, - "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:41:01Z", - "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": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "en" - }, - "id": 109309156 - } - }, - { - "id": 109309155, - "type": "Feature", - "geometry": null, - "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:58Z", - "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": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "en" - }, - "id": 109309155 - } - }, - { - "id": 109309152, - "type": "Feature", - "geometry": null, - "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:51Z", - "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": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "en" - }, - "id": 109309152 - } - }, - { - "id": 109309146, - "type": "Feature", - "geometry": null, - "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: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": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "en" - }, - "id": 109309146 - } - }, - { - "id": 109309143, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.4924724, - -34.634956 - ], - [ - -58.4870134, - -34.634956 - ], - [ - -58.4870134, - -34.6340685 - ], - [ - -58.4924724, - -34.6340685 - ], - [ - -58.4924724, - -34.634956 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "en" - }, - "id": 109309143 - } - }, - { - "id": 109308576, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Brec10", - "uid": "13615286", - "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-07T12:24: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": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 109308576 - } - }, - { - "id": 109308541, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Brec10", - "uid": "13615286", - "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-07T12:23: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": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 109308541 - } - }, - { - "id": 109308492, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Brec10", - "uid": "13615286", - "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-07T12:22: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": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 109308492 - } - }, - { - "id": 109308479, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Brec10", - "uid": "13615286", - "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-07T12:22:06Z", - "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": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 109308479 - } - }, - { - "id": 109308239, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Brec10", - "uid": "13615286", - "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-07T12:15:59Z", - "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": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 109308239 - } - }, - { - "id": 109308234, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Brec10", - "uid": "13615286", - "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-07T12:15:52Z", - "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": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 109308234 - } - }, - { - "id": 109308200, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Brec10", - "uid": "13615286", - "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-07T12:15:06Z", - "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": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 109308200 - } - }, - { - "id": 109308101, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Brec10", - "uid": "13615286", - "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-07T12:12:26Z", - "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": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 109308101 - } - }, - { - "id": 109308091, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Brec10", - "uid": "13615286", - "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-07T12:12: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": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 109308091 - } - }, - { - "id": 109308012, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-07T12:09: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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109308012 - } - }, - { - "id": 109307979, - "type": "Feature", - "geometry": null, - "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": "survey", - "imagery_used": "Not reported", - "date": "2021-08-07T12:08:46Z", - "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": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 109307979 - } - }, - { - "id": 109307647, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7353322, - -34.6647016 - ], - [ - -58.4136441, - -34.6647016 - ], - [ - -58.4136441, - -34.6087448 - ], - [ - -58.7353322, - -34.6087448 - ], - [ - -58.7353322, - -34.6647016 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "en" - }, - "id": 109307647 - } - }, - { - "id": 109294761, - "type": "Feature", - "geometry": null, - "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-07T06:26:18Z", - "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": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109294761 - } - }, - { - "id": 109294748, - "type": "Feature", - "geometry": null, - "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-07T06:25: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": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109294748 - } - }, - { - "id": 109294741, - "type": "Feature", - "geometry": null, - "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-07T06:25:43Z", - "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": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109294741 - } - }, - { - "id": 109284325, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4159365, - 51.1858546 - ], - [ - 4.4214756, - 51.1858546 - ], - [ - 4.4214756, - 51.1961458 - ], - [ - 4.4159365, - 51.1961458 - ], - [ - 4.4159365, - 51.1858546 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "nl" - }, - "id": 109284325 - } - }, - { - "id": 109283794, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 18.9486934, - 47.5418606 - ], - [ - 18.9653099, - 47.5418606 - ], - [ - 18.9653099, - 47.5584958 - ], - [ - 18.9486934, - 47.5584958 - ], - [ - 18.9486934, - 47.5418606 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "osm", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 109283794 - } - }, - { - "id": 109265918, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.9757313, - 48.9797998 - ], - [ - 1.9757313, - 48.9797998 - ], - [ - 1.9757313, - 48.9797998 - ], - [ - 1.9757313, - 48.9797998 - ], - [ - 1.9757313, - 48.9797998 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 109265918 - } - }, - { - "id": 109260914, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0839556, - 50.8055852 - ], - [ - 5.5796546, - 50.8055852 - ], - [ - 5.5796546, - 51.3970264 - ], - [ - 3.0839556, - 51.3970264 - ], - [ - 3.0839556, - 50.8055852 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "bookcases", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 109260914 - } - }, - { - "id": 109248444, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3880595, - 51.1722301 - ], - [ - 4.3940039, - 51.1722301 - ], - [ - 4.3940039, - 51.1725352 - ], - [ - 4.3880595, - 51.1725352 - ], - [ - 4.3880595, - 51.1722301 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "nl" - }, - "id": 109248444 - } - }, - { - "id": 109245495, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.8927514, - 53.2878815 - ], - [ - 7.8927514, - 53.2878815 - ], - [ - 7.8927514, - 53.2878815 - ], - [ - 7.8927514, - 53.2878815 - ], - [ - 7.8927514, - 53.2878815 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "nl" - }, - "id": 109245495 - } - }, - { - "id": 109241800, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4004722, - 51.18871 - ], - [ - 4.4057968, - 51.18871 - ], - [ - 4.4057968, - 51.1904294 - ], - [ - 4.4004722, - 51.1904294 - ], - [ - 4.4004722, - 51.18871 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "nl" - }, - "id": 109241800 - } - }, - { - "id": 109224067, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4069524, - 51.1817194 - ], - [ - 4.4137105, - 51.1817194 - ], - [ - 4.4137105, - 51.1842781 - ], - [ - 4.4069524, - 51.1842781 - ], - [ - 4.4069524, - 51.1817194 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "nl" - }, - "id": 109224067 - } - }, - { - "id": 109220346, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4044258, - 51.1858791 - ], - [ - 4.4247034, - 51.1858791 - ], - [ - 4.4247034, - 51.1908241 - ], - [ - 4.4044258, - 51.1908241 - ], - [ - 4.4044258, - 51.1858791 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "nl" - }, - "id": 109220346 - } - }, - { - "id": 109217920, - "type": "Feature", - "geometry": null, - "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-05T19:01:56Z", - "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": "drinking_water", - "imagery": "osmfr", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109217920 - } - }, - { - "id": 109217705, - "type": "Feature", - "geometry": null, - "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:55: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": "drinking_water", - "imagery": "osmfr", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109217705 - } - }, - { - "id": 109217700, - "type": "Feature", - "geometry": null, - "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:55: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": "drinking_water", - "imagery": "osmfr", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109217700 - } - }, - { - "id": 109216480, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Brec10", - "uid": "13615286", - "editor": "MapComplete 0.8.4", - "comment": "Adding data with #MapComplete for theme #maps", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2021-08-05T18:25:04Z", - "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": "maps", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109216480 - } - }, - { - "id": 109216410, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Brec10", - "uid": "13615286", - "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-05T18:22:34Z", - "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": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109216410 - } - }, - { - "id": 109216405, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Brec10", - "uid": "13615286", - "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-05T18:22:26Z", - "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": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109216405 - } - }, - { - "id": 109216402, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Brec10", - "uid": "13615286", - "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-05T18:22: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": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109216402 - } - }, - { - "id": 109216383, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Brec10", - "uid": "13615286", - "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-05T18:21:55Z", - "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": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109216383 - } - }, - { - "id": 109216372, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Brec10", - "uid": "13615286", - "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-05T18:21: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": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109216372 - } - }, - { - "id": 109216345, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Brec10", - "uid": "13615286", - "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-05T18:20: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": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109216345 - } - }, - { - "id": 109216339, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.8537764, - 45.2328598 - ], - [ - 5.8761173, - 45.2328598 - ], - [ - 5.8761173, - 45.2404864 - ], - [ - 5.8537764, - 45.2404864 - ], - [ - 5.8537764, - 45.2328598 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 109216339 - } - }, - { - "id": 109216290, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Brec10", - "uid": "13615286", - "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-05T18:18:43Z", - "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": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109216290 - } - }, - { - "id": 109216277, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Brec10", - "uid": "13615286", - "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-05T18:18:15Z", - "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": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109216277 - } - }, - { - "id": 109216270, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Brec10", - "uid": "13615286", - "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-05T18:18:06Z", - "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": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109216270 - } - }, - { - "id": 109216263, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Brec10", - "uid": "13615286", - "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-05T18:17: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": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109216263 - } - }, - { - "id": 109216254, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Brec10", - "uid": "13615286", - "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-05T18:17:43Z", - "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": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109216254 - } - }, - { - "id": 109216183, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1546506, - 44.9050895 - ], - [ - 4.1546506, - 44.9050895 - ], - [ - 4.1546506, - 44.9050895 - ], - [ - 4.1546506, - 44.9050895 - ], - [ - 4.1546506, - 44.9050895 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109216183 - } - }, - { - "id": 109209899, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1546506, - 44.9050895 - ], - [ - 4.1546506, - 44.9050895 - ], - [ - 4.1546506, - 44.9050895 - ], - [ - 4.1546506, - 44.9050895 - ], - [ - 4.1546506, - 44.9050895 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109209899 - } - }, - { - "id": 109209833, - "type": "Feature", - "geometry": null, - "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-05T15:36: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": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109209833 - } - }, - { - "id": 109204092, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0739747, - 51.1881988 - ], - [ - 5.4235677, - 51.1881988 - ], - [ - 5.4235677, - 51.215566 - ], - [ - 5.0739747, - 51.215566 - ], - [ - 5.0739747, - 51.1881988 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109204092 - } - }, - { - "id": 109200627, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.4635305, - -34.6270406 - ], - [ - -58.4137162, - -34.6270406 - ], - [ - -58.4137162, - -34.608505 - ], - [ - -58.4635305, - -34.608505 - ], - [ - -58.4635305, - -34.6270406 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "en" - }, - "id": 109200627 - } - }, - { - "id": 109190875, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4076605, - 51.1878496 - ], - [ - 4.4247034, - 51.1878496 - ], - [ - 4.4247034, - 51.1974625 - ], - [ - 4.4076605, - 51.1974625 - ], - [ - 4.4076605, - 51.1878496 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 109190875 - } - }, - { - "id": 109182555, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1546506, - 44.9050895 - ], - [ - 4.1546506, - 44.9050895 - ], - [ - 4.1546506, - 44.9050895 - ], - [ - 4.1546506, - 44.9050895 - ], - [ - 4.1546506, - 44.9050895 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109182555 - } - }, - { - "id": 109165544, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4054748, - 51.1833975 - ], - [ - 4.4219099, - 51.1833975 - ], - [ - 4.4219099, - 51.1982368 - ], - [ - 4.4054748, - 51.1982368 - ], - [ - 4.4054748, - 51.1833975 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 109165544 - } - }, - { - "id": 109163865, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1546506, - 44.9050895 - ], - [ - 4.1546506, - 44.9050895 - ], - [ - 4.1546506, - 44.9050895 - ], - [ - 4.1546506, - 44.9050895 - ], - [ - 4.1546506, - 44.9050895 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109163865 - } - }, - { - "id": 109162810, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2350458, - 43.6722582 - ], - [ - 4.2350458, - 43.6722582 - ], - [ - 4.2350458, - 43.6722582 - ], - [ - 4.2350458, - 43.6722582 - ], - [ - 4.2350458, - 43.6722582 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109162810 - } - }, - { - "id": 109160449, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.8137511, - 45.342389 - ], - [ - 5.8137511, - 45.342389 - ], - [ - 5.8137511, - 45.342389 - ], - [ - 5.8137511, - 45.342389 - ], - [ - 5.8137511, - 45.342389 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "drinking_water", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109160449 - } - }, - { - "id": 109153910, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.548554, - 53.0014414 - ], - [ - 6.548554, - 53.0014414 - ], - [ - 6.548554, - 53.0014414 - ], - [ - 6.548554, - 53.0014414 - ], - [ - 6.548554, - 53.0014414 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "nl" - }, - "id": 109153910 - } - }, - { - "id": 109147562, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.661894, - 51.0729908 - ], - [ - 2.6624599, - 51.0729908 - ], - [ - 2.6624599, - 51.073038 - ], - [ - 2.661894, - 51.073038 - ], - [ - 2.661894, - 51.0729908 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109147562 - } - }, - { - "id": 109147248, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 27.5953227, - 53.9269634 - ], - [ - 27.5965512, - 53.9269634 - ], - [ - 27.5965512, - 53.9281258 - ], - [ - 27.5953227, - 53.9281258 - ], - [ - 27.5953227, - 53.9269634 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109147248 - } - }, - { - "id": 109143500, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.6340836, - 51.7419502 - ], - [ - 14.6340836, - 51.7419502 - ], - [ - 14.6340836, - 51.7419502 - ], - [ - 14.6340836, - 51.7419502 - ], - [ - 14.6340836, - 51.7419502 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 109143500 - } - }, - { - "id": 109142066, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.6822103, - 51.1160817 - ], - [ - 2.6822103, - 51.1160817 - ], - [ - 2.6822103, - 51.1160817 - ], - [ - 2.6822103, - 51.1160817 - ], - [ - 2.6822103, - 51.1160817 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109142066 - } - }, - { - "id": 109141902, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.6627119, - 51.1172865 - ], - [ - 2.6628891, - 51.1172865 - ], - [ - 2.6628891, - 51.1174361 - ], - [ - 2.6627119, - 51.1174361 - ], - [ - 2.6627119, - 51.1172865 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 109141902 - } - }, - { - "id": 109136266, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8540178, - 50.4451494 - ], - [ - 4.8540178, - 50.4451494 - ], - [ - 4.8540178, - 50.4451494 - ], - [ - 4.8540178, - 50.4451494 - ], - [ - 4.8540178, - 50.4451494 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "fr", - "theme-creator": "MapComplete" - }, - "id": 109136266 - } - }, - { - "id": 109135509, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2380858, - 41.4296721 - ], - [ - 2.2382156, - 41.4296721 - ], - [ - 2.2382156, - 41.4298224 - ], - [ - 2.2380858, - 41.4298224 - ], - [ - 2.2380858, - 41.4296721 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 109135509 - } - }, - { - "id": 109125644, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.6296288, - 51.743342 - ], - [ - 14.6296288, - 51.743342 - ], - [ - 14.6296288, - 51.743342 - ], - [ - 14.6296288, - 51.743342 - ], - [ - 14.6296288, - 51.743342 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 109125644 - } - }, - { - "id": 109116613, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.4452003, - -34.6199983 - ], - [ - -58.4452003, - -34.6199983 - ], - [ - -58.4452003, - -34.6199983 - ], - [ - -58.4452003, - -34.6199983 - ], - [ - -58.4452003, - -34.6199983 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "en" - }, - "id": 109116613 - } - }, - { - "id": 109116513, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.409932, - -34.6087404 - ], - [ - -58.409932, - -34.6087404 - ], - [ - -58.409932, - -34.6087404 - ], - [ - -58.409932, - -34.6087404 - ], - [ - -58.409932, - -34.6087404 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "osm", - "language": "en" - }, - "id": 109116513 - } - }, - { - "id": 109115418, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3158309, - 44.4888676 - ], - [ - 11.3160465, - 44.4888676 - ], - [ - 11.3160465, - 44.4889296 - ], - [ - 11.3158309, - 44.4889296 - ], - [ - 11.3158309, - 44.4888676 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109115418 - } - }, - { - "id": 109110460, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.230833, - 43.7779542 - ], - [ - 11.2987561, - 43.7779542 - ], - [ - 11.2987561, - 44.4912213 - ], - [ - 11.230833, - 44.4912213 - ], - [ - 11.230833, - 43.7779542 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109110460 - } - }, - { - "id": 109109528, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2342151, - 41.4282286 - ], - [ - 2.2381869, - 41.4282286 - ], - [ - 2.2381869, - 41.4396739 - ], - [ - 2.2342151, - 41.4396739 - ], - [ - 2.2342151, - 41.4282286 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 109109528 - } - }, - { - "id": 109109424, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.483388, - -34.6331262 - ], - [ - -58.4101674, - -34.6331262 - ], - [ - -58.4101674, - -34.6088482 - ], - [ - -58.483388, - -34.6088482 - ], - [ - -58.483388, - -34.6331262 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "en" - }, - "id": 109109424 - } - }, - { - "id": 109109420, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.4886727, - -34.6343825 - ], - [ - -58.4833537, - -34.6343825 - ], - [ - -58.4833537, - -34.6331641 - ], - [ - -58.4886727, - -34.6331641 - ], - [ - -58.4886727, - -34.6343825 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "en" - }, - "id": 109109420 - } - }, - { - "id": 109109418, - "type": "Feature", - "geometry": null, - "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:47:59Z", - "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": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "en" - }, - "id": 109109418 - } - }, - { - "id": 109109376, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.4969216, - -34.635507 - ], - [ - -58.4886309, - -34.635507 - ], - [ - -58.4886309, - -34.6343825 - ], - [ - -58.4969216, - -34.6343825 - ], - [ - -58.4969216, - -34.635507 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "en" - }, - "id": 109109376 - } - }, - { - "id": 109109209, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8764212, - 51.0845439 - ], - [ - 4.8772953, - 51.0845439 - ], - [ - 4.8772953, - 51.0855661 - ], - [ - 4.8764212, - 51.0855661 - ], - [ - 4.8764212, - 51.0845439 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 109109209 - } - }, - { - "id": 109096769, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.4997713, - -34.6359734 - ], - [ - -58.4142317, - -34.6359734 - ], - [ - -58.4142317, - -34.6086968 - ], - [ - -58.4997713, - -34.6086968 - ], - [ - -58.4997713, - -34.6359734 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "en" - }, - "id": 109096769 - } - }, - { - "id": 109092220, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7085368, - 51.0746516 - ], - [ - 3.7125362, - 51.0746516 - ], - [ - 3.7125362, - 51.0766641 - ], - [ - 3.7085368, - 51.0766641 - ], - [ - 3.7085368, - 51.0746516 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/project/cycle-infra/", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "nl" - }, - "id": 109092220 - } - }, - { - "id": 109082473, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6050256, - 51.3874125 - ], - [ - 4.6051249, - 51.3874125 - ], - [ - 4.6051249, - 51.3876929 - ], - [ - 4.6050256, - 51.3876929 - ], - [ - 4.6050256, - 51.3874125 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/project/cycle-infra/", - "theme": "trees", - "imagery": "AGIV", - "language": "nl", - "theme-creator": "Midgard" - }, - "id": 109082473 - } - }, - { - "id": 109081577, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7087206, - 51.0746516 - ], - [ - 3.7087206, - 51.0746516 - ], - [ - 3.7087206, - 51.0746516 - ], - [ - 3.7087206, - 51.0746516 - ], - [ - 3.7087206, - 51.0746516 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/project/cycle-infra/", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "nl" - }, - "id": 109081577 - } - }, - { - "id": 109081330, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5676183, - 51.3015585 - ], - [ - 4.5694998, - 51.3015585 - ], - [ - 4.5694998, - 51.302429 - ], - [ - 4.5676183, - 51.302429 - ], - [ - 4.5676183, - 51.3015585 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/project/cycle-infra/", - "theme": "cycle_infra", - "imagery": "AGIV10cm", - "language": "nl" - }, - "id": 109081330 - } - }, - { - "id": 109067333, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.1603472, - 59.7438582 - ], - [ - 10.1606824, - 59.7438582 - ], - [ - 10.1606824, - 59.7439569 - ], - [ - 10.1603472, - 59.7439569 - ], - [ - 10.1603472, - 59.7438582 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109067333 - } - }, - { - "id": 109056486, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 30.4089352, - 49.0141028 - ], - [ - 31.04692, - 49.0141028 - ], - [ - 31.04692, - 50.4364806 - ], - [ - 30.4089352, - 50.4364806 - ], - [ - 30.4089352, - 49.0141028 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109056486 - } - }, - { - "id": 109054243, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3900144, - 50.870384 - ], - [ - 4.3900144, - 50.870384 - ], - [ - 4.3900144, - 50.870384 - ], - [ - 4.3900144, - 50.870384 - ], - [ - 4.3900144, - 50.870384 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "UrbISOrtho2019", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109054243 - } - }, - { - "id": 109054185, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3963069, - 50.8748135 - ], - [ - 4.3963069, - 50.8748135 - ], - [ - 4.3963069, - 50.8748135 - ], - [ - 4.3963069, - 50.8748135 - ], - [ - 4.3963069, - 50.8748135 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109054185 - } - }, - { - "id": 109053407, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.963832, - 59.7381015 - ], - [ - 10.2018154, - 59.7381015 - ], - [ - 10.2018154, - 59.7670814 - ], - [ - 9.963832, - 59.7670814 - ], - [ - 9.963832, - 59.7381015 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109053407 - } - }, - { - "id": 109046140, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.1027225, - 49.6495494 - ], - [ - 12.1027225, - 49.6495494 - ], - [ - 12.1027225, - 49.6495494 - ], - [ - 12.1027225, - 49.6495494 - ], - [ - 12.1027225, - 49.6495494 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 109046140 - } - }, - { - "id": 109044243, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.0042686, - 47.7764933 - ], - [ - 13.0663469, - 47.7764933 - ], - [ - 13.0663469, - 47.8452906 - ], - [ - 13.0042686, - 47.8452906 - ], - [ - 13.0042686, - 47.7764933 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 109044243 - } - }, - { - "id": 109037200, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0605868, - 14.5882173 - ], - [ - 121.0605868, - 14.5882173 - ], - [ - 121.0605868, - 14.5882173 - ], - [ - 121.0605868, - 14.5882173 - ], - [ - 121.0605868, - 14.5882173 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109037200 - } - }, - { - "id": 109026047, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.2957055, - 52.7059387 - ], - [ - 7.2957055, - 52.7059387 - ], - [ - 7.2957055, - 52.7059387 - ], - [ - 7.2957055, - 52.7059387 - ], - [ - 7.2957055, - 52.7059387 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109026047 - } - }, - { - "id": 109024703, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 152.9884387, - -27.2001138 - ], - [ - 152.9884387, - -27.2001138 - ], - [ - 152.9884387, - -27.2001138 - ], - [ - 152.9884387, - -27.2001138 - ], - [ - 152.9884387, - -27.2001138 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 109024703 - } - }, - { - "id": 109018389, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5609273, - 52.9922524 - ], - [ - 6.5708974, - 52.9922524 - ], - [ - 6.5708974, - 53.0167037 - ], - [ - 6.5609273, - 53.0167037 - ], - [ - 6.5609273, - 52.9922524 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 109018389 - } - }, - { - "id": 109016197, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.449049, - 45.39521 - ], - [ - 4.9057233, - 45.39521 - ], - [ - 4.9057233, - 45.5014396 - ], - [ - 4.449049, - 45.5014396 - ], - [ - 4.449049, - 45.39521 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "climbing", - "imagery": "osm", - "language": "fr", - "theme-creator": "Christian Neumann " - }, - "id": 109016197 - } - }, - { - "id": 108990193, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -81.5279709, - 41.0917357 - ], - [ - -81.5187183, - 41.0917357 - ], - [ - -81.5187183, - 41.1283529 - ], - [ - -81.5279709, - 41.1283529 - ], - [ - -81.5279709, - 41.0917357 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108990193 - } - }, - { - "id": 108983488, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3796182, - 50.8694293 - ], - [ - 4.3796182, - 50.8694293 - ], - [ - 4.3796182, - 50.8694293 - ], - [ - 4.3796182, - 50.8694293 - ], - [ - 4.3796182, - 50.8694293 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108983488 - } - }, - { - "id": 108978595, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.0331913, - 47.7212103 - ], - [ - 13.1060189, - 47.7212103 - ], - [ - 13.1060189, - 47.825783 - ], - [ - 13.0331913, - 47.825783 - ], - [ - 13.0331913, - 47.7212103 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "climbing", - "imagery": "osm", - "language": "de", - "theme-creator": "Christian Neumann " - }, - "id": 108978595 - } - }, - { - "id": 108972902, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3879984, - 52.1348582 - ], - [ - 5.3879984, - 52.1348582 - ], - [ - 5.3879984, - 52.1348582 - ], - [ - 5.3879984, - 52.1348582 - ], - [ - 5.3879984, - 52.1348582 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 108972902 - } - }, - { - "id": 108970609, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4724542, - 51.1629091 - ], - [ - 13.4724542, - 51.1629091 - ], - [ - 13.4724542, - 51.1629091 - ], - [ - 13.4724542, - 51.1629091 - ], - [ - 13.4724542, - 51.1629091 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "benches", - "imagery": "osm", - "language": "de", - "theme-creator": "Florian Edelmann" - }, - "id": 108970609 - } - }, - { - "id": 108970381, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.77924, - 52.8347819 - ], - [ - 13.7965831, - 52.8347819 - ], - [ - 13.7965831, - 52.8397448 - ], - [ - 13.77924, - 52.8397448 - ], - [ - 13.77924, - 52.8347819 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 108970381 - } - }, - { - "id": 108969867, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.6171613, - 48.6082865 - ], - [ - 11.6173915, - 48.6082865 - ], - [ - 11.6173915, - 48.6084025 - ], - [ - 11.6171613, - 48.6084025 - ], - [ - 11.6171613, - 48.6082865 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 108969867 - } - }, - { - "id": 108969694, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.6289436, - 48.5965685 - ], - [ - 11.6293746, - 48.5965685 - ], - [ - 11.6293746, - 48.596843 - ], - [ - 11.6289436, - 48.596843 - ], - [ - 11.6289436, - 48.5965685 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 108969694 - } - }, - { - "id": 108968481, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.4924607, - 38.3765763 - ], - [ - -0.4872552, - 38.3765763 - ], - [ - -0.4872552, - 38.3770075 - ], - [ - -0.4924607, - 38.3770075 - ], - [ - -0.4924607, - 38.3765763 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "crossingtime", - "imagery": "osm", - "language": "es" - }, - "id": 108968481 - } - }, - { - "id": 108964821, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.6247168, - 43.8497082 - ], - [ - 7.6247168, - 43.8497082 - ], - [ - 7.6247168, - 43.8497082 - ], - [ - 7.6247168, - 43.8497082 - ], - [ - 7.6247168, - 43.8497082 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/feature/road-splitting/", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108964821 - } - }, - { - "id": 108962112, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7896411, - -34.6507206 - ], - [ - -58.5269578, - -34.6507206 - ], - [ - -58.5269578, - -34.6389412 - ], - [ - -58.7896411, - -34.6389412 - ], - [ - -58.7896411, - -34.6507206 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 108962112 - } - }, - { - "id": 108961087, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 84.9495935, - 56.4636093 - ], - [ - 84.9598027, - 56.4636093 - ], - [ - 84.9598027, - 56.4746957 - ], - [ - 84.9495935, - 56.4746957 - ], - [ - 84.9495935, - 56.4636093 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 108961087 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2021-9.json b/Docs/Tools/stats/stats.2021-9.json deleted file mode 100644 index 31f8f60f48..0000000000 --- a/Docs/Tools/stats/stats.2021-9.json +++ /dev/null @@ -1,28769 +0,0 @@ -{ - "features": [ - { - "id": 111932288, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.371634, - 47.6802721 - ], - [ - -122.371634, - 47.6802721 - ], - [ - -122.371634, - 47.6802721 - ], - [ - -122.371634, - 47.6802721 - ], - [ - -122.371634, - 47.6802721 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111932288 - } - }, - { - "id": 111926055, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7239999, - 45.3812366 - ], - [ - 13.7239999, - 45.3812366 - ], - [ - 13.7239999, - 45.3812366 - ], - [ - 13.7239999, - 45.3812366 - ], - [ - 13.7239999, - 45.3812366 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111926055 - } - }, - { - "id": 111923846, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -99.2225718, - 19.5085359 - ], - [ - -99.0509963, - 19.5085359 - ], - [ - -99.0509963, - 19.6487916 - ], - [ - -99.2225718, - 19.6487916 - ], - [ - -99.2225718, - 19.5085359 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "ghostbikes", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111923846 - } - }, - { - "id": 111922919, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -99.1407799, - 19.4183425 - ], - [ - -99.1407799, - 19.4183425 - ], - [ - -99.1407799, - 19.4183425 - ], - [ - -99.1407799, - 19.4183425 - ], - [ - -99.1407799, - 19.4183425 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hackerspaces", - "imagery": "osm", - "language": "en" - }, - "id": 111922919 - } - }, - { - "id": 111922240, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 44.7372345, - 48.7994683 - ], - [ - 44.7374398, - 48.7994683 - ], - [ - 44.7374398, - 48.7995168 - ], - [ - 44.7372345, - 48.7995168 - ], - [ - 44.7372345, - 48.7994683 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "ru", - "theme-creator": "MapComplete" - }, - "id": 111922240 - } - }, - { - "id": 111915607, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2797471, - 51.0601812 - ], - [ - 4.2797471, - 51.0601812 - ], - [ - 4.2797471, - 51.0601812 - ], - [ - 4.2797471, - 51.0601812 - ], - [ - 4.2797471, - 51.0601812 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 111915607 - } - }, - { - "id": 111915525, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 44.7470245, - 48.7798782 - ], - [ - 44.7546527, - 48.7798782 - ], - [ - 44.7546527, - 48.782858 - ], - [ - 44.7470245, - 48.782858 - ], - [ - 44.7470245, - 48.7798782 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "ru", - "theme-creator": "MapComplete" - }, - "id": 111915525 - } - }, - { - "id": 111915367, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2786956, - 51.0602305 - ], - [ - 4.2786956, - 51.0602305 - ], - [ - 4.2786956, - 51.0602305 - ], - [ - 4.2786956, - 51.0602305 - ], - [ - 4.2786956, - 51.0602305 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "parkings", - "imagery": "osm", - "language": "nl" - }, - "id": 111915367 - } - }, - { - "id": 111914966, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.2362403, - 52.7961513 - ], - [ - 13.2362403, - 52.7961513 - ], - [ - 13.2362403, - 52.7961513 - ], - [ - 13.2362403, - 52.7961513 - ], - [ - 13.2362403, - 52.7961513 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 111914966 - } - }, - { - "id": 111910449, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2117898, - 41.5364472 - ], - [ - 2.220621, - 41.5364472 - ], - [ - 2.220621, - 41.5399198 - ], - [ - 2.2117898, - 41.5399198 - ], - [ - 2.2117898, - 41.5364472 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "ca", - "theme-creator": "MapComplete" - }, - "id": 111910449 - } - }, - { - "id": 111904781, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.658264, - 45.5372272 - ], - [ - 13.7323385, - 45.5372272 - ], - [ - 13.7323385, - 45.6096481 - ], - [ - 13.658264, - 45.6096481 - ], - [ - 13.658264, - 45.5372272 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111904781 - } - }, - { - "id": 111902843, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 44.7477648, - 48.7842484 - ], - [ - 44.7535267, - 48.7842484 - ], - [ - 44.7535267, - 48.7894569 - ], - [ - 44.7477648, - 48.7894569 - ], - [ - 44.7477648, - 48.7842484 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "ru", - "theme-creator": "MapComplete" - }, - "id": 111902843 - } - }, - { - "id": 111899797, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 44.745675, - 48.7831806 - ], - [ - 44.7464513, - 48.7831806 - ], - [ - 44.7464513, - 48.7844667 - ], - [ - 44.745675, - 48.7844667 - ], - [ - 44.745675, - 48.7831806 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "ru", - "theme-creator": "MapComplete" - }, - "id": 111899797 - } - }, - { - "id": 111898754, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7323385, - 45.6096481 - ], - [ - 13.7323385, - 45.6096481 - ], - [ - 13.7323385, - 45.6096481 - ], - [ - 13.7323385, - 45.6096481 - ], - [ - 13.7323385, - 45.6096481 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 111898754 - } - }, - { - "id": 111898556, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 44.745675, - 48.7831806 - ], - [ - 44.7495477, - 48.7831806 - ], - [ - 44.7495477, - 48.7857339 - ], - [ - 44.745675, - 48.7857339 - ], - [ - 44.745675, - 48.7831806 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "ru", - "theme-creator": "MapComplete" - }, - "id": 111898556 - } - }, - { - "id": 111884103, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7323039, - 45.609657 - ], - [ - 13.7323039, - 45.609657 - ], - [ - 13.7323039, - 45.609657 - ], - [ - 13.7323039, - 45.609657 - ], - [ - 13.7323039, - 45.609657 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "toerisme_vlaanderen", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111884103 - } - }, - { - "id": 111879822, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9264747, - 50.9940101 - ], - [ - 3.6852144, - 50.9940101 - ], - [ - 3.6852144, - 51.0416453 - ], - [ - 2.9264747, - 51.0416453 - ], - [ - 2.9264747, - 50.9940101 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "observation_towers", - "imagery": "osm", - "language": "nl" - }, - "id": 111879822 - } - }, - { - "id": 111878737, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 44.7494316, - 48.7860225 - ], - [ - 44.7494316, - 48.7860225 - ], - [ - 44.7494316, - 48.7860225 - ], - [ - 44.7494316, - 48.7860225 - ], - [ - 44.7494316, - 48.7860225 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "ru", - "theme-creator": "MapComplete" - }, - "id": 111878737 - } - }, - { - "id": 111877207, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4503636, - 51.0929136 - ], - [ - 3.4503636, - 51.0929136 - ], - [ - 3.4503636, - 51.0929136 - ], - [ - 3.4503636, - 51.0929136 - ], - [ - 3.4503636, - 51.0929136 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "toerisme_vlaanderen", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 111877207 - } - }, - { - "id": 111875924, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.447245, - 51.0835474 - ], - [ - 3.4495104, - 51.0835474 - ], - [ - 3.4495104, - 51.0922255 - ], - [ - 3.447245, - 51.0922255 - ], - [ - 3.447245, - 51.0835474 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "food", - "imagery": "osm", - "language": "nl" - }, - "id": 111875924 - } - }, - { - "id": 111873523, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4535242, - 51.0948129 - ], - [ - 3.4686263, - 51.0948129 - ], - [ - 3.4686263, - 51.0956065 - ], - [ - 3.4535242, - 51.0956065 - ], - [ - 3.4535242, - 51.0948129 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "verkeerdeborden", - "imagery": "Stamen.TonerLite", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 111873523 - } - }, - { - "id": 111871547, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.665468, - -33.4572197 - ], - [ - -70.665468, - -33.4572197 - ], - [ - -70.665468, - -33.4572197 - ], - [ - -70.665468, - -33.4572197 - ], - [ - -70.665468, - -33.4572197 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "ghostbikes", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111871547 - } - }, - { - "id": 111841662, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -75.7071358, - -27.4920272 - ], - [ - 153.0289918, - -27.4920272 - ], - [ - 153.0289918, - 39.6851287 - ], - [ - -75.7071358, - 39.6851287 - ], - [ - -75.7071358, - -27.4920272 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "ghostbikes", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111841662 - } - }, - { - "id": 111838187, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.5936089, - -33.5332277 - ], - [ - -70.5936089, - -33.5332277 - ], - [ - -70.5936089, - -33.5332277 - ], - [ - -70.5936089, - -33.5332277 - ], - [ - -70.5936089, - -33.5332277 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "ghostbikes", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111838187 - } - }, - { - "id": 111824465, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.6130686, - 45.8765353 - ], - [ - 14.6130686, - 45.8765353 - ], - [ - 14.6130686, - 45.8765353 - ], - [ - 14.6130686, - 45.8765353 - ], - [ - 14.6130686, - 45.8765353 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 111824465 - } - }, - { - "id": 111823129, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1977097, - 51.2005778 - ], - [ - 3.1977097, - 51.2005778 - ], - [ - 3.1977097, - 51.2005778 - ], - [ - 3.1977097, - 51.2005778 - ], - [ - 3.1977097, - 51.2005778 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bicyclelib", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111823129 - } - }, - { - "id": 111820434, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2319921, - 51.2032559 - ], - [ - 3.2541408, - 51.2032559 - ], - [ - 3.2541408, - 51.2102463 - ], - [ - 3.2319921, - 51.2102463 - ], - [ - 3.2319921, - 51.2032559 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111820434 - } - }, - { - "id": 111820388, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.232044, - 51.2044768 - ], - [ - 3.2323352, - 51.2044768 - ], - [ - 3.2323352, - 51.204549 - ], - [ - 3.232044, - 51.204549 - ], - [ - 3.232044, - 51.2044768 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111820388 - } - }, - { - "id": 111817437, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5205093, - 53.2363705 - ], - [ - 6.5205093, - 53.2363705 - ], - [ - 6.5205093, - 53.2363705 - ], - [ - 6.5205093, - 53.2363705 - ], - [ - 6.5205093, - 53.2363705 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111817437 - } - }, - { - "id": 111806492, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.589463, - 47.2897044 - ], - [ - 9.7458306, - 47.2897044 - ], - [ - 9.7458306, - 47.5264144 - ], - [ - 9.589463, - 47.5264144 - ], - [ - 9.589463, - 47.2897044 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111806492 - } - }, - { - "id": 111805436, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.239645, - 51.223322 - ], - [ - 3.239645, - 51.223322 - ], - [ - 3.239645, - 51.223322 - ], - [ - 3.239645, - 51.223322 - ], - [ - 3.239645, - 51.223322 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 111805436 - } - }, - { - "id": 111802776, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7394553, - 51.0539251 - ], - [ - 3.7394553, - 51.0539251 - ], - [ - 3.7394553, - 51.0539251 - ], - [ - 3.7394553, - 51.0539251 - ], - [ - 3.7394553, - 51.0539251 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 111802776 - } - }, - { - "id": 111793926, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6034623, - -33.4237118 - ], - [ - -70.6033748, - -33.4237118 - ], - [ - -70.6033748, - -33.423705 - ], - [ - -70.6034623, - -33.423705 - ], - [ - -70.6034623, - -33.4237118 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 111793926 - } - }, - { - "id": 111783442, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.79261, - -34.2373596 - ], - [ - -70.79261, - -34.2373596 - ], - [ - -70.79261, - -34.2373596 - ], - [ - -70.79261, - -34.2373596 - ], - [ - -70.79261, - -34.2373596 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "ghostbikes", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111783442 - } - }, - { - "id": 111770813, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.366001, - -34.6404102 - ], - [ - -71.366001, - -34.6404102 - ], - [ - -71.366001, - -34.6404102 - ], - [ - -71.366001, - -34.6404102 - ], - [ - -71.366001, - -34.6404102 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 111770813 - } - }, - { - "id": 111765464, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -74.097054, - 40.6153451 - ], - [ - -74.097054, - 40.6153451 - ], - [ - -74.097054, - 40.6153451 - ], - [ - -74.097054, - 40.6153451 - ], - [ - -74.097054, - 40.6153451 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "ghostbikes", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111765464 - } - }, - { - "id": 111762075, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.0656198, - 46.3925125 - ], - [ - 8.5415965, - 46.3925125 - ], - [ - 8.5415965, - 47.4169878 - ], - [ - 8.0656198, - 47.4169878 - ], - [ - 8.0656198, - 46.3925125 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "pingpong", - "imagery": "osm", - "language": "nl" - }, - "id": 111762075 - } - }, - { - "id": 111760418, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3845609, - 52.1279133 - ], - [ - 5.3845609, - 52.1279133 - ], - [ - 5.3845609, - 52.1279133 - ], - [ - 5.3845609, - 52.1279133 - ], - [ - 5.3845609, - 52.1279133 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 111760418 - } - }, - { - "id": 111760411, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.9531973, - 46.2731418 - ], - [ - 13.9531973, - 46.2731418 - ], - [ - 13.9531973, - 46.2731418 - ], - [ - 13.9531973, - 46.2731418 - ], - [ - 13.9531973, - 46.2731418 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 111760411 - } - }, - { - "id": 111754902, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.9531973, - 46.2731418 - ], - [ - 13.9531973, - 46.2731418 - ], - [ - 13.9531973, - 46.2731418 - ], - [ - 13.9531973, - 46.2731418 - ], - [ - 13.9531973, - 46.2731418 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 111754902 - } - }, - { - "id": 111745566, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -120.6753014, - 35.2439797 - ], - [ - -120.6753014, - 35.2439797 - ], - [ - -120.6753014, - 35.2439797 - ], - [ - -120.6753014, - 35.2439797 - ], - [ - -120.6753014, - 35.2439797 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "ghostbikes", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111745566 - } - }, - { - "id": 111745072, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.2583896, - 37.8367212 - ], - [ - -122.2583896, - 37.8367212 - ], - [ - -122.2583896, - 37.8367212 - ], - [ - -122.2583896, - 37.8367212 - ], - [ - -122.2583896, - 37.8367212 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "ghostbikes", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111745072 - } - }, - { - "id": 111742325, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -78.6730476, - 35.779029 - ], - [ - -78.6730476, - 35.779029 - ], - [ - -78.6730476, - 35.779029 - ], - [ - -78.6730476, - 35.779029 - ], - [ - -78.6730476, - 35.779029 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "ghostbikes", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111742325 - } - }, - { - "id": 111740952, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6900597, - 44.3128481 - ], - [ - 5.6900597, - 44.3128481 - ], - [ - 5.6900597, - 44.3128481 - ], - [ - 5.6900597, - 44.3128481 - ], - [ - 5.6900597, - 44.3128481 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111740952 - } - }, - { - "id": 111740042, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -105.093348, - 40.312536 - ], - [ - -105.07524, - 40.312536 - ], - [ - -105.07524, - 40.5946271 - ], - [ - -105.093348, - 40.5946271 - ], - [ - -105.093348, - 40.312536 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "ghostbikes", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111740042 - } - }, - { - "id": 111735178, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.1084606, - 46.3684662 - ], - [ - 14.1084606, - 46.3684662 - ], - [ - 14.1084606, - 46.3684662 - ], - [ - 14.1084606, - 46.3684662 - ], - [ - 14.1084606, - 46.3684662 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111735178 - } - }, - { - "id": 111731202, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.1096324, - 46.3667337 - ], - [ - 14.1096324, - 46.3667337 - ], - [ - 14.1096324, - 46.3667337 - ], - [ - 14.1096324, - 46.3667337 - ], - [ - 14.1096324, - 46.3667337 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 111731202 - } - }, - { - "id": 111723291, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 114.1108783, - 22.2269288 - ], - [ - 114.1261109, - 22.2269288 - ], - [ - 114.1261109, - 22.5110517 - ], - [ - 114.1108783, - 22.5110517 - ], - [ - 114.1108783, - 22.2269288 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "zh_Hant", - "theme-creator": "MapComplete" - }, - "id": 111723291 - } - }, - { - "id": 111708503, - "type": "Feature", - "geometry": null, - "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": "Not reported", - "imagery_used": "Not reported", - "date": "2021-09-26T06:26:54Z", - "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": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111708503 - } - }, - { - "id": 111708429, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -155.066834, - 19.6900584 - ], - [ - -155.061182, - 19.6900584 - ], - [ - -155.061182, - 19.7016311 - ], - [ - -155.066834, - 19.7016311 - ], - [ - -155.066834, - 19.6900584 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111708429 - } - }, - { - "id": 111700174, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8168079, - 50.8767936 - ], - [ - 4.8435547, - 50.8767936 - ], - [ - 4.8435547, - 50.8975067 - ], - [ - 4.8168079, - 50.8975067 - ], - [ - 4.8168079, - 50.8767936 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 111700174 - } - }, - { - "id": 111699476, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.1948794, - 50.6309211 - ], - [ - -1.1947204, - 50.6309211 - ], - [ - -1.1947204, - 50.631049 - ], - [ - -1.1948794, - 50.631049 - ], - [ - -1.1948794, - 50.6309211 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "uk_addresses", - "imagery": "osm", - "language": "en", - "theme-creator": "Pieter Vander Vennet, Rob Nickerson, Russ Garrett" - }, - "id": 111699476 - } - }, - { - "id": 111690076, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.288795, - 51.3038705 - ], - [ - 4.288795, - 51.3038705 - ], - [ - 4.288795, - 51.3038705 - ], - [ - 4.288795, - 51.3038705 - ], - [ - 4.288795, - 51.3038705 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 111690076 - } - }, - { - "id": 111686997, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6421499, - 46.3340024 - ], - [ - 13.6421499, - 46.3340024 - ], - [ - 13.6421499, - 46.3340024 - ], - [ - 13.6421499, - 46.3340024 - ], - [ - 13.6421499, - 46.3340024 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 111686997 - } - }, - { - "id": 111686390, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0795702, - 51.4584493 - ], - [ - 4.0795702, - 51.4584493 - ], - [ - 4.0795702, - 51.4584493 - ], - [ - 4.0795702, - 51.4584493 - ], - [ - 4.0795702, - 51.4584493 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "imagery": "osm", - "language": "nl" - }, - "id": 111686390 - } - }, - { - "id": 111684215, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.5903299, - 52.2821555 - ], - [ - -1.5903299, - 52.2821555 - ], - [ - -1.5903299, - 52.2821555 - ], - [ - -1.5903299, - 52.2821555 - ], - [ - -1.5903299, - 52.2821555 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111684215 - } - }, - { - "id": 111683915, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.5890925, - 52.2812482 - ], - [ - -1.5890925, - 52.2812482 - ], - [ - -1.5890925, - 52.2812482 - ], - [ - -1.5890925, - 52.2812482 - ], - [ - -1.5890925, - 52.2812482 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 111683915 - } - }, - { - "id": 111683232, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9903468, - 48.4979179 - ], - [ - 8.9910562, - 48.4979179 - ], - [ - 8.9910562, - 48.4986039 - ], - [ - 8.9903468, - 48.4986039 - ], - [ - 8.9903468, - 48.4979179 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 111683232 - } - }, - { - "id": 111682968, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9912266, - 48.4984513 - ], - [ - 8.9914248, - 48.4984513 - ], - [ - 8.9914248, - 48.4986756 - ], - [ - 8.9912266, - 48.4986756 - ], - [ - 8.9912266, - 48.4984513 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 111682968 - } - }, - { - "id": 111682920, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9910069, - 48.4981568 - ], - [ - 8.9913574, - 48.4981568 - ], - [ - 8.9913574, - 48.4987227 - ], - [ - 8.9910069, - 48.4987227 - ], - [ - 8.9910069, - 48.4981568 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "waste_basket", - "imagery": "osm", - "language": "en" - }, - "id": 111682920 - } - }, - { - "id": 111682191, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9636555, - 50.3475965 - ], - [ - 8.9636555, - 50.3475965 - ], - [ - 8.9636555, - 50.3475965 - ], - [ - 8.9636555, - 50.3475965 - ], - [ - 8.9636555, - 50.3475965 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 111682191 - } - }, - { - "id": 111681971, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9911786, - 48.4982587 - ], - [ - 8.9939221, - 48.4982587 - ], - [ - 8.9939221, - 48.4994148 - ], - [ - 8.9911786, - 48.4994148 - ], - [ - 8.9911786, - 48.4982587 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 111681971 - } - }, - { - "id": 111667829, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5897075, - 50.7949768 - ], - [ - 5.5897075, - 50.7949768 - ], - [ - 5.5897075, - 50.7949768 - ], - [ - 5.5897075, - 50.7949768 - ], - [ - 5.5897075, - 50.7949768 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111667829 - } - }, - { - "id": 111667475, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5470926, - 50.8004764 - ], - [ - 5.6083864, - 50.8004764 - ], - [ - 5.6083864, - 50.8075128 - ], - [ - 5.5470926, - 50.8075128 - ], - [ - 5.5470926, - 50.8004764 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 111667475 - } - }, - { - "id": 111661888, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6696884, - 51.5499412 - ], - [ - 3.6696884, - 51.5499412 - ], - [ - 3.6696884, - 51.5499412 - ], - [ - 3.6696884, - 51.5499412 - ], - [ - 3.6696884, - 51.5499412 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111661888 - } - }, - { - "id": 111661657, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.3153271, - 43.5867996 - ], - [ - 1.3193176, - 43.5867996 - ], - [ - 1.3193176, - 43.5896584 - ], - [ - 1.3153271, - 43.5896584 - ], - [ - 1.3153271, - 43.5867996 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 111661657 - } - }, - { - "id": 111661403, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3892602, - 52.1504526 - ], - [ - 13.4098917, - 52.1504526 - ], - [ - 13.4098917, - 52.1733922 - ], - [ - 13.3892602, - 52.1733922 - ], - [ - 13.3892602, - 52.1504526 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 111661403 - } - }, - { - "id": 111658787, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4889955, - 51.0939912 - ], - [ - 3.4919526, - 51.0939912 - ], - [ - 3.4919526, - 51.0963232 - ], - [ - 3.4889955, - 51.0963232 - ], - [ - 3.4889955, - 51.0939912 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "verkeerdeborden", - "imagery": "Stamen.TonerLite", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 111658787 - } - }, - { - "id": 111653531, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.418731, - 46.5611344 - ], - [ - 12.4189789, - 46.5611344 - ], - [ - 12.4189789, - 46.5611422 - ], - [ - 12.418731, - 46.5611422 - ], - [ - 12.418731, - 46.5611344 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "campersite", - "imagery": "osm", - "language": "en", - "theme-creator": "joost schouppe" - }, - "id": 111653531 - } - }, - { - "id": 111649505, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6617839, - 51.5480097 - ], - [ - 3.669911, - 51.5480097 - ], - [ - 3.669911, - 51.550218 - ], - [ - 3.6617839, - 51.550218 - ], - [ - 3.6617839, - 51.5480097 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111649505 - } - }, - { - "id": 111646756, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.6432735, - -34.6524176 - ], - [ - -58.5777994, - -34.6524176 - ], - [ - -58.5777994, - -34.6424765 - ], - [ - -58.6432735, - -34.6424765 - ], - [ - -58.6432735, - -34.6524176 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 111646756 - } - }, - { - "id": 111643984, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4901089, - 51.094868 - ], - [ - 3.4901089, - 51.094868 - ], - [ - 3.4901089, - 51.094868 - ], - [ - 3.4901089, - 51.094868 - ], - [ - 3.4901089, - 51.094868 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "verkeerdeborden", - "imagery": "Stamen.TonerLite", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 111643984 - } - }, - { - "id": 111643468, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6138153, - 51.5031764 - ], - [ - 3.6138153, - 51.5031764 - ], - [ - 3.6138153, - 51.5031764 - ], - [ - 3.6138153, - 51.5031764 - ], - [ - 3.6138153, - 51.5031764 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 111643468 - } - }, - { - "id": 111641876, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.610653, - 51.4991892 - ], - [ - 3.610661, - 51.4991892 - ], - [ - 3.610661, - 51.4992042 - ], - [ - 3.610653, - 51.4992042 - ], - [ - 3.610653, - 51.4991892 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111641876 - } - }, - { - "id": 111637283, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3103573, - 50.8019612 - ], - [ - 4.4161263, - 50.8019612 - ], - [ - 4.4161263, - 50.8734789 - ], - [ - 4.3103573, - 50.8734789 - ], - [ - 4.3103573, - 50.8019612 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 111637283 - } - }, - { - "id": 111633229, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.4189789, - 46.5611344 - ], - [ - 12.4189789, - 46.5611344 - ], - [ - 12.4189789, - 46.5611344 - ], - [ - 12.4189789, - 46.5611344 - ], - [ - 12.4189789, - 46.5611344 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111633229 - } - }, - { - "id": 111629953, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 114.174196, - 22.27977 - ], - [ - 114.2079238, - 22.27977 - ], - [ - 114.2079238, - 22.3360942 - ], - [ - 114.174196, - 22.3360942 - ], - [ - 114.174196, - 22.27977 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "zh_Hant", - "theme-creator": "MapComplete" - }, - "id": 111629953 - } - }, - { - "id": 111616253, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.486953, - 51.0921709 - ], - [ - 3.4907586, - 51.0921709 - ], - [ - 3.4907586, - 51.0951733 - ], - [ - 3.486953, - 51.0951733 - ], - [ - 3.486953, - 51.0921709 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "verkeerdeborden", - "imagery": "Stamen.TonerLite", - "language": "nl", - "theme-creator": "Seppe Santens" - }, - "id": 111616253 - } - }, - { - "id": 111616148, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6024991, - 51.4638086 - ], - [ - 3.6024991, - 51.4638086 - ], - [ - 3.6024991, - 51.4638086 - ], - [ - 3.6024991, - 51.4638086 - ], - [ - 3.6024991, - 51.4638086 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "uk_addresses", - "imagery": "osm", - "language": "en", - "theme-creator": "Pieter Vander Vennet, Rob Nickerson, Russ Garrett" - }, - "id": 111616148 - } - }, - { - "id": 111610447, - "type": "Feature", - "geometry": null, - "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-23T17:48:51Z", - "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": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111610447 - } - }, - { - "id": 111610440, - "type": "Feature", - "geometry": null, - "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-23T17:48: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": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111610440 - } - }, - { - "id": 111610436, - "type": "Feature", - "geometry": null, - "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-23T17:48:44Z", - "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": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111610436 - } - }, - { - "id": 111610177, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6024991, - 51.4638086 - ], - [ - 3.604787, - 51.4638086 - ], - [ - 3.604787, - 51.4644286 - ], - [ - 3.6024991, - 51.4644286 - ], - [ - 3.6024991, - 51.4638086 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "food", - "imagery": "osm", - "language": "en" - }, - "id": 111610177 - } - }, - { - "id": 111610109, - "type": "Feature", - "geometry": null, - "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-23T17:42:59Z", - "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": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111610109 - } - }, - { - "id": 111610106, - "type": "Feature", - "geometry": null, - "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-23T17:42:55Z", - "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": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111610106 - } - }, - { - "id": 111602335, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 114.1731428, - 22.27577 - ], - [ - 114.1901899, - 22.27577 - ], - [ - 114.1901899, - 22.2852934 - ], - [ - 114.1731428, - 22.2852934 - ], - [ - 114.1731428, - 22.27577 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "aed", - "imagery": "osm", - "language": "zh_Hant", - "theme-creator": "MapComplete" - }, - "id": 111602335 - } - }, - { - "id": 111598470, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3720879, - 51.3659288 - ], - [ - 3.3720879, - 51.3659288 - ], - [ - 3.3720879, - 51.3659288 - ], - [ - 3.3720879, - 51.3659288 - ], - [ - 3.3720879, - 51.3659288 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "personal", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 111598470 - } - }, - { - "id": 111593064, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6024106, - 51.4636866 - ], - [ - 3.6026734, - 51.4636866 - ], - [ - 3.6026734, - 51.4637067 - ], - [ - 3.6024106, - 51.4637067 - ], - [ - 3.6024106, - 51.4636866 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "shops", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 111593064 - } - }, - { - "id": 111592346, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.73395, - -34.6636802 - ], - [ - -58.6350729, - -34.6636802 - ], - [ - -58.6350729, - -34.6501298 - ], - [ - -58.73395, - -34.6501298 - ], - [ - -58.73395, - -34.6636802 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "osm", - "language": "es" - }, - "id": 111592346 - } - }, - { - "id": 111590326, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5480019, - 51.4008757 - ], - [ - 3.6043069, - 51.4008757 - ], - [ - 3.6043069, - 51.4649048 - ], - [ - 3.5480019, - 51.4649048 - ], - [ - 3.5480019, - 51.4008757 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 111590326 - } - }, - { - "id": 111586791, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 114.1731428, - 22.2804844 - ], - [ - 114.2084027, - 22.2804844 - ], - [ - 114.2084027, - 22.3345996 - ], - [ - 114.1731428, - 22.3345996 - ], - [ - 114.1731428, - 22.2804844 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "aed", - "imagery": "osm", - "language": "zh_Hant", - "theme-creator": "MapComplete" - }, - "id": 111586791 - } - }, - { - "id": 111586701, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3765176, - 51.3491502 - ], - [ - 3.3765176, - 51.3491502 - ], - [ - 3.3765176, - 51.3491502 - ], - [ - 3.3765176, - 51.3491502 - ], - [ - 3.3765176, - 51.3491502 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "nature", - "imagery": "osm", - "language": "nl" - }, - "id": 111586701 - } - }, - { - "id": 111578266, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5321138, - 53.2403563 - ], - [ - 6.5321138, - 53.2403563 - ], - [ - 6.5321138, - 53.2403563 - ], - [ - 6.5321138, - 53.2403563 - ], - [ - 6.5321138, - 53.2403563 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111578266 - } - }, - { - "id": 111567998, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 114.1731428, - 22.2804844 - ], - [ - 114.1731428, - 22.2804844 - ], - [ - 114.1731428, - 22.2804844 - ], - [ - 114.1731428, - 22.2804844 - ], - [ - 114.1731428, - 22.2804844 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "aed", - "imagery": "osm", - "language": "zh_Hant", - "theme-creator": "MapComplete" - }, - "id": 111567998 - } - }, - { - "id": 111566313, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.3735313, - 47.6819544 - ], - [ - -122.370337, - 47.6819544 - ], - [ - -122.370337, - 47.6834153 - ], - [ - -122.3735313, - 47.6834153 - ], - [ - -122.3735313, - 47.6819544 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111566313 - } - }, - { - "id": 111552463, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.7164477, - 51.6949225 - ], - [ - 14.7164477, - 51.6949225 - ], - [ - 14.7164477, - 51.6949225 - ], - [ - 14.7164477, - 51.6949225 - ], - [ - 14.7164477, - 51.6949225 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.mobanisto.de", - "theme": "cyclenodes", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 111552463 - } - }, - { - "id": 111551829, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -7.8473496, - 37.0234219 - ], - [ - -7.8473468, - 37.0234219 - ], - [ - -7.8473468, - 37.0238951 - ], - [ - -7.8473496, - 37.0238951 - ], - [ - -7.8473496, - 37.0234219 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 111551829 - } - }, - { - "id": 111544245, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5959485, - -34.6446457 - ], - [ - -58.5959485, - -34.6446457 - ], - [ - -58.5959485, - -34.6446457 - ], - [ - -58.5959485, - -34.6446457 - ], - [ - -58.5959485, - -34.6446457 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 111544245 - } - }, - { - "id": 111539451, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5559393, - 53.2110468 - ], - [ - 6.5650034, - 53.2110468 - ], - [ - 6.5650034, - 53.230205 - ], - [ - 6.5559393, - 53.230205 - ], - [ - 6.5559393, - 53.2110468 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111539451 - } - }, - { - "id": 111533589, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2031691, - 51.2042501 - ], - [ - 3.2031691, - 51.2042501 - ], - [ - 3.2031691, - 51.2042501 - ], - [ - 3.2031691, - 51.2042501 - ], - [ - 3.2031691, - 51.2042501 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111533589 - } - }, - { - "id": 111520288, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4212754, - 52.4801482 - ], - [ - 13.4250314, - 52.4801482 - ], - [ - 13.4250314, - 52.4808216 - ], - [ - 13.4212754, - 52.4808216 - ], - [ - 13.4212754, - 52.4801482 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111520288 - } - }, - { - "id": 111518050, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.688298, - -32.8254292 - ], - [ - -70.688298, - -32.8254292 - ], - [ - -70.688298, - -32.8254292 - ], - [ - -70.688298, - -32.8254292 - ], - [ - -70.688298, - -32.8254292 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 111518050 - } - }, - { - "id": 111513975, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 24.9122179, - 60.1895 - ], - [ - 24.9122179, - 60.1895 - ], - [ - 24.9122179, - 60.1895 - ], - [ - 24.9122179, - 60.1895 - ], - [ - 24.9122179, - 60.1895 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111513975 - } - }, - { - "id": 111513314, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.2562975, - 44.5029373 - ], - [ - 11.2562975, - 44.5029373 - ], - [ - 11.2562975, - 44.5029373 - ], - [ - 11.2562975, - 44.5029373 - ], - [ - 11.2562975, - 44.5029373 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111513314 - } - }, - { - "id": 111509175, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5664233, - 53.0136591 - ], - [ - 6.5667755, - 53.0136591 - ], - [ - 6.5667755, - 53.0150368 - ], - [ - 6.5664233, - 53.0150368 - ], - [ - 6.5664233, - 53.0136591 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111509175 - } - }, - { - "id": 111505223, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.567979, - 53.0174388 - ], - [ - 6.5693579, - 53.0174388 - ], - [ - 6.5693579, - 53.0216154 - ], - [ - 6.567979, - 53.0216154 - ], - [ - 6.567979, - 53.0174388 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111505223 - } - }, - { - "id": 111494589, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4072711, - 49.007261 - ], - [ - 8.4072711, - 49.007261 - ], - [ - 8.4072711, - 49.007261 - ], - [ - 8.4072711, - 49.007261 - ], - [ - 8.4072711, - 49.007261 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111494589 - } - }, - { - "id": 111493338, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.9.12", - "comment": "Adding data with #MapComplete for theme #cycle_highways", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2021-09-21T12:07:50Z", - "reviewed_features": [], - "create": 0, - "modify": 2, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_highways", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "L'imaginaire" - }, - "id": 111493338 - } - }, - { - "id": 111492969, - "type": "Feature", - "geometry": null, - "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": "Not reported", - "imagery_used": "Not reported", - "date": "2021-09-21T12:00: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": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111492969 - } - }, - { - "id": 111490211, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4072711, - 49.007261 - ], - [ - 8.4072711, - 49.007261 - ], - [ - 8.4072711, - 49.007261 - ], - [ - 8.4072711, - 49.007261 - ], - [ - 8.4072711, - 49.007261 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111490211 - } - }, - { - "id": 111488940, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.1331659, - 54.0868768 - ], - [ - 12.1336635, - 54.0868768 - ], - [ - 12.1336635, - 54.0870984 - ], - [ - 12.1331659, - 54.0870984 - ], - [ - 12.1331659, - 54.0868768 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111488940 - } - }, - { - "id": 111470131, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7202242, - -34.6657032 - ], - [ - -58.7202242, - -34.6657032 - ], - [ - -58.7202242, - -34.6657032 - ], - [ - -58.7202242, - -34.6657032 - ], - [ - -58.7202242, - -34.6657032 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 111470131 - } - }, - { - "id": 111463022, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.597173, - 52.2901259 - ], - [ - 5.6252841, - 52.2901259 - ], - [ - 5.6252841, - 52.3143435 - ], - [ - 5.597173, - 52.3143435 - ], - [ - 5.597173, - 52.2901259 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "nl" - }, - "id": 111463022 - } - }, - { - "id": 111462801, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.9.12", - "comment": "Adding data with #MapComplete for theme #cycle_highways", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2021-09-20T18:53:49Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_highways", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "L'imaginaire" - }, - "id": 111462801 - } - }, - { - "id": 111459525, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6020218, - 52.2972272 - ], - [ - 5.6020548, - 52.2972272 - ], - [ - 5.6020548, - 52.2972296 - ], - [ - 5.6020218, - 52.2972296 - ], - [ - 5.6020218, - 52.2972272 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 111459525 - } - }, - { - "id": 111453809, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5976464, - 52.2986298 - ], - [ - 5.6252841, - 52.2986298 - ], - [ - 5.6252841, - 52.3143435 - ], - [ - 5.5976464, - 52.3143435 - ], - [ - 5.5976464, - 52.2986298 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "nl" - }, - "id": 111453809 - } - }, - { - "id": 111453185, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7404478, - 51.0363849 - ], - [ - 3.7404478, - 51.0363849 - ], - [ - 3.7404478, - 51.0363849 - ], - [ - 3.7404478, - 51.0363849 - ], - [ - 3.7404478, - 51.0363849 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111453185 - } - }, - { - "id": 111449737, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5972466, - 52.298851 - ], - [ - 5.5977389, - 52.298851 - ], - [ - 5.5977389, - 52.2990532 - ], - [ - 5.5972466, - 52.2990532 - ], - [ - 5.5972466, - 52.298851 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 111449737 - } - }, - { - "id": 111449699, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7562436, - -34.6636802 - ], - [ - -58.5773548, - -34.6636802 - ], - [ - -58.5773548, - -34.6425444 - ], - [ - -58.7562436, - -34.6425444 - ], - [ - -58.7562436, - -34.6636802 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "osm", - "language": "es" - }, - "id": 111449699 - } - }, - { - "id": 111448328, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.3453753, - 47.7209169 - ], - [ - 9.3887287, - 47.7209169 - ], - [ - 9.3887287, - 47.7303658 - ], - [ - 9.3453753, - 47.7303658 - ], - [ - 9.3453753, - 47.7209169 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 111448328 - } - }, - { - "id": 111448079, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.3911404, - 47.720274 - ], - [ - 9.3911404, - 47.720274 - ], - [ - 9.3911404, - 47.720274 - ], - [ - 9.3911404, - 47.720274 - ], - [ - 9.3911404, - 47.720274 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111448079 - } - }, - { - "id": 111447671, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.3520914, - 47.7179274 - ], - [ - 9.3955554, - 47.7179274 - ], - [ - 9.3955554, - 47.7297451 - ], - [ - 9.3520914, - 47.7297451 - ], - [ - 9.3520914, - 47.7179274 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111447671 - } - }, - { - "id": 111447194, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.3482144, - 47.7204448 - ], - [ - 9.3910728, - 47.7204448 - ], - [ - 9.3910728, - 47.7311877 - ], - [ - 9.3482144, - 47.7311877 - ], - [ - 9.3482144, - 47.7204448 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111447194 - } - }, - { - "id": 111440442, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6275044, - 52.3032591 - ], - [ - 5.6275044, - 52.3032591 - ], - [ - 5.6275044, - 52.3032591 - ], - [ - 5.6275044, - 52.3032591 - ], - [ - 5.6275044, - 52.3032591 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 111440442 - } - }, - { - "id": 111420509, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1353951, - 51.1396373 - ], - [ - 3.1398582, - 51.1396373 - ], - [ - 3.1398582, - 51.1435364 - ], - [ - 3.1353951, - 51.1435364 - ], - [ - 3.1353951, - 51.1396373 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111420509 - } - }, - { - "id": 111416193, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.222659, - 51.209238 - ], - [ - 3.222659, - 51.209238 - ], - [ - 3.222659, - 51.209238 - ], - [ - 3.222659, - 51.209238 - ], - [ - 3.222659, - 51.209238 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "food", - "imagery": "osm", - "language": "en" - }, - "id": 111416193 - } - }, - { - "id": 111412568, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5245171, - 52.9929022 - ], - [ - 6.5245171, - 52.9929022 - ], - [ - 6.5245171, - 52.9929022 - ], - [ - 6.5245171, - 52.9929022 - ], - [ - 6.5245171, - 52.9929022 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "charging_stations", - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 111412568 - } - }, - { - "id": 111407284, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.222659, - 51.209238 - ], - [ - 3.222659, - 51.209238 - ], - [ - 3.222659, - 51.209238 - ], - [ - 3.222659, - 51.209238 - ], - [ - 3.222659, - 51.209238 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "fritures", - "imagery": "osm", - "language": "en" - }, - "id": 111407284 - } - }, - { - "id": 111404954, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.29927, - 50.6150846 - ], - [ - 4.29927, - 50.6150846 - ], - [ - 4.29927, - 50.6150846 - ], - [ - 4.29927, - 50.6150846 - ], - [ - 4.29927, - 50.6150846 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 111404954 - } - }, - { - "id": 111404648, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7317681, - 51.0569944 - ], - [ - 3.7320802, - 51.0569944 - ], - [ - 3.7320802, - 51.0576065 - ], - [ - 3.7317681, - 51.0576065 - ], - [ - 3.7317681, - 51.0569944 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111404648 - } - }, - { - "id": 111404567, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0479041, - 50.6792284 - ], - [ - 3.0479175, - 50.6792284 - ], - [ - 3.0479175, - 50.6793525 - ], - [ - 3.0479041, - 50.6793525 - ], - [ - 3.0479041, - 50.6792284 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "fr" - }, - "id": 111404567 - } - }, - { - "id": 111402618, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.4050047, - 50.0729858 - ], - [ - 14.4050047, - 50.0729858 - ], - [ - 14.4050047, - 50.0729858 - ], - [ - 14.4050047, - 50.0729858 - ], - [ - 14.4050047, - 50.0729858 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 111402618 - } - }, - { - "id": 111402136, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7316341, - 51.0278925 - ], - [ - 3.7573003, - 51.0278925 - ], - [ - 3.7573003, - 51.0432282 - ], - [ - 3.7316341, - 51.0432282 - ], - [ - 3.7316341, - 51.0278925 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "CartoDB.Voyager", - "language": "nl" - }, - "id": 111402136 - } - }, - { - "id": 111401625, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2321506, - 51.2093851 - ], - [ - 3.2321506, - 51.2093851 - ], - [ - 3.2321506, - 51.2093851 - ], - [ - 3.2321506, - 51.2093851 - ], - [ - 3.2321506, - 51.2093851 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cafes_and_pubs", - "imagery": "osm", - "language": "en" - }, - "id": 111401625 - } - }, - { - "id": 111400987, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1564577, - 51.1262115 - ], - [ - 3.1564577, - 51.1262115 - ], - [ - 3.1564577, - 51.1262115 - ], - [ - 3.1564577, - 51.1262115 - ], - [ - 3.1564577, - 51.1262115 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111400987 - } - }, - { - "id": 111400257, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0930744, - 51.1192647 - ], - [ - 3.0930744, - 51.1192647 - ], - [ - 3.0930744, - 51.1192647 - ], - [ - 3.0930744, - 51.1192647 - ], - [ - 3.0930744, - 51.1192647 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111400257 - } - }, - { - "id": 111398954, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.2353759, - 52.7756562 - ], - [ - 13.2421301, - 52.7756562 - ], - [ - 13.2421301, - 52.7809845 - ], - [ - 13.2353759, - 52.7809845 - ], - [ - 13.2353759, - 52.7756562 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 111398954 - } - }, - { - "id": 111390901, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7355991, - 51.0374623 - ], - [ - 3.736063, - 51.0374623 - ], - [ - 3.736063, - 51.0375101 - ], - [ - 3.7355991, - 51.0375101 - ], - [ - 3.7355991, - 51.0374623 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "CartoDB.Voyager", - "language": "nl" - }, - "id": 111390901 - } - }, - { - "id": 111390442, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2705435, - 50.8277022 - ], - [ - 4.2705435, - 50.8277022 - ], - [ - 4.2705435, - 50.8277022 - ], - [ - 4.2705435, - 50.8277022 - ], - [ - 4.2705435, - 50.8277022 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "UrbISOrtho2020", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 111390442 - } - }, - { - "id": 111389713, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5571696, - 49.6103276 - ], - [ - 6.5571696, - 49.6103276 - ], - [ - 6.5571696, - 49.6103276 - ], - [ - 6.5571696, - 49.6103276 - ], - [ - 6.5571696, - 49.6103276 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111389713 - } - }, - { - "id": 111389141, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -9.7881961, - 52.2435555 - ], - [ - -9.7881961, - 52.2435555 - ], - [ - -9.7881961, - 52.2435555 - ], - [ - -9.7881961, - 52.2435555 - ], - [ - -9.7881961, - 52.2435555 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "food", - "imagery": "osm", - "language": "en" - }, - "id": 111389141 - } - }, - { - "id": 111387954, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2027721, - 51.1990855 - ], - [ - 3.2027721, - 51.1990855 - ], - [ - 3.2027721, - 51.1990855 - ], - [ - 3.2027721, - 51.1990855 - ], - [ - 3.2027721, - 51.1990855 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111387954 - } - }, - { - "id": 111386359, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2034172, - 51.202141 - ], - [ - 3.2034172, - 51.202141 - ], - [ - 3.2034172, - 51.202141 - ], - [ - 3.2034172, - 51.202141 - ], - [ - 3.2034172, - 51.202141 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "food", - "imagery": "osm", - "language": "en" - }, - "id": 111386359 - } - }, - { - "id": 111385266, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2618853, - 50.7487861 - ], - [ - 4.2618853, - 50.7487861 - ], - [ - 4.2618853, - 50.7487861 - ], - [ - 4.2618853, - 50.7487861 - ], - [ - 4.2618853, - 50.7487861 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 111385266 - } - }, - { - "id": 111385238, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2677808, - 50.7512502 - ], - [ - 4.2677808, - 50.7512502 - ], - [ - 4.2677808, - 50.7512502 - ], - [ - 4.2677808, - 50.7512502 - ], - [ - 4.2677808, - 50.7512502 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 111385238 - } - }, - { - "id": 111383281, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.4273669, - 41.7288688 - ], - [ - -4.4273669, - 41.7288688 - ], - [ - -4.4273669, - 41.7288688 - ], - [ - -4.4273669, - 41.7288688 - ], - [ - -4.4273669, - 41.7288688 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 111383281 - } - }, - { - "id": 111377814, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2677808, - 50.7512502 - ], - [ - 4.2677808, - 50.7512502 - ], - [ - 4.2677808, - 50.7512502 - ], - [ - 4.2677808, - 50.7512502 - ], - [ - 4.2677808, - 50.7512502 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 111377814 - } - }, - { - "id": 111375576, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6003753, - 52.2925577 - ], - [ - 5.6013582, - 52.2925577 - ], - [ - 5.6013582, - 52.2936052 - ], - [ - 5.6003753, - 52.2936052 - ], - [ - 5.6003753, - 52.2925577 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "nl" - }, - "id": 111375576 - } - }, - { - "id": 111375481, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6023348, - 52.2921324 - ], - [ - 5.6023348, - 52.2921324 - ], - [ - 5.6023348, - 52.2921324 - ], - [ - 5.6023348, - 52.2921324 - ], - [ - 5.6023348, - 52.2921324 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 111375481 - } - }, - { - "id": 111373023, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2027721, - 51.1990855 - ], - [ - 3.2027721, - 51.1990855 - ], - [ - 3.2027721, - 51.1990855 - ], - [ - 3.2027721, - 51.1990855 - ], - [ - 3.2027721, - 51.1990855 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111373023 - } - }, - { - "id": 111370272, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6051813, - 52.2941617 - ], - [ - 5.6283287, - 52.2941617 - ], - [ - 5.6283287, - 52.3048809 - ], - [ - 5.6051813, - 52.3048809 - ], - [ - 5.6051813, - 52.2941617 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 111370272 - } - }, - { - "id": 111369675, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.791245, - 51.8056583 - ], - [ - 13.8249069, - 51.8056583 - ], - [ - 13.8249069, - 51.8227833 - ], - [ - 13.791245, - 51.8227833 - ], - [ - 13.791245, - 51.8056583 - ] - ] - ] - }, - "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, - "metadata": { - "host": "www.waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 111369675 - } - }, - { - "id": 111368378, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2354994, - 51.2104591 - ], - [ - 3.2354994, - 51.2104591 - ], - [ - 3.2354994, - 51.2104591 - ], - [ - 3.2354994, - 51.2104591 - ], - [ - 3.2354994, - 51.2104591 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cafes_and_pubs", - "imagery": "osm", - "language": "en" - }, - "id": 111368378 - } - }, - { - "id": 111368251, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6248397, - 52.3047324 - ], - [ - 5.6250476, - 52.3047324 - ], - [ - 5.6250476, - 52.3048809 - ], - [ - 5.6248397, - 52.3048809 - ], - [ - 5.6248397, - 52.3047324 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "nl" - }, - "id": 111368251 - } - }, - { - "id": 111348820, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6049132, - 50.8536171 - ], - [ - 3.6101963, - 50.8536171 - ], - [ - 3.6101963, - 50.8574366 - ], - [ - 3.6049132, - 50.8574366 - ], - [ - 3.6049132, - 50.8536171 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cycle_infra", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 111348820 - } - }, - { - "id": 111346420, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5976104, - 52.2901259 - ], - [ - 5.6068378, - 52.2901259 - ], - [ - 5.6068378, - 52.2963486 - ], - [ - 5.5976104, - 52.2963486 - ], - [ - 5.5976104, - 52.2901259 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "nl" - }, - "id": 111346420 - } - }, - { - "id": 111344234, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5994761, - 52.2902542 - ], - [ - 5.605377, - 52.2902542 - ], - [ - 5.605377, - 52.2928391 - ], - [ - 5.5994761, - 52.2928391 - ], - [ - 5.5994761, - 52.2902542 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 111344234 - } - }, - { - "id": 111342876, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7214808, - 51.1517049 - ], - [ - 2.7219801, - 51.1517049 - ], - [ - 2.7219801, - 51.1519905 - ], - [ - 2.7214808, - 51.1519905 - ], - [ - 2.7214808, - 51.1517049 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "nl" - }, - "id": 111342876 - } - }, - { - "id": 111342467, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.721552, - 51.1500222 - ], - [ - 2.721552, - 51.1500222 - ], - [ - 2.721552, - 51.1500222 - ], - [ - 2.721552, - 51.1500222 - ], - [ - 2.721552, - 51.1500222 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "CartoDB.Voyager", - "language": "nl" - }, - "id": 111342467 - } - }, - { - "id": 111339749, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6237688, - 52.3035521 - ], - [ - 5.6250476, - 52.3035521 - ], - [ - 5.6250476, - 52.3048809 - ], - [ - 5.6237688, - 52.3048809 - ], - [ - 5.6237688, - 52.3035521 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "nl" - }, - "id": 111339749 - } - }, - { - "id": 111339700, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6238626, - 52.303647 - ], - [ - 5.6246803, - 52.303647 - ], - [ - 5.6246803, - 52.3046741 - ], - [ - 5.6238626, - 52.3046741 - ], - [ - 5.6238626, - 52.303647 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 111339700 - } - }, - { - "id": 111338740, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5981891, - -34.6451312 - ], - [ - -58.5981891, - -34.6451312 - ], - [ - -58.5981891, - -34.6451312 - ], - [ - -58.5981891, - -34.6451312 - ], - [ - -58.5981891, - -34.6451312 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 111338740 - } - }, - { - "id": 111333976, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7200416, - 51.1503089 - ], - [ - 2.7200416, - 51.1503089 - ], - [ - 2.7200416, - 51.1503089 - ], - [ - 2.7200416, - 51.1503089 - ], - [ - 2.7200416, - 51.1503089 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artwork", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 111333976 - } - }, - { - "id": 111333922, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7200701, - 51.1503336 - ], - [ - 2.7200701, - 51.1503336 - ], - [ - 2.7200701, - 51.1503336 - ], - [ - 2.7200701, - 51.1503336 - ], - [ - 2.7200701, - 51.1503336 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 111333922 - } - }, - { - "id": 111333368, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2451053, - 49.6538075 - ], - [ - 6.2451053, - 49.6538075 - ], - [ - 6.2451053, - 49.6538075 - ], - [ - 6.2451053, - 49.6538075 - ], - [ - 6.2451053, - 49.6538075 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111333368 - } - }, - { - "id": 111325851, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1805232, - 50.8088384 - ], - [ - 3.1805232, - 50.8088384 - ], - [ - 3.1805232, - 50.8088384 - ], - [ - 3.1805232, - 50.8088384 - ], - [ - 3.1805232, - 50.8088384 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "boomgaarden", - "imagery": "osm", - "language": "nl" - }, - "id": 111325851 - } - }, - { - "id": 111322697, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9757455, - 50.5237343 - ], - [ - 5.9757455, - 50.5237343 - ], - [ - 5.9757455, - 50.5237343 - ], - [ - 5.9757455, - 50.5237343 - ], - [ - 5.9757455, - 50.5237343 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 111322697 - } - }, - { - "id": 111321516, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3898126, - 51.0926497 - ], - [ - 3.3898126, - 51.0926497 - ], - [ - 3.3898126, - 51.0926497 - ], - [ - 3.3898126, - 51.0926497 - ], - [ - 3.3898126, - 51.0926497 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "verkeerdeborden", - "imagery": "Stamen.TonerLite", - "language": "en", - "theme-creator": "Seppe Santens" - }, - "id": 111321516 - } - }, - { - "id": 111320770, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7045733, - 51.0470775 - ], - [ - 13.7048445, - 51.0470775 - ], - [ - 13.7048445, - 51.048073 - ], - [ - 13.7045733, - 51.048073 - ], - [ - 13.7045733, - 51.0470775 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 111320770 - } - }, - { - "id": 111319839, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.739756, - 51.0363729 - ], - [ - 3.739756, - 51.0363729 - ], - [ - 3.739756, - 51.0363729 - ], - [ - 3.739756, - 51.0363729 - ], - [ - 3.739756, - 51.0363729 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111319839 - } - }, - { - "id": 111314842, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6018498, - 52.2910834 - ], - [ - 5.6022515, - 52.2910834 - ], - [ - 5.6022515, - 52.2912442 - ], - [ - 5.6018498, - 52.2912442 - ], - [ - 5.6018498, - 52.2910834 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "nl" - }, - "id": 111314842 - } - }, - { - "id": 111314701, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.599602, - 52.2953812 - ], - [ - 5.6002091, - 52.2953812 - ], - [ - 5.6002091, - 52.2954222 - ], - [ - 5.599602, - 52.2954222 - ], - [ - 5.599602, - 52.2953812 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "benches", - "imagery": "osm", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 111314701 - } - }, - { - "id": 111313536, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7300603, - -34.6643288 - ], - [ - -58.7290075, - -34.6643288 - ], - [ - -58.7290075, - -34.6643111 - ], - [ - -58.7300603, - -34.6643111 - ], - [ - -58.7300603, - -34.6643288 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 111313536 - } - }, - { - "id": 111294697, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.0990387, - 50.492759 - ], - [ - 6.1004266, - 50.492759 - ], - [ - 6.1004266, - 50.493429 - ], - [ - 6.0990387, - 50.493429 - ], - [ - 6.0990387, - 50.492759 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "parkings", - "imagery": "osm", - "language": "nl" - }, - "id": 111294697 - } - }, - { - "id": 111294660, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.0993594, - 50.4930008 - ], - [ - 6.0993594, - 50.4930008 - ], - [ - 6.0993594, - 50.4930008 - ], - [ - 6.0993594, - 50.4930008 - ], - [ - 6.0993594, - 50.4930008 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 111294660 - } - }, - { - "id": 111294637, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.0997725, - 50.4935417 - ], - [ - 6.0997725, - 50.4935417 - ], - [ - 6.0997725, - 50.4935417 - ], - [ - 6.0997725, - 50.4935417 - ], - [ - 6.0997725, - 50.4935417 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cafes_and_pubs", - "imagery": "osm", - "language": "nl" - }, - "id": 111294637 - } - }, - { - "id": 111294545, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.0993659, - 50.4933694 - ], - [ - 6.0994425, - 50.4933694 - ], - [ - 6.0994425, - 50.4934239 - ], - [ - 6.0993659, - 50.4934239 - ], - [ - 6.0993659, - 50.4933694 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 111294545 - } - }, - { - "id": 111294320, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.0994425, - 50.4933694 - ], - [ - 6.0994425, - 50.4933694 - ], - [ - 6.0994425, - 50.4933694 - ], - [ - 6.0994425, - 50.4933694 - ], - [ - 6.0994425, - 50.4933694 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 111294320 - } - }, - { - "id": 111294300, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7887785, - -34.6646679 - ], - [ - -58.5627723, - -34.6646679 - ], - [ - -58.5627723, - -34.6401363 - ], - [ - -58.7887785, - -34.6401363 - ], - [ - -58.7887785, - -34.6646679 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "osm", - "language": "es" - }, - "id": 111294300 - } - }, - { - "id": 111294140, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.1001184, - 50.4931905 - ], - [ - 6.1007097, - 50.4931905 - ], - [ - 6.1007097, - 50.4936835 - ], - [ - 6.1001184, - 50.4936835 - ], - [ - 6.1001184, - 50.4931905 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "nl" - }, - "id": 111294140 - } - }, - { - "id": 111286975, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7481022, - 51.0405844 - ], - [ - 3.7543974, - 51.0405844 - ], - [ - 3.7543974, - 51.0425238 - ], - [ - 3.7481022, - 51.0425238 - ], - [ - 3.7481022, - 51.0405844 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "bookcases", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 111286975 - } - }, - { - "id": 111260346, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.3707655, - -34.6402119 - ], - [ - -71.3707655, - -34.6402119 - ], - [ - -71.3707655, - -34.6402119 - ], - [ - -71.3707655, - -34.6402119 - ], - [ - -71.3707655, - -34.6402119 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 111260346 - } - }, - { - "id": 111259977, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.5769486, - 51.9740711 - ], - [ - 13.5769486, - 51.9740711 - ], - [ - 13.5769486, - 51.9740711 - ], - [ - 13.5769486, - 51.9740711 - ], - [ - 13.5769486, - 51.9740711 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 111259977 - } - }, - { - "id": 111250813, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.602631, - -33.4140376 - ], - [ - -70.602631, - -33.4140376 - ], - [ - -70.602631, - -33.4140376 - ], - [ - -70.602631, - -33.4140376 - ], - [ - -70.602631, - -33.4140376 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 111250813 - } - }, - { - "id": 111242072, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7092295, - 51.0253951 - ], - [ - 3.7092295, - 51.0253951 - ], - [ - 3.7092295, - 51.0253951 - ], - [ - 3.7092295, - 51.0253951 - ], - [ - 3.7092295, - 51.0253951 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111242072 - } - }, - { - "id": 111235562, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.347834, - 50.848361 - ], - [ - 4.3704124, - 50.848361 - ], - [ - 4.3704124, - 50.8646827 - ], - [ - 4.347834, - 50.8646827 - ], - [ - 4.347834, - 50.848361 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 111235562 - } - }, - { - "id": 111226938, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7749453, - 51.0656856 - ], - [ - 13.7792162, - 51.0656856 - ], - [ - 13.7792162, - 51.0670008 - ], - [ - 13.7749453, - 51.0670008 - ], - [ - 13.7749453, - 51.0656856 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 111226938 - } - }, - { - "id": 111218166, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9260321, - 51.1356921 - ], - [ - 4.9260321, - 51.1356921 - ], - [ - 4.9260321, - 51.1356921 - ], - [ - 4.9260321, - 51.1356921 - ], - [ - 4.9260321, - 51.1356921 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 111218166 - } - }, - { - "id": 111217068, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4561201, - 51.2092091 - ], - [ - 4.4591968, - 51.2092091 - ], - [ - 4.4591968, - 51.2096596 - ], - [ - 4.4561201, - 51.2096596 - ], - [ - 4.4561201, - 51.2092091 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 111217068 - } - }, - { - "id": 111212256, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3588331, - 44.544683 - ], - [ - 11.3588331, - 44.544683 - ], - [ - 11.3588331, - 44.544683 - ], - [ - 11.3588331, - 44.544683 - ], - [ - 11.3588331, - 44.544683 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111212256 - } - }, - { - "id": 111196945, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5944818, - 52.283368 - ], - [ - 5.6209434, - 52.283368 - ], - [ - 5.6209434, - 52.3010718 - ], - [ - 5.5944818, - 52.3010718 - ], - [ - 5.5944818, - 52.283368 - ] - ] - ] - }, - "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, - "metadata": { - "host": "tauvic.github.io", - "path": "MapComplete/dist/", - "theme": "personal", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 111196945 - } - }, - { - "id": 111196543, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7405763, - 51.0356476 - ], - [ - 3.7405763, - 51.0356476 - ], - [ - 3.7405763, - 51.0356476 - ], - [ - 3.7405763, - 51.0356476 - ], - [ - 3.7405763, - 51.0356476 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111196543 - } - }, - { - "id": 111193678, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6019223, - 52.2947021 - ], - [ - 5.6019223, - 52.2947021 - ], - [ - 5.6019223, - 52.2947021 - ], - [ - 5.6019223, - 52.2947021 - ], - [ - 5.6019223, - 52.2947021 - ] - ] - ] - }, - "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, - "metadata": { - "host": "tauvic.github.io", - "path": "MapComplete/dist/", - "theme": "benches", - "imagery": "osm", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 111193678 - } - }, - { - "id": 111193497, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6145472, - 52.3012908 - ], - [ - 5.6145472, - 52.3012908 - ], - [ - 5.6145472, - 52.3012908 - ], - [ - 5.6145472, - 52.3012908 - ], - [ - 5.6145472, - 52.3012908 - ] - ] - ] - }, - "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, - "metadata": { - "host": "tauvic.github.io", - "path": "MapComplete/dist/", - "theme": "toilets", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 111193497 - } - }, - { - "id": 111191715, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4189665, - 51.2179647 - ], - [ - 4.4189665, - 51.2179647 - ], - [ - 4.4189665, - 51.2179647 - ], - [ - 4.4189665, - 51.2179647 - ], - [ - 4.4189665, - 51.2179647 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "food", - "imagery": "osm", - "language": "nl" - }, - "id": 111191715 - } - }, - { - "id": 111190227, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7405658, - 51.0356252 - ], - [ - 3.7405658, - 51.0356252 - ], - [ - 3.7405658, - 51.0356252 - ], - [ - 3.7405658, - 51.0356252 - ], - [ - 3.7405658, - 51.0356252 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111190227 - } - }, - { - "id": 111170420, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.597578, - 52.2948072 - ], - [ - 5.6085741, - 52.2948072 - ], - [ - 5.6085741, - 52.29726 - ], - [ - 5.597578, - 52.29726 - ], - [ - 5.597578, - 52.2948072 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 111170420 - } - }, - { - "id": 111170319, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5976104, - 52.2942136 - ], - [ - 5.5981207, - 52.2942136 - ], - [ - 5.5981207, - 52.2947471 - ], - [ - 5.5976104, - 52.2947471 - ], - [ - 5.5976104, - 52.2942136 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "nl" - }, - "id": 111170319 - } - }, - { - "id": 111170254, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.3846322, - 47.6757187 - ], - [ - -122.381982, - 47.6757187 - ], - [ - -122.381982, - 47.6802161 - ], - [ - -122.3846322, - 47.6802161 - ], - [ - -122.3846322, - 47.6757187 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111170254 - } - }, - { - "id": 111168885, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.6109474, - -34.6469626 - ], - [ - -58.5631424, - -34.6469626 - ], - [ - -58.5631424, - -34.6401771 - ], - [ - -58.6109474, - -34.6401771 - ], - [ - -58.6109474, - -34.6469626 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 111168885 - } - }, - { - "id": 111163792, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.1243227, - 50.4462767 - ], - [ - 6.1243227, - 50.4462767 - ], - [ - 6.1243227, - 50.4462767 - ], - [ - 6.1243227, - 50.4462767 - ], - [ - 6.1243227, - 50.4462767 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "charging_stations", - "imagery": "CartoDB.Voyager", - "language": "nl" - }, - "id": 111163792 - } - }, - { - "id": 111160670, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5989934, - 52.2948622 - ], - [ - 5.6005467, - 52.2948622 - ], - [ - 5.6005467, - 52.295543 - ], - [ - 5.5989934, - 52.295543 - ], - [ - 5.5989934, - 52.2948622 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "playgrounds", - "imagery": "osm", - "language": "nl" - }, - "id": 111160670 - } - }, - { - "id": 111147907, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5973577, - 52.2936786 - ], - [ - 5.599602, - 52.2936786 - ], - [ - 5.599602, - 52.2954124 - ], - [ - 5.5973577, - 52.2954124 - ], - [ - 5.5973577, - 52.2936786 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "benches", - "imagery": "osm", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 111147907 - } - }, - { - "id": 111146318, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.6561614, - -34.6565154 - ], - [ - -58.5731015, - -34.6565154 - ], - [ - -58.5731015, - -34.6418211 - ], - [ - -58.6561614, - -34.6418211 - ], - [ - -58.6561614, - -34.6565154 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "EsriWorldImageryClarity", - "language": "es" - }, - "id": 111146318 - } - }, - { - "id": 111142872, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2482383, - 51.2085151 - ], - [ - 3.2482383, - 51.2085151 - ], - [ - 3.2482383, - 51.2085151 - ], - [ - 3.2482383, - 51.2085151 - ], - [ - 3.2482383, - 51.2085151 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "shops", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 111142872 - } - }, - { - "id": 111137609, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.287296, - 50.8617505 - ], - [ - 4.3057176, - 50.8617505 - ], - [ - 4.3057176, - 50.8697755 - ], - [ - 4.287296, - 50.8697755 - ], - [ - 4.287296, - 50.8617505 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 111137609 - } - }, - { - "id": 111136328, - "type": "Feature", - "geometry": null, - "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-13T10:19:34Z", - "reviewed_features": [], - "create": 0, - "modify": 2, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_highways", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "L'imaginaire" - }, - "id": 111136328 - } - }, - { - "id": 111135802, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 114.18111, - 22.2797 - ], - [ - 114.18111, - 22.2797 - ], - [ - 114.18111, - 22.2797 - ], - [ - 114.18111, - 22.2797 - ], - [ - 114.18111, - 22.2797 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "toilets", - "imagery": "osm", - "language": "zh_Hant", - "theme-creator": "MapComplete" - }, - "id": 111135802 - } - }, - { - "id": 111135600, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 114.1815168, - 22.2796347 - ], - [ - 114.1815168, - 22.2796347 - ], - [ - 114.1815168, - 22.2796347 - ], - [ - 114.1815168, - 22.2796347 - ], - [ - 114.1815168, - 22.2796347 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "aed", - "imagery": "osm", - "language": "zh_Hant", - "theme-creator": "MapComplete" - }, - "id": 111135600 - } - }, - { - "id": 111134364, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3754393, - 50.8682106 - ], - [ - 4.3754393, - 50.8682106 - ], - [ - 4.3754393, - 50.8682106 - ], - [ - 4.3754393, - 50.8682106 - ], - [ - 4.3754393, - 50.8682106 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artwork", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111134364 - } - }, - { - "id": 111117005, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -99.3193902, - 38.8883134 - ], - [ - -99.3099697, - 38.8883134 - ], - [ - -99.3099697, - 38.8934848 - ], - [ - -99.3193902, - 38.8934848 - ], - [ - -99.3193902, - 38.8883134 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "imagery": "osm", - "language": "en" - }, - "id": 111117005 - } - }, - { - "id": 111111029, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5993645, - 52.2879162 - ], - [ - 5.6000012, - 52.2879162 - ], - [ - 5.6000012, - 52.2886677 - ], - [ - 5.5993645, - 52.2886677 - ], - [ - 5.5993645, - 52.2879162 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "parkings", - "imagery": "osm", - "language": "en" - }, - "id": 111111029 - } - }, - { - "id": 111110599, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5968428, - 52.2917452 - ], - [ - 5.6067972, - 52.2917452 - ], - [ - 5.6067972, - 52.2962527 - ], - [ - 5.5968428, - 52.2962527 - ], - [ - 5.5968428, - 52.2917452 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 111110599 - } - }, - { - "id": 111103404, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.4369954, - 51.8141932 - ], - [ - 14.4370061, - 51.8141932 - ], - [ - 14.4370061, - 51.8141998 - ], - [ - 14.4369954, - 51.8141998 - ], - [ - 14.4369954, - 51.8141932 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 111103404 - } - }, - { - "id": 111102661, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 114.1731428, - 22.2796347 - ], - [ - 114.1815168, - 22.2796347 - ], - [ - 114.1815168, - 22.2804844 - ], - [ - 114.1731428, - 22.2804844 - ], - [ - 114.1731428, - 22.2796347 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111102661 - } - }, - { - "id": 111100315, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2373088, - 45.4181022 - ], - [ - 9.2373088, - 45.4181022 - ], - [ - 9.2373088, - 45.4181022 - ], - [ - 9.2373088, - 45.4181022 - ], - [ - 9.2373088, - 45.4181022 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111100315 - } - }, - { - "id": 111098043, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.4928122, - 51.8572129 - ], - [ - 14.5318812, - 51.8572129 - ], - [ - 14.5318812, - 51.8939985 - ], - [ - 14.4928122, - 51.8939985 - ], - [ - 14.4928122, - 51.8572129 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 111098043 - } - }, - { - "id": 111097646, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2366431, - 51.2111465 - ], - [ - 3.2366431, - 51.2111465 - ], - [ - 3.2366431, - 51.2111465 - ], - [ - 3.2366431, - 51.2111465 - ], - [ - 3.2366431, - 51.2111465 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "shops", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 111097646 - } - }, - { - "id": 111096899, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.5386431, - 51.8738211 - ], - [ - 14.5454532, - 51.8738211 - ], - [ - 14.5454532, - 51.876852 - ], - [ - 14.5386431, - 51.876852 - ], - [ - 14.5386431, - 51.8738211 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 111096899 - } - }, - { - "id": 111096467, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.5393056, - 51.8731051 - ], - [ - 14.542813, - 51.8731051 - ], - [ - 14.542813, - 51.8739889 - ], - [ - 14.5393056, - 51.8739889 - ], - [ - 14.5393056, - 51.8731051 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 111096467 - } - }, - { - "id": 111095368, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.7714675, - 43.4689747 - ], - [ - -3.7714675, - 43.4689747 - ], - [ - -3.7714675, - 43.4689747 - ], - [ - -3.7714675, - 43.4689747 - ], - [ - -3.7714675, - 43.4689747 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 111095368 - } - }, - { - "id": 111094818, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2223244, - 45.4947183 - ], - [ - 9.2227355, - 45.4947183 - ], - [ - 9.2227355, - 45.495164 - ], - [ - 9.2223244, - 45.495164 - ], - [ - 9.2223244, - 45.4947183 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111094818 - } - }, - { - "id": 111094780, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7539279, - 53.086798 - ], - [ - 13.7795269, - 53.086798 - ], - [ - 13.7795269, - 53.1739327 - ], - [ - 13.7539279, - 53.1739327 - ], - [ - 13.7539279, - 53.086798 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "EsriWorldImagery", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 111094780 - } - }, - { - "id": 111093714, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.5314413, - 51.8783411 - ], - [ - 14.5563161, - 51.8783411 - ], - [ - 14.5563161, - 51.8941177 - ], - [ - 14.5314413, - 51.8941177 - ], - [ - 14.5314413, - 51.8783411 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 111093714 - } - }, - { - "id": 111092379, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3207001, - 44.4930521 - ], - [ - 11.3517049, - 44.4930521 - ], - [ - 11.3517049, - 44.4977599 - ], - [ - 11.3207001, - 44.4977599 - ], - [ - 11.3207001, - 44.4930521 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111092379 - } - }, - { - "id": 111085979, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.248914, - 48.1781821 - ], - [ - 11.248914, - 48.1781821 - ], - [ - 11.248914, - 48.1781821 - ], - [ - 11.248914, - 48.1781821 - ], - [ - 11.248914, - 48.1781821 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 111085979 - } - }, - { - "id": 111085753, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7751415, - 52.8142373 - ], - [ - 13.9007628, - 52.8142373 - ], - [ - 13.9007628, - 52.8688059 - ], - [ - 13.7751415, - 52.8688059 - ], - [ - 13.7751415, - 52.8142373 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 111085753 - } - }, - { - "id": 111084753, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5992362, - 52.2901259 - ], - [ - 5.6074757, - 52.2901259 - ], - [ - 5.6074757, - 52.2964074 - ], - [ - 5.5992362, - 52.2964074 - ], - [ - 5.5992362, - 52.2901259 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 111084753 - } - }, - { - "id": 111084433, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6065284, - 52.2961897 - ], - [ - 5.6065284, - 52.2961897 - ], - [ - 5.6065284, - 52.2961897 - ], - [ - 5.6065284, - 52.2961897 - ], - [ - 5.6065284, - 52.2961897 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 111084433 - } - }, - { - "id": 111076012, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.818717, - 51.0790087 - ], - [ - 4.8187336, - 51.0790087 - ], - [ - 4.8187336, - 51.0790291 - ], - [ - 4.818717, - 51.0790291 - ], - [ - 4.818717, - 51.0790087 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 111076012 - } - }, - { - "id": 111070392, - "type": "Feature", - "geometry": null, - "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-11T17:00:47Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_highways", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "L'imaginaire" - }, - "id": 111070392 - } - }, - { - "id": 111062799, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9359699, - 49.9109289 - ], - [ - 5.9359699, - 49.9109289 - ], - [ - 5.9359699, - 49.9109289 - ], - [ - 5.9359699, - 49.9109289 - ], - [ - 5.9359699, - 49.9109289 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111062799 - } - }, - { - "id": 111053808, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6064576, - 52.2961684 - ], - [ - 5.6068378, - 52.2961684 - ], - [ - 5.6068378, - 52.2963486 - ], - [ - 5.6064576, - 52.2963486 - ], - [ - 5.6064576, - 52.2961684 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "en", - "theme-creator": "Florian Edelmann" - }, - "id": 111053808 - } - }, - { - "id": 111052222, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6028763, - 52.2866403 - ], - [ - 5.6357183, - 52.2866403 - ], - [ - 5.6357183, - 52.300012 - ], - [ - 5.6028763, - 52.300012 - ], - [ - 5.6028763, - 52.2866403 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 111052222 - } - }, - { - "id": 111051777, - "type": "Feature", - "geometry": null, - "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-11T07:43:32Z", - "reviewed_features": [], - "create": 0, - "modify": 5, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_highways", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "L'imaginaire" - }, - "id": 111051777 - } - }, - { - "id": 111040403, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4196289, - 51.1951284 - ], - [ - 4.4196289, - 51.1951284 - ], - [ - 4.4196289, - 51.1951284 - ], - [ - 4.4196289, - 51.1951284 - ], - [ - 4.4196289, - 51.1951284 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 111040403 - } - }, - { - "id": 111039478, - "type": "Feature", - "geometry": null, - "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-10T19:40:24Z", - "reviewed_features": [], - "create": 0, - "modify": 15, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_highways", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "L'imaginaire" - }, - "id": 111039478 - } - }, - { - "id": 111036631, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1851618, - 50.9732059 - ], - [ - 4.1919839, - 50.9732059 - ], - [ - 4.1919839, - 50.9756752 - ], - [ - 4.1851618, - 50.9756752 - ], - [ - 4.1851618, - 50.9732059 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_highways", - "imagery": "osm", - "language": "en", - "theme-creator": "L'imaginaire" - }, - "id": 111036631 - } - }, - { - "id": 111033920, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2269891, - 41.4341847 - ], - [ - 2.2331867, - 41.4341847 - ], - [ - 2.2331867, - 41.4433109 - ], - [ - 2.2269891, - 41.4433109 - ], - [ - 2.2269891, - 41.4341847 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 111033920 - } - }, - { - "id": 111033762, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2276474, - 41.4405183 - ], - [ - 2.2277228, - 41.4405183 - ], - [ - 2.2277228, - 41.4405682 - ], - [ - 2.2276474, - 41.4405682 - ], - [ - 2.2276474, - 41.4405183 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 111033762 - } - }, - { - "id": 111033021, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7995979, - 52.8336233 - ], - [ - 13.8279408, - 52.8336233 - ], - [ - 13.8279408, - 52.8428343 - ], - [ - 13.7995979, - 52.8428343 - ], - [ - 13.7995979, - 52.8336233 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 111033021 - } - }, - { - "id": 111032813, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6929621, - 51.0447021 - ], - [ - 3.7064963, - 51.0447021 - ], - [ - 3.7064963, - 51.0493949 - ], - [ - 3.6929621, - 51.0493949 - ], - [ - 3.6929621, - 51.0447021 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_highways", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "L'imaginaire" - }, - "id": 111032813 - } - }, - { - "id": 111031895, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0490357, - 51.1204316 - ], - [ - 5.0490357, - 51.1204316 - ], - [ - 5.0490357, - 51.1204316 - ], - [ - 5.0490357, - 51.1204316 - ], - [ - 5.0490357, - 51.1204316 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fritures", - "imagery": "osm", - "language": "nl" - }, - "id": 111031895 - } - }, - { - "id": 111023660, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7825639, - -34.6591067 - ], - [ - -58.5324445, - -34.6591067 - ], - [ - -58.5324445, - -34.6393761 - ], - [ - -58.7825639, - -34.6393761 - ], - [ - -58.7825639, - -34.6591067 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "osm", - "language": "es" - }, - "id": 111023660 - } - }, - { - "id": 111021565, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1368676, - 50.7019315 - ], - [ - 3.1370071, - 50.7019315 - ], - [ - 3.1370071, - 50.7019416 - ], - [ - 3.1368676, - 50.7019416 - ], - [ - 3.1368676, - 50.7019315 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "fr" - }, - "id": 111021565 - } - }, - { - "id": 111017331, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7881224, - 50.8684567 - ], - [ - 4.7881224, - 50.8684567 - ], - [ - 4.7881224, - 50.8684567 - ], - [ - 4.7881224, - 50.8684567 - ], - [ - 4.7881224, - 50.8684567 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "imagery": "osm", - "language": "nl", - "theme-creator": "Florian Edelmann" - }, - "id": 111017331 - } - }, - { - "id": 111005136, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7412524, - 51.0369889 - ], - [ - 3.7412524, - 51.0369889 - ], - [ - 3.7412524, - 51.0369889 - ], - [ - 3.7412524, - 51.0369889 - ], - [ - 3.7412524, - 51.0369889 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 111005136 - } - }, - { - "id": 111000887, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -72.3982218, - -36.3902178 - ], - [ - -72.3982218, - -36.3902178 - ], - [ - -72.3982218, - -36.3902178 - ], - [ - -72.3982218, - -36.3902178 - ], - [ - -72.3982218, - -36.3902178 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 111000887 - } - }, - { - "id": 110995306, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1085823, - 51.2270472 - ], - [ - 3.2097294, - 51.2270472 - ], - [ - 3.2097294, - 51.2961086 - ], - [ - 3.1085823, - 51.2961086 - ], - [ - 3.1085823, - 51.2270472 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "observation_towers", - "imagery": "osm", - "language": "nl" - }, - "id": 110995306 - } - }, - { - "id": 110988806, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0015773, - 51.2654787 - ], - [ - 3.0015773, - 51.2654787 - ], - [ - 3.0015773, - 51.2654787 - ], - [ - 3.0015773, - 51.2654787 - ], - [ - 3.0015773, - 51.2654787 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "observation_towers", - "imagery": "osm", - "language": "nl" - }, - "id": 110988806 - } - }, - { - "id": 110988456, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2244585, - 41.4399507 - ], - [ - 2.2291691, - 41.4399507 - ], - [ - 2.2291691, - 41.443965 - ], - [ - 2.2244585, - 41.443965 - ], - [ - 2.2244585, - 41.4399507 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 110988456 - } - }, - { - "id": 110983393, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.7192157, - 47.2388538 - ], - [ - 8.7192157, - 47.2388538 - ], - [ - 8.7192157, - 47.2388538 - ], - [ - 8.7192157, - 47.2388538 - ], - [ - 8.7192157, - 47.2388538 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 110983393 - } - }, - { - "id": 110980752, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7388545, - 51.0367951 - ], - [ - 3.7388545, - 51.0367951 - ], - [ - 3.7388545, - 51.0367951 - ], - [ - 3.7388545, - 51.0367951 - ], - [ - 3.7388545, - 51.0367951 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110980752 - } - }, - { - "id": 110976587, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7665745, - -34.6655344 - ], - [ - -58.5349322, - -34.6655344 - ], - [ - -58.5349322, - -34.6396023 - ], - [ - -58.7665745, - -34.6396023 - ], - [ - -58.7665745, - -34.6655344 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "osm", - "language": "es" - }, - "id": 110976587 - } - }, - { - "id": 110968267, - "type": "Feature", - "geometry": null, - "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-09T10:39:51Z", - "reviewed_features": [], - "create": 0, - "modify": 2, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_highways", - "imagery": "osm", - "language": "en", - "theme-creator": "L'imaginaire" - }, - "id": 110968267 - } - }, - { - "id": 110967312, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.4941165, - 53.8026768 - ], - [ - -1.4922711, - 53.8026768 - ], - [ - -1.4922711, - 53.8149924 - ], - [ - -1.4941165, - 53.8149924 - ], - [ - -1.4941165, - 53.8026768 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110967312 - } - }, - { - "id": 110964829, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3861078, - 43.8555804 - ], - [ - 3.3861078, - 43.8555804 - ], - [ - 3.3861078, - 43.8555804 - ], - [ - 3.3861078, - 43.8555804 - ], - [ - 3.3861078, - 43.8555804 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110964829 - } - }, - { - "id": 110959933, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4177485, - 43.8529857 - ], - [ - 3.4177485, - 43.8529857 - ], - [ - 3.4177485, - 43.8529857 - ], - [ - 3.4177485, - 43.8529857 - ], - [ - 3.4177485, - 43.8529857 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110959933 - } - }, - { - "id": 110957825, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7111453, - 51.0284477 - ], - [ - 13.7249234, - 51.0284477 - ], - [ - 13.7249234, - 51.0334761 - ], - [ - 13.7111453, - 51.0334761 - ], - [ - 13.7111453, - 51.0284477 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110957825 - } - }, - { - "id": 110956858, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3920824, - 50.873837 - ], - [ - 4.3920824, - 50.873837 - ], - [ - 4.3920824, - 50.873837 - ], - [ - 4.3920824, - 50.873837 - ], - [ - 4.3920824, - 50.873837 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "UrbISOrtho", - "language": "en" - }, - "id": 110956858 - } - }, - { - "id": 110940675, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3480529, - 51.0539129 - ], - [ - 3.7203626, - 51.0539129 - ], - [ - 3.7203626, - 51.3602142 - ], - [ - 3.3480529, - 51.3602142 - ], - [ - 3.3480529, - 51.0539129 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "binoculars", - "imagery": "osm", - "language": "nl" - }, - "id": 110940675 - } - }, - { - "id": 110939442, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.3428129, - 47.6102151 - ], - [ - -122.342812, - 47.6102151 - ], - [ - -122.342812, - 47.6102151 - ], - [ - -122.3428129, - 47.6102151 - ], - [ - -122.3428129, - 47.6102151 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110939442 - } - }, - { - "id": 110936930, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -7.663269, - 37.1183458 - ], - [ - -7.663269, - 37.1183458 - ], - [ - -7.663269, - 37.1183458 - ], - [ - -7.663269, - 37.1183458 - ], - [ - -7.663269, - 37.1183458 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 110936930 - } - }, - { - "id": 110926703, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7353734, - 51.036409 - ], - [ - 3.7363091, - 51.036409 - ], - [ - 3.7363091, - 51.0374223 - ], - [ - 3.7353734, - 51.0374223 - ], - [ - 3.7353734, - 51.036409 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110926703 - } - }, - { - "id": 110920216, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7597403, - -34.6588894 - ], - [ - -58.7597403, - -34.6588894 - ], - [ - -58.7597403, - -34.6588894 - ], - [ - -58.7597403, - -34.6588894 - ], - [ - -58.7597403, - -34.6588894 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "osm", - "language": "es" - }, - "id": 110920216 - } - }, - { - "id": 110919484, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2506443, - -39.8106972 - ], - [ - -73.2506443, - -39.8106972 - ], - [ - -73.2506443, - -39.8106972 - ], - [ - -73.2506443, - -39.8106972 - ], - [ - -73.2506443, - -39.8106972 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "osm", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 110919484 - } - }, - { - "id": 110914135, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3572324, - 50.9115312 - ], - [ - 4.9349119, - 50.9115312 - ], - [ - 4.9349119, - 51.317037 - ], - [ - 4.3572324, - 51.317037 - ], - [ - 4.3572324, - 50.9115312 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_highways", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "L'imaginaire" - }, - "id": 110914135 - } - }, - { - "id": 110908896, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5104322, - 43.8947941 - ], - [ - 3.5104322, - 43.8947941 - ], - [ - 3.5104322, - 43.8947941 - ], - [ - 3.5104322, - 43.8947941 - ], - [ - 3.5104322, - 43.8947941 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110908896 - } - }, - { - "id": 110906828, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2243449, - 51.2102969 - ], - [ - 3.2243449, - 51.2102969 - ], - [ - 3.2243449, - 51.2102969 - ], - [ - 3.2243449, - 51.2102969 - ], - [ - 3.2243449, - 51.2102969 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "shops", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110906828 - } - }, - { - "id": 110901893, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.704501, - 51.0438969 - ], - [ - 13.7050815, - 51.0438969 - ], - [ - 13.7050815, - 51.0444178 - ], - [ - 13.704501, - 51.0444178 - ], - [ - 13.704501, - 51.0438969 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110901893 - } - }, - { - "id": 110901351, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2772333, - 50.8331293 - ], - [ - 3.4087977, - 50.8331293 - ], - [ - 3.4087977, - 50.8981259 - ], - [ - 3.2772333, - 50.8981259 - ], - [ - 3.2772333, - 50.8331293 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_highways", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "L'imaginaire" - }, - "id": 110901351 - } - }, - { - "id": 110901164, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7044853, - 51.0448679 - ], - [ - 13.7049804, - 51.0448679 - ], - [ - 13.7049804, - 51.0487701 - ], - [ - 13.7044853, - 51.0487701 - ], - [ - 13.7044853, - 51.0448679 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110901164 - } - }, - { - "id": 110900957, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7038741, - 51.0487701 - ], - [ - 13.7045143, - 51.0487701 - ], - [ - 13.7045143, - 51.050382 - ], - [ - 13.7038741, - 51.050382 - ], - [ - 13.7038741, - 51.0487701 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110900957 - } - }, - { - "id": 110900277, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6969395, - 51.0491805 - ], - [ - 13.7038741, - 51.0491805 - ], - [ - 13.7038741, - 51.0517102 - ], - [ - 13.6969395, - 51.0517102 - ], - [ - 13.6969395, - 51.0491805 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110900277 - } - }, - { - "id": 110899591, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6913216, - 51.0514929 - ], - [ - 13.7024647, - 51.0514929 - ], - [ - 13.7024647, - 51.0536912 - ], - [ - 13.6913216, - 51.0536912 - ], - [ - 13.6913216, - 51.0514929 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "timor" - }, - "id": 110899591 - } - }, - { - "id": 110883035, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4273403, - 50.9259408 - ], - [ - 4.4291782, - 50.9259408 - ], - [ - 4.4291782, - 50.9276447 - ], - [ - 4.4273403, - 50.9276447 - ], - [ - 4.4273403, - 50.9259408 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclestreets", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110883035 - } - }, - { - "id": 110880524, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.736063, - 51.0342157 - ], - [ - 3.7462159, - 51.0342157 - ], - [ - 3.7462159, - 51.0417968 - ], - [ - 3.736063, - 51.0417968 - ], - [ - 3.736063, - 51.0342157 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "charging_stations", - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 110880524 - } - }, - { - "id": 110878740, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.3707589, - -34.6402759 - ], - [ - -71.3707589, - -34.6402759 - ], - [ - -71.3707589, - -34.6402759 - ], - [ - -71.3707589, - -34.6402759 - ], - [ - -71.3707589, - -34.6402759 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "Mapbox", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 110878740 - } - }, - { - "id": 110877207, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4443896, - 51.1126056 - ], - [ - 3.4443896, - 51.1126056 - ], - [ - 3.4443896, - 51.1126056 - ], - [ - 3.4443896, - 51.1126056 - ], - [ - 3.4443896, - 51.1126056 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "food", - "imagery": "osm", - "language": "en" - }, - "id": 110877207 - } - }, - { - "id": 110875916, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.687333, - 51.0510463 - ], - [ - 13.7042739, - 51.0510463 - ], - [ - 13.7042739, - 51.0579507 - ], - [ - 13.687333, - 51.0579507 - ], - [ - 13.687333, - 51.0510463 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "timor" - }, - "id": 110875916 - } - }, - { - "id": 110875675, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.1404664, - 44.8348664 - ], - [ - 11.5056645, - 44.8348664 - ], - [ - 11.5056645, - 44.8737844 - ], - [ - 11.1404664, - 44.8737844 - ], - [ - 11.1404664, - 44.8348664 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110875675 - } - }, - { - "id": 110875109, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2247563, - 41.435389 - ], - [ - 2.2300808, - 41.435389 - ], - [ - 2.2300808, - 41.4427751 - ], - [ - 2.2247563, - 41.4427751 - ], - [ - 2.2247563, - 41.435389 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "imagery": "HDM_HOT", - "language": "ca" - }, - "id": 110875109 - } - }, - { - "id": 110874001, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5721611, - 53.0176086 - ], - [ - 6.5727619, - 53.0176086 - ], - [ - 6.5727619, - 53.025998 - ], - [ - 6.5721611, - 53.025998 - ], - [ - 6.5721611, - 53.0176086 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "charging_stations", - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 110874001 - } - }, - { - "id": 110873102, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7412927, - 51.0361053 - ], - [ - 3.7412927, - 51.0361053 - ], - [ - 3.7412927, - 51.0361053 - ], - [ - 3.7412927, - 51.0361053 - ], - [ - 3.7412927, - 51.0361053 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110873102 - } - }, - { - "id": 110872782, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2120516, - 51.191464 - ], - [ - 3.2120516, - 51.191464 - ], - [ - 3.2120516, - 51.191464 - ], - [ - 3.2120516, - 51.191464 - ], - [ - 3.2120516, - 51.191464 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "charging_stations", - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 110872782 - } - }, - { - "id": 110872737, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7362206, - 51.0367764 - ], - [ - 3.7365425, - 51.0367764 - ], - [ - 3.7365425, - 51.0368641 - ], - [ - 3.7362206, - 51.0368641 - ], - [ - 3.7362206, - 51.0367764 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110872737 - } - }, - { - "id": 110870231, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2927924, - 50.8617505 - ], - [ - 4.2927924, - 50.8617505 - ], - [ - 4.2927924, - 50.8617505 - ], - [ - 4.2927924, - 50.8617505 - ], - [ - 4.2927924, - 50.8617505 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110870231 - } - }, - { - "id": 110864432, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2081858, - 51.1869804 - ], - [ - 3.2081858, - 51.1869804 - ], - [ - 3.2081858, - 51.1869804 - ], - [ - 3.2081858, - 51.1869804 - ], - [ - 3.2081858, - 51.1869804 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "en" - }, - "id": 110864432 - } - }, - { - "id": 110859989, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5681439, - 53.0099743 - ], - [ - 6.5689395, - 53.0099743 - ], - [ - 6.5689395, - 53.0112357 - ], - [ - 6.5681439, - 53.0112357 - ], - [ - 6.5681439, - 53.0099743 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "charging_stations", - "imagery": "CartoDB.Voyager", - "language": "en" - }, - "id": 110859989 - } - }, - { - "id": 110859395, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5721604, - 53.0264806 - ], - [ - 6.5721604, - 53.0264806 - ], - [ - 6.5721604, - 53.0264806 - ], - [ - 6.5721604, - 53.0264806 - ], - [ - 6.5721604, - 53.0264806 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "toilets", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110859395 - } - }, - { - "id": 110858186, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5337501, - 52.9890967 - ], - [ - 6.5805537, - 52.9890967 - ], - [ - 6.5805537, - 53.0113921 - ], - [ - 6.5337501, - 53.0113921 - ], - [ - 6.5337501, - 52.9890967 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110858186 - } - }, - { - "id": 110853884, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7796401, - 51.2028367 - ], - [ - 4.7796401, - 51.2028367 - ], - [ - 4.7796401, - 51.2028367 - ], - [ - 4.7796401, - 51.2028367 - ], - [ - 4.7796401, - 51.2028367 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cyclofix", - "imagery": "AGIV", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110853884 - } - }, - { - "id": 110853877, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7262583, - 51.0264084 - ], - [ - 13.7267207, - 51.0264084 - ], - [ - 13.7267207, - 51.0264321 - ], - [ - 13.7262583, - 51.0264321 - ], - [ - 13.7262583, - 51.0264084 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "GEOSN-DOP-RGB", - "language": "en", - "theme-creator": "timor" - }, - "id": 110853877 - } - }, - { - "id": 110853474, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.374155, - 50.8601654 - ], - [ - 4.7795717, - 50.8601654 - ], - [ - 4.7795717, - 51.202872 - ], - [ - 4.374155, - 51.202872 - ], - [ - 4.374155, - 50.8601654 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "charging_stations", - "imagery": "CartoDB.Voyager", - "language": "nl" - }, - "id": 110853474 - } - }, - { - "id": 110848487, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.5347279, - 52.2938452 - ], - [ - -1.5344799, - 52.2938452 - ], - [ - -1.5344799, - 52.2940475 - ], - [ - -1.5347279, - 52.2940475 - ], - [ - -1.5347279, - 52.2938452 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "parkings", - "imagery": "osm", - "language": "en" - }, - "id": 110848487 - } - }, - { - "id": 110847424, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7273525, - 51.032144 - ], - [ - 13.7315572, - 51.032144 - ], - [ - 13.7315572, - 51.0359965 - ], - [ - 13.7273525, - 51.0359965 - ], - [ - 13.7273525, - 51.032144 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "GEOSN-DOP-RGB", - "language": "en", - "theme-creator": "timor" - }, - "id": 110847424 - } - }, - { - "id": 110847304, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.5188726, - 52.1400304 - ], - [ - 12.5188726, - 52.1400304 - ], - [ - 12.5188726, - 52.1400304 - ], - [ - 12.5188726, - 52.1400304 - ], - [ - 12.5188726, - 52.1400304 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110847304 - } - }, - { - "id": 110845596, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7561436, - 51.048242 - ], - [ - 13.7664618, - 51.048242 - ], - [ - 13.7664618, - 51.0499418 - ], - [ - 13.7561436, - 51.0499418 - ], - [ - 13.7561436, - 51.048242 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "GEOSN-DOP-RGB", - "language": "en", - "theme-creator": "timor" - }, - "id": 110845596 - } - }, - { - "id": 110844164, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7650207, - 51.0484817 - ], - [ - 13.8043147, - 51.0484817 - ], - [ - 13.8043147, - 51.0512669 - ], - [ - 13.7650207, - 51.0512669 - ], - [ - 13.7650207, - 51.0484817 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "osm", - "language": "en", - "theme-creator": "timor" - }, - "id": 110844164 - } - }, - { - "id": 110841379, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.8037974, - 51.0512669 - ], - [ - 13.8143483, - 51.0512669 - ], - [ - 13.8143483, - 51.0545375 - ], - [ - 13.8037974, - 51.0545375 - ], - [ - 13.8037974, - 51.0512669 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "GEOSN-DOP-RGB", - "language": "en", - "theme-creator": "timor" - }, - "id": 110841379 - } - }, - { - "id": 110840665, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7007618, - 51.0268819 - ], - [ - 3.7007618, - 51.0268819 - ], - [ - 3.7007618, - 51.0268819 - ], - [ - 3.7007618, - 51.0268819 - ], - [ - 3.7007618, - 51.0268819 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110840665 - } - }, - { - "id": 110836770, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7942271, - 51.0635741 - ], - [ - 13.7954781, - 51.0635741 - ], - [ - 13.7954781, - 51.0637744 - ], - [ - 13.7942271, - 51.0637744 - ], - [ - 13.7942271, - 51.0635741 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "GEOSN-DOP-RGB", - "language": "en", - "theme-creator": "timor" - }, - "id": 110836770 - } - }, - { - "id": 110827103, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.5691639, - 45.4782467 - ], - [ - -73.5524031, - 45.4782467 - ], - [ - -73.5524031, - 45.4811018 - ], - [ - -73.5691639, - 45.4811018 - ], - [ - -73.5691639, - 45.4782467 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110827103 - } - }, - { - "id": 110820210, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5606823, - 52.9957289 - ], - [ - 6.5725224, - 52.9957289 - ], - [ - 6.5725224, - 53.0277864 - ], - [ - 6.5606823, - 53.0277864 - ], - [ - 6.5606823, - 52.9957289 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "food", - "imagery": "osm", - "language": "en" - }, - "id": 110820210 - } - }, - { - "id": 110818057, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5608832, - 53.0193218 - ], - [ - 6.5610558, - 53.0193218 - ], - [ - 6.5610558, - 53.019367 - ], - [ - 6.5608832, - 53.019367 - ], - [ - 6.5608832, - 53.0193218 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "parkings", - "imagery": "osm", - "language": "nl" - }, - "id": 110818057 - } - }, - { - "id": 110817161, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9020683, - 51.0967472 - ], - [ - 4.9032216, - 51.0967472 - ], - [ - 4.9032216, - 51.0972414 - ], - [ - 4.9020683, - 51.0972414 - ], - [ - 4.9020683, - 51.0967472 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 110817161 - } - }, - { - "id": 110812835, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.70131, - 51.0458374 - ], - [ - 13.7022414, - 51.0458374 - ], - [ - 13.7022414, - 51.0473085 - ], - [ - 13.70131, - 51.0473085 - ], - [ - 13.70131, - 51.0458374 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110812835 - } - }, - { - "id": 110812653, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7022414, - 51.044257 - ], - [ - 13.7038729, - 51.044257 - ], - [ - 13.7038729, - 51.0458374 - ], - [ - 13.7022414, - 51.0458374 - ], - [ - 13.7022414, - 51.044257 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110812653 - } - }, - { - "id": 110811749, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7022414, - 51.0395806 - ], - [ - 13.7121747, - 51.0395806 - ], - [ - 13.7121747, - 51.0458374 - ], - [ - 13.7022414, - 51.0458374 - ], - [ - 13.7022414, - 51.0395806 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110811749 - } - }, - { - "id": 110811416, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7121747, - 51.0375715 - ], - [ - 13.7148894, - 51.0375715 - ], - [ - 13.7148894, - 51.0395806 - ], - [ - 13.7121747, - 51.0395806 - ], - [ - 13.7121747, - 51.0375715 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110811416 - } - }, - { - "id": 110810252, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7148894, - 51.0309855 - ], - [ - 13.7241266, - 51.0309855 - ], - [ - 13.7241266, - 51.0375715 - ], - [ - 13.7148894, - 51.0375715 - ], - [ - 13.7148894, - 51.0309855 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110810252 - } - }, - { - "id": 110810008, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7147766, - 51.0309855 - ], - [ - 13.7241266, - 51.0309855 - ], - [ - 13.7241266, - 51.0352069 - ], - [ - 13.7147766, - 51.0352069 - ], - [ - 13.7147766, - 51.0309855 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110810008 - } - }, - { - "id": 110809973, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.2545995, - 43.7735024 - ], - [ - 11.2545995, - 43.7735024 - ], - [ - 11.2545995, - 43.7735024 - ], - [ - 11.2545995, - 43.7735024 - ], - [ - 11.2545995, - 43.7735024 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110809973 - } - }, - { - "id": 110808804, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7147766, - 51.0264777 - ], - [ - 13.7259723, - 51.0264777 - ], - [ - 13.7259723, - 51.0352069 - ], - [ - 13.7147766, - 51.0352069 - ], - [ - 13.7147766, - 51.0264777 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110808804 - } - }, - { - "id": 110804202, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3930882, - 51.2084886 - ], - [ - 4.4135964, - 51.2084886 - ], - [ - 4.4135964, - 51.2218927 - ], - [ - 4.3930882, - 51.2218927 - ], - [ - 4.3930882, - 51.2084886 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "nl" - }, - "id": 110804202 - } - }, - { - "id": 110803772, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7821696, - -34.6662525 - ], - [ - -58.5953289, - -34.6662525 - ], - [ - -58.5953289, - -34.6449017 - ], - [ - -58.7821696, - -34.6449017 - ], - [ - -58.7821696, - -34.6662525 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "osm", - "language": "es" - }, - "id": 110803772 - } - }, - { - "id": 110790669, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7252449, - 51.0271596 - ], - [ - 13.7258763, - 51.0271596 - ], - [ - 13.7258763, - 51.0271687 - ], - [ - 13.7252449, - 51.0271687 - ], - [ - 13.7252449, - 51.0271596 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110790669 - } - }, - { - "id": 110786060, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.710363, - 51.036858 - ], - [ - 13.7154765, - 51.036858 - ], - [ - 13.7154765, - 51.04022 - ], - [ - 13.710363, - 51.04022 - ], - [ - 13.710363, - 51.036858 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "osm", - "language": "en", - "theme-creator": "timor" - }, - "id": 110786060 - } - }, - { - "id": 110785141, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7044849, - 51.04022 - ], - [ - 13.710363, - 51.04022 - ], - [ - 13.710363, - 51.0435054 - ], - [ - 13.7044849, - 51.0435054 - ], - [ - 13.7044849, - 51.04022 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "GEOSN-DOP-RGB", - "language": "en", - "theme-creator": "timor" - }, - "id": 110785141 - } - }, - { - "id": 110765328, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.9579986, - 49.4358907 - ], - [ - 11.0755599, - 49.4358907 - ], - [ - 11.0755599, - 49.4479454 - ], - [ - 10.9579986, - 49.4479454 - ], - [ - 10.9579986, - 49.4358907 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "imagery": "osm", - "language": "de", - "theme-creator": "MapComplete" - }, - "id": 110765328 - } - }, - { - "id": 110764955, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.9575963, - 49.4417911 - ], - [ - 10.9576526, - 49.4417911 - ], - [ - 10.9576526, - 49.4418382 - ], - [ - 10.9575963, - 49.4418382 - ], - [ - 10.9575963, - 49.4417911 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 110764955 - } - }, - { - "id": 110764735, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.9615713, - 49.4172352 - ], - [ - 10.9615713, - 49.4172352 - ], - [ - 10.9615713, - 49.4172352 - ], - [ - 10.9615713, - 49.4172352 - ], - [ - 10.9615713, - 49.4172352 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "HDM_HOT", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 110764735 - } - }, - { - "id": 110762517, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6837178, - 51.0573171 - ], - [ - 13.6843088, - 51.0573171 - ], - [ - 13.6843088, - 51.0587762 - ], - [ - 13.6837178, - 51.0587762 - ], - [ - 13.6837178, - 51.0573171 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110762517 - } - }, - { - "id": 110762394, - "type": "Feature", - "geometry": null, - "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:08:00Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110762394 - } - }, - { - "id": 110762315, - "type": "Feature", - "geometry": null, - "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:05:51Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110762315 - } - }, - { - "id": 110762308, - "type": "Feature", - "geometry": null, - "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:05:35Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110762308 - } - }, - { - "id": 110762005, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6816389, - 51.0518165 - ], - [ - 13.683204, - 51.0518165 - ], - [ - 13.683204, - 51.0560484 - ], - [ - 13.6816389, - 51.0560484 - ], - [ - 13.6816389, - 51.0518165 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110762005 - } - }, - { - "id": 110761753, - "type": "Feature", - "geometry": null, - "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:48:12Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110761753 - } - }, - { - "id": 110761714, - "type": "Feature", - "geometry": null, - "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:46:52Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110761714 - } - }, - { - "id": 110761625, - "type": "Feature", - "geometry": null, - "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:43:41Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110761625 - } - }, - { - "id": 110761584, - "type": "Feature", - "geometry": null, - "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:42:18Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110761584 - } - }, - { - "id": 110761579, - "type": "Feature", - "geometry": null, - "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:42:06Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110761579 - } - }, - { - "id": 110761577, - "type": "Feature", - "geometry": null, - "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:42:00Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110761577 - } - }, - { - "id": 110761238, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6836342, - 51.0545118 - ], - [ - 13.6873738, - 51.0545118 - ], - [ - 13.6873738, - 51.0579899 - ], - [ - 13.6836342, - 51.0579899 - ], - [ - 13.6836342, - 51.0545118 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110761238 - } - }, - { - "id": 110759123, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7245505, - 51.0572368 - ], - [ - 3.7245505, - 51.0572368 - ], - [ - 3.7245505, - 51.0572368 - ], - [ - 3.7245505, - 51.0572368 - ], - [ - 3.7245505, - 51.0572368 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "food", - "imagery": "AGIVFlandersGRB", - "language": "en" - }, - "id": 110759123 - } - }, - { - "id": 110756723, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6896286, - 51.0555568 - ], - [ - 13.7232331, - 51.0555568 - ], - [ - 13.7232331, - 51.0614117 - ], - [ - 13.6896286, - 51.0614117 - ], - [ - 13.6896286, - 51.0555568 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110756723 - } - }, - { - "id": 110755864, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7435108, - 51.0309303 - ], - [ - 3.7480826, - 51.0309303 - ], - [ - 3.7480826, - 51.0357439 - ], - [ - 3.7435108, - 51.0357439 - ], - [ - 3.7435108, - 51.0309303 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110755864 - } - }, - { - "id": 110754992, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7446588, - 51.0304599 - ], - [ - 3.7473035, - 51.0304599 - ], - [ - 3.7473035, - 51.0337224 - ], - [ - 3.7446588, - 51.0337224 - ], - [ - 3.7446588, - 51.0304599 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110754992 - } - }, - { - "id": 110753945, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7425667, - 51.0331747 - ], - [ - 3.7481296, - 51.0331747 - ], - [ - 3.7481296, - 51.0348085 - ], - [ - 3.7425667, - 51.0348085 - ], - [ - 3.7425667, - 51.0331747 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110753945 - } - }, - { - "id": 110752801, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7446722, - 51.0341521 - ], - [ - 3.7473866, - 51.0341521 - ], - [ - 3.7473866, - 51.0372676 - ], - [ - 3.7446722, - 51.0372676 - ], - [ - 3.7446722, - 51.0341521 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110752801 - } - }, - { - "id": 110752554, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7377907, - 51.0501288 - ], - [ - 3.7377907, - 51.0501288 - ], - [ - 3.7377907, - 51.0501288 - ], - [ - 3.7377907, - 51.0501288 - ], - [ - 3.7377907, - 51.0501288 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110752554 - } - }, - { - "id": 110752287, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.8507381, - 52.1688877 - ], - [ - 12.8507381, - 52.1688877 - ], - [ - 12.8507381, - 52.1688877 - ], - [ - 12.8507381, - 52.1688877 - ], - [ - 12.8507381, - 52.1688877 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110752287 - } - }, - { - "id": 110751439, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7431782, - 51.0372415 - ], - [ - 3.7464023, - 51.0372415 - ], - [ - 3.7464023, - 51.0391209 - ], - [ - 3.7431782, - 51.0391209 - ], - [ - 3.7431782, - 51.0372415 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110751439 - } - }, - { - "id": 110750569, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3803906, - 50.8044363 - ], - [ - 4.3803906, - 50.8044363 - ], - [ - 4.3803906, - 50.8044363 - ], - [ - 4.3803906, - 50.8044363 - ], - [ - 4.3803906, - 50.8044363 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110750569 - } - }, - { - "id": 110748089, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3807313, - 50.8044092 - ], - [ - 4.3807313, - 50.8044092 - ], - [ - 4.3807313, - 50.8044092 - ], - [ - 4.3807313, - 50.8044092 - ], - [ - 4.3807313, - 50.8044092 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110748089 - } - }, - { - "id": 110743699, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.8656922, - 51.1467859 - ], - [ - 13.8709344, - 51.1467859 - ], - [ - 13.8709344, - 51.1484776 - ], - [ - 13.8656922, - 51.1484776 - ], - [ - 13.8656922, - 51.1467859 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110743699 - } - }, - { - "id": 110742775, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.0870298, - 47.2684337 - ], - [ - 6.0870298, - 47.2684337 - ], - [ - 6.0870298, - 47.2684337 - ], - [ - 6.0870298, - 47.2684337 - ], - [ - 6.0870298, - 47.2684337 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110742775 - } - }, - { - "id": 110742143, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.8656922, - 51.1471856 - ], - [ - 13.8693764, - 51.1471856 - ], - [ - 13.8693764, - 51.148262 - ], - [ - 13.8656922, - 51.148262 - ], - [ - 13.8656922, - 51.1471856 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110742143 - } - }, - { - "id": 110737915, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.9934373, - 48.629113 - ], - [ - 37.9934373, - 48.629113 - ], - [ - 37.9934373, - 48.629113 - ], - [ - 37.9934373, - 48.629113 - ], - [ - 37.9934373, - 48.629113 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artwork", - "imagery": "CartoDB.VoyagerNoLabels", - "language": "ru", - "theme-creator": "MapComplete" - }, - "id": 110737915 - } - }, - { - "id": 110730420, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.8171257, - 41.5804011 - ], - [ - -4.8171257, - 41.5804011 - ], - [ - -4.8171257, - 41.5804011 - ], - [ - -4.8171257, - 41.5804011 - ], - [ - -4.8171257, - 41.5804011 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "imagery": "osm", - "language": "en", - "theme-creator": "Erwin Olario" - }, - "id": 110730420 - } - }, - { - "id": 110729653, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5551392, - 50.7873265 - ], - [ - 5.5551392, - 50.7873265 - ], - [ - 5.5551392, - 50.7873265 - ], - [ - 5.5551392, - 50.7873265 - ], - [ - 5.5551392, - 50.7873265 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "AGIV10cm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110729653 - } - }, - { - "id": 110727164, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.5170975, - 41.6336276 - ], - [ - -4.5170975, - 41.6336276 - ], - [ - -4.5170975, - 41.6336276 - ], - [ - -4.5170975, - 41.6336276 - ], - [ - -4.5170975, - 41.6336276 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110727164 - } - }, - { - "id": 110725856, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5583292, - 50.7859898 - ], - [ - 5.5583292, - 50.7859898 - ], - [ - 5.5583292, - 50.7859898 - ], - [ - 5.5583292, - 50.7859898 - ], - [ - 5.5583292, - 50.7859898 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "nl" - }, - "id": 110725856 - } - }, - { - "id": 110725782, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4011295, - 50.7860886 - ], - [ - 5.5584142, - 50.7860886 - ], - [ - 5.5584142, - 50.8555385 - ], - [ - 4.4011295, - 50.8555385 - ], - [ - 4.4011295, - 50.7860886 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110725782 - } - }, - { - "id": 110723272, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8764212, - 51.0556829 - ], - [ - 4.8906168, - 51.0556829 - ], - [ - 4.8906168, - 51.0855661 - ], - [ - 4.8764212, - 51.0855661 - ], - [ - 4.8764212, - 51.0556829 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 110723272 - } - }, - { - "id": 110722942, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6041795, - -33.4236709 - ], - [ - -70.6031601, - -33.4236709 - ], - [ - -70.6031601, - -33.4232802 - ], - [ - -70.6041795, - -33.4232802 - ], - [ - -70.6041795, - -33.4236709 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 110722942 - } - }, - { - "id": 110722840, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9932707, - 51.1558826 - ], - [ - 5.0017845, - 51.1558826 - ], - [ - 5.0017845, - 51.1578304 - ], - [ - 4.9932707, - 51.1578304 - ], - [ - 4.9932707, - 51.1558826 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110722840 - } - }, - { - "id": 110722032, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.8693764, - 51.1477107 - ], - [ - 13.8752179, - 51.1477107 - ], - [ - 13.8752179, - 51.1484825 - ], - [ - 13.8693764, - 51.1484825 - ], - [ - 13.8693764, - 51.1477107 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110722032 - } - }, - { - "id": 110722003, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0020165, - 51.1579367 - ], - [ - 5.0020165, - 51.1579367 - ], - [ - 5.0020165, - 51.1579367 - ], - [ - 5.0020165, - 51.1579367 - ], - [ - 5.0020165, - 51.1579367 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artwork", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110722003 - } - }, - { - "id": 110721639, - "type": "Feature", - "geometry": null, - "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:34:11Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110721639 - } - }, - { - "id": 110721634, - "type": "Feature", - "geometry": null, - "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:34:03Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110721634 - } - }, - { - "id": 110721625, - "type": "Feature", - "geometry": null, - "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:33:59Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110721625 - } - }, - { - "id": 110721603, - "type": "Feature", - "geometry": null, - "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:33:18Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110721603 - } - }, - { - "id": 110721579, - "type": "Feature", - "geometry": null, - "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:32:38Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110721579 - } - }, - { - "id": 110721572, - "type": "Feature", - "geometry": null, - "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:32:31Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110721572 - } - }, - { - "id": 110721569, - "type": "Feature", - "geometry": null, - "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:32:25Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110721569 - } - }, - { - "id": 110721447, - "type": "Feature", - "geometry": null, - "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:29:27Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110721447 - } - }, - { - "id": 110721445, - "type": "Feature", - "geometry": null, - "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:29:26Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110721445 - } - }, - { - "id": 110721442, - "type": "Feature", - "geometry": null, - "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:29:25Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110721442 - } - }, - { - "id": 110721429, - "type": "Feature", - "geometry": null, - "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:29:00Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110721429 - } - }, - { - "id": 110721271, - "type": "Feature", - "geometry": null, - "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:25:09Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110721271 - } - }, - { - "id": 110721252, - "type": "Feature", - "geometry": null, - "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:24:42Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110721252 - } - }, - { - "id": 110721241, - "type": "Feature", - "geometry": null, - "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:24:24Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110721241 - } - }, - { - "id": 110721226, - "type": "Feature", - "geometry": null, - "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:24:07Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110721226 - } - }, - { - "id": 110721214, - "type": "Feature", - "geometry": null, - "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:23:51Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110721214 - } - }, - { - "id": 110721190, - "type": "Feature", - "geometry": null, - "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:23:22Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110721190 - } - }, - { - "id": 110721176, - "type": "Feature", - "geometry": null, - "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:22:57Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110721176 - } - }, - { - "id": 110721122, - "type": "Feature", - "geometry": null, - "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:21:57Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110721122 - } - }, - { - "id": 110721117, - "type": "Feature", - "geometry": null, - "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:21:52Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110721117 - } - }, - { - "id": 110721111, - "type": "Feature", - "geometry": null, - "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:21:45Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110721111 - } - }, - { - "id": 110721109, - "type": "Feature", - "geometry": null, - "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:21:43Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110721109 - } - }, - { - "id": 110721104, - "type": "Feature", - "geometry": null, - "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:21:39Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110721104 - } - }, - { - "id": 110720968, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.865307, - 51.1469886 - ], - [ - 13.868294, - 51.1469886 - ], - [ - 13.868294, - 51.1480932 - ], - [ - 13.865307, - 51.1480932 - ], - [ - 13.865307, - 51.1469886 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110720968 - } - }, - { - "id": 110720700, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.8638384, - 51.1462532 - ], - [ - 13.865307, - 51.1462532 - ], - [ - 13.865307, - 51.1469886 - ], - [ - 13.8638384, - 51.1469886 - ], - [ - 13.8638384, - 51.1462532 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110720700 - } - }, - { - "id": 110720419, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.971914, - 51.1578304 - ], - [ - 5.0017845, - 51.1578304 - ], - [ - 5.0017845, - 51.1702606 - ], - [ - 4.971914, - 51.1702606 - ], - [ - 4.971914, - 51.1578304 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110720419 - } - }, - { - "id": 110720183, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.8611662, - 51.1447523 - ], - [ - 13.8634925, - 51.1447523 - ], - [ - 13.8634925, - 51.1459965 - ], - [ - 13.8611662, - 51.1459965 - ], - [ - 13.8611662, - 51.1447523 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110720183 - } - }, - { - "id": 110717930, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7321484, - 51.0568936 - ], - [ - 3.7321484, - 51.0568936 - ], - [ - 3.7321484, - 51.0568936 - ], - [ - 3.7321484, - 51.0568936 - ], - [ - 3.7321484, - 51.0568936 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "food", - "imagery": "osm", - "language": "en" - }, - "id": 110717930 - } - }, - { - "id": 110714072, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2435899, - 50.7387824 - ], - [ - 4.2435899, - 50.7387824 - ], - [ - 4.2435899, - 50.7387824 - ], - [ - 4.2435899, - 50.7387824 - ], - [ - 4.2435899, - 50.7387824 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "imagery": "osm", - "language": "nl" - }, - "id": 110714072 - } - }, - { - "id": 110713861, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.8455549, - 51.1285844 - ], - [ - 13.8462566, - 51.1285844 - ], - [ - 13.8462566, - 51.1289644 - ], - [ - 13.8455549, - 51.1289644 - ], - [ - 13.8455549, - 51.1285844 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110713861 - } - }, - { - "id": 110712149, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8412397, - 51.1837617 - ], - [ - 4.84493, - 51.1837617 - ], - [ - 4.84493, - 51.1847056 - ], - [ - 4.8412397, - 51.1847056 - ], - [ - 4.8412397, - 51.1837617 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 110712149 - } - }, - { - "id": 110710345, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7324041, - 51.0602191 - ], - [ - 3.7326373, - 51.0602191 - ], - [ - 3.7326373, - 51.06031 - ], - [ - 3.7324041, - 51.06031 - ], - [ - 3.7324041, - 51.0602191 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "hackerspaces", - "imagery": "osm", - "language": "en" - }, - "id": 110710345 - } - }, - { - "id": 110708077, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.1403992, - 44.4872764 - ], - [ - 11.2861219, - 44.4872764 - ], - [ - 11.2861219, - 44.8366207 - ], - [ - 11.1403992, - 44.8366207 - ], - [ - 11.1403992, - 44.4872764 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110708077 - } - }, - { - "id": 110704657, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8412397, - 51.1837617 - ], - [ - 4.84493, - 51.1837617 - ], - [ - 4.84493, - 51.1847056 - ], - [ - 4.8412397, - 51.1847056 - ], - [ - 4.8412397, - 51.1837617 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "imagery": "osm", - "language": "en" - }, - "id": 110704657 - } - }, - { - "id": 110703785, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8368516, - 51.0881248 - ], - [ - 4.9125677, - 51.0881248 - ], - [ - 4.9125677, - 51.0902415 - ], - [ - 4.8368516, - 51.0902415 - ], - [ - 4.8368516, - 51.0881248 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "AGIV10cm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110703785 - } - }, - { - "id": 110703458, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.4152934, - 48.1750876 - ], - [ - 16.4152934, - 48.1750876 - ], - [ - 16.4152934, - 48.1750876 - ], - [ - 16.4152934, - 48.1750876 - ], - [ - 16.4152934, - 48.1750876 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "surveillance", - "imagery": "osm", - "language": "en" - }, - "id": 110703458 - } - }, - { - "id": 110699141, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.603543, - -33.4236429 - ], - [ - -70.6030448, - -33.4236429 - ], - [ - -70.6030448, - -33.4232156 - ], - [ - -70.603543, - -33.4232156 - ], - [ - -70.603543, - -33.4236429 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "imagery": "CyclOSM", - "language": "en", - "theme-creator": "Midgard" - }, - "id": 110699141 - } - }, - { - "id": 110694757, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6089529, - -33.4241673 - ], - [ - -70.6089529, - -33.4241673 - ], - [ - -70.6089529, - -33.4241673 - ], - [ - -70.6089529, - -33.4241673 - ], - [ - -70.6089529, - -33.4241673 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "ghostbikes", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110694757 - } - }, - { - "id": 110691827, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6806799, - 51.0524233 - ], - [ - 13.6833205, - 51.0524233 - ], - [ - 13.6833205, - 51.0560484 - ], - [ - 13.6806799, - 51.0560484 - ], - [ - 13.6806799, - 51.0524233 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110691827 - } - }, - { - "id": 110688072, - "type": "Feature", - "geometry": null, - "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-03T17:00:40Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110688072 - } - }, - { - "id": 110688050, - "type": "Feature", - "geometry": null, - "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-03T17:00:04Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110688050 - } - }, - { - "id": 110688040, - "type": "Feature", - "geometry": null, - "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:59:52Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110688040 - } - }, - { - "id": 110688005, - "type": "Feature", - "geometry": null, - "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:59:03Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110688005 - } - }, - { - "id": 110687948, - "type": "Feature", - "geometry": null, - "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:57:36Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110687948 - } - }, - { - "id": 110687899, - "type": "Feature", - "geometry": null, - "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:56:38Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110687899 - } - }, - { - "id": 110687890, - "type": "Feature", - "geometry": null, - "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:56:20Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110687890 - } - }, - { - "id": 110687877, - "type": "Feature", - "geometry": null, - "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:56:05Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110687877 - } - }, - { - "id": 110687842, - "type": "Feature", - "geometry": null, - "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:55:19Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110687842 - } - }, - { - "id": 110687780, - "type": "Feature", - "geometry": null, - "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:53:54Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110687780 - } - }, - { - "id": 110687772, - "type": "Feature", - "geometry": null, - "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:53:41Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110687772 - } - }, - { - "id": 110687768, - "type": "Feature", - "geometry": null, - "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:53:37Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110687768 - } - }, - { - "id": 110687724, - "type": "Feature", - "geometry": null, - "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:52:32Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110687724 - } - }, - { - "id": 110687705, - "type": "Feature", - "geometry": null, - "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:52:15Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110687705 - } - }, - { - "id": 110687694, - "type": "Feature", - "geometry": null, - "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:59Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110687694 - } - }, - { - "id": 110687671, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6816389, - 51.0524233 - ], - [ - 13.6836342, - 51.0524233 - ], - [ - 13.6836342, - 51.0571107 - ], - [ - 13.6816389, - 51.0571107 - ], - [ - 13.6816389, - 51.0524233 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110687671 - } - }, - { - "id": 110684887, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4368687, - 51.5978061 - ], - [ - 13.4368687, - 51.5978061 - ], - [ - 13.4368687, - 51.5978061 - ], - [ - 13.4368687, - 51.5978061 - ], - [ - 13.4368687, - 51.5978061 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110684887 - } - }, - { - "id": 110683238, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2109186, - 51.1903969 - ], - [ - 3.2109186, - 51.1903969 - ], - [ - 3.2109186, - 51.1903969 - ], - [ - 3.2109186, - 51.1903969 - ], - [ - 3.2109186, - 51.1903969 - ] - ] - ] - }, - "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, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "food", - "imagery": "osm", - "language": "nl" - }, - "id": 110683238 - } - }, - { - "id": 110680597, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4315751, - 46.9513242 - ], - [ - 7.4315751, - 46.9513242 - ], - [ - 7.4315751, - 46.9513242 - ], - [ - 7.4315751, - 46.9513242 - ], - [ - 7.4315751, - 46.9513242 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110680597 - } - }, - { - "id": 110679083, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7858355, - -34.6646023 - ], - [ - -58.5932234, - -34.6646023 - ], - [ - -58.5932234, - -34.6444714 - ], - [ - -58.7858355, - -34.6444714 - ], - [ - -58.7858355, - -34.6646023 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "osm", - "language": "es" - }, - "id": 110679083 - } - }, - { - "id": 110662737, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.676288, - 51.0435799 - ], - [ - 13.7042456, - 51.0435799 - ], - [ - 13.7042456, - 51.062607 - ], - [ - 13.676288, - 51.062607 - ], - [ - 13.676288, - 51.0435799 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110662737 - } - }, - { - "id": 110654121, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.4357884, - 51.891115 - ], - [ - 14.488298, - 51.891115 - ], - [ - 14.488298, - 51.9003972 - ], - [ - 14.4357884, - 51.9003972 - ], - [ - 14.4357884, - 51.891115 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110654121 - } - }, - { - "id": 110644009, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5059604, - -34.636686 - ], - [ - -58.4887862, - -34.636686 - ], - [ - -58.4887862, - -34.6345453 - ], - [ - -58.5059604, - -34.6345453 - ], - [ - -58.5059604, - -34.636686 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "imagery": "osm", - "language": "es" - }, - "id": 110644009 - } - }, - { - "id": 110642716, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5570837, - 52.9963472 - ], - [ - 6.5671656, - 52.9963472 - ], - [ - 6.5671656, - 53.0171131 - ], - [ - 6.5570837, - 53.0171131 - ], - [ - 6.5570837, - 52.9963472 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110642716 - } - }, - { - "id": 110639949, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6339441, - -33.4419239 - ], - [ - -70.6339441, - -33.4419239 - ], - [ - -70.6339441, - -33.4419239 - ], - [ - -70.6339441, - -33.4419239 - ], - [ - -70.6339441, - -33.4419239 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "ghostbikes", - "imagery": "CartoDB.Positron", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110639949 - } - }, - { - "id": 110637847, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4066514, - 50.9597592 - ], - [ - 5.4066514, - 50.9597592 - ], - [ - 5.4066514, - 50.9597592 - ], - [ - 5.4066514, - 50.9597592 - ], - [ - 5.4066514, - 50.9597592 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110637847 - } - }, - { - "id": 110635049, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.2587734, - 47.9578355 - ], - [ - 7.2587734, - 47.9578355 - ], - [ - 7.2587734, - 47.9578355 - ], - [ - 7.2587734, - 47.9578355 - ], - [ - 7.2587734, - 47.9578355 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artwork", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110635049 - } - }, - { - "id": 110634587, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.2602487, - 43.7648917 - ], - [ - 11.2602487, - 43.7648917 - ], - [ - 11.2602487, - 43.7648917 - ], - [ - 11.2602487, - 43.7648917 - ], - [ - 11.2602487, - 43.7648917 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110634587 - } - }, - { - "id": 110633674, - "type": "Feature", - "geometry": null, - "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:52:35Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110633674 - } - }, - { - "id": 110633654, - "type": "Feature", - "geometry": null, - "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:52:17Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110633654 - } - }, - { - "id": 110633634, - "type": "Feature", - "geometry": null, - "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:52:02Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110633634 - } - }, - { - "id": 110633557, - "type": "Feature", - "geometry": null, - "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:50:31Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110633557 - } - }, - { - "id": 110633548, - "type": "Feature", - "geometry": null, - "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:50:14Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110633548 - } - }, - { - "id": 110633538, - "type": "Feature", - "geometry": null, - "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:49:56Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110633538 - } - }, - { - "id": 110633517, - "type": "Feature", - "geometry": null, - "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:49:35Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110633517 - } - }, - { - "id": 110633503, - "type": "Feature", - "geometry": null, - "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:49:12Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110633503 - } - }, - { - "id": 110633495, - "type": "Feature", - "geometry": null, - "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:48:58Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110633495 - } - }, - { - "id": 110633492, - "type": "Feature", - "geometry": null, - "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:48:54Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110633492 - } - }, - { - "id": 110633483, - "type": "Feature", - "geometry": null, - "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:48:42Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110633483 - } - }, - { - "id": 110633135, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6735879, - 51.0610829 - ], - [ - 13.6809095, - 51.0610829 - ], - [ - 13.6809095, - 51.0644338 - ], - [ - 13.6735879, - 51.0644338 - ], - [ - 13.6735879, - 51.0610829 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110633135 - } - }, - { - "id": 110632891, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6806536, - 51.0618702 - ], - [ - 13.6812097, - 51.0618702 - ], - [ - 13.6812097, - 51.0621934 - ], - [ - 13.6806536, - 51.0621934 - ], - [ - 13.6806536, - 51.0618702 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110632891 - } - }, - { - "id": 110632847, - "type": "Feature", - "geometry": null, - "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:33:54Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110632847 - } - }, - { - "id": 110632846, - "type": "Feature", - "geometry": null, - "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:33:47Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110632846 - } - }, - { - "id": 110632843, - "type": "Feature", - "geometry": null, - "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:33:40Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110632843 - } - }, - { - "id": 110632829, - "type": "Feature", - "geometry": null, - "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:33:21Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110632829 - } - }, - { - "id": 110632779, - "type": "Feature", - "geometry": null, - "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:32:15Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110632779 - } - }, - { - "id": 110632775, - "type": "Feature", - "geometry": null, - "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:32:11Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110632775 - } - }, - { - "id": 110632771, - "type": "Feature", - "geometry": null, - "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:32:07Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110632771 - } - }, - { - "id": 110632695, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6828792, - 51.060176 - ], - [ - 13.6843206, - 51.060176 - ], - [ - 13.6843206, - 51.0618309 - ], - [ - 13.6828792, - 51.0618309 - ], - [ - 13.6828792, - 51.060176 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110632695 - } - }, - { - "id": 110632315, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6815569, - 51.0618309 - ], - [ - 13.6828792, - 51.0618309 - ], - [ - 13.6828792, - 51.0618467 - ], - [ - 13.6815569, - 51.0618467 - ], - [ - 13.6815569, - 51.0618309 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110632315 - } - }, - { - "id": 110632011, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6843088, - 51.0587762 - ], - [ - 13.6845566, - 51.0587762 - ], - [ - 13.6845566, - 51.060176 - ], - [ - 13.6843088, - 51.060176 - ], - [ - 13.6843088, - 51.0587762 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110632011 - } - }, - { - "id": 110630108, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6811969, - 51.0624381 - ], - [ - 13.6814832, - 51.0624381 - ], - [ - 13.6814832, - 51.0626244 - ], - [ - 13.6811969, - 51.0626244 - ], - [ - 13.6811969, - 51.0624381 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "timor" - }, - "id": 110630108 - } - }, - { - "id": 110623120, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6735879, - 51.062607 - ], - [ - 13.676288, - 51.062607 - ], - [ - 13.676288, - 51.0644338 - ], - [ - 13.6735879, - 51.0644338 - ], - [ - 13.6735879, - 51.062607 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110623120 - } - }, - { - "id": 110619917, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7858355, - -34.6648671 - ], - [ - -58.5302183, - -34.6648671 - ], - [ - -58.5302183, - -34.6390572 - ], - [ - -58.7858355, - -34.6390572 - ], - [ - -58.7858355, - -34.6648671 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "osm", - "language": "es" - }, - "id": 110619917 - } - }, - { - "id": 110618387, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.2587734, - 47.9578355 - ], - [ - 7.2587734, - 47.9578355 - ], - [ - 7.2587734, - 47.9578355 - ], - [ - 7.2587734, - 47.9578355 - ], - [ - 7.2587734, - 47.9578355 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artwork", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110618387 - } - }, - { - "id": 110616881, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.2935405, - 47.9548407 - ], - [ - 7.2935405, - 47.9548407 - ], - [ - 7.2935405, - 47.9548407 - ], - [ - 7.2935405, - 47.9548407 - ], - [ - 7.2935405, - 47.9548407 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110616881 - } - }, - { - "id": 110613773, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.3045796, - 48.0116587 - ], - [ - 7.3045796, - 48.0116587 - ], - [ - 7.3045796, - 48.0116587 - ], - [ - 7.3045796, - 48.0116587 - ], - [ - 7.3045796, - 48.0116587 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110613773 - } - }, - { - "id": 110603447, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4506488, - 50.7805042 - ], - [ - 5.4639253, - 50.7805042 - ], - [ - 5.4639253, - 50.7860811 - ], - [ - 5.4506488, - 50.7860811 - ], - [ - 5.4506488, - 50.7805042 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110603447 - } - }, - { - "id": 110603256, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4634153, - 50.7788973 - ], - [ - 5.4709203, - 50.7788973 - ], - [ - 5.4709203, - 50.7825557 - ], - [ - 5.4634153, - 50.7825557 - ], - [ - 5.4634153, - 50.7788973 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclestreets", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110603256 - } - }, - { - "id": 110600404, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3734059, - 50.9604101 - ], - [ - 5.3734059, - 50.9604101 - ], - [ - 5.3734059, - 50.9604101 - ], - [ - 5.3734059, - 50.9604101 - ], - [ - 5.3734059, - 50.9604101 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110600404 - } - }, - { - "id": 110599984, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.680134, - 51.0619262 - ], - [ - 13.6820763, - 51.0619262 - ], - [ - 13.6820763, - 51.0628237 - ], - [ - 13.680134, - 51.0628237 - ], - [ - 13.680134, - 51.0619262 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110599984 - } - }, - { - "id": 110598754, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6744382, - 51.0616056 - ], - [ - 13.681255, - 51.0616056 - ], - [ - 13.681255, - 51.0649881 - ], - [ - 13.6744382, - 51.0649881 - ], - [ - 13.6744382, - 51.0616056 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110598754 - } - }, - { - "id": 110598287, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6801839, - 51.0587762 - ], - [ - 13.6843088, - 51.0587762 - ], - [ - 13.6843088, - 51.0616409 - ], - [ - 13.6801839, - 51.0616409 - ], - [ - 13.6801839, - 51.0587762 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110598287 - } - }, - { - "id": 110595886, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6839903, - 51.0579899 - ], - [ - 13.6853546, - 51.0579899 - ], - [ - 13.6853546, - 51.0581361 - ], - [ - 13.6839903, - 51.0581361 - ], - [ - 13.6839903, - 51.0579899 - ] - ] - ] - }, - "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, - "metadata": { - "host": "timor.github.io", - "path": "mapcomplete/", - "theme": "inline_skating", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110595886 - } - }, - { - "id": 110586134, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2011306, - 51.2002536 - ], - [ - 3.2011306, - 51.2002536 - ], - [ - 3.2011306, - 51.2002536 - ], - [ - 3.2011306, - 51.2002536 - ], - [ - 3.2011306, - 51.2002536 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110586134 - } - }, - { - "id": 110584529, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2011306, - 51.2002536 - ], - [ - 3.2011306, - 51.2002536 - ], - [ - 3.2011306, - 51.2002536 - ], - [ - 3.2011306, - 51.2002536 - ], - [ - 3.2011306, - 51.2002536 - ] - ] - ] - }, - "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, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "aed", - "imagery": "osm", - "language": "nl", - "theme-creator": "MapComplete" - }, - "id": 110584529 - } - }, - { - "id": 110582888, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3423381, - 50.8287289 - ], - [ - 4.3423381, - 50.8287289 - ], - [ - 4.3423381, - 50.8287289 - ], - [ - 4.3423381, - 50.8287289 - ], - [ - 4.3423381, - 50.8287289 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "osm", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110582888 - } - }, - { - "id": 110569303, - "type": "Feature", - "geometry": null, - "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:51: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": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "osm", - "language": "es" - }, - "id": 110569303 - } - }, - { - "id": 110569277, - "type": "Feature", - "geometry": null, - "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:51: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": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "osm", - "language": "es" - }, - "id": 110569277 - } - }, - { - "id": 110569275, - "type": "Feature", - "geometry": null, - "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:51:04Z", - "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": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "osm", - "language": "es" - }, - "id": 110569275 - } - }, - { - "id": 110567319, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7906313, - -34.6648229 - ], - [ - -58.5302183, - -34.6648229 - ], - [ - -58.5302183, - -34.6390572 - ], - [ - -58.7906313, - -34.6390572 - ], - [ - -58.7906313, - -34.6648229 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "imagery": "osm", - "language": "es" - }, - "id": 110567319 - } - }, - { - "id": 110556484, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4253001, - 46.9319747 - ], - [ - 7.4301148, - 46.9319747 - ], - [ - 7.4301148, - 46.9519138 - ], - [ - 7.4253001, - 46.9519138 - ], - [ - 7.4253001, - 46.9319747 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110556484 - } - }, - { - "id": 110553288, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.452782, - 51.8958827 - ], - [ - 14.452925, - 51.8958827 - ], - [ - 14.452925, - 51.8967456 - ], - [ - 14.452782, - 51.8967456 - ], - [ - 14.452782, - 51.8958827 - ] - ] - ] - }, - "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, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 110553288 - } - }, - { - "id": 110544427, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.8609943, - 50.9757993 - ], - [ - 5.8609943, - 50.9757993 - ], - [ - 5.8609943, - 50.9757993 - ], - [ - 5.8609943, - 50.9757993 - ], - [ - 5.8609943, - 50.9757993 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fritures", - "imagery": "osm", - "language": "en" - }, - "id": 110544427 - } - }, - { - "id": 110544307, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.8575696, - 51.0023943 - ], - [ - 5.8587479, - 51.0023943 - ], - [ - 5.8587479, - 51.0031988 - ], - [ - 5.8575696, - 51.0031988 - ], - [ - 5.8575696, - 51.0023943 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "climbing", - "imagery": "osm", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 110544307 - } - }, - { - "id": 110542688, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.8633224, - 50.9751336 - ], - [ - 5.8633224, - 50.9751336 - ], - [ - 5.8633224, - 50.9751336 - ], - [ - 5.8633224, - 50.9751336 - ], - [ - 5.8633224, - 50.9751336 - ] - ] - ] - }, - "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, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "imagery": "CartoDB.Voyager", - "language": "en", - "theme-creator": "MapComplete" - }, - "id": 110542688 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-1.json b/Docs/Tools/stats/stats.2022-1.json deleted file mode 100644 index de40833dcd..0000000000 --- a/Docs/Tools/stats/stats.2022-1.json +++ /dev/null @@ -1,30291 +0,0 @@ -{ - "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": [ - { - "id": 489, - "name": "Mapbox: Spam text" - } - ], - "tags": [], - "features": [ - { - "url": "node-9461327137", - "note": "Spam text reported in [\"name\"] tags in the feature", - "osm_id": 9461327137, - "reasons": [ - 489 - ], - "version": 1 - } - ], - "user": "nickinparadise", - "uid": "2049708", - "editor": "MapComplete 0.15.1", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-01-30T20:08:15Z", - "reviewed_features": [], - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "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": 1, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-01-23T14:25:12Z", - "reviewed_features": [], - "create": 1, - "modify": 7, - "delete": 1, - "area": 0.00000264645007000264, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "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" - }, - { - "id": 91, - "name": "Motorway/trunk geometry modified" - } - ], - "tags": [], - "features": [ - { - "url": "way-196714838", - "name": "Boulevard Louis Pasteur", - "osm_id": 196714838, - "reasons": [ - 91 - ], - "version": 6, - "primary_tags": { - "highway": "trunk" - } - } - ], - "user": "whatismoss", - "uid": "8427311", - "editor": "MapComplete 0.13.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-01-13T15:09:43Z", - "reviewed_features": [], - "create": 0, - "modify": 216, - "delete": 0, - "area": 0.000448679086920005, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "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 deleted file mode 100644 index 69205bcc12..0000000000 --- a/Docs/Tools/stats/stats.2022-2.json +++ /dev/null @@ -1,43674 +0,0 @@ -{ - "features": [ - { - "id": 117960826, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.6116468, - 44.167802 - ], - [ - 9.6126055, - 44.167802 - ], - [ - 9.6126055, - 44.1685042 - ], - [ - 9.6116468, - 44.1685042 - ], - [ - 9.6116468, - 44.167802 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Dinn0", - "uid": "14893874", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-28T22:06:02Z", - "reviewed_features": [], - "create": 0, - "modify": 2, - "delete": 0, - "area": 6.73199139999227e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_25m": 2 - }, - "id": 117960826 - } - }, - { - "id": 117958784, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.1418963, - 49.1959921 - ], - [ - 8.1418963, - 49.1959921 - ], - [ - 8.1418963, - 49.1959921 - ], - [ - 8.1418963, - 49.1959921 - ], - [ - 8.1418963, - 49.1959921 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Dinn0", - "uid": "14893874", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-28T20:47:49Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 117958784 - } - }, - { - "id": 117958429, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2590663, - 50.8071063 - ], - [ - 5.2661324, - 50.8071063 - ], - [ - 5.2661324, - 50.8085082 - ], - [ - 5.2590663, - 50.8085082 - ], - [ - 5.2590663, - 50.8071063 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-28T20:35:12Z", - "reviewed_features": [], - "create": 48, - "modify": 167, - "delete": 0, - "area": 0.00000990596558998363, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 152, - "path": "mc/develop/", - "theme": "grb", - "import": 6, - "locale": "nl", - "imagery": "osm", - "conflation": 40 - }, - "id": 117958429 - } - }, - { - "id": 117956632, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4334327, - 50.9163401 - ], - [ - 5.4509627, - 50.9163401 - ], - [ - 5.4509627, - 50.9334561 - ], - [ - 5.4334327, - 50.9334561 - ], - [ - 5.4334327, - 50.9163401 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-28T19:32:42Z", - "reviewed_features": [], - "create": 0, - "modify": 22, - "delete": 0, - "area": 0.000300043480000023, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 22, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 22 - }, - "id": 117956632 - } - }, - { - "id": 117950898, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2607783, - 50.806823 - ], - [ - 5.278394, - 50.806823 - ], - [ - 5.278394, - 50.8091151 - ], - [ - 5.2607783, - 50.8091151 - ], - [ - 5.2607783, - 50.806823 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-28T16:35:16Z", - "reviewed_features": [], - "create": 441, - "modify": 618, - "delete": 6, - "area": 0.0000403769459699678, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 554, - "path": "mc/develop/", - "theme": "grb", - "delete": 6, - "import": 55, - "locale": "nl", - "imagery": "osm", - "conflation": 132 - }, - "id": 117950898 - } - }, - { - "id": 117949659, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.7751388, - 41.2598941 - ], - [ - 1.7751388, - 41.2598941 - ], - [ - 1.7751388, - 41.2598941 - ], - [ - 1.7751388, - 41.2598941 - ], - [ - 1.7751388, - 41.2598941 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "hortacalaf", - "uid": "14495457", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-28T15:56:13Z", - "reviewed_features": [], - "create": 0, - "modify": 10, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", - "answer": 14, - "locale": "en", - "imagery": "osm" - }, - "id": 117949659 - } - }, - { - "id": 117947018, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2649267, - 51.0441278 - ], - [ - 4.280464, - 51.0441278 - ], - [ - 4.280464, - 51.0651202 - ], - [ - 4.2649267, - 51.0651202 - ], - [ - 4.2649267, - 51.0441278 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Rienux", - "uid": "11911273", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-28T14:38:01Z", - "reviewed_features": [], - "create": 0, - "modify": 16, - "delete": 0, - "area": 0.000326165216520069, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "street_lighting", - "answer": 17, - "locale": "nl", - "imagery": "osm" - }, - "id": 117947018 - } - }, - { - "id": 117946092, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2421613, - 51.2058621 - ], - [ - 3.2421613, - 51.2058621 - ], - [ - 3.2421613, - 51.2058621 - ], - [ - 3.2421613, - 51.2058621 - ], - [ - 3.2421613, - 51.2058621 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-28T14:08:29Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "answer": 2, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_within_1000m": 2 - }, - "id": 117946092 - } - }, - { - "id": 117943693, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2805524, - 51.0775302 - ], - [ - 4.288307, - 51.0775302 - ], - [ - 4.288307, - 51.0824935 - ], - [ - 4.2805524, - 51.0824935 - ], - [ - 4.2805524, - 51.0775302 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Rienux", - "uid": "11911273", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-28T12:50:40Z", - "reviewed_features": [], - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.0000384884061799965, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 7, - "locale": "nl", - "imagery": "osm" - }, - "id": 117943693 - } - }, - { - "id": 117943513, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3137451, - 51.0608336 - ], - [ - 4.317206, - 51.0608336 - ], - [ - 4.317206, - 51.0624509 - ], - [ - 4.3137451, - 51.0624509 - ], - [ - 4.3137451, - 51.0608336 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Rienux", - "uid": "11911273", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-28T12:45:01Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.00000559731356999731, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "waste", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 117943513 - } - }, - { - "id": 117940581, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3558959, - 50.8467476 - ], - [ - 4.3558959, - 50.8467476 - ], - [ - 4.3558959, - 50.8467476 - ], - [ - 4.3558959, - 50.8467476 - ], - [ - 4.3558959, - 50.8467476 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-28T11:31:38Z", - "reviewed_features": [], - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toerisme_vlaanderen", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 6 - }, - "id": 117940581 - } - }, - { - "id": 117939986, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0501123, - 51.1594328 - ], - [ - 3.0501123, - 51.1594328 - ], - [ - 3.0501123, - 51.1594328 - ], - [ - 3.0501123, - 51.1594328 - ], - [ - 3.0501123, - 51.1594328 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-28T11:15:20Z", - "reviewed_features": [], - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "answer": 3, - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 117939986 - } - }, - { - "id": 117939661, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1386134, - 51.1355271 - ], - [ - 3.1386134, - 51.1355271 - ], - [ - 3.1386134, - 51.1355271 - ], - [ - 3.1386134, - 51.1355271 - ], - [ - 3.1386134, - 51.1355271 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-28T11:06:28Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "waste_basket", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 117939661 - } - }, - { - "id": 117938656, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0782124, - 51.1696077 - ], - [ - 3.0782124, - 51.1696077 - ], - [ - 3.0782124, - 51.1696077 - ], - [ - 3.0782124, - 51.1696077 - ], - [ - 3.0782124, - 51.1696077 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #maps", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-28T10:38:14Z", - "reviewed_features": [], - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "maps", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 117938656 - } - }, - { - "id": 117937651, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0500287, - 51.1594983 - ], - [ - 3.0500287, - 51.1594983 - ], - [ - 3.0500287, - 51.1594983 - ], - [ - 3.0500287, - 51.1594983 - ], - [ - 3.0500287, - 51.1594983 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-28T10:14:57Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1 - }, - "id": 117937651 - } - }, - { - "id": 117937603, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.283106, - 50.7940724 - ], - [ - 4.283106, - 50.7940724 - ], - [ - 4.283106, - 50.7940724 - ], - [ - 4.283106, - 50.7940724 - ], - [ - 4.283106, - 50.7940724 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LePirlouit", - "uid": "369248", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-28T10:13:44Z", - "reviewed_features": [], - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 117937603 - } - }, - { - "id": 117934833, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0313911, - 51.1346919 - ], - [ - 3.0313911, - 51.1346919 - ], - [ - 3.0313911, - 51.1346919 - ], - [ - 3.0313911, - 51.1346919 - ], - [ - 3.0313911, - 51.1346919 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-28T08:57:21Z", - "reviewed_features": [], - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "add-image": 1, - "change_over_5000m": 2 - }, - "id": 117934833 - } - }, - { - "id": 117934727, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0314286, - 51.1348012 - ], - [ - 3.0783061, - 51.1348012 - ], - [ - 3.0783061, - 51.1696409 - ], - [ - 3.0314286, - 51.1696409 - ], - [ - 3.0314286, - 51.1348012 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-28T08:54:29Z", - "reviewed_features": [], - "create": 3, - "modify": 9, - "delete": 0, - "area": 0.00163319803674996, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toerisme_vlaanderen", - "answer": 5, - "create": 3, - "locale": "nl", - "imagery": "AGIV", - "add-image": 5, - "change_over_5000m": 13 - }, - "id": 117934727 - } - }, - { - "id": 117934091, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7244409, - 51.0307512 - ], - [ - 13.724461, - 51.0307512 - ], - [ - 13.724461, - 51.030771 - ], - [ - 13.7244409, - 51.030771 - ], - [ - 13.7244409, - 51.0307512 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "brust84", - "uid": "1225756", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-28T08:35:01Z", - "reviewed_features": [], - "create": 2, - "modify": 0, - "delete": 0, - "area": 3.97980000088769e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "create": 2, - "locale": "en", - "imagery": "GEOSN-DOP-RGB", - "change_over_5000m": 2 - }, - "id": 117934091 - } - }, - { - "id": 117933843, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3463111, - 50.7730189 - ], - [ - 5.4743047, - 50.7730189 - ], - [ - 5.4743047, - 50.8031055 - ], - [ - 5.3463111, - 50.8031055 - ], - [ - 5.3463111, - 50.7730189 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-28T08:27:07Z", - "reviewed_features": [], - "create": 0, - "modify": 49, - "delete": 0, - "area": 0.00385089224576053, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 49, - "locale": "nl", - "imagery": "osm" - }, - "id": 117933843 - } - }, - { - "id": 117933667, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1256022, - 50.8322175 - ], - [ - 5.1294022, - 50.8322175 - ], - [ - 5.1294022, - 50.834262 - ], - [ - 5.1256022, - 50.834262 - ], - [ - 5.1256022, - 50.8322175 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-28T08:21:16Z", - "reviewed_features": [], - "create": 261, - "modify": 0, - "delete": 0, - "area": 0.00000776910000001441, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "grb", - "import": 30, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 117933667 - } - }, - { - "id": 117933656, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-28T08:20:56Z", - "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": "AGIV" - }, - "id": 117933656 - } - }, - { - "id": 117933240, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2779002, - 50.8053016 - ], - [ - 5.293049, - 50.8053016 - ], - [ - 5.293049, - 50.8113551 - ], - [ - 5.2779002, - 50.8113551 - ], - [ - 5.2779002, - 50.8053016 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-28T08:06:27Z", - "reviewed_features": [], - "create": 167, - "modify": 1643, - "delete": 49, - "area": 0.0000917032607999994, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 1462, - "path": "mc/develop/", - "theme": "grb", - "delete": 49, - "import": 34, - "locale": "nl", - "imagery": "osm", - "conflation": 394 - }, - "id": 117933240 - } - }, - { - "id": 117933074, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1300154, - 50.8309861 - ], - [ - 5.1332531, - 50.8309861 - ], - [ - 5.1332531, - 50.8367132 - ], - [ - 5.1300154, - 50.8367132 - ], - [ - 5.1300154, - 50.8309861 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-28T08:00:23Z", - "reviewed_features": [], - "create": 551, - "modify": 18, - "delete": 0, - "area": 0.0000185426316700079, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 12, - "theme": "grb", - "answer": 3, - "import": 51, - "locale": "nl", - "imagery": "AGIV", - "conflation": 6 - }, - "id": 117933074 - } - }, - { - "id": 117932649, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.292, - 50.805599 - ], - [ - 5.3029945, - 50.805599 - ], - [ - 5.3029945, - 50.8083194 - ], - [ - 5.292, - 50.8083194 - ], - [ - 5.292, - 50.805599 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-28T07:45:08Z", - "reviewed_features": [], - "create": 251, - "modify": 446, - "delete": 4, - "area": 0.0000299094378000124, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 399, - "path": "mc/develop/", - "theme": "grb", - "delete": 4, - "import": 41, - "locale": "nl", - "imagery": "osm", - "conflation": 96 - }, - "id": 117932649 - } - }, - { - "id": 117932317, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1234435, - 50.8201908 - ], - [ - 5.135203, - 50.8201908 - ], - [ - 5.135203, - 50.8277271 - ], - [ - 5.1234435, - 50.8277271 - ], - [ - 5.1234435, - 50.8201908 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-28T07:33:31Z", - "reviewed_features": [], - "create": 454, - "modify": 87, - "delete": 0, - "area": 0.0000886231198499795, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 72, - "theme": "grb", - "answer": 1, - "import": 48, - "locale": "nl", - "imagery": "osm", - "conflation": 28 - }, - "id": 117932317 - } - }, - { - "id": 117932038, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-28T07:25:43Z", - "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": "AGIV" - }, - "id": 117932038 - } - }, - { - "id": 117932032, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-28T07:25: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": "grb", - "import": 3, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 117932032 - } - }, - { - "id": 117932024, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-28T07:25:15Z", - "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": "AGIV" - }, - "id": 117932024 - } - }, - { - "id": 117929775, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1226571, - 50.8201892 - ], - [ - 5.1342545, - 50.8201892 - ], - [ - 5.1342545, - 50.8279652 - ], - [ - 5.1226571, - 50.8279652 - ], - [ - 5.1226571, - 50.8201892 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-28T05:54:12Z", - "reviewed_features": [], - "create": 854, - "modify": 170, - "delete": 5, - "area": 0.0000901813823999999, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 135, - "theme": "grb", - "answer": 15, - "delete": 5, - "import": 97, - "locale": "nl", - "imagery": "osm", - "conflation": 42, - "change_over_5000m": 70 - }, - "id": 117929775 - } - }, - { - "id": 117921742, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3827014, - 50.8790277 - ], - [ - 4.3830199, - 50.8790277 - ], - [ - 4.3830199, - 50.8791496 - ], - [ - 4.3827014, - 50.8791496 - ], - [ - 4.3827014, - 50.8790277 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-27T20:44:54Z", - "reviewed_features": [], - "create": 3, - "modify": 4, - "delete": 0, - "area": 3.8825149998795e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 12, - "create": 3, - "locale": "en", - "imagery": "UrbISOrtho", - "add-image": 3 - }, - "id": 117921742 - } - }, - { - "id": 117920820, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.463616, - 51.0175071 - ], - [ - 4.463616, - 51.0175071 - ], - [ - 4.463616, - 51.0175071 - ], - [ - 4.463616, - 51.0175071 - ], - [ - 4.463616, - 51.0175071 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "philippec", - "uid": "76884", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-27T20:13:29Z", - "reviewed_features": [], - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "change_within_5000m": 2 - }, - "id": 117920820 - } - }, - { - "id": 117919377, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3794928, - 50.8722963 - ], - [ - 4.3825471, - 50.8722963 - ], - [ - 4.3825471, - 50.8731554 - ], - [ - 4.3794928, - 50.8731554 - ], - [ - 4.3794928, - 50.8722963 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-27T19:15:10Z", - "reviewed_features": [], - "create": 1, - "modify": 2, - "delete": 0, - "area": 0.00000262394912999832, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 9, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 3 - }, - "id": 117919377 - } - }, - { - "id": 117917880, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2106384, - 51.1864662 - ], - [ - 3.2106384, - 51.1864662 - ], - [ - 3.2106384, - 51.1864662 - ], - [ - 3.2106384, - 51.1864662 - ], - [ - 3.2106384, - 51.1864662 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-27T18:14:19Z", - "reviewed_features": [], - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "shops", - "answer": 4, - "locale": "en", - "imagery": "osm", - "change_within_5000m": 4 - }, - "id": 117917880 - } - }, - { - "id": 117916847, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.235825, - 51.2026888 - ], - [ - 3.235825, - 51.2026888 - ], - [ - 3.235825, - 51.2026888 - ], - [ - 3.235825, - 51.2026888 - ], - [ - 3.235825, - 51.2026888 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #ghostbikes", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-27T17:35:47Z", - "reviewed_features": [], - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "ghostbikes", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 117916847 - } - }, - { - "id": 117916372, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3536276, - 50.9789663 - ], - [ - 3.3536276, - 50.9789663 - ], - [ - 3.3536276, - 50.9789663 - ], - [ - 3.3536276, - 50.9789663 - ], - [ - 3.3536276, - 50.9789663 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-27T17:19:45Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 117916372 - } - }, - { - "id": 117913221, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2959964, - 50.8053448 - ], - [ - 5.2985557, - 50.8053448 - ], - [ - 5.2985557, - 50.8078435 - ], - [ - 5.2959964, - 50.8078435 - ], - [ - 5.2959964, - 50.8053448 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-27T15:49:26Z", - "reviewed_features": [], - "create": 42, - "modify": 238, - "delete": 0, - "area": 0.00000639492290999094, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 218, - "path": "mc/develop/", - "theme": "grb", - "import": 8, - "locale": "nl", - "imagery": "osm", - "conflation": 48 - }, - "id": 117913221 - } - }, - { - "id": 117911710, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2921522, - 50.8080678 - ], - [ - 5.2987901, - 50.8080678 - ], - [ - 5.2987901, - 50.809723 - ], - [ - 5.2921522, - 50.809723 - ], - [ - 5.2921522, - 50.8080678 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-27T15:06:58Z", - "reviewed_features": [], - "create": 100, - "modify": 413, - "delete": 28, - "area": 0.0000109870520799642, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 366, - "path": "mc/develop/", - "theme": "grb", - "delete": 28, - "import": 16, - "locale": "nl", - "imagery": "osm", - "conflation": 102 - }, - "id": 117911710 - } - }, - { - "id": 117910854, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -76.84122, - 39.1928494 - ], - [ - -76.817449, - 39.1928494 - ], - [ - -76.817449, - 39.1941161 - ], - [ - -76.84122, - 39.1941161 - ], - [ - -76.84122, - 39.1928494 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 42, - "name": "Invalid tag modification" - } - ], - "tags": [], - "features": [ - { - "url": "node-3628885593", - "name": "ChargePoint", - "osm_id": 3628885593, - "reasons": [ - 42 - ], - "version": 7, - "primary_tags": {} - } - ], - "user": "PlugInSites", - "uid": "10651792", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-27T14:45:19Z", - "reviewed_features": [], - "create": 0, - "modify": 10, - "delete": 0, - "area": 0.0000301107257000652, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "answer": 13, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 117910854 - } - }, - { - "id": 117907958, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4118342, - 50.8140311 - ], - [ - 4.4118342, - 50.8140311 - ], - [ - 4.4118342, - 50.8140311 - ], - [ - 4.4118342, - 50.8140311 - ], - [ - 4.4118342, - 50.8140311 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "StefDeGreef", - "uid": "1860737", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-27T13:23:17Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 2, - "locale": "fr", - "imagery": "CartoDB.Voyager", - "change_within_25m": 2 - }, - "id": 117907958 - } - }, - { - "id": 117906150, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -60.8482233, - -32.9302062 - ], - [ - -60.7974688, - -32.9302062 - ], - [ - -60.7974688, - -32.9103547 - ], - [ - -60.8482233, - -32.9103547 - ], - [ - -60.8482233, - -32.9302062 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mweper", - "uid": "1311281", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-27T12:28:41Z", - "reviewed_features": [], - "create": 0, - "modify": 199, - "delete": 0, - "area": 0.00100755295675015, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 257, - "locale": "en", - "imagery": "osm" - }, - "id": 117906150 - } - }, - { - "id": 117905994, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.6065941, - 52.2880617 - ], - [ - -1.6063515, - 52.2880617 - ], - [ - -1.6063515, - 52.2881192 - ], - [ - -1.6065941, - 52.2881192 - ], - [ - -1.6065941, - 52.2880617 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RobJN", - "uid": "411244", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #uk_addresses", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-27T12:22:10Z", - "reviewed_features": [], - "create": 3, - "modify": 3, - "delete": 0, - "area": 1.39494999992554e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "uk_addresses", - "answer": 5, - "import": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 117905994 - } - }, - { - "id": 117903683, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.071983, - 51.164742 - ], - [ - 3.0723001, - 51.164742 - ], - [ - 3.0723001, - 51.1649097 - ], - [ - 3.071983, - 51.1649097 - ], - [ - 3.071983, - 51.164742 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-27T10:58:17Z", - "reviewed_features": [], - "create": 0, - "modify": 3, - "delete": 0, - "area": 5.31776700018588e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toerisme_vlaanderen", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 117903683 - } - }, - { - "id": 117903440, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0524522, - 51.1586315 - ], - [ - 3.0524522, - 51.1586315 - ], - [ - 3.0524522, - 51.1586315 - ], - [ - 3.0524522, - 51.1586315 - ], - [ - 3.0524522, - 51.1586315 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #postboxes", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-27T10:51:26Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "postboxes", - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 117903440 - } - }, - { - "id": 117903263, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0792912, - 51.1661946 - ], - [ - 3.0792912, - 51.1661946 - ], - [ - 3.0792912, - 51.1661946 - ], - [ - 3.0792912, - 51.1661946 - ], - [ - 3.0792912, - 51.1661946 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-27T10:45:00Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 117903263 - } - }, - { - "id": 117903259, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-27T10:44: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": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 117903259 - } - }, - { - "id": 117900860, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1084541, - 50.918405 - ], - [ - 4.1087311, - 50.918405 - ], - [ - 4.1087311, - 50.9185753 - ], - [ - 4.1084541, - 50.9185753 - ], - [ - 4.1084541, - 50.918405 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-27T09:16:00Z", - "reviewed_features": [], - "create": 2, - "modify": 2, - "delete": 0, - "area": 4.7173100000111e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toerisme_vlaanderen", - "answer": 9, - "create": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 117900860 - } - }, - { - "id": 117900775, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0693793, - 51.1679083 - ], - [ - 3.0693793, - 51.1679083 - ], - [ - 3.0693793, - 51.1679083 - ], - [ - 3.0693793, - 51.1679083 - ], - [ - 3.0693793, - 51.1679083 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-27T09:12:40Z", - "reviewed_features": [], - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", - "answer": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 117900775 - } - }, - { - "id": 117898315, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1312605, - 50.823561 - ], - [ - 5.1347713, - 50.823561 - ], - [ - 5.1347713, - 50.8247622 - ], - [ - 5.1312605, - 50.8247622 - ], - [ - 5.1312605, - 50.823561 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-27T06:53:42Z", - "reviewed_features": [], - "create": 147, - "modify": 0, - "delete": 0, - "area": 0.00000421717296001438, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "grb", - "import": 7, - "locale": "nl", - "imagery": "osm" - }, - "id": 117898315 - } - }, - { - "id": 117898288, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1324221, - 50.8233952 - ], - [ - 5.1345535, - 50.8233952 - ], - [ - 5.1345535, - 50.8243634 - ], - [ - 5.1324221, - 50.8243634 - ], - [ - 5.1324221, - 50.8233952 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-27T06:51:41Z", - "reviewed_features": [], - "create": 113, - "modify": 0, - "delete": 0, - "area": 0.00000206362148000531, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "grb", - "import": 15, - "locale": "nl", - "imagery": "osm" - }, - "id": 117898288 - } - }, - { - "id": 117898122, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0254341, - 50.8227634 - ], - [ - 5.1353315, - 50.8227634 - ], - [ - 5.1353315, - 51.1107596 - ], - [ - 5.0254341, - 51.1107596 - ], - [ - 5.0254341, - 50.8227634 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-27T06:36:34Z", - "reviewed_features": [], - "create": 209, - "modify": 163, - "delete": 0, - "area": 0.0316500335898803, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 140, - "theme": "grb", - "answer": 1, - "import": 25, - "locale": "nl", - "imagery": "osm", - "conflation": 44 - }, - "id": 117898122 - } - }, - { - "id": 117893098, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3470833, - 50.8501498 - ], - [ - 4.3470833, - 50.8501498 - ], - [ - 4.3470833, - 50.8501498 - ], - [ - 4.3470833, - 50.8501498 - ], - [ - 4.3470833, - 50.8501498 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-26T21:59:12Z", - "reviewed_features": [], - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "food", - "answer": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 117893098 - } - }, - { - "id": 117892584, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3463936, - 50.8499268 - ], - [ - 4.3463936, - 50.8499268 - ], - [ - 4.3463936, - 50.8499268 - ], - [ - 4.3463936, - 50.8499268 - ], - [ - 4.3463936, - 50.8499268 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-26T21:36:31Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cyclofix", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_50m": 2 - }, - "id": 117892584 - } - }, - { - "id": 117892223, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0714073, - 51.1422327 - ], - [ - 3.1358196, - 51.1422327 - ], - [ - 3.1358196, - 51.1705377 - ], - [ - 3.0714073, - 51.1705377 - ], - [ - 3.0714073, - 51.1422327 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-26T21:19:30Z", - "reviewed_features": [], - "create": 0, - "modify": 8, - "delete": 0, - "area": 0.00182319015149974, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 7, - "change_over_5000m": 7 - }, - "id": 117892223 - } - }, - { - "id": 117891049, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3084965, - 50.8327029 - ], - [ - 4.3084965, - 50.8327029 - ], - [ - 4.3084965, - 50.8327029 - ], - [ - 4.3084965, - 50.8327029 - ], - [ - 4.3084965, - 50.8327029 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-26T20:31:13Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 117891049 - } - }, - { - "id": 117890941, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3470833, - 50.8501498 - ], - [ - 4.3470833, - 50.8501498 - ], - [ - 4.3470833, - 50.8501498 - ], - [ - 4.3470833, - 50.8501498 - ], - [ - 4.3470833, - 50.8501498 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-26T20:26:34Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "food", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 117890941 - } - }, - { - "id": 117890808, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2777976, - 50.806569 - ], - [ - 5.2972909, - 50.806569 - ], - [ - 5.2972909, - 50.8150835 - ], - [ - 5.2777976, - 50.8150835 - ], - [ - 5.2777976, - 50.806569 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-26T20:21:25Z", - "reviewed_features": [], - "create": 237, - "modify": 257, - "delete": 8, - "area": 0.000165975702849937, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 221, - "path": "mc/develop/", - "theme": "grb", - "delete": 8, - "import": 54, - "locale": "nl", - "imagery": "osm", - "conflation": 72 - }, - "id": 117890808 - } - }, - { - "id": 117890468, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.639008, - 54.8063377 - ], - [ - -1.6327923, - 54.8063377 - ], - [ - -1.6327923, - 54.809936 - ], - [ - -1.639008, - 54.809936 - ], - [ - -1.639008, - 54.8063377 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "confusedbuffalo", - "uid": "242345", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-26T20:06:59Z", - "reviewed_features": [], - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.0000223659533100012, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 5, - "locale": "en", - "imagery": "osm" - }, - "id": 117890468 - } - }, - { - "id": 117890044, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.8715637, - 47.1105955 - ], - [ - 11.3955972, - 47.1105955 - ], - [ - 11.3955972, - 48.3661791 - ], - [ - 10.8715637, - 48.3661791 - ], - [ - 10.8715637, - 47.1105955 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 83, - "name": "User has multiple blocks" - } - ], - "tags": [], - "features": [], - "user": "Hibenny", - "uid": "2183247", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-26T19:49:35Z", - "reviewed_features": [], - "create": 1, - "modify": 6, - "delete": 0, - "area": 0.657967868450597, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "toilets", - "answer": 22, - "create": 1, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 13, - "change_within_500m": 2, - "change_within_5000m": 8 - }, - "id": 117890044 - } - }, - { - "id": 117888476, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.6062287, - 52.2878215 - ], - [ - -1.6053489, - 52.2878215 - ], - [ - -1.6053489, - 52.2880353 - ], - [ - -1.6062287, - 52.2880353 - ], - [ - -1.6062287, - 52.2878215 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RobJN", - "uid": "411244", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #uk_addresses", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-26T18:39:53Z", - "reviewed_features": [], - "create": 4, - "modify": 9, - "delete": 0, - "area": 1.88101239997666e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "uk_addresses", - "answer": 11, - "import": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 117888476 - } - }, - { - "id": 117886000, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1720654, - 50.9056478 - ], - [ - 4.2173101, - 50.9056478 - ], - [ - 4.2173101, - 50.9443397 - ], - [ - 4.1720654, - 50.9443397 - ], - [ - 4.1720654, - 50.9056478 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 42, - "name": "Invalid tag modification" - } - ], - "tags": [], - "features": [ - { - "url": "way-25067193", - "osm_id": 25067193, - "reasons": [ - 42 - ], - "version": 7, - "primary_tags": {} - } - ], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-26T17:07:36Z", - "reviewed_features": [], - "create": 1, - "modify": 4, - "delete": 0, - "area": 0.00175060340793014, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toerisme_vlaanderen", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "soft-delete": 1, - "change_over_5000m": 1, - "change_within_500m": 2, - "change_within_5000m": 4, - "soft-delete:way/25067193": "disused" - }, - "id": 117886000 - } - }, - { - "id": 117885993, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-26T17:07: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": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_500m": 1 - }, - "id": 117885993 - } - }, - { - "id": 117885978, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-26T17:06:34Z", - "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": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_500m": 1 - }, - "id": 117885978 - } - }, - { - "id": 117885971, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-26T17:06: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": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_500m": 1 - }, - "id": 117885971 - } - }, - { - "id": 117885967, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-26T17:06:18Z", - "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": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_500m": 3 - }, - "id": 117885967 - } - }, - { - "id": 117885915, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-26T17:04: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": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "change_within_100m": 2 - }, - "id": 117885915 - } - }, - { - "id": 117885913, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-26T17:04:15Z", - "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": "toerisme_vlaanderen", - "answer": 4, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_100m": 5 - }, - "id": 117885913 - } - }, - { - "id": 117885827, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2043402, - 50.9049894 - ], - [ - 4.2043402, - 50.9049894 - ], - [ - 4.2043402, - 50.9049894 - ], - [ - 4.2043402, - 50.9049894 - ], - [ - 4.2043402, - 50.9049894 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-26T17:01:53Z", - "reviewed_features": [], - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toerisme_vlaanderen", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 117885827 - } - }, - { - "id": 117885237, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2745986, - 50.8098588 - ], - [ - 5.2763471, - 50.8098588 - ], - [ - 5.2763471, - 50.8111099 - ], - [ - 5.2745986, - 50.8111099 - ], - [ - 5.2745986, - 50.8098588 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-26T16:44:56Z", - "reviewed_features": [], - "create": 27, - "modify": 92, - "delete": 2, - "area": 0.00000218754834999528, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 81, - "path": "mc/develop/", - "theme": "grb", - "delete": 2, - "import": 8, - "locale": "nl", - "imagery": "osm", - "conflation": 28 - }, - "id": 117885237 - } - }, - { - "id": 117885227, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2765944, - 50.8107755 - ], - [ - 5.2770225, - 50.8107755 - ], - [ - 5.2770225, - 50.8109672 - ], - [ - 5.2765944, - 50.8109672 - ], - [ - 5.2765944, - 50.8107755 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-26T16:44:39Z", - "reviewed_features": [], - "create": 7, - "modify": 0, - "delete": 0, - "area": 8.20667700009773e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "grb", - "import": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 117885227 - } - }, - { - "id": 117884749, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2767807, - 50.8104763 - ], - [ - 5.2833304, - 50.8104763 - ], - [ - 5.2833304, - 50.8126819 - ], - [ - 5.2767807, - 50.8126819 - ], - [ - 5.2767807, - 50.8104763 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-26T16:30:54Z", - "reviewed_features": [], - "create": 74, - "modify": 522, - "delete": 16, - "area": 0.0000144460183200225, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 456, - "path": "mc/develop/", - "theme": "grb", - "delete": 16, - "import": 13, - "locale": "nl", - "imagery": "osm", - "conflation": 136 - }, - "id": 117884749 - } - }, - { - "id": 117884516, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.4218411, - 49.1430194 - ], - [ - 2.4612256, - 49.1430194 - ], - [ - 2.4612256, - 49.1765443 - ], - [ - 2.4218411, - 49.1765443 - ], - [ - 2.4218411, - 49.1430194 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LeTopographeFou", - "uid": "3178375", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-26T16:23:54Z", - "reviewed_features": [], - "create": 0, - "modify": 25, - "delete": 0, - "area": 0.00132036142405014, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 30, - "locale": "en", - "imagery": "osm" - }, - "id": 117884516 - } - }, - { - "id": 117883084, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3429771, - 50.8323896 - ], - [ - 4.3429771, - 50.8323896 - ], - [ - 4.3429771, - 50.8323896 - ], - [ - 4.3429771, - 50.8323896 - ], - [ - 4.3429771, - 50.8323896 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-26T15:39:31Z", - "reviewed_features": [], - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 117883084 - } - }, - { - "id": 117882632, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2788429, - 50.8076931 - ], - [ - 5.296385, - 50.8076931 - ], - [ - 5.296385, - 50.8314482 - ], - [ - 5.2788429, - 50.8314482 - ], - [ - 5.2788429, - 50.8076931 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-26T15:25:36Z", - "reviewed_features": [], - "create": 1576, - "modify": 1198, - "delete": 24, - "area": 0.000416714339709919, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 1074, - "path": "mc/develop/", - "theme": "grb", - "delete": 24, - "import": 254, - "locale": "nl", - "imagery": "osm", - "conflation": 292 - }, - "id": 117882632 - } - }, - { - "id": 117882629, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-26T15:25:32Z", - "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, - "locale": "nl", - "imagery": "osm" - }, - "id": 117882629 - } - }, - { - "id": 117881406, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2872801, - 50.8068401 - ], - [ - 5.2981148, - 50.8068401 - ], - [ - 5.2981148, - 50.8153307 - ], - [ - 5.2872801, - 50.8153307 - ], - [ - 5.2872801, - 50.8068401 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - }, - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "way-553143865", - "osm_id": 553143865, - "reasons": [ - 43 - ], - "version": 3, - "primary_tags": { - "building": "sports_centre" - } - } - ], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-26T14:49:00Z", - "reviewed_features": [], - "create": 1373, - "modify": 115, - "delete": 4, - "area": 0.0000919931038199365, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 101, - "path": "mc/develop/", - "theme": "grb", - "delete": 4, - "import": 199, - "locale": "nl", - "imagery": "osm", - "conflation": 34 - }, - "id": 117881406 - } - }, - { - "id": 117880716, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2820687, - 50.8062495 - ], - [ - 5.2879505, - 50.8062495 - ], - [ - 5.2879505, - 50.8077401 - ], - [ - 5.2820687, - 50.8077401 - ], - [ - 5.2820687, - 50.8062495 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-26T14:25:09Z", - "reviewed_features": [], - "create": 87, - "modify": 421, - "delete": 5, - "area": 0.00000876741107998118, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 377, - "path": "mc/develop/", - "theme": "grb", - "answer": 1, - "delete": 5, - "import": 11, - "locale": "nl", - "imagery": "osm", - "conflation": 98 - }, - "id": 117880716 - } - }, - { - "id": 117878376, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.4024767, - 49.1485812 - ], - [ - 2.4476326, - 49.1485812 - ], - [ - 2.4476326, - 49.1685171 - ], - [ - 2.4024767, - 49.1685171 - ], - [ - 2.4024767, - 49.1485812 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LeTopographeFou", - "uid": "3178375", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-26T13:06:14Z", - "reviewed_features": [], - "create": 0, - "modify": 37, - "delete": 0, - "area": 0.000900223506810008, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 56, - "locale": "en", - "imagery": "osm" - }, - "id": 117878376 - } - }, - { - "id": 117877084, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.35786, - 50.8679295 - ], - [ - 4.35786, - 50.8679295 - ], - [ - 4.35786, - 50.8679295 - ], - [ - 4.35786, - 50.8679295 - ], - [ - 4.35786, - 50.8679295 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-26T12:12:08Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 117877084 - } - }, - { - "id": 117875306, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.2940108, - 46.1149844 - ], - [ - 8.2940108, - 46.1149844 - ], - [ - 8.2940108, - 46.1149844 - ], - [ - 8.2940108, - 46.1149844 - ], - [ - 8.2940108, - 46.1149844 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "WinstonSmith", - "uid": "36030", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-26T10:54:19Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "drinking_water", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_25m": 1 - }, - "id": 117875306 - } - }, - { - "id": 117870504, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.979033, - 51.1556675 - ], - [ - 5.0248741, - 51.1556675 - ], - [ - 5.0248741, - 51.1710724 - ], - [ - 4.979033, - 51.1710724 - ], - [ - 4.979033, - 51.1556675 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-26T06:41:59Z", - "reviewed_features": [], - "create": 0, - "modify": 10, - "delete": 0, - "area": 0.000706177561389997, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 10, - "locale": "nl", - "imagery": "osm" - }, - "id": 117870504 - } - }, - { - "id": 117865204, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0700233, - 51.1657069 - ], - [ - 3.1241754, - 51.1657069 - ], - [ - 3.1241754, - 51.1734441 - ], - [ - 3.0700233, - 51.1734441 - ], - [ - 3.0700233, - 51.1657069 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-25T22:52:13Z", - "reviewed_features": [], - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.000418985628119676, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "locale": "en", - "imagery": "osm", - "add-image": 2 - }, - "id": 117865204 - } - }, - { - "id": 117862305, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1235123, - 51.1778646 - ], - [ - 3.1235123, - 51.1778646 - ], - [ - 3.1235123, - 51.1778646 - ], - [ - 3.1235123, - 51.1778646 - ], - [ - 3.1235123, - 51.1778646 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-25T20:37:02Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1 - }, - "id": 117862305 - } - }, - { - "id": 117861208, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1232178, - 51.1690578 - ], - [ - 3.1232178, - 51.1690578 - ], - [ - 3.1232178, - 51.1690578 - ], - [ - 3.1232178, - 51.1690578 - ], - [ - 3.1232178, - 51.1690578 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-25T19:57:09Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artwork", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 117861208 - } - }, - { - "id": 117859682, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1369843, - 51.1365674 - ], - [ - 3.1369843, - 51.1365674 - ], - [ - 3.1369843, - 51.1365674 - ], - [ - 3.1369843, - 51.1365674 - ], - [ - 3.1369843, - 51.1365674 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-25T19:01:40Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "waste_basket", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 117859682 - } - }, - { - "id": 117857377, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -38.5054439, - -3.7237741 - ], - [ - -38.5054439, - -3.7237741 - ], - [ - -38.5054439, - -3.7237741 - ], - [ - -38.5054439, - -3.7237741 - ], - [ - -38.5054439, - -3.7237741 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "matheusgomesms", - "uid": "3781248", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #parkings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-25T17:37:25Z", - "reviewed_features": [], - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "parkings", - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 117857377 - } - }, - { - "id": 117856101, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9987759, - 51.1567508 - ], - [ - 5.0009372, - 51.1567508 - ], - [ - 5.0009372, - 51.1578692 - ], - [ - 4.9987759, - 51.1578692 - ], - [ - 4.9987759, - 51.1567508 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-25T16:54:15Z", - "reviewed_features": [], - "create": 104, - "modify": 15, - "delete": 0, - "area": 0.0000024171979200062, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 12, - "theme": "grb", - "import": 22, - "locale": "nl", - "imagery": "osm", - "conflation": 6 - }, - "id": 117856101 - } - }, - { - "id": 117850054, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -9.0741458, - 53.2674601 - ], - [ - -9.0353548, - 53.2674601 - ], - [ - -9.0353548, - 53.281917 - ], - [ - -9.0741458, - 53.281917 - ], - [ - -9.0741458, - 53.2674601 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Cmap99", - "uid": "13524250", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #bicycle_rental", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-25T13:46:02Z", - "reviewed_features": [], - "create": 0, - "modify": 24, - "delete": 0, - "area": 0.000560797607899958, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bicycle_rental", - "answer": 31, - "locale": "en", - "imagery": "osm" - }, - "id": 117850054 - } - }, - { - "id": 117849733, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -9.0789199, - 53.2585566 - ], - [ - -9.0747958, - 53.2585566 - ], - [ - -9.0747958, - 53.2608554 - ], - [ - -9.0789199, - 53.2608554 - ], - [ - -9.0789199, - 53.2585566 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Cmap99", - "uid": "13524250", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-25T13:36:41Z", - "reviewed_features": [], - "create": 0, - "modify": 9, - "delete": 0, - "area": 0.000009480481079994, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "food", - "answer": 9, - "locale": "en", - "imagery": "osm" - }, - "id": 117849733 - } - }, - { - "id": 117849553, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -9.0929024, - 53.2566022 - ], - [ - -9.0830753, - 53.2566022 - ], - [ - -9.0830753, - 53.2582216 - ], - [ - -9.0929024, - 53.2582216 - ], - [ - -9.0929024, - 53.2566022 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Cmap99", - "uid": "13524250", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-25T13:31:36Z", - "reviewed_features": [], - "create": 0, - "modify": 8, - "delete": 0, - "area": 0.0000159140057399552, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "waste", - "answer": 10, - "locale": "en", - "imagery": "osm" - }, - "id": 117849553 - } - }, - { - "id": 117849032, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6536321, - 51.0686205 - ], - [ - 5.6536321, - 51.0686205 - ], - [ - 5.6536321, - 51.0686205 - ], - [ - 5.6536321, - 51.0686205 - ], - [ - 5.6536321, - 51.0686205 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "kersentaart", - "uid": "9812520", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-25T13:17:10Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 117849032 - } - }, - { - "id": 117844829, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4027089, - 50.9068627 - ], - [ - 4.4300828, - 50.9068627 - ], - [ - 4.4300828, - 51.0639441 - ], - [ - 3.4027089, - 51.0639441 - ], - [ - 3.4027089, - 50.9068627 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-25T11:06:52Z", - "reviewed_features": [], - "create": 0, - "modify": 11, - "delete": 0, - "area": 0.161381330535463, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toerisme_vlaanderen", - "answer": 13, - "locale": "nl", - "imagery": "osm" - }, - "id": 117844829 - } - }, - { - "id": 117844130, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.0177687, - 47.9206955 - ], - [ - 15.1591345, - 47.9206955 - ], - [ - 15.1591345, - 48.1493133 - ], - [ - 15.0177687, - 48.1493133 - ], - [ - 15.0177687, - 47.9206955 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "alxGS", - "uid": "13367754", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-25T10:45:01Z", - "reviewed_features": [], - "create": 0, - "modify": 93, - "delete": 0, - "area": 0.0323187381912405, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 154, - "locale": "en", - "imagery": "osm" - }, - "id": 117844130 - } - }, - { - "id": 117842068, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2584268, - 51.8219167 - ], - [ - 4.2584268, - 51.8219167 - ], - [ - 4.2584268, - 51.8219167 - ], - [ - 4.2584268, - 51.8219167 - ], - [ - 4.2584268, - 51.8219167 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wvdp", - "uid": "436419", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-25T09:47:51Z", - "reviewed_features": [], - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "answer": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 117842068 - } - }, - { - "id": 117833704, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.6650333, - -36.9291217 - ], - [ - 174.6650333, - -36.9291217 - ], - [ - 174.6650333, - -36.9291217 - ], - [ - 174.6650333, - -36.9291217 - ], - [ - 174.6650333, - -36.9291217 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ralley", - "uid": "670820", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-25T04:16:08Z", - "reviewed_features": [], - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "answer": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 117833704 - } - }, - { - "id": 117833272, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.3520036, - 48.1753649 - ], - [ - 16.3529358, - 48.1753649 - ], - [ - 16.3529358, - 48.1757578 - ], - [ - 16.3520036, - 48.1757578 - ], - [ - 16.3520036, - 48.1753649 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "fdemmer", - "uid": "58402", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-25T03:46:12Z", - "reviewed_features": [], - "create": 0, - "modify": 2, - "delete": 0, - "area": 3.66261380001725e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "waste", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 117833272 - } - }, - { - "id": 117831073, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.27719, - 47.797864 - ], - [ - -4.27719, - 47.797864 - ], - [ - -4.27719, - 47.797864 - ], - [ - -4.27719, - 47.797864 - ], - [ - -4.27719, - 47.797864 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "TedScouGV", - "uid": "75300", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-25T00:13:28Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "entrances", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_500m": 1 - }, - "id": 117831073 - } - }, - { - "id": 117829610, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -78.7203401, - 39.8187221 - ], - [ - -78.2433575, - 39.8187221 - ], - [ - -78.2433575, - 40.0136729 - ], - [ - -78.7203401, - 40.0136729 - ], - [ - -78.7203401, - 39.8187221 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "SAEMS09", - "uid": "15140872", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-24T22:20:58Z", - "reviewed_features": [], - "create": 4, - "modify": 6, - "delete": 0, - "area": 0.0929881394560803, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "answer": 10, - "create": 4, - "locale": "en", - "imagery": "Mapbox" - }, - "id": 117829610 - } - }, - { - "id": 117827426, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.245099, - 48.9760208 - ], - [ - 2.2503439, - 48.9760208 - ], - [ - 2.2503439, - 48.9816852 - ], - [ - 2.245099, - 48.9816852 - ], - [ - 2.245099, - 48.9760208 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LeTopographeFou", - "uid": "3178375", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-24T20:50:21Z", - "reviewed_features": [], - "create": 0, - "modify": 11, - "delete": 0, - "area": 0.0000297092115600011, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 12, - "locale": "en", - "imagery": "osm" - }, - "id": 117827426 - } - }, - { - "id": 117826283, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.637074, - 51.0559106 - ], - [ - 5.637074, - 51.0559106 - ], - [ - 5.637074, - 51.0559106 - ], - [ - 5.637074, - 51.0559106 - ], - [ - 5.637074, - 51.0559106 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 41, - "name": "Software editor was not declared" - } - ], - "tags": [], - "features": [], - "user": "kersentaart", - "uid": "9812520", - "editor": null, - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-24T20:11:06Z", - "reviewed_features": [], - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "toerisme_vlaanderen", - "answer": 5, - "import": 1, - "import:node/9533221527": "source: https://osm.org/note/3044350" - }, - "id": 117826283 - } - }, - { - "id": 117821852, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.133549, - 51.1381911 - ], - [ - 3.1449544, - 51.1381911 - ], - [ - 3.1449544, - 51.1410395 - ], - [ - 3.133549, - 51.1410395 - ], - [ - 3.133549, - 51.1381911 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-24T17:53:54Z", - "reviewed_features": [], - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.0000324871413599747, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toerisme_vlaanderen", - "locale": "nl", - "imagery": "osm", - "add-image": 3, - "change_over_5000m": 2 - }, - "id": 117821852 - } - }, - { - "id": 117819033, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7020895, - 51.0536132 - ], - [ - 3.7020895, - 51.0536132 - ], - [ - 3.7020895, - 51.0536132 - ], - [ - 3.7020895, - 51.0536132 - ], - [ - 3.7020895, - 51.0536132 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-24T16:28:14Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "change_within_500m": 2 - }, - "id": 117819033 - } - }, - { - "id": 117817821, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7032208, - 51.0565472 - ], - [ - 3.7044408, - 51.0565472 - ], - [ - 3.7044408, - 51.0577636 - ], - [ - 3.7032208, - 51.0577636 - ], - [ - 3.7032208, - 51.0565472 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-24T15:54:27Z", - "reviewed_features": [], - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000148400800000502, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "etymology", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "change_within_500m": 2 - }, - "id": 117817821 - } - }, - { - "id": 117817623, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7066533, - 51.0545308 - ], - [ - 3.7071735, - 51.0545308 - ], - [ - 3.7071735, - 51.0545809 - ], - [ - 3.7066533, - 51.0545809 - ], - [ - 3.7066533, - 51.0545308 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-24T15:49:15Z", - "reviewed_features": [], - "create": 2, - "modify": 5, - "delete": 0, - "area": 2.60620199977736e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "benches", - "answer": 3, - "create": 2, - "locale": "nl", - "imagery": "AGIV", - "add-image": 4, - "change_over_5000m": 2, - "change_within_25m": 6, - "change_within_50m": 1 - }, - "id": 117817623 - } - }, - { - "id": 117816434, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2201704, - 51.2061911 - ], - [ - 3.2201704, - 51.2061911 - ], - [ - 3.2201704, - 51.2061911 - ], - [ - 3.2201704, - 51.2061911 - ], - [ - 3.2201704, - 51.2061911 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-24T15:16:00Z", - "reviewed_features": [], - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 117816434 - } - }, - { - "id": 117814054, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4113495, - 50.9647581 - ], - [ - 5.4113495, - 50.9647581 - ], - [ - 5.4113495, - 50.9647581 - ], - [ - 5.4113495, - 50.9647581 - ], - [ - 5.4113495, - 50.9647581 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-24T14:09:32Z", - "reviewed_features": [], - "create": 0, - "modify": 6, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toerisme_vlaanderen", - "answer": 6, - "locale": "nl", - "imagery": "osm" - }, - "id": 117814054 - } - }, - { - "id": 117813679, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.792543, - 51.1762723 - ], - [ - 2.7927688, - 51.1762723 - ], - [ - 2.7927688, - 51.176414 - ], - [ - 2.792543, - 51.176414 - ], - [ - 2.792543, - 51.1762723 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #observation_towers", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-24T13:59:38Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 3.19958600000721e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "observation_towers", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 117813679 - } - }, - { - "id": 117813264, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4800498, - 51.0252267 - ], - [ - 4.4800498, - 51.0252267 - ], - [ - 4.4800498, - 51.0252267 - ], - [ - 4.4800498, - 51.0252267 - ], - [ - 4.4800498, - 51.0252267 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "philippec", - "uid": "76884", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-24T13:48:12Z", - "reviewed_features": [], - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toerisme_vlaanderen", - "answer": 6, - "locale": "nl", - "imagery": "osm", - "change_within_1000m": 6 - }, - "id": 117813264 - } - }, - { - "id": 117812764, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4818569, - 51.2553275 - ], - [ - 5.4831317, - 51.2553275 - ], - [ - 5.4831317, - 51.2559777 - ], - [ - 5.4818569, - 51.2559777 - ], - [ - 5.4818569, - 51.2553275 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-24T13:33:30Z", - "reviewed_features": [], - "create": 64, - "modify": 13, - "delete": 0, - "area": 8.28874960003326e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 12, - "theme": "grb", - "import": 4, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "conflation": 2 - }, - "id": 117812764 - } - }, - { - "id": 117806088, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3871786, - 50.817828 - ], - [ - 4.4044152, - 50.817828 - ], - [ - 4.4044152, - 50.8228399 - ], - [ - 4.3871786, - 50.8228399 - ], - [ - 4.3871786, - 50.817828 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "MatFroz", - "uid": "9216818", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-24T10:38:37Z", - "reviewed_features": [], - "create": 1, - "modify": 5, - "delete": 0, - "area": 0.0000863881155399891, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 5, - "create": 1, - "locale": "en", - "imagery": "AGIV" - }, - "id": 117806088 - } - }, - { - "id": 117803435, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3448755, - 50.84891 - ], - [ - 4.3625432, - 50.84891 - ], - [ - 4.3625432, - 50.8524695 - ], - [ - 4.3448755, - 50.8524695 - ], - [ - 4.3448755, - 50.84891 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 3, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-24T09:24:43Z", - "reviewed_features": [], - "create": 6, - "modify": 18, - "delete": 0, - "area": 0.0000628881781500282, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 32, - "create": 6, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 9 - }, - "id": 117803435 - } - }, - { - "id": 117803392, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3457501, - 50.8523849 - ], - [ - 4.3459006, - 50.8523849 - ], - [ - 4.3459006, - 50.8524741 - ], - [ - 4.3457501, - 50.8524741 - ], - [ - 4.3457501, - 50.8523849 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-24T09:23:03Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.34246000007683e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 117803392 - } - }, - { - "id": 117802902, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7241007, - 51.0525447 - ], - [ - 3.7271799, - 51.0525447 - ], - [ - 3.7271799, - 51.0572413 - ], - [ - 3.7241007, - 51.0572413 - ], - [ - 3.7241007, - 51.0525447 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-24T09:09:51Z", - "reviewed_features": [], - "create": 1, - "modify": 1, - "delete": 0, - "area": 0.0000144617707200067, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "waste", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 117802902 - } - }, - { - "id": 117801087, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.265896, - 50.7822937 - ], - [ - 5.3484879, - 50.7822937 - ], - [ - 5.3484879, - 50.7922354 - ], - [ - 5.265896, - 50.7922354 - ], - [ - 5.265896, - 50.7822937 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-24T08:15:02Z", - "reviewed_features": [], - "create": 0, - "modify": 24, - "delete": 0, - "area": 0.000821103892230496, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "answer": 22, - "locale": "nl", - "imagery": "osm", - "add-image": 9 - }, - "id": 117801087 - } - }, - { - "id": 117795202, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2299967, - -39.8207004 - ], - [ - -73.2299967, - -39.8207004 - ], - [ - -73.2299967, - -39.8207004 - ], - [ - -73.2299967, - -39.8207004 - ], - [ - -73.2299967, - -39.8207004 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-24T04:25:25Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "locale": "en", - "imagery": "cyclosm", - "add-image": 1 - }, - "id": 117795202 - } - }, - { - "id": 117793160, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7047518, - 51.058053 - ], - [ - 3.7051191, - 51.058053 - ], - [ - 3.7051191, - 51.0583171 - ], - [ - 3.7047518, - 51.0583171 - ], - [ - 3.7047518, - 51.058053 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-24T02:07:00Z", - "reviewed_features": [], - "create": 13, - "modify": 0, - "delete": 0, - "area": 9.70039299983721e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "grb", - "import": 3, - "locale": "nl", - "imagery": "AGIVFlandersGRB" - }, - "id": 117793160 - } - }, - { - "id": 117790813, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1417138, - 51.138864 - ], - [ - 3.1428501, - 51.138864 - ], - [ - 3.1428501, - 51.1392155 - ], - [ - 3.1417138, - 51.1392155 - ], - [ - 3.1417138, - 51.138864 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-23T23:06:31Z", - "reviewed_features": [], - "create": 0, - "modify": 3, - "delete": 0, - "area": 3.99409450000896e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 3 - }, - "id": 117790813 - } - }, - { - "id": 117786867, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7488578, - 51.0811209 - ], - [ - 3.7488578, - 51.0811209 - ], - [ - 3.7488578, - 51.0811209 - ], - [ - 3.7488578, - 51.0811209 - ], - [ - 3.7488578, - 51.0811209 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ruben Van de Velde", - "uid": "2676725", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-23T20:45:28Z", - "reviewed_features": [], - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "hailhydrant", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "HDM_HOT" - }, - "id": 117786867 - } - }, - { - "id": 117785303, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2810462, - 50.8047153 - ], - [ - 5.2934557, - 50.8047153 - ], - [ - 5.2934557, - 50.8127867 - ], - [ - 5.2810462, - 50.8127867 - ], - [ - 5.2810462, - 50.8047153 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-23T19:53:13Z", - "reviewed_features": [], - "create": 65, - "modify": 1385, - "delete": 27, - "area": 0.000100162038299986, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 1252, - "path": "mc/develop/", - "theme": "grb", - "answer": 1, - "delete": 27, - "locale": "nl", - "imagery": "osm", - "conflation": 338 - }, - "id": 117785303 - } - }, - { - "id": 117784104, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.3683002, - -34.6333388 - ], - [ - -71.3683002, - -34.6333388 - ], - [ - -71.3683002, - -34.6333388 - ], - [ - -71.3683002, - -34.6333388 - ], - [ - -71.3683002, - -34.6333388 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-23T19:14:06Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "locale": "id", - "imagery": "cyclosm", - "add-image": 1, - "change_over_5000m": 1 - }, - "id": 117784104 - } - }, - { - "id": 117783987, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1424426, - 51.1367321 - ], - [ - 3.1424426, - 51.1367321 - ], - [ - 3.1424426, - 51.1367321 - ], - [ - 3.1424426, - 51.1367321 - ], - [ - 3.1424426, - 51.1367321 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-23T19:10:52Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toerisme_vlaanderen", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 117783987 - } - }, - { - "id": 117783213, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7104171, - 51.0373003 - ], - [ - 3.7104171, - 51.0373003 - ], - [ - 3.7104171, - 51.0373003 - ], - [ - 3.7104171, - 51.0373003 - ], - [ - 3.7104171, - 51.0373003 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-23T18:48:47Z", - "reviewed_features": [], - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "food", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 117783213 - } - }, - { - "id": 117781915, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9895461, - 51.1230961 - ], - [ - 5.0036138, - 51.1230961 - ], - [ - 5.0036138, - 51.1371916 - ], - [ - 4.9895461, - 51.1371916 - ], - [ - 4.9895461, - 51.1230961 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-23T18:06:37Z", - "reviewed_features": [], - "create": 8, - "modify": 64, - "delete": 0, - "area": 0.000198291265350048, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 56, - "theme": "grb", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "conflation": 16, - "change_within_5000m": 1 - }, - "id": 117781915 - } - }, - { - "id": 117780768, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7044615, - 51.052304 - ], - [ - 3.704786, - 51.052304 - ], - [ - 3.704786, - 51.0526925 - ], - [ - 3.7044615, - 51.0526925 - ], - [ - 3.7044615, - 51.052304 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-23T17:34:55Z", - "reviewed_features": [], - "create": 3, - "modify": 20, - "delete": 0, - "area": 1.2606824999992e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 18, - "theme": "grb", - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "conflation": 4 - }, - "id": 117780768 - } - }, - { - "id": 117779793, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9882175, - 51.1695457 - ], - [ - 4.9882175, - 51.1695457 - ], - [ - 4.9882175, - 51.1695457 - ], - [ - 4.9882175, - 51.1695457 - ], - [ - 4.9882175, - 51.1695457 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-23T17:10:04Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 2, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_within_50m": 2 - }, - "id": 117779793 - } - }, - { - "id": 117779712, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2899609, - 50.8091661 - ], - [ - 5.2934557, - 50.8091661 - ], - [ - 5.2934557, - 50.8109769 - ], - [ - 5.2899609, - 50.8109769 - ], - [ - 5.2899609, - 50.8091661 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-23T17:07:43Z", - "reviewed_features": [], - "create": 42, - "modify": 292, - "delete": 2, - "area": 0.00000632838384000491, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 266, - "path": "mc/develop/", - "theme": "grb", - "delete": 2, - "locale": "nl", - "imagery": "osm", - "conflation": 56 - }, - "id": 117779712 - } - }, - { - "id": 117779100, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7032731, - 51.0546385 - ], - [ - 3.7039582, - 51.0546385 - ], - [ - 3.7039582, - 51.0577259 - ], - [ - 3.7032731, - 51.0577259 - ], - [ - 3.7032731, - 51.0546385 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-23T16:52:14Z", - "reviewed_features": [], - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000211517773999916, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "personal", - "answer": 2, - "locale": "en", - "imagery": "osm", - "add-image": 2, - "change_within_25m": 4 - }, - "id": 117779100 - } - }, - { - "id": 117777144, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3244613, - 51.0042766 - ], - [ - 3.324533, - 51.0042766 - ], - [ - 3.324533, - 51.0043121 - ], - [ - 3.3244613, - 51.0043121 - ], - [ - 3.3244613, - 51.0042766 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-23T16:03:33Z", - "reviewed_features": [], - "create": 0, - "modify": 2, - "delete": 0, - "area": 2.54535000020868e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "locale": "en", - "imagery": "osm", - "add-image": 2 - }, - "id": 117777144 - } - }, - { - "id": 117776807, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7201635, - 51.0501515 - ], - [ - 3.7241007, - 51.0501515 - ], - [ - 3.7241007, - 51.0576483 - ], - [ - 3.7201635, - 51.0576483 - ], - [ - 3.7201635, - 51.0501515 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-23T15:54:04Z", - "reviewed_features": [], - "create": 13, - "modify": 4, - "delete": 0, - "area": 0.0000295164009599952, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "waste", - "answer": 16, - "create": 13, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 13, - "change_within_25m": 15, - "change_within_50m": 1 - }, - "id": 117776807 - } - }, - { - "id": 117776561, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4837102, - 51.0925876 - ], - [ - 3.4864562, - 51.0925876 - ], - [ - 3.4864562, - 51.0947442 - ], - [ - 3.4837102, - 51.0947442 - ], - [ - 3.4837102, - 51.0925876 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "s8evq", - "uid": "3710738", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-23T15:48:40Z", - "reviewed_features": [], - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.00000592202359999834, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "sport_pitches", - "answer": 6, - "locale": "en", - "imagery": "osm" - }, - "id": 117776561 - } - }, - { - "id": 117772566, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -72.615794, - -38.7368064 - ], - [ - -72.615794, - -38.7368064 - ], - [ - -72.615794, - -38.7368064 - ], - [ - -72.615794, - -38.7368064 - ], - [ - -72.615794, - -38.7368064 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-23T14:09:08Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "locale": "fr", - "imagery": "HDM_HOT", - "add-image": 2 - }, - "id": 117772566 - } - }, - { - "id": 117768354, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2437802, - 50.9401361 - ], - [ - 4.7390814, - 50.9401361 - ], - [ - 4.7390814, - 51.0637871 - ], - [ - 4.2437802, - 51.0637871 - ], - [ - 4.2437802, - 50.9401361 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Rienux", - "uid": "11911273", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-23T12:27:13Z", - "reviewed_features": [], - "create": 0, - "modify": 20, - "delete": 0, - "area": 0.0612444886812012, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 20, - "locale": "nl", - "imagery": "osm" - }, - "id": 117768354 - } - }, - { - "id": 117757354, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7176717, - 51.0600025 - ], - [ - 13.7176717, - 51.0600025 - ], - [ - 13.7176717, - 51.0600025 - ], - [ - 13.7176717, - 51.0600025 - ], - [ - 13.7176717, - 51.0600025 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "brust84", - "uid": "1225756", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-23T08:08:52Z", - "reviewed_features": [], - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "create": 1, - "locale": "en", - "imagery": "GEOSN-DOP-RGB", - "change_over_5000m": 1 - }, - "id": 117757354 - } - }, - { - "id": 117757007, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5661471, - 53.0109715 - ], - [ - 6.5661471, - 53.0109715 - ], - [ - 6.5661471, - 53.0109715 - ], - [ - 6.5661471, - 53.0109715 - ], - [ - 6.5661471, - 53.0109715 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-23T07:59:09Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "waste", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 117757007 - } - }, - { - "id": 117748671, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8762699, - 51.1558999 - ], - [ - 4.8839641, - 51.1558999 - ], - [ - 4.8839641, - 51.1592121 - ], - [ - 4.8762699, - 51.1592121 - ], - [ - 4.8762699, - 51.1558999 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-23T01:04:39Z", - "reviewed_features": [], - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000254847292399731, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "change_within_5000m": 2 - }, - "id": 117748671 - } - }, - { - "id": 117746386, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3248696, - 51.0044777 - ], - [ - 3.3248696, - 51.0044777 - ], - [ - 3.3248696, - 51.0044777 - ], - [ - 3.3248696, - 51.0044777 - ], - [ - 3.3248696, - 51.0044777 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-22T22:33:52Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 117746386 - } - }, - { - "id": 117746313, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4181641, - 51.09695 - ], - [ - 3.4183405, - 51.09695 - ], - [ - 3.4183405, - 51.0972168 - ], - [ - 3.4181641, - 51.0972168 - ], - [ - 3.4181641, - 51.09695 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-22T22:30:07Z", - "reviewed_features": [], - "create": 0, - "modify": 2, - "delete": 0, - "area": 4.70635199997382e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "locale": "en", - "imagery": "osm", - "add-image": 2 - }, - "id": 117746313 - } - }, - { - "id": 117746101, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.6263851, - 41.1995883 - ], - [ - 1.626679, - 41.1995883 - ], - [ - 1.626679, - 41.2000552 - ], - [ - 1.6263851, - 41.2000552 - ], - [ - 1.6263851, - 41.1995883 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "hortacalaf", - "uid": "14495457", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/main/libraries.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-22T22:19:08Z", - "reviewed_features": [], - "create": 0, - "modify": 22, - "delete": 0, - "area": 1.37221909999766e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/main/libraries.json", - "answer": 27, - "locale": "es", - "imagery": "osm" - }, - "id": 117746101 - } - }, - { - "id": 117743877, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5699651, - 52.9987924 - ], - [ - 6.5859222, - 52.9987924 - ], - [ - 6.5859222, - 53.0177135 - ], - [ - 6.5699651, - 53.0177135 - ], - [ - 6.5699651, - 52.9987924 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #postboxes", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-22T20:45:59Z", - "reviewed_features": [], - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.000301925884809993, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/post-partner/", - "theme": "postboxes", - "answer": 10, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_5000m": 10 - }, - "id": 117743877 - } - }, - { - "id": 117742017, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5572219, - 51.1897337 - ], - [ - 5.5625289, - 51.1897337 - ], - [ - 5.5625289, - 51.1989127 - ], - [ - 5.5572219, - 51.1989127 - ], - [ - 5.5572219, - 51.1897337 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 41, - "name": "Software editor was not declared" - } - ], - "tags": [], - "features": [], - "user": "RobbieRob F", - "uid": "14946603", - "editor": null, - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-22T19:44:51Z", - "reviewed_features": [], - "create": 3, - "modify": 0, - "delete": 0, - "area": 0.0000487129530000183, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "toerisme_vlaanderen", - "import": 3, - "import:node/9528129922": "source: https://osm.org/note/3044427", - "import:node/9528149205": "source: https://osm.org/note/3044255", - "import:node/9528150239": "source: https://osm.org/note/3044228" - }, - "id": 117742017 - } - }, - { - "id": 117740296, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.568894, - 53.2364368 - ], - [ - 6.5697966, - 53.2364368 - ], - [ - 6.5697966, - 53.2376395 - ], - [ - 6.568894, - 53.2376395 - ], - [ - 6.568894, - 53.2364368 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-22T18:57:30Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.00000108555702000014, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 1, - "locale": "nl" - }, - "id": 117740296 - } - }, - { - "id": 117739596, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0774147, - 51.1399419 - ], - [ - 3.1477559, - 51.1399419 - ], - [ - 3.1477559, - 51.1704519 - ], - [ - 3.0774147, - 51.1704519 - ], - [ - 3.0774147, - 51.1399419 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-22T18:36:04Z", - "reviewed_features": [], - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.00214611001200047, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "locale": "en", - "imagery": "osm", - "add-image": 5 - }, - "id": 117739596 - } - }, - { - "id": 117734366, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5431668, - 53.224704 - ], - [ - 6.5491019, - 53.224704 - ], - [ - 6.5491019, - 53.2285485 - ], - [ - 6.5431668, - 53.2285485 - ], - [ - 6.5431668, - 53.224704 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-22T16:13:58Z", - "reviewed_features": [], - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.0000228174919499987, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 5, - "locale": "nl", - "imagery": "osm" - }, - "id": 117734366 - } - }, - { - "id": 117733265, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.280303, - 50.8100003 - ], - [ - 5.2925089, - 50.8100003 - ], - [ - 5.2925089, - 50.8154097 - ], - [ - 5.280303, - 50.8154097 - ], - [ - 5.280303, - 50.8100003 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-22T15:46:04Z", - "reviewed_features": [], - "create": 31, - "modify": 1136, - "delete": 30, - "area": 0.0000660265954599712, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 1029, - "path": "mc/develop/", - "theme": "grb", - "delete": 30, - "locale": "nl", - "imagery": "osm", - "conflation": 266 - }, - "id": 117733265 - } - }, - { - "id": 117730480, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7400267, - 51.0335731 - ], - [ - 3.7400267, - 51.0335731 - ], - [ - 3.7400267, - 51.0335731 - ], - [ - 3.7400267, - 51.0335731 - ], - [ - 3.7400267, - 51.0335731 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-22T14:38:50Z", - "reviewed_features": [], - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "waste", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 3 - }, - "id": 117730480 - } - }, - { - "id": 117730338, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2800495, - 50.8110671 - ], - [ - 5.3109572, - 50.8110671 - ], - [ - 5.3109572, - 50.8585371 - ], - [ - 5.2800495, - 50.8585371 - ], - [ - 5.2800495, - 50.8110671 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-22T14:35:03Z", - "reviewed_features": [], - "create": 313, - "modify": 3146, - "delete": 54, - "area": 0.00146718851899992, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 2832, - "path": "mc/develop/", - "theme": "grb", - "answer": 7, - "delete": 54, - "import": 3, - "locale": "nl", - "imagery": "osm", - "conflation": 670 - }, - "id": 117730338 - } - }, - { - "id": 117729903, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2844558, - 50.8393158 - ], - [ - 5.2921877, - 50.8393158 - ], - [ - 5.2921877, - 50.8473125 - ], - [ - 5.2844558, - 50.8473125 - ], - [ - 5.2844558, - 50.8393158 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-22T14:24:07Z", - "reviewed_features": [], - "create": 33, - "modify": 260, - "delete": 4, - "area": 0.0000618296847300008, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 242, - "path": "mc/develop/", - "theme": "grb", - "delete": 4, - "locale": "nl", - "imagery": "osm", - "conflation": 60 - }, - "id": 117729903 - } - }, - { - "id": 117728967, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.087675, - 50.7593536 - ], - [ - 5.0974596, - 50.7593536 - ], - [ - 5.0974596, - 50.7644834 - ], - [ - 5.087675, - 50.7644834 - ], - [ - 5.087675, - 50.7593536 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "JensTi", - "uid": "57212", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-22T14:04:09Z", - "reviewed_features": [], - "create": 368, - "modify": 0, - "delete": 0, - "area": 0.0000501930410800567, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "grb", - "import": 38, - "locale": "nl", - "imagery": "osm" - }, - "id": 117728967 - } - }, - { - "id": 117728927, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0865969, - 50.7609902 - ], - [ - 5.0880183, - 50.7609902 - ], - [ - 5.0880183, - 50.7618392 - ], - [ - 5.0865969, - 50.7618392 - ], - [ - 5.0865969, - 50.7609902 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "JensTi", - "uid": "57212", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-22T14:03:05Z", - "reviewed_features": [], - "create": 83, - "modify": 0, - "delete": 0, - "area": 0.00000120676859999312, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "grb", - "import": 8, - "locale": "nl", - "imagery": "osm" - }, - "id": 117728927 - } - }, - { - "id": 117728508, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0878256, - 50.7635329 - ], - [ - 5.0904534, - 50.7635329 - ], - [ - 5.0904534, - 50.7652219 - ], - [ - 5.0878256, - 50.7652219 - ], - [ - 5.0878256, - 50.7635329 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "JensTi", - "uid": "57212", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-22T13:52:07Z", - "reviewed_features": [], - "create": 290, - "modify": 0, - "delete": 0, - "area": 0.00000443835419999715, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "grb", - "import": 25, - "locale": "nl", - "imagery": "osm" - }, - "id": 117728508 - } - }, - { - "id": 117728302, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2757367, - 50.835766 - ], - [ - 5.2947932, - 50.835766 - ], - [ - 5.2947932, - 50.8460162 - ], - [ - 5.2757367, - 50.8460162 - ], - [ - 5.2757367, - 50.835766 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-22T13:46:39Z", - "reviewed_features": [], - "create": 307, - "modify": 366, - "delete": 2, - "area": 0.000195332936300025, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 337, - "path": "mc/develop/", - "theme": "grb", - "delete": 2, - "import": 51, - "locale": "nl", - "imagery": "osm", - "conflation": 88 - }, - "id": 117728302 - } - }, - { - "id": 117728271, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0850891, - 50.7593617 - ], - [ - 5.0893876, - 50.7593617 - ], - [ - 5.0893876, - 50.7608662 - ], - [ - 5.0850891, - 50.7608662 - ], - [ - 5.0850891, - 50.7593617 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "JensTi", - "uid": "57212", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-22T13:45:48Z", - "reviewed_features": [], - "create": 711, - "modify": 0, - "delete": 0, - "area": 0.00000646709325001247, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "grb", - "import": 91, - "locale": "nl", - "imagery": "osm" - }, - "id": 117728271 - } - }, - { - "id": 117727989, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1441337, - 51.1383474 - ], - [ - 3.1441337, - 51.1383474 - ], - [ - 3.1441337, - 51.1383474 - ], - [ - 3.1441337, - 51.1383474 - ], - [ - 3.1441337, - 51.1383474 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-22T13:37:46Z", - "reviewed_features": [], - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "answer": 1, - "locale": "en", - "imagery": "osm", - "add-image": 2 - }, - "id": 117727989 - } - }, - { - "id": 117727593, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.271413, - 50.8273578 - ], - [ - 5.2997968, - 50.8273578 - ], - [ - 5.2997968, - 50.8405886 - ], - [ - 5.271413, - 50.8405886 - ], - [ - 5.271413, - 50.8273578 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-22T13:27:48Z", - "reviewed_features": [], - "create": 1430, - "modify": 127, - "delete": 4, - "area": 0.000375540381039868, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 114, - "path": "mc/develop/", - "theme": "grb", - "delete": 4, - "import": 178, - "locale": "nl", - "imagery": "osm", - "conflation": 26 - }, - "id": 117727593 - } - }, - { - "id": 117726988, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2626843, - 50.8461892 - ], - [ - 5.263244, - 50.8461892 - ], - [ - 5.263244, - 50.8464779 - ], - [ - 5.2626843, - 50.8464779 - ], - [ - 5.2626843, - 50.8461892 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-22T13:12:02Z", - "reviewed_features": [], - "create": 26, - "modify": 0, - "delete": 0, - "area": 1.61585389999318e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "grb", - "import": 3, - "locale": "nl", - "imagery": "AGIVFlandersGRB" - }, - "id": 117726988 - } - }, - { - "id": 117726440, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0923826, - 50.7616568 - ], - [ - 5.0991572, - 50.7616568 - ], - [ - 5.0991572, - 50.7643526 - ], - [ - 5.0923826, - 50.7643526 - ], - [ - 5.0923826, - 50.7616568 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "JensTi", - "uid": "57212", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-22T12:56:01Z", - "reviewed_features": [], - "create": 736, - "modify": 0, - "delete": 0, - "area": 0.0000182629666800339, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "grb", - "import": 94, - "locale": "nl", - "imagery": "AGIVFlandersGRB" - }, - "id": 117726440 - } - }, - { - "id": 117726134, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0785091, - 50.7557265 - ], - [ - 5.0992201, - 50.7557265 - ], - [ - 5.0992201, - 50.7663335 - ], - [ - 5.0785091, - 50.7663335 - ], - [ - 5.0785091, - 50.7557265 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - }, - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "JensTi", - "uid": "57212", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-22T12:48:05Z", - "reviewed_features": [], - "create": 3765, - "modify": 0, - "delete": 0, - "area": 0.000219681577000009, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "grb", - "import": 497, - "locale": "nl", - "imagery": "AGIVFlandersGRB" - }, - "id": 117726134 - } - }, - { - "id": 117722778, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2327862, - 51.0910643 - ], - [ - 4.2614865, - 51.0910643 - ], - [ - 4.2614865, - 51.1026181 - ], - [ - 4.2327862, - 51.1026181 - ], - [ - 4.2327862, - 51.0910643 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Rienux", - "uid": "11911273", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-22T11:30:02Z", - "reviewed_features": [], - "create": 0, - "modify": 45, - "delete": 0, - "area": 0.00033159752614005, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 61, - "locale": "nl", - "imagery": "osm" - }, - "id": 117722778 - } - }, - { - "id": 117721482, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2592783, - 50.8291133 - ], - [ - 5.2807176, - 50.8291133 - ], - [ - 5.2807176, - 50.8395109 - ], - [ - 5.2592783, - 50.8395109 - ], - [ - 5.2592783, - 50.8291133 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-22T11:00:28Z", - "reviewed_features": [], - "create": 1642, - "modify": 422, - "delete": 1, - "area": 0.000222917265679945, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 378, - "path": "mc/develop/", - "theme": "grb", - "delete": 1, - "import": 245, - "locale": "nl", - "imagery": "osm", - "conflation": 92 - }, - "id": 117721482 - } - }, - { - "id": 117718598, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4024786, - 50.907112 - ], - [ - 3.4027597, - 50.907112 - ], - [ - 3.4027597, - 50.9074514 - ], - [ - 3.4024786, - 50.9074514 - ], - [ - 3.4024786, - 50.907112 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-22T09:50:05Z", - "reviewed_features": [], - "create": 0, - "modify": 5, - "delete": 0, - "area": 9.54053400004144e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toerisme_vlaanderen", - "answer": 7, - "locale": "nl", - "imagery": "AGIV", - "change_within_25m": 5, - "change_within_50m": 2 - }, - "id": 117718598 - } - }, - { - "id": 117701325, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.5715718, - 54.8806793 - ], - [ - -1.5561957, - 54.8806793 - ], - [ - -1.5561957, - 54.8881154 - ], - [ - -1.5715718, - 54.8881154 - ], - [ - -1.5715718, - 54.8806793 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "confusedbuffalo", - "uid": "242345", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-21T21:17:56Z", - "reviewed_features": [], - "create": 0, - "modify": 16, - "delete": 0, - "area": 0.000114338217209995, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 25, - "locale": "en", - "imagery": "osm" - }, - "id": 117701325 - } - }, - { - "id": 117701248, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5131356, - 53.0032409 - ], - [ - 6.5140893, - 53.0032409 - ], - [ - 6.5140893, - 53.0037881 - ], - [ - 6.5131356, - 53.0037881 - ], - [ - 6.5131356, - 53.0032409 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-21T21:15:34Z", - "reviewed_features": [], - "create": 0, - "modify": 2, - "delete": 0, - "area": 5.21864639999852e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 117701248 - } - }, - { - "id": 117697757, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5134838, - 52.9991424 - ], - [ - 6.5255957, - 52.9991424 - ], - [ - 6.5255957, - 53.0015596 - ], - [ - 6.5134838, - 53.0015596 - ], - [ - 6.5134838, - 52.9991424 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-21T19:20:54Z", - "reviewed_features": [], - "create": 0, - "modify": 4, - "delete": 1, - "area": 0.0000292768846800428, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 1, - "path": "mc/develop/", - "theme": "waste", - "answer": 4, - "locale": "nl", - "imagery": "osm", - "deletion": 1, - "change_within_5000m": 6, - "move:node/6032193173": "improve_accuracy", - "deletion:node/389551570": "disused" - }, - "id": 117697757 - } - }, - { - "id": 117692774, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5399887, - 53.0065046 - ], - [ - 6.5863667, - 53.0065046 - ], - [ - 6.5863667, - 53.0181317 - ], - [ - 6.5399887, - 53.0181317 - ], - [ - 6.5399887, - 53.0065046 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-21T17:37:55Z", - "reviewed_features": [], - "create": 1, - "modify": 9, - "delete": 0, - "area": 0.000539241643799921, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "waste", - "answer": 13, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_500m": 4, - "change_within_1000m": 2, - "change_within_5000m": 7 - }, - "id": 117692774 - } - }, - { - "id": 117692001, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2575942, - 50.8205435 - ], - [ - 5.2733004, - 50.8205435 - ], - [ - 5.2733004, - 50.835231 - ], - [ - 5.2575942, - 50.835231 - ], - [ - 5.2575942, - 50.8205435 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-21T17:19:22Z", - "reviewed_features": [], - "create": 287, - "modify": 174, - "delete": 9, - "area": 0.000230684812500018, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 150, - "path": "mc/develop/", - "theme": "grb", - "answer": 2, - "delete": 9, - "import": 38, - "locale": "nl", - "imagery": "osm", - "conflation": 48 - }, - "id": 117692001 - } - }, - { - "id": 117691167, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5652634, - 52.9984624 - ], - [ - 6.60156, - 52.9984624 - ], - [ - 6.60156, - 53.0227424 - ], - [ - 6.5652634, - 53.0227424 - ], - [ - 6.5652634, - 52.9984624 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-21T16:58:58Z", - "reviewed_features": [], - "create": 0, - "modify": 75, - "delete": 0, - "area": 0.000881281447999906, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 108, - "locale": "nl", - "imagery": "osm" - }, - "id": 117691167 - } - }, - { - "id": 117691031, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2622017, - 50.8286869 - ], - [ - 5.2722294, - 50.8286869 - ], - [ - 5.2722294, - 50.8348425 - ], - [ - 5.2622017, - 50.8348425 - ], - [ - 5.2622017, - 50.8286869 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-21T16:55:10Z", - "reviewed_features": [], - "create": 870, - "modify": 340, - "delete": 7, - "area": 0.0000617265101199917, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 289, - "path": "mc/develop/", - "theme": "grb", - "answer": 11, - "delete": 7, - "import": 108, - "locale": "nl", - "imagery": "osm", - "conflation": 104 - }, - "id": 117691031 - } - }, - { - "id": 117690709, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2596362, - 50.8276763 - ], - [ - 5.2635888, - 50.8276763 - ], - [ - 5.2635888, - 50.8297328 - ], - [ - 5.2596362, - 50.8297328 - ], - [ - 5.2596362, - 50.8276763 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-21T16:46:01Z", - "reviewed_features": [], - "create": 296, - "modify": 244, - "delete": 0, - "area": 0.00000812852190000724, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 176, - "path": "mc/develop/", - "theme": "grb", - "answer": 3, - "import": 30, - "locale": "nl", - "imagery": "osm", - "conflation": 50 - }, - "id": 117690709 - } - }, - { - "id": 117690673, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7474407, - 51.0359087 - ], - [ - 3.7474407, - 51.0359087 - ], - [ - 3.7474407, - 51.0359087 - ], - [ - 3.7474407, - 51.0359087 - ], - [ - 3.7474407, - 51.0359087 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-21T16:45:14Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "artwork", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 117690673 - } - }, - { - "id": 117690291, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7400267, - 51.0335731 - ], - [ - 3.7400267, - 51.0335731 - ], - [ - 3.7400267, - 51.0335731 - ], - [ - 3.7400267, - 51.0335731 - ], - [ - 3.7400267, - 51.0335731 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-21T16:36:19Z", - "reviewed_features": [], - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/waste-theme/", - "theme": "waste", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 117690291 - } - }, - { - "id": 117690222, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2499587, - 50.8228957 - ], - [ - 5.2615429, - 50.8228957 - ], - [ - 5.2615429, - 50.8276865 - ], - [ - 5.2499587, - 50.8276865 - ], - [ - 5.2499587, - 50.8228957 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 531, - "name": "Mapbox: Overlapping features" - } - ], - "tags": [], - "features": [ - { - "url": "way-1033439185", - "osm_id": 1033439185, - "reasons": [ - 531 - ], - "version": 3 - }, - { - "url": "way-1033895318", - "osm_id": 1033895318, - "reasons": [ - 531 - ], - "version": 1 - } - ], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-21T16:34:04Z", - "reviewed_features": [], - "create": 28, - "modify": 59, - "delete": 8, - "area": 0.0000554975853600271, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 50, - "path": "mc/develop/", - "theme": "grb", - "answer": 5, - "delete": 8, - "import": 9, - "locale": "nl", - "imagery": "osm", - "conflation": 16 - }, - "id": 117690222 - } - }, - { - "id": 117688586, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2379554, - 50.8256219 - ], - [ - 5.2515983, - 50.8256219 - ], - [ - 5.2515983, - 50.8326621 - ], - [ - 5.2379554, - 50.8326621 - ], - [ - 5.2379554, - 50.8256219 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 531, - "name": "Mapbox: Overlapping features" - } - ], - "tags": [], - "features": [ - { - "url": "way-1033884563", - "osm_id": 1033884563, - "reasons": [ - 531 - ], - "version": 1 - }, - { - "url": "way-98538396", - "osm_id": 98538396, - "reasons": [ - 531 - ], - "version": 3 - }, - { - "url": "way-1033884564", - "osm_id": 1033884564, - "reasons": [ - 531 - ], - "version": 1 - }, - { - "url": "way-1033884438", - "osm_id": 1033884438, - "reasons": [ - 531 - ], - "version": 1 - }, - { - "url": "way-1033880213", - "osm_id": 1033880213, - "reasons": [ - 531 - ], - "version": 1 - }, - { - "url": "way-1033880003", - "osm_id": 1033880003, - "reasons": [ - 531 - ], - "version": 1 - } - ], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-21T15:58:56Z", - "reviewed_features": [], - "create": 560, - "modify": 1052, - "delete": 31, - "area": 0.0000960487445799873, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 833, - "path": "mc/develop/", - "theme": "grb", - "answer": 20, - "delete": 31, - "import": 68, - "locale": "nl", - "imagery": "osm", - "conflation": 212 - }, - "id": 117688586 - } - }, - { - "id": 117688367, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.5570567, - -33.0216785 - ], - [ - -71.5570567, - -33.0216785 - ], - [ - -71.5570567, - -33.0216785 - ], - [ - -71.5570567, - -33.0216785 - ], - [ - -71.5570567, - -33.0216785 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-21T15:55:18Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "locale": "en", - "imagery": "HDM_HOT", - "add-image": 1 - }, - "id": 117688367 - } - }, - { - "id": 117685113, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2490725, - 50.829273 - ], - [ - 5.25782, - 50.829273 - ], - [ - 5.25782, - 50.8324505 - ], - [ - 5.2490725, - 50.8324505 - ], - [ - 5.2490725, - 50.829273 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-21T14:39:40Z", - "reviewed_features": [], - "create": 432, - "modify": 78, - "delete": 0, - "area": 0.000027795181249997, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 68, - "path": "mc/develop/", - "theme": "grb", - "answer": 1, - "import": 50, - "locale": "nl", - "imagery": "osm", - "conflation": 22 - }, - "id": 117685113 - } - }, - { - "id": 117684480, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2493015, - 50.8302941 - ], - [ - 5.2552567, - 50.8302941 - ], - [ - 5.2552567, - 50.8315152 - ], - [ - 5.2493015, - 50.8315152 - ], - [ - 5.2493015, - 50.8302941 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-21T14:27:22Z", - "reviewed_features": [], - "create": 623, - "modify": 13, - "delete": 0, - "area": 0.00000727189471997163, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 12, - "path": "mc/develop/", - "theme": "grb", - "import": 76, - "locale": "nl", - "imagery": "osm", - "conflation": 2 - }, - "id": 117684480 - } - }, - { - "id": 117677364, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -7.8539023, - 51.9366818 - ], - [ - -7.8539023, - 51.9366818 - ], - [ - -7.8539023, - 51.9366818 - ], - [ - -7.8539023, - 51.9366818 - ], - [ - -7.8539023, - 51.9366818 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "DIrish", - "uid": "12410778", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-21T11:34:18Z", - "reviewed_features": [], - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "waste_basket", - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 117677364 - } - }, - { - "id": 117676012, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0279434, - 51.0292321 - ], - [ - 3.0654171, - 51.0292321 - ], - [ - 3.0654171, - 51.0425074 - ], - [ - 3.0279434, - 51.0425074 - ], - [ - 3.0279434, - 51.0292321 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-21T11:06:24Z", - "reviewed_features": [], - "create": 29, - "modify": 21, - "delete": 0, - "area": 0.000497474609609871, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 19, - "theme": "grb", - "import": 3, - "locale": "nl", - "imagery": "osm", - "conflation": 4, - "change_over_5000m": 3 - }, - "id": 117676012 - } - }, - { - "id": 117667455, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 76.656314, - 9.91185 - ], - [ - 80.2602926, - 9.91185 - ], - [ - 80.2602926, - 13.1033341 - ], - [ - 76.656314, - 13.1033341 - ], - [ - 76.656314, - 9.91185 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "bponkishore", - "uid": "14062769", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-21T07:52:52Z", - "reviewed_features": [], - "create": 0, - "modify": 42, - "delete": 0, - "area": 11.5020403986403, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 46, - "locale": "en", - "imagery": "osm" - }, - "id": 117667455 - } - }, - { - "id": 117666698, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3626392, - 50.8038061 - ], - [ - 4.366504, - 50.8038061 - ], - [ - 4.366504, - 50.8100912 - ], - [ - 4.3626392, - 50.8100912 - ], - [ - 4.3626392, - 50.8038061 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Erin76", - "uid": "8982454", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-21T07:32:37Z", - "reviewed_features": [], - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.0000242906544799959, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 7, - "locale": "en", - "imagery": "osm" - }, - "id": 117666698 - } - }, - { - "id": 117663014, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -119.6692993, - 34.4169059 - ], - [ - -119.669299, - 34.4169059 - ], - [ - -119.669299, - 34.4169059 - ], - [ - -119.6692993, - 34.4169059 - ], - [ - -119.6692993, - 34.4169059 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AlexeyTyur", - "uid": "10509852", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-21T05:23:45Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_500m": 1 - }, - "id": 117663014 - } - }, - { - "id": 117658698, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9181267, - 50.9274239 - ], - [ - 5.3372999, - 50.9274239 - ], - [ - 5.3372999, - 51.2255273 - ], - [ - 2.9181267, - 51.2255273 - ], - [ - 2.9181267, - 50.9274239 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-21T00:21:01Z", - "reviewed_features": [], - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.721163756108885, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 7, - "locale": "nl", - "imagery": "osm" - }, - "id": 117658698 - } - }, - { - "id": 117657311, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2444305, - 48.96993 - ], - [ - 2.2631723, - 48.96993 - ], - [ - 2.2631723, - 48.9767978 - ], - [ - 2.2444305, - 48.9767978 - ], - [ - 2.2444305, - 48.96993 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LeTopographeFou", - "uid": "3178375", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-20T22:43:38Z", - "reviewed_features": [], - "create": 0, - "modify": 38, - "delete": 0, - "area": 0.000128714934040037, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 45, - "locale": "en", - "imagery": "osm" - }, - "id": 117657311 - } - }, - { - "id": 117653833, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9579069, - 51.1001392 - ], - [ - 4.9599504, - 51.1001392 - ], - [ - 4.9599504, - 51.1008132 - ], - [ - 4.9579069, - 51.1008132 - ], - [ - 4.9579069, - 51.1001392 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "way-454878964", - "osm_id": 454878964, - "reasons": [ - 43 - ], - "version": 2, - "primary_tags": { - "building": "porch" - } - } - ], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-20T20:34:46Z", - "reviewed_features": [], - "create": 7, - "modify": 116, - "delete": 11, - "area": 0.00000137731899999293, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 104, - "theme": "grb", - "answer": 4, - "delete": 11, - "locale": "nl", - "imagery": "osm", - "conflation": 32, - "change_within_5000m": 1 - }, - "id": 117653833 - } - }, - { - "id": 117653634, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2229532, - 50.7139328 - ], - [ - 4.2241782, - 50.7139328 - ], - [ - 4.2241782, - 50.7146052 - ], - [ - 4.2229532, - 50.7146052 - ], - [ - 4.2229532, - 50.7139328 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-20T20:28:20Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 8.23689999998805e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 117653634 - } - }, - { - "id": 117651633, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0884057, - 51.1506821 - ], - [ - 4.0884057, - 51.1506821 - ], - [ - 4.0884057, - 51.1506821 - ], - [ - 4.0884057, - 51.1506821 - ], - [ - 4.0884057, - 51.1506821 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Mraedis", - "uid": "12983705", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #fritures", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-20T19:22:34Z", - "reviewed_features": [], - "create": 0, - "modify": 0, - "delete": 1, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fritures", - "locale": "en", - "imagery": "osm", - "deletion": 1, - "deletion:node/300236235": "disused" - }, - "id": 117651633 - } - }, - { - "id": 117650607, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2157876, - 51.2040518 - ], - [ - 3.2158358, - 51.2040518 - ], - [ - 3.2158358, - 51.2040677 - ], - [ - 3.2157876, - 51.2040677 - ], - [ - 3.2157876, - 51.2040518 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #waste_assen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-20T18:51:52Z", - "reviewed_features": [], - "create": 2, - "modify": 1, - "delete": 0, - "area": 7.66380000047029e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/waste-theme/", - "theme": "waste_assen", - "answer": 4, - "create": 2, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_50m": 4 - }, - "id": 117650607 - } - }, - { - "id": 117650282, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2422194, - 50.8209583 - ], - [ - 5.2644183, - 50.8209583 - ], - [ - 5.2644183, - 50.8473072 - ], - [ - 5.2422194, - 50.8473072 - ], - [ - 5.2422194, - 50.8209583 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - }, - { - "id": 531, - "name": "Mapbox: Overlapping features" - } - ], - "tags": [], - "features": [ - { - "url": "way-1033596638", - "osm_id": 1033596638, - "reasons": [ - 531 - ], - "version": 1 - } - ], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-20T18:42:08Z", - "reviewed_features": [], - "create": 323, - "modify": 1121, - "delete": 72, - "area": 0.000584916596210053, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 1016, - "path": "mc/develop/", - "theme": "grb", - "delete": 72, - "import": 108, - "locale": "nl", - "imagery": "osm", - "conflation": 232 - }, - "id": 117650282 - } - }, - { - "id": 117649814, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2553062, - 50.824951 - ], - [ - 5.261075, - 50.824951 - ], - [ - 5.261075, - 50.8397986 - ], - [ - 5.2553062, - 50.8397986 - ], - [ - 5.2553062, - 50.824951 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-20T18:27:01Z", - "reviewed_features": [], - "create": 277, - "modify": 481, - "delete": 42, - "area": 0.0000856528348800213, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 442, - "path": "mc/develop/", - "theme": "grb", - "delete": 42, - "import": 31, - "locale": "nl", - "imagery": "osm", - "conflation": 86 - }, - "id": 117649814 - } - }, - { - "id": 117647862, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5888397, - 53.0163687 - ], - [ - 6.6006479, - 53.0163687 - ], - [ - 6.6006479, - 53.0284902 - ], - [ - 6.5888397, - 53.0284902 - ], - [ - 6.5888397, - 53.0163687 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-20T17:27:04Z", - "reviewed_features": [], - "create": 0, - "modify": 143, - "delete": 0, - "area": 0.00014313309629999, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 199, - "locale": "nl", - "imagery": "osm" - }, - "id": 117647862 - } - }, - { - "id": 117647405, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.8308267, - 54.7426821 - ], - [ - -1.3216805, - 54.7426821 - ], - [ - -1.3216805, - 54.8726505 - ], - [ - -1.8308267, - 54.8726505 - ], - [ - -1.8308267, - 54.7426821 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "confusedbuffalo", - "uid": "242345", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-20T17:14:26Z", - "reviewed_features": [], - "create": 0, - "modify": 56, - "delete": 0, - "area": 0.0661729169800778, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 67, - "locale": "en", - "imagery": "osm" - }, - "id": 117647405 - } - }, - { - "id": 117643688, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9123962, - 51.2325667 - ], - [ - 2.9123962, - 51.2325667 - ], - [ - 2.9123962, - 51.2325667 - ], - [ - 2.9123962, - 51.2325667 - ], - [ - 2.9123962, - 51.2325667 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-20T15:34:17Z", - "reviewed_features": [], - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "food", - "answer": 6, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 4, - "change_within_50m": 2 - }, - "id": 117643688 - } - }, - { - "id": 117639869, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4221973, - 51.2272026 - ], - [ - 4.4221973, - 51.2272026 - ], - [ - 4.4221973, - 51.2272026 - ], - [ - 4.4221973, - 51.2272026 - ], - [ - 4.4221973, - 51.2272026 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "stijnh", - "uid": "14414954", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-20T13:55:54Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 117639869 - } - }, - { - "id": 117639619, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4172116, - 51.2214194 - ], - [ - 4.4207932, - 51.2214194 - ], - [ - 4.4207932, - 51.2310727 - ], - [ - 4.4172116, - 51.2310727 - ], - [ - 4.4172116, - 51.2214194 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "stijnh", - "uid": "14414954", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-20T13:49:07Z", - "reviewed_features": [], - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000345742592799915, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "answer": 11, - "locale": "en", - "imagery": "osm" - }, - "id": 117639619 - } - }, - { - "id": 117638731, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2530628, - 48.9631135 - ], - [ - 2.2725015, - 48.9631135 - ], - [ - 2.2725015, - 48.9764252 - ], - [ - 2.2530628, - 48.9764252 - ], - [ - 2.2530628, - 48.9631135 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LeTopographeFou", - "uid": "3178375", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-20T13:26:11Z", - "reviewed_features": [], - "create": 0, - "modify": 111, - "delete": 0, - "area": 0.000258762142790056, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 138, - "locale": "en", - "imagery": "osm" - }, - "id": 117638731 - } - }, - { - "id": 117637920, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4036164, - 50.809936 - ], - [ - 4.4036164, - 50.809936 - ], - [ - 4.4036164, - 50.809936 - ], - [ - 4.4036164, - 50.809936 - ], - [ - 4.4036164, - 50.809936 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "StefDeGreef", - "uid": "1860737", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-20T13:05:52Z", - "reviewed_features": [], - "create": 1, - "modify": 5, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 9, - "create": 1, - "locale": "fr", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 10 - }, - "id": 117637920 - } - }, - { - "id": 117637586, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9184285, - 51.2336634 - ], - [ - 2.9185398, - 51.2336634 - ], - [ - 2.9185398, - 51.2336734 - ], - [ - 2.9184285, - 51.2336734 - ], - [ - 2.9184285, - 51.2336634 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-20T12:56:53Z", - "reviewed_features": [], - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.11300000035253e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 1, - "path": "mc/develop/", - "theme": "food", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_25m": 2, - "move:node/6578523236": "improve_accuracy" - }, - "id": 117637586 - } - }, - { - "id": 117634797, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5509603, - 51.3113196 - ], - [ - 5.6132011, - 51.3113196 - ], - [ - 5.6132011, - 51.3447671 - ], - [ - 5.5509603, - 51.3447671 - ], - [ - 5.5509603, - 51.3113196 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "r0di", - "uid": "4737001", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-20T11:43:46Z", - "reviewed_features": [], - "create": 2, - "modify": 1, - "delete": 1, - "area": 0.00208179915800009, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "artwork", - "answer": 2, - "create": 2, - "locale": "nl", - "imagery": "osm", - "deletion": 1, - "deletion:node/9521399614": "testing point" - }, - "id": 117634797 - } - }, - { - "id": 117634699, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0762548, - 50.7491563 - ], - [ - 5.0824586, - 50.7491563 - ], - [ - 5.0824586, - 50.7588858 - ], - [ - 5.0762548, - 50.7588858 - ], - [ - 5.0762548, - 50.7491563 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - }, - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "JensTi", - "uid": "57212", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-20T11:41:06Z", - "reviewed_features": [], - "create": 1915, - "modify": 0, - "delete": 0, - "area": 0.0000603598720999904, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "grb", - "import": 246, - "locale": "nl", - "imagery": "AGIVFlandersGRB" - }, - "id": 117634699 - } - }, - { - "id": 117632733, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2550231, - 50.8310878 - ], - [ - 5.2612245, - 50.8310878 - ], - [ - 5.2612245, - 50.8400722 - ], - [ - 5.2550231, - 50.8400722 - ], - [ - 5.2550231, - 50.8310878 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 531, - "name": "Mapbox: Overlapping features" - } - ], - "tags": [], - "features": [ - { - "url": "way-335186053", - "osm_id": 335186053, - "reasons": [ - 531 - ], - "version": 5 - } - ], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-20T10:44:44Z", - "reviewed_features": [], - "create": 703, - "modify": 797, - "delete": 8, - "area": 0.0000557158581600184, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 711, - "path": "mc/develop/", - "theme": "grb", - "answer": 42, - "delete": 8, - "import": 148, - "locale": "nl", - "imagery": "osm", - "conflation": 170 - }, - "id": 117632733 - } - }, - { - "id": 117631748, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2564558, - 50.826658 - ], - [ - 5.2596456, - 50.826658 - ], - [ - 5.2596456, - 50.8355789 - ], - [ - 5.2564558, - 50.8355789 - ], - [ - 5.2564558, - 50.826658 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-20T10:16:04Z", - "reviewed_features": [], - "create": 186, - "modify": 285, - "delete": 2, - "area": 0.0000284558868199942, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 234, - "path": "mc/develop/", - "theme": "grb", - "delete": 2, - "import": 22, - "locale": "nl", - "imagery": "osm", - "conflation": 76 - }, - "id": 117631748 - } - }, - { - "id": 117630355, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2422194, - 50.8207851 - ], - [ - 5.2614117, - 50.8207851 - ], - [ - 5.2614117, - 50.8336685 - ], - [ - 5.2422194, - 50.8336685 - ], - [ - 5.2422194, - 50.8207851 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 531, - "name": "Mapbox: Overlapping features" - } - ], - "tags": [], - "features": [ - { - "url": "way-993988122", - "osm_id": 993988122, - "reasons": [ - 531 - ], - "version": 2 - } - ], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-20T09:31:49Z", - "reviewed_features": [], - "create": 748, - "modify": 1617, - "delete": 54, - "area": 0.000247262077819999, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 1458, - "path": "mc/develop/", - "theme": "grb", - "delete": 54, - "import": 160, - "locale": "nl", - "imagery": "osm", - "conflation": 380 - }, - "id": 117630355 - } - }, - { - "id": 117628089, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8804295, - 51.060373 - ], - [ - 4.8804295, - 51.060373 - ], - [ - 4.8804295, - 51.060373 - ], - [ - 4.8804295, - 51.060373 - ], - [ - 4.8804295, - 51.060373 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Frans_Napaters", - "uid": "3574538", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 3, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-20T08:02:44Z", - "reviewed_features": [], - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "climbing", - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 117628089 - } - }, - { - "id": 117627949, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4233675, - 51.2258495 - ], - [ - 4.4241786, - 51.2258495 - ], - [ - 4.4241786, - 51.2260255 - ], - [ - 4.4233675, - 51.2260255 - ], - [ - 4.4233675, - 51.2258495 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "stijnh", - "uid": "14414954", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-20T07:54:24Z", - "reviewed_features": [], - "create": 2, - "modify": 0, - "delete": 0, - "area": 1.42753599996893e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "create": 2, - "locale": "en", - "imagery": "AGIV" - }, - "id": 117627949 - } - }, - { - "id": 117626715, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 75.3636948, - 8.7574086 - ], - [ - 80.2862158, - 8.7574086 - ], - [ - 80.2862158, - 13.0985353 - ], - [ - 75.3636948, - 13.0985353 - ], - [ - 75.3636948, - 8.7574086 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "bponkishore", - "uid": "14062769", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-20T06:35:34Z", - "reviewed_features": [], - "create": 0, - "modify": 35, - "delete": 0, - "area": 21.3692873444107, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 41, - "locale": "en", - "imagery": "osm" - }, - "id": 117626715 - } - }, - { - "id": 117625125, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1173875, - 51.1903503 - ], - [ - 5.1173875, - 51.1903503 - ], - [ - 5.1173875, - 51.1903503 - ], - [ - 5.1173875, - 51.1903503 - ], - [ - 5.1173875, - 51.1903503 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-20T03:58:04Z", - "reviewed_features": [], - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "food", - "answer": 4, - "locale": "nl", - "imagery": "osm" - }, - "id": 117625125 - } - }, - { - "id": 117624804, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0119564, - 51.1646923 - ], - [ - 5.1242163, - 51.1646923 - ], - [ - 5.1242163, - 51.2019567 - ], - [ - 5.0119564, - 51.2019567 - ], - [ - 5.0119564, - 51.1646923 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-20T03:24:56Z", - "reviewed_features": [], - "create": 0, - "modify": 44, - "delete": 0, - "area": 0.00418329781755976, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 51, - "locale": "nl", - "imagery": "osm", - "change_within_5000m": 2 - }, - "id": 117624804 - } - }, - { - "id": 117623777, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -7.8431746, - 51.9501586 - ], - [ - -7.8431746, - 51.9501586 - ], - [ - -7.8431746, - 51.9501586 - ], - [ - -7.8431746, - 51.9501586 - ], - [ - -7.8431746, - 51.9501586 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "DIrish", - "uid": "12410778", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-20T01:26:18Z", - "reviewed_features": [], - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "answer": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 117623777 - } - }, - { - "id": 117623739, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -7.8430324, - 51.9471046 - ], - [ - -7.8430324, - 51.9471046 - ], - [ - -7.8430324, - 51.9471046 - ], - [ - -7.8430324, - 51.9471046 - ], - [ - -7.8430324, - 51.9471046 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "DIrish", - "uid": "12410778", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-20T01:21:29Z", - "reviewed_features": [], - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "answer": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 117623739 - } - }, - { - "id": 117622160, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3452494, - 50.8195451 - ], - [ - 4.3536434, - 50.8195451 - ], - [ - 4.3536434, - 50.8262493 - ], - [ - 4.3452494, - 50.8262493 - ], - [ - 4.3452494, - 50.8195451 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-19T23:12:45Z", - "reviewed_features": [], - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000562750548000126, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "locale": "en", - "imagery": "osm", - "add-image": 3 - }, - "id": 117622160 - } - }, - { - "id": 117622099, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.5649972, - 54.8852001 - ], - [ - -1.3674258, - 54.8852001 - ], - [ - -1.3674258, - 54.9370844 - ], - [ - -1.5649972, - 54.9370844 - ], - [ - -1.5649972, - 54.8852001 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "confusedbuffalo", - "uid": "242345", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-19T23:09:25Z", - "reviewed_features": [], - "create": 0, - "modify": 42, - "delete": 0, - "area": 0.0102508537890209, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 64, - "locale": "en", - "imagery": "osm" - }, - "id": 117622099 - } - }, - { - "id": 117622045, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3317218, - 50.8188778 - ], - [ - 4.3481561, - 50.8188778 - ], - [ - 4.3481561, - 50.8283701 - ], - [ - 4.3317218, - 50.8283701 - ], - [ - 4.3317218, - 50.8188778 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-19T23:06:05Z", - "reviewed_features": [], - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.000155999305889961, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artwork", - "locale": "en", - "imagery": "osm", - "add-image": 3 - }, - "id": 117622045 - } - }, - { - "id": 117621826, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3641204, - 50.8207231 - ], - [ - 4.3713972, - 50.8207231 - ], - [ - 4.3713972, - 50.8211434 - ], - [ - 4.3641204, - 50.8211434 - ], - [ - 4.3641204, - 50.8207231 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9520600811", - "osm_id": 9520600811, - "reasons": [ - 43 - ], - "version": 2, - "primary_tags": { - "tourism": "map" - } - }, - { - "url": "node-9520608252", - "osm_id": 9520608252, - "reasons": [ - 43 - ], - "version": 1, - "primary_tags": { - "tourism": "map" - } - } - ], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #maps", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-19T22:55:31Z", - "reviewed_features": [], - "create": 2, - "modify": 1, - "delete": 0, - "area": 0.00000305843903996136, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "maps", - "create": 2, - "locale": "en", - "imagery": "osm", - "add-image": 2 - }, - "id": 117621826 - } - }, - { - "id": 117621783, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3609946, - 50.8267762 - ], - [ - 4.3609946, - 50.8267762 - ], - [ - 4.3609946, - 50.8267762 - ], - [ - 4.3609946, - 50.8267762 - ], - [ - 4.3609946, - 50.8267762 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-19T22:53:39Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "locale": "en", - "imagery": "osm", - "add-image": 2 - }, - "id": 117621783 - } - }, - { - "id": 117619307, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4768732, - 51.2829 - ], - [ - 5.6935141, - 51.2829 - ], - [ - 5.6935141, - 51.4047669 - ], - [ - 5.4768732, - 51.4047669 - ], - [ - 5.4768732, - 51.2829 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "r0di", - "uid": "4737001", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-19T20:58:12Z", - "reviewed_features": [], - "create": 0, - "modify": 8, - "delete": 0, - "area": 0.0264013548962101, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "nature", - "answer": 9, - "locale": "en", - "imagery": "osm" - }, - "id": 117619307 - } - }, - { - "id": 117619069, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5414084, - 51.3106501 - ], - [ - 5.6111294, - 51.3106501 - ], - [ - 5.6111294, - 51.3318616 - ], - [ - 5.5414084, - 51.3318616 - ], - [ - 5.5414084, - 51.3106501 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "r0di", - "uid": "4737001", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-19T20:51:22Z", - "reviewed_features": [], - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.00147888699150048, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "shops", - "answer": 5, - "locale": "en", - "imagery": "osm" - }, - "id": 117619069 - } - }, - { - "id": 117618893, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5410797, - 51.3158342 - ], - [ - 5.618873, - 51.3158342 - ], - [ - 5.618873, - 51.3319383 - ], - [ - 5.5410797, - 51.3319383 - ], - [ - 5.5410797, - 51.3158342 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "r0di", - "uid": "4737001", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-19T20:46:08Z", - "reviewed_features": [], - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00125279108252997, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "sport_pitches", - "answer": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 117618893 - } - }, - { - "id": 117616270, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2517848, - 50.8204264 - ], - [ - 5.2614117, - 50.8204264 - ], - [ - 5.2614117, - 50.8280338 - ], - [ - 5.2517848, - 50.8280338 - ], - [ - 5.2517848, - 50.8204264 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-19T19:12:35Z", - "reviewed_features": [], - "create": 384, - "modify": 708, - "delete": 12, - "area": 0.0000732356790599762, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 626, - "path": "mc/develop/", - "theme": "grb", - "delete": 12, - "import": 63, - "locale": "nl", - "imagery": "osm", - "conflation": 156 - }, - "id": 117616270 - } - }, - { - "id": 117615998, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2505519, - 50.8213252 - ], - [ - 5.261527, - 50.8213252 - ], - [ - 5.261527, - 50.8236132 - ], - [ - 5.2505519, - 50.8236132 - ], - [ - 5.2505519, - 50.8213252 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-19T19:01:42Z", - "reviewed_features": [], - "create": 97, - "modify": 498, - "delete": 16, - "area": 0.0000251110288000018, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 436, - "path": "mc/develop/", - "theme": "grb", - "delete": 16, - "import": 17, - "locale": "nl", - "imagery": "osm", - "conflation": 102 - }, - "id": 117615998 - } - }, - { - "id": 117615727, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.256646, - 50.8211511 - ], - [ - 5.2619822, - 50.8211511 - ], - [ - 5.2619822, - 50.825452 - ], - [ - 5.256646, - 50.825452 - ], - [ - 5.256646, - 50.8211511 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-19T18:51:09Z", - "reviewed_features": [], - "create": 82, - "modify": 501, - "delete": 6, - "area": 0.0000229504625799852, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 394, - "path": "mc/develop/", - "theme": "grb", - "delete": 6, - "import": 11, - "locale": "nl", - "imagery": "osm", - "conflation": 90 - }, - "id": 117615727 - } - }, - { - "id": 117615532, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.5668464, - 54.8277124 - ], - [ - -1.3305464, - 54.8277124 - ], - [ - -1.3305464, - 54.8871437 - ], - [ - -1.5668464, - 54.8871437 - ], - [ - -1.5668464, - 54.8277124 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "confusedbuffalo", - "uid": "242345", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-19T18:43:20Z", - "reviewed_features": [], - "create": 0, - "modify": 53, - "delete": 0, - "area": 0.01404361619, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 78, - "locale": "en", - "imagery": "osm" - }, - "id": 117615532 - } - }, - { - "id": 117613640, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.5681294, - -33.5928661 - ], - [ - -70.5681294, - -33.5928661 - ], - [ - -70.5681294, - -33.5928661 - ], - [ - -70.5681294, - -33.5928661 - ], - [ - -70.5681294, - -33.5928661 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-19T17:39:28Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "locale": "en", - "imagery": "HDM_HOT", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 117613640 - } - }, - { - "id": 117612320, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2391076, - 50.8168914 - ], - [ - 5.2632285, - 50.8168914 - ], - [ - 5.2632285, - 50.841693 - ], - [ - 5.2391076, - 50.841693 - ], - [ - 5.2391076, - 50.8168914 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-19T16:57:27Z", - "reviewed_features": [], - "create": 3611, - "modify": 243, - "delete": 4, - "area": 0.00059823691343993, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 215, - "path": "mc/develop/", - "theme": "grb", - "answer": 3, - "delete": 4, - "import": 531, - "locale": "nl", - "imagery": "osm", - "conflation": 58 - }, - "id": 117612320 - } - }, - { - "id": 117610784, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3526664, - 50.8495035 - ], - [ - 4.3719104, - 50.8495035 - ], - [ - 4.3719104, - 50.8515123 - ], - [ - 4.3526664, - 50.8515123 - ], - [ - 4.3526664, - 50.8495035 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-19T16:21:00Z", - "reviewed_features": [], - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000386573472001109, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cafes_and_pubs", - "locale": "en", - "imagery": "osm", - "add-image": 2 - }, - "id": 117610784 - } - }, - { - "id": 117609480, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6115031, - 51.3117353 - ], - [ - 5.612522, - 51.3117353 - ], - [ - 5.612522, - 51.3122609 - ], - [ - 5.6115031, - 51.3122609 - ], - [ - 5.6115031, - 51.3117353 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "r0di", - "uid": "4737001", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-19T15:48:43Z", - "reviewed_features": [], - "create": 2, - "modify": 4, - "delete": 0, - "area": 5.35533839995966e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "benches", - "answer": 10, - "create": 2, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_50m": 10 - }, - "id": 117609480 - } - }, - { - "id": 117609388, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6112833, - 51.3115995 - ], - [ - 5.6112833, - 51.3115995 - ], - [ - 5.6112833, - 51.3115995 - ], - [ - 5.6112833, - 51.3115995 - ], - [ - 5.6112833, - 51.3115995 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "r0di", - "uid": "4737001", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-19T15:46:35Z", - "reviewed_features": [], - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "artwork", - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_50m": 1 - }, - "id": 117609388 - } - }, - { - "id": 117608520, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4200336, - 51.2279432 - ], - [ - 4.4200336, - 51.2279432 - ], - [ - 4.4200336, - 51.2279432 - ], - [ - 4.4200336, - 51.2279432 - ], - [ - 4.4200336, - 51.2279432 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "stijnh", - "uid": "14414954", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-19T15:25:48Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 117608520 - } - }, - { - "id": 117606572, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6818214, - 51.0518332 - ], - [ - 13.6859177, - 51.0518332 - ], - [ - 13.6859177, - 51.0571735 - ], - [ - 13.6818214, - 51.0571735 - ], - [ - 13.6818214, - 51.0518332 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "brust84", - "uid": "1225756", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-19T14:34:37Z", - "reviewed_features": [], - "create": 12, - "modify": 0, - "delete": 0, - "area": 0.0000218754708899944, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "hailhydrant", - "answer": 1, - "create": 12, - "locale": "en", - "imagery": "GEOSN-DOP-RGB", - "change_over_5000m": 12, - "change_within_25m": 1 - }, - "id": 117606572 - } - }, - { - "id": 117604643, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1946132, - 49.0681277 - ], - [ - 2.2027648, - 49.0681277 - ], - [ - 2.2027648, - 49.0762132 - ], - [ - 2.1946132, - 49.0762132 - ], - [ - 2.1946132, - 49.0681277 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LeTopographeFou", - "uid": "3178375", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-19T13:44:15Z", - "reviewed_features": [], - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000659097618000009, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 117604643 - } - }, - { - "id": 117603584, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9530946, - 50.3806983 - ], - [ - 2.9811534, - 50.3806983 - ], - [ - 2.9811534, - 50.4179798 - ], - [ - 2.9530946, - 50.4179798 - ], - [ - 2.9530946, - 50.3806983 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "whatismoss", - "uid": "8427311", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-19T13:13:53Z", - "reviewed_features": [], - "create": 0, - "modify": 35, - "delete": 0, - "area": 0.00104607415219997, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 67, - "locale": "en", - "imagery": "osm" - }, - "id": 117603584 - } - }, - { - "id": 117601937, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9494185, - 50.0003985 - ], - [ - 5.9494185, - 50.0003985 - ], - [ - 5.9494185, - 50.0003985 - ], - [ - 5.9494185, - 50.0003985 - ], - [ - 5.9494185, - 50.0003985 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "ClarissaWAM", - "uid": "13745921", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-19T12:28:27Z", - "reviewed_features": [], - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 117601937 - } - }, - { - "id": 117600697, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1657621, - 50.9039971 - ], - [ - 4.1957701, - 50.9039971 - ], - [ - 4.1957701, - 50.910841 - ], - [ - 4.1657621, - 50.910841 - ], - [ - 4.1657621, - 50.9039971 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-19T11:49:45Z", - "reviewed_features": [], - "create": 3, - "modify": 7, - "delete": 0, - "area": 0.000205371751199991, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toerisme_vlaanderen", - "answer": 14, - "create": 3, - "locale": "nl", - "imagery": "osm" - }, - "id": 117600697 - } - }, - { - "id": 117593015, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2569485, - 50.8421115 - ], - [ - 5.2587824, - 50.8421115 - ], - [ - 5.2587824, - 50.8430617 - ], - [ - 5.2569485, - 50.8430617 - ], - [ - 5.2569485, - 50.8421115 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-19T06:59:31Z", - "reviewed_features": [], - "create": 0, - "modify": 36, - "delete": 6, - "area": 0.00000174257177999723, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 31, - "path": "mc/develop/", - "theme": "grb", - "delete": 6, - "locale": "nl", - "imagery": "osm", - "conflation": 10 - }, - "id": 117593015 - } - }, - { - "id": 117585528, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9040578, - 51.0875473 - ], - [ - 4.9326405, - 51.0875473 - ], - [ - 4.9326405, - 51.1348952 - ], - [ - 4.9040578, - 51.1348952 - ], - [ - 4.9040578, - 51.0875473 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-18T23:00:37Z", - "reviewed_features": [], - "create": 0, - "modify": 66, - "delete": 0, - "area": 0.00135333082133013, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 86, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_5000m": 85 - }, - "id": 117585528 - } - }, - { - "id": 117585450, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9209251, - 51.1094185 - ], - [ - 4.9210861, - 51.1094185 - ], - [ - 4.9210861, - 51.1095578 - ], - [ - 4.9209251, - 51.1095578 - ], - [ - 4.9209251, - 51.1094185 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-18T22:58:39Z", - "reviewed_features": [], - "create": 2, - "modify": 10, - "delete": 0, - "area": 2.24273000001594e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 8, - "theme": "grb", - "locale": "nl", - "imagery": "osm", - "conflation": 4 - }, - "id": 117585450 - } - }, - { - "id": 117584878, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.4821621, - 54.7801232 - ], - [ - -1.3560177, - 54.7801232 - ], - [ - -1.3560177, - 54.8399008 - ], - [ - -1.4821621, - 54.8399008 - ], - [ - -1.4821621, - 54.7801232 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "confusedbuffalo", - "uid": "242345", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-18T22:44:01Z", - "reviewed_features": [], - "create": 0, - "modify": 35, - "delete": 0, - "area": 0.00754060948544049, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 37, - "locale": "en", - "imagery": "osm" - }, - "id": 117584878 - } - }, - { - "id": 117582035, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4185589, - 46.9408086 - ], - [ - 7.4188257, - 46.9408086 - ], - [ - 7.4188257, - 46.9409956 - ], - [ - 7.4185589, - 46.9409956 - ], - [ - 7.4185589, - 46.9408086 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "habi", - "uid": "15671", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-18T21:09:47Z", - "reviewed_features": [], - "create": 0, - "modify": 5, - "delete": 0, - "area": 4.9891600001114e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cycle_infra", - "answer": 5, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_500m": 5 - }, - "id": 117582035 - } - }, - { - "id": 117581674, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.419097, - 46.9354358 - ], - [ - 7.4228539, - 46.9354358 - ], - [ - 7.4228539, - 46.9370099 - ], - [ - 7.419097, - 46.9370099 - ], - [ - 7.419097, - 46.9354358 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "habi", - "uid": "15671", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-18T20:59:44Z", - "reviewed_features": [], - "create": 5, - "modify": 1, - "delete": 0, - "area": 0.00000591373628999667, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "waste_basket", - "answer": 7, - "create": 5, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 5, - "change_within_25m": 3, - "change_within_50m": 2, - "change_within_100m": 2 - }, - "id": 117581674 - } - }, - { - "id": 117581537, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 79.7937161, - 11.8931746 - ], - [ - 79.8372843, - 11.8931746 - ], - [ - 79.8372843, - 11.9586956 - ], - [ - 79.7937161, - 11.9586956 - ], - [ - 79.7937161, - 11.8931746 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "bponkishore", - "uid": "14062769", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-18T20:56:15Z", - "reviewed_features": [], - "create": 0, - "modify": 88, - "delete": 0, - "area": 0.00285463203219974, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 123, - "locale": "en", - "imagery": "osm" - }, - "id": 117581537 - } - }, - { - "id": 117577383, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3486899, - 50.8709543 - ], - [ - 4.3486899, - 50.8709543 - ], - [ - 4.3486899, - 50.8709543 - ], - [ - 4.3486899, - 50.8709543 - ], - [ - 4.3486899, - 50.8709543 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-18T18:37:51Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 117577383 - } - }, - { - "id": 117575150, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2565689, - 50.8414185 - ], - [ - 5.2767725, - 50.8414185 - ], - [ - 5.2767725, - 50.8496387 - ], - [ - 5.2565689, - 50.8496387 - ], - [ - 5.2565689, - 50.8414185 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-18T17:33:06Z", - "reviewed_features": [], - "create": 1432, - "modify": 104, - "delete": 8, - "area": 0.000166077632719928, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 91, - "path": "mc/develop/", - "theme": "grb", - "delete": 8, - "import": 205, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "conflation": 30 - }, - "id": 117575150 - } - }, - { - "id": 117575061, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.4036422, - -34.7801133 - ], - [ - -58.4036422, - -34.7801133 - ], - [ - -58.4036422, - -34.7801133 - ], - [ - -58.4036422, - -34.7801133 - ], - [ - -58.4036422, - -34.7801133 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Zalitoar", - "uid": "79602", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-18T17:30:53Z", - "reviewed_features": [], - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_1000m": 1 - }, - "id": 117575061 - } - }, - { - "id": 117574912, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0298724, - 38.7918008 - ], - [ - 0.030232, - 38.7918008 - ], - [ - 0.030232, - 38.7919343 - ], - [ - 0.0298724, - 38.7919343 - ], - [ - 0.0298724, - 38.7918008 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #https://paunofu.github.io/preguntesmc/policia_esp.json", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-18T17:26:26Z", - "reviewed_features": [], - "create": 0, - "modify": 3, - "delete": 0, - "area": 4.80066000014401e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://paunofu.github.io/preguntesmc/policia_esp.json", - "answer": 5, - "locale": "ca", - "imagery": "osm" - }, - "id": 117574912 - } - }, - { - "id": 117574740, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9687056, - 51.3363691 - ], - [ - 4.9687056, - 51.3363691 - ], - [ - 4.9687056, - 51.3363691 - ], - [ - 4.9687056, - 51.3363691 - ], - [ - 4.9687056, - 51.3363691 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-18T17:22:09Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "artwork", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 117574740 - } - }, - { - "id": 117574367, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2820039, - 51.2219376 - ], - [ - 4.2855574, - 51.2219376 - ], - [ - 4.2855574, - 51.2232193 - ], - [ - 4.2820039, - 51.2232193 - ], - [ - 4.2820039, - 51.2219376 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "chvp", - "uid": "9095231", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-18T17:12:32Z", - "reviewed_features": [], - "create": 245, - "modify": 15, - "delete": 0, - "area": 0.0000045545209499991, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 12, - "theme": "grb", - "answer": 5, - "import": 24, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "conflation": 4 - }, - "id": 117574367 - } - }, - { - "id": 117572259, - "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.16.1", - "comment": "Adding data with #MapComplete for theme #policia_esp", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-18T16:14:39Z", - "reviewed_features": [], - "create": 0, - "modify": 3, - "delete": 0, - "area": 1.83835319999886e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "policia_esp", - "answer": 3, - "locale": "ca", - "imagery": "osm" - }, - "id": 117572259 - } - }, - { - "id": 117572151, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -76.1604184, - 36.8382338 - ], - [ - -76.1604184, - 36.8382338 - ], - [ - -76.1604184, - 36.8382338 - ], - [ - -76.1604184, - 36.8382338 - ], - [ - -76.1604184, - 36.8382338 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9516997172", - "osm_id": 9516997172, - "reasons": [ - 43 - ], - "version": 1, - "primary_tags": { - "tourism": "map" - } - } - ], - "user": "cmitchusa", - "uid": "1884021", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #maps", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-18T16:11:40Z", - "reviewed_features": [], - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "maps", - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 117572151 - } - }, - { - "id": 117568096, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.0018772, - 38.7880183 - ], - [ - 0.1646752, - 38.7880183 - ], - [ - 0.1646752, - 38.8496073 - ], - [ - -0.0018772, - 38.8496073 - ], - [ - -0.0018772, - 38.7880183 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #policia_esp", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-18T14:34:55Z", - "reviewed_features": [], - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0102577957636008, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "policia_esp", - "answer": 5, - "locale": "ca", - "imagery": "osm" - }, - "id": 117568096 - } - }, - { - "id": 117567512, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.4972306, - 52.9928124 - ], - [ - 6.5215188, - 52.9928124 - ], - [ - 6.5215188, - 52.9997146 - ], - [ - 6.4972306, - 52.9997146 - ], - [ - 6.4972306, - 52.9928124 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-18T14:21:45Z", - "reviewed_features": [], - "create": 0, - "modify": 34, - "delete": 0, - "area": 0.000167642014039975, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "etymology", - "answer": 44, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 39, - "change_within_5000m": 5 - }, - "id": 117567512 - } - }, - { - "id": 117567044, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5608821, - 53.0166042 - ], - [ - 6.5608821, - 53.0166042 - ], - [ - 6.5608821, - 53.0166042 - ], - [ - 6.5608821, - 53.0166042 - ], - [ - 6.5608821, - 53.0166042 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.0", - "comment": "Adding data with #MapComplete for theme #bicycle_rental", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-18T14:12:39Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/waste-theme/", - "theme": "bicycle_rental", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_1000m": 1 - }, - "id": 117567044 - } - }, - { - "id": 117567010, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5636561, - 53.00961 - ], - [ - 6.5636561, - 53.00961 - ], - [ - 6.5636561, - 53.00961 - ], - [ - 6.5636561, - 53.00961 - ], - [ - 6.5636561, - 53.00961 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-18T14:11:46Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/waste-theme/", - "theme": "waste", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "change_within_5000m": 2 - }, - "id": 117567010 - } - }, - { - "id": 117566718, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5640763, - 53.0198777 - ], - [ - 6.5640763, - 53.0198777 - ], - [ - 6.5640763, - 53.0198777 - ], - [ - 6.5640763, - 53.0198777 - ], - [ - 6.5640763, - 53.0198777 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.0", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-18T14:04:08Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/waste-theme/", - "theme": "bookcases", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_500m": 1 - }, - "id": 117566718 - } - }, - { - "id": 117559177, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.11613, - 38.8415084 - ], - [ - -0.11613, - 38.8415084 - ], - [ - -0.11613, - 38.8415084 - ], - [ - -0.11613, - 38.8415084 - ], - [ - -0.11613, - 38.8415084 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #https://paunofu.github.io/preguntesmc/policia_esp.json", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-18T11:00:23Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://paunofu.github.io/preguntesmc/policia_esp.json", - "answer": 1, - "locale": "ca", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 117559177 - } - }, - { - "id": 117557459, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5801717, - 53.0106033 - ], - [ - 6.5801717, - 53.0106033 - ], - [ - 6.5801717, - 53.0106033 - ], - [ - 6.5801717, - 53.0106033 - ], - [ - 6.5801717, - 53.0106033 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-18T10:20:58Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/waste-theme/", - "theme": "waste", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 117557459 - } - }, - { - "id": 117556311, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3495864, - 50.7911064 - ], - [ - 5.3723797, - 50.7911064 - ], - [ - 5.3723797, - 50.8053752 - ], - [ - 5.3495864, - 50.8053752 - ], - [ - 5.3495864, - 50.7911064 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-18T09:56:16Z", - "reviewed_features": [], - "create": 1313, - "modify": 1109, - "delete": 6, - "area": 0.000325233039040081, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 984, - "theme": "grb", - "delete": 6, - "import": 216, - "locale": "nl", - "imagery": "osm", - "conflation": 264 - }, - "id": 117556311 - } - }, - { - "id": 117555737, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8971894, - 51.0036997 - ], - [ - 3.8971894, - 51.0036997 - ], - [ - 3.8971894, - 51.0036997 - ], - [ - 3.8971894, - 51.0036997 - ], - [ - 3.8971894, - 51.0036997 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Erin76", - "uid": "8982454", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-18T09:44:16Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 117555737 - } - }, - { - "id": 117555547, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 18.4009387, - -33.9013357 - ], - [ - 18.4108281, - -33.9013357 - ], - [ - 18.4108281, - -33.8994917 - ], - [ - 18.4009387, - -33.8994917 - ], - [ - 18.4009387, - -33.9013357 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Erin76", - "uid": "8982454", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-18T09:40:11Z", - "reviewed_features": [], - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.0000182360535999818, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 7, - "locale": "nl", - "imagery": "osm" - }, - "id": 117555547 - } - }, - { - "id": 117555303, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 18.397535, - -33.9257407 - ], - [ - 18.4178824, - -33.9257407 - ], - [ - 18.4178824, - -33.8994497 - ], - [ - 18.397535, - -33.8994497 - ], - [ - 18.397535, - -33.9257407 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Erin76", - "uid": "8982454", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-18T09:35:33Z", - "reviewed_features": [], - "create": 0, - "modify": 68, - "delete": 0, - "area": 0.000534953493399973, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 85, - "locale": "nl", - "imagery": "osm" - }, - "id": 117555303 - } - }, - { - "id": 117554863, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3378826, - 50.8026649 - ], - [ - 5.3503105, - 50.8026649 - ], - [ - 5.3503105, - 50.8079579 - ], - [ - 5.3378826, - 50.8079579 - ], - [ - 5.3378826, - 50.8026649 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-18T09:25:59Z", - "reviewed_features": [], - "create": 539, - "modify": 177, - "delete": 4, - "area": 0.0000657808746999316, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 153, - "theme": "grb", - "answer": 1, - "delete": 4, - "import": 134, - "locale": "nl", - "imagery": "osm", - "conflation": 46 - }, - "id": 117554863 - } - }, - { - "id": 117554781, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3429373, - 50.8076238 - ], - [ - 5.3434185, - 50.8076238 - ], - [ - 5.3434185, - 50.8093109 - ], - [ - 5.3429373, - 50.8093109 - ], - [ - 5.3429373, - 50.8076238 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-18T09:24:23Z", - "reviewed_features": [], - "create": 26, - "modify": 7, - "delete": 0, - "area": 8.11832519999557e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 6, - "theme": "grb", - "import": 9, - "locale": "nl", - "imagery": "osm", - "conflation": 2 - }, - "id": 117554781 - } - }, - { - "id": 117553403, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2748576, - 51.0565537 - ], - [ - 4.2872002, - 51.0565537 - ], - [ - 4.2872002, - 51.0819206 - ], - [ - 4.2748576, - 51.0819206 - ], - [ - 4.2748576, - 51.0565537 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Rienux", - "uid": "11911273", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-18T08:54:30Z", - "reviewed_features": [], - "create": 0, - "modify": 25, - "delete": 0, - "area": 0.000313093499939938, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 44, - "locale": "nl", - "imagery": "osm" - }, - "id": 117553403 - } - }, - { - "id": 117545992, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.3640564, - -34.6338144 - ], - [ - -71.3640323, - -34.6338144 - ], - [ - -71.3640323, - -34.6337802 - ], - [ - -71.3640564, - -34.6337802 - ], - [ - -71.3640564, - -34.6338144 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.16.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-18T04:54:47Z", - "reviewed_features": [], - "create": 0, - "modify": 2, - "delete": 0, - "area": 8.24219999711115e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "locale": "en", - "imagery": "cyclosm", - "add-image": 2 - }, - "id": 117545992 - } - }, - { - "id": 117544538, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2128849, - 51.2100013 - ], - [ - 3.2136045, - 51.2100013 - ], - [ - 3.2136045, - 51.2102593 - ], - [ - 3.2128849, - 51.2102593 - ], - [ - 3.2128849, - 51.2100013 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.0", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-18T03:26:55Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.85656799996562e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cycle_infra", - "answer": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 117544538 - } - }, - { - "id": 117544474, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9204204, - 51.1087959 - ], - [ - 4.9211038, - 51.1087959 - ], - [ - 4.9211038, - 51.1096542 - ], - [ - 4.9204204, - 51.1096542 - ], - [ - 4.9204204, - 51.1087959 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-18T03:20:39Z", - "reviewed_features": [], - "create": 2, - "modify": 51, - "delete": 6, - "area": 5.8656222000283e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 47, - "theme": "grb", - "delete": 6, - "locale": "nl", - "imagery": "osm", - "conflation": 8 - }, - "id": 117544474 - } - }, - { - "id": 117544352, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9155461, - 51.1050398 - ], - [ - 4.9429281, - 51.1050398 - ], - [ - 4.9429281, - 51.1214044 - ], - [ - 4.9155461, - 51.1214044 - ], - [ - 4.9155461, - 51.1050398 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-18T03:09:37Z", - "reviewed_features": [], - "create": 0, - "modify": 10, - "delete": 0, - "area": 0.000448095477200067, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 15, - "locale": "nl", - "imagery": "osm", - "change_within_5000m": 15 - }, - "id": 117544352 - } - }, - { - "id": 117544111, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7038135, - 51.050521 - ], - [ - 3.7038135, - 51.050521 - ], - [ - 3.7038135, - 51.050521 - ], - [ - 3.7038135, - 51.050521 - ], - [ - 3.7038135, - 51.050521 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-18T02:46:08Z", - "reviewed_features": [], - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 117544111 - } - }, - { - "id": 117543583, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.11613, - 38.7139165 - ], - [ - 0.0469334, - 38.7139165 - ], - [ - 0.0469334, - 38.8515136 - ], - [ - -0.11613, - 38.8515136 - ], - [ - -0.11613, - 38.7139165 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #https://paunofu.github.io/preguntesmc/policia_esp.json", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-18T01:58:49Z", - "reviewed_features": [], - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.022437050956139, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://paunofu.github.io/preguntesmc/policia_esp.json", - "answer": 6, - "locale": "ca", - "imagery": "osm", - "change_over_5000m": 6 - }, - "id": 117543583 - } - }, - { - "id": 117542792, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 79.5020312, - 11.6242761 - ], - [ - 79.5066553, - 11.6242761 - ], - [ - 79.5066553, - 11.6242856 - ], - [ - 79.5020312, - 11.6242856 - ], - [ - 79.5020312, - 11.6242761 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "bponkishore", - "uid": "14062769", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-18T00:55:49Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 4.39289500040954e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 117542792 - } - }, - { - "id": 117538787, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4187568, - 51.0931931 - ], - [ - 4.4190229, - 51.0931931 - ], - [ - 4.4190229, - 51.093366 - ], - [ - 4.4187568, - 51.093366 - ], - [ - 4.4187568, - 51.0931931 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "philippec", - "uid": "76884", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #observation_towers", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-17T21:22:00Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 4.60086900007151e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "observation_towers", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 117538787 - } - }, - { - "id": 117538710, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4187734, - 51.0932372 - ], - [ - 4.4187734, - 51.0932372 - ], - [ - 4.4187734, - 51.0932372 - ], - [ - 4.4187734, - 51.0932372 - ], - [ - 4.4187734, - 51.0932372 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "philippec", - "uid": "76884", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-17T21:19:17Z", - "reviewed_features": [], - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "answer": 6, - "locale": "nl", - "imagery": "osm" - }, - "id": 117538710 - } - }, - { - "id": 117538582, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3170278, - 50.8013881 - ], - [ - 5.36849, - 50.8013881 - ], - [ - 5.36849, - 50.81783 - ], - [ - 5.3170278, - 50.81783 - ], - [ - 5.3170278, - 50.8013881 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-17T21:15:59Z", - "reviewed_features": [], - "create": 1589, - "modify": 262, - "delete": 7, - "area": 0.000846136346180202, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 227, - "theme": "grb", - "answer": 11, - "delete": 7, - "import": 204, - "locale": "nl", - "imagery": "osm", - "conflation": 56 - }, - "id": 117538582 - } - }, - { - "id": 117538578, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-17T21: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": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 117538578 - } - }, - { - "id": 117538507, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3532259, - 50.8059876 - ], - [ - 5.3571144, - 50.8059876 - ], - [ - 5.3571144, - 50.8090055 - ], - [ - 5.3532259, - 50.8090055 - ], - [ - 5.3532259, - 50.8059876 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-17T21:13:45Z", - "reviewed_features": [], - "create": 200, - "modify": 0, - "delete": 0, - "area": 0.0000117351041499862, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "grb", - "import": 27, - "locale": "nl", - "imagery": "osm" - }, - "id": 117538507 - } - }, - { - "id": 117537838, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.246173, - 50.8363614 - ], - [ - 3.7164735, - 50.8363614 - ], - [ - 3.7164735, - 51.0397186 - ], - [ - 3.246173, - 51.0397186 - ], - [ - 3.246173, - 50.8363614 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Hopperpop", - "uid": "3664604", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/develop/assets/themes/OpenAsianMap/OpenAsianMap.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-17T20:53:45Z", - "reviewed_features": [], - "create": 1, - "modify": 10, - "delete": 0, - "area": 0.0956389928385996, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/develop/assets/themes/OpenAsianMap/OpenAsianMap.json", - "answer": 10, - "create": 1, - "locale": "en", - "imagery": "AGIV" - }, - "id": 117537838 - } - }, - { - "id": 117536892, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0351786, - 50.9406568 - ], - [ - 4.4206232, - 50.9406568 - ], - [ - 4.4206232, - 51.219973 - ], - [ - 4.0351786, - 51.219973 - ], - [ - 4.0351786, - 50.9406568 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Hopperpop", - "uid": "3664604", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-17T20:28:23Z", - "reviewed_features": [], - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.107660920982521, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", - "answer": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 117536892 - } - }, - { - "id": 117532300, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0688051, - 51.1265552 - ], - [ - 5.0688051, - 51.1265552 - ], - [ - 5.0688051, - 51.1265552 - ], - [ - 5.0688051, - 51.1265552 - ], - [ - 5.0688051, - 51.1265552 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #fritures", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-17T17:54:12Z", - "reviewed_features": [], - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "fritures", - "answer": 5, - "locale": "nl", - "imagery": "osm", - "change_within_50m": 5 - }, - "id": 117532300 - } - }, - { - "id": 117528809, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 18.3767862, - -34.0233838 - ], - [ - 18.4422072, - -34.0233838 - ], - [ - 18.4422072, - -33.9158612 - ], - [ - 18.3767862, - -33.9158612 - ], - [ - 18.3767862, - -34.0233838 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "Erin76", - "uid": "8982454", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-17T16:19:08Z", - "reviewed_features": [], - "create": 0, - "modify": 202, - "delete": 0, - "area": 0.00703423601459941, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 262, - "locale": "nl", - "imagery": "osm" - }, - "id": 117528809 - } - }, - { - "id": 117528200, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3435448, - 50.8012174 - ], - [ - 5.3600089, - 50.8012174 - ], - [ - 5.3600089, - 50.8106072 - ], - [ - 5.3435448, - 50.8106072 - ], - [ - 5.3435448, - 50.8012174 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-17T16:03:38Z", - "reviewed_features": [], - "create": 1151, - "modify": 66, - "delete": 0, - "area": 0.000154594606180019, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 49, - "theme": "grb", - "answer": 9, - "import": 180, - "locale": "nl", - "imagery": "osm", - "conflation": 16 - }, - "id": 117528200 - } - }, - { - "id": 117525975, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0835538, - 38.7727429 - ], - [ - 0.1646752, - 38.7727429 - ], - [ - 0.1646752, - 38.7880183 - ], - [ - 0.0835538, - 38.7880183 - ], - [ - 0.0835538, - 38.7727429 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #policia_esp", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-17T15:05:55Z", - "reviewed_features": [], - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00123916183356001, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "policia_esp", - "answer": 3, - "locale": "es", - "imagery": "osm" - }, - "id": 117525975 - } - }, - { - "id": 117524326, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 79.4679172, - 11.5994894 - ], - [ - 79.521355, - 11.5994894 - ], - [ - 79.521355, - 11.625737 - ], - [ - 79.4679172, - 11.625737 - ], - [ - 79.4679172, - 11.5994894 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "bponkishore", - "uid": "14062769", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-17T14:25:11Z", - "reviewed_features": [], - "create": 0, - "modify": 39, - "delete": 0, - "area": 0.00140261399928001, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 39, - "locale": "en", - "imagery": "osm" - }, - "id": 117524326 - } - }, - { - "id": 117522251, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1370649, - 50.8972694 - ], - [ - 3.2187671, - 50.8972694 - ], - [ - 3.2187671, - 50.9564355 - ], - [ - 3.1370649, - 50.9564355 - ], - [ - 3.1370649, - 50.8972694 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-17T13:41:42Z", - "reviewed_features": [], - "create": 80, - "modify": 19, - "delete": 0, - "area": 0.0048340005354199, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 17, - "path": "mc/develop/", - "theme": "grb", - "import": 4, - "locale": "nl", - "imagery": "osm", - "conflation": 4, - "change_over_5000m": 2 - }, - "id": 117522251 - } - }, - { - "id": 117522028, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2323273, - 51.1000423 - ], - [ - 4.2323273, - 51.1000423 - ], - [ - 4.2323273, - 51.1000423 - ], - [ - 4.2323273, - 51.1000423 - ], - [ - 4.2323273, - 51.1000423 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 41, - "name": "Software editor was not declared" - } - ], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": null, - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-17T13:36:16Z", - "reviewed_features": [], - "create": 1, - "modify": 0, - "delete": 1, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "toerisme_vlaanderen", - "import": 1, - "deletion": 1, - "change_over_5000m": 2, - "import:node/9513916030": "source: https://osm.org/note/3023056", - "deletion:node/9513916030": "testing point" - }, - "id": 117522028 - } - }, - { - "id": 117521968, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8436157, - 50.7039922 - ], - [ - 3.8436157, - 50.7039922 - ], - [ - 3.8436157, - 50.7039922 - ], - [ - 3.8436157, - 50.7039922 - ], - [ - 3.8436157, - 50.7039922 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.16.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-17T13:34:39Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/waste-theme/", - "theme": "waste", - "answer": 1, - "locale": "en", - "imagery": "SPW_ORTHO_LAST" - }, - "id": 117521968 - } - }, - { - "id": 117521358, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.449889, - 51.0925228 - ], - [ - 3.449889, - 51.0925228 - ], - [ - 3.449889, - 51.0925228 - ], - [ - 3.449889, - 51.0925228 - ], - [ - 3.449889, - 51.0925228 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-17T13:21:06Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/waste-theme/", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_1000m": 1 - }, - "id": 117521358 - } - }, - { - "id": 117520150, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3442313, - 50.800673 - ], - [ - 5.3451736, - 50.800673 - ], - [ - 5.3451736, - 50.8011327 - ], - [ - 5.3442313, - 50.8011327 - ], - [ - 5.3442313, - 50.800673 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-17T12:49:05Z", - "reviewed_features": [], - "create": 4, - "modify": 18, - "delete": 0, - "area": 4.33175309993757e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 16, - "theme": "grb", - "import": 2, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "conflation": 4 - }, - "id": 117520150 - } - }, - { - "id": 117519867, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4296276, - 46.9541534 - ], - [ - 7.4296276, - 46.9541534 - ], - [ - 7.4296276, - 46.9541534 - ], - [ - 7.4296276, - 46.9541534 - ], - [ - 7.4296276, - 46.9541534 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "habi", - "uid": "15671", - "editor": "MapComplete 0.16.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-17T12:40:59Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/waste-theme/", - "theme": "waste", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 117519867 - } - }, - { - "id": 117517111, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3957105, - 51.0406149 - ], - [ - 3.3957105, - 51.0406149 - ], - [ - 3.3957105, - 51.0406149 - ], - [ - 3.3957105, - 51.0406149 - ], - [ - 3.3957105, - 51.0406149 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.16.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-17T11:37:39Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/waste-theme/", - "theme": "waste", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_500m": 1 - }, - "id": 117517111 - } - }, - { - "id": 117517074, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2392253, - 50.734922 - ], - [ - 4.2392253, - 50.734922 - ], - [ - 4.2392253, - 50.734922 - ], - [ - 4.2392253, - 50.734922 - ], - [ - 4.2392253, - 50.734922 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.16.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-17T11:36:56Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/waste-theme/", - "theme": "waste", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_5000m": 1 - }, - "id": 117517074 - } - }, - { - "id": 117515628, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2269861, - 51.2216144 - ], - [ - 3.2269861, - 51.2216144 - ], - [ - 3.2269861, - 51.2216144 - ], - [ - 3.2269861, - 51.2216144 - ], - [ - 3.2269861, - 51.2216144 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-17T11:12:57Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/waste-theme/", - "theme": "waste", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_1000m": 1 - }, - "id": 117515628 - } - }, - { - "id": 117512137, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1724119, - 45.4766368 - ], - [ - 9.1925788, - 45.4766368 - ], - [ - 9.1925788, - 45.4851249 - ], - [ - 9.1724119, - 45.4851249 - ], - [ - 9.1724119, - 45.4766368 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Angelo Lisco", - "uid": "12906729", - "editor": "MapComplete 0.16.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-17T09:59:42Z", - "reviewed_features": [], - "create": 0, - "modify": 17, - "delete": 0, - "area": 0.000171178663890016, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cyclofix", - "answer": 19, - "locale": "it", - "imagery": "CartoDB.Voyager", - "add-image": 2 - }, - "id": 117512137 - } - }, - { - "id": 117503612, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2436716, - 51.1867301 - ], - [ - 5.2455024, - 51.1867301 - ], - [ - 5.2455024, - 51.1878824 - ], - [ - 5.2436716, - 51.1878824 - ], - [ - 5.2436716, - 51.1867301 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-17T06:20:10Z", - "reviewed_features": [], - "create": 3, - "modify": 37, - "delete": 0, - "area": 0.00000210963084000256, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 34, - "theme": "grb", - "locale": "nl", - "imagery": "AGIV", - "conflation": 6 - }, - "id": 117503612 - } - }, - { - "id": 117497216, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7205239, - 51.026665 - ], - [ - 3.7205239, - 51.026665 - ], - [ - 3.7205239, - 51.026665 - ], - [ - 3.7205239, - 51.026665 - ], - [ - 3.7205239, - 51.026665 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-16T23:21:07Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "food", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 117497216 - } - }, - { - "id": 117497117, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.3642123, - -34.6340057 - ], - [ - -71.3640916, - -34.6340057 - ], - [ - -71.3640916, - -34.6338965 - ], - [ - -71.3642123, - -34.6338965 - ], - [ - -71.3642123, - -34.6340057 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-16T23:13:42Z", - "reviewed_features": [], - "create": 4, - "modify": 3, - "delete": 0, - "area": 1.31804400016861e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "create": 4, - "locale": "en", - "imagery": "cyclosm", - "add-image": 4, - "change_over_5000m": 4, - "change_within_25m": 4 - }, - "id": 117497117 - } - }, - { - "id": 117496566, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7080114, - 50.8963183 - ], - [ - 5.4427727, - 50.8963183 - ], - [ - 5.4427727, - 50.9585408 - ], - [ - 4.7080114, - 50.9585408 - ], - [ - 4.7080114, - 50.8963183 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Hopperpop", - "uid": "3664604", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-16T22:45:56Z", - "reviewed_features": [], - "create": 1, - "modify": 8, - "delete": 0, - "area": 0.0457186849892531, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", - "answer": 8, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 117496566 - } - }, - { - "id": 117496475, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.6902638, - 54.8435536 - ], - [ - -1.5778664, - 54.8435536 - ], - [ - -1.5778664, - 54.8786945 - ], - [ - -1.6902638, - 54.8786945 - ], - [ - -1.6902638, - 54.8435536 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "confusedbuffalo", - "uid": "242345", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-16T22:41:53Z", - "reviewed_features": [], - "create": 0, - "modify": 26, - "delete": 0, - "area": 0.00394974579366021, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 35, - "locale": "en", - "imagery": "osm" - }, - "id": 117496475 - } - }, - { - "id": 117495889, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7151089, - 51.024678 - ], - [ - 3.7151089, - 51.024678 - ], - [ - 3.7151089, - 51.024678 - ], - [ - 3.7151089, - 51.024678 - ], - [ - 3.7151089, - 51.024678 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-16T22:14:38Z", - "reviewed_features": [], - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cyclofix", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 1, - "change_within_50m": 4 - }, - "id": 117495889 - } - }, - { - "id": 117495391, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7205239, - 51.026665 - ], - [ - 3.7205239, - 51.026665 - ], - [ - 3.7205239, - 51.026665 - ], - [ - 3.7205239, - 51.026665 - ], - [ - 3.7205239, - 51.026665 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-16T21:55:04Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "food", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 117495391 - } - }, - { - "id": 117495182, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0015773, - 51.2654787 - ], - [ - 3.0015773, - 51.2654787 - ], - [ - 3.0015773, - 51.2654787 - ], - [ - 3.0015773, - 51.2654787 - ], - [ - 3.0015773, - 51.2654787 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "philippec", - "uid": "76884", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-16T21:45:12Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 117495182 - } - }, - { - "id": 117491810, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.6350969, - 54.5941145 - ], - [ - -1.552565, - 54.5941145 - ], - [ - -1.552565, - 54.6980718 - ], - [ - -1.6350969, - 54.6980718 - ], - [ - -1.6350969, - 54.5941145 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "confusedbuffalo", - "uid": "242345", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-16T20:00:34Z", - "reviewed_features": [], - "create": 0, - "modify": 32, - "delete": 0, - "area": 0.0085797934878698, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 41, - "locale": "en", - "imagery": "osm" - }, - "id": 117491810 - } - }, - { - "id": 117491489, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4604686, - 50.7720248 - ], - [ - 5.4658655, - 50.7720248 - ], - [ - 5.4658655, - 50.7749774 - ], - [ - 5.4604686, - 50.7749774 - ], - [ - 5.4604686, - 50.7720248 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Rienux", - "uid": "11911273", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-16T19:50:15Z", - "reviewed_features": [], - "create": 0, - "modify": 10, - "delete": 0, - "area": 0.0000159348869400024, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 15, - "locale": "nl", - "imagery": "osm" - }, - "id": 117491489 - } - }, - { - "id": 117491266, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1619664, - 51.1035935 - ], - [ - 3.1619664, - 51.1035935 - ], - [ - 3.1619664, - 51.1035935 - ], - [ - 3.1619664, - 51.1035935 - ], - [ - 3.1619664, - 51.1035935 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Hopperpop", - "uid": "3664604", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-16T19:44:38Z", - "reviewed_features": [], - "create": 1, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "food", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "AGIVFlandersGRB" - }, - "id": 117491266 - } - }, - { - "id": 117484485, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1204873, - 50.9447481 - ], - [ - 3.1204873, - 50.9447481 - ], - [ - 3.1204873, - 50.9447481 - ], - [ - 3.1204873, - 50.9447481 - ], - [ - 3.1204873, - 50.9447481 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dasrakel", - "uid": "673393", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-16T16:37:53Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "answer": 3, - "locale": "en", - "imagery": "osm", - "change_within_25m": 3 - }, - "id": 117484485 - } - }, - { - "id": 117482285, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4593111, - 51.0391101 - ], - [ - 4.4593111, - 51.0391101 - ], - [ - 4.4593111, - 51.0391101 - ], - [ - 4.4593111, - 51.0391101 - ], - [ - 4.4593111, - 51.0391101 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "philippec", - "uid": "76884", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-16T15:44:40Z", - "reviewed_features": [], - "create": 1, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toerisme_vlaanderen", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 117482285 - } - }, - { - "id": 117481817, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1300655, - 50.9491472 - ], - [ - 3.1300655, - 50.9491472 - ], - [ - 3.1300655, - 50.9491472 - ], - [ - 3.1300655, - 50.9491472 - ], - [ - 3.1300655, - 50.9491472 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dasrakel", - "uid": "673393", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-16T15:32:52Z", - "reviewed_features": [], - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "answer": 4, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 117481817 - } - }, - { - "id": 117479097, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2137734, - 51.2047033 - ], - [ - 3.2142266, - 51.2047033 - ], - [ - 3.2142266, - 51.2049964 - ], - [ - 3.2137734, - 51.2049964 - ], - [ - 3.2137734, - 51.2047033 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.0", - "comment": "Adding data with #MapComplete for theme #postboxes", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-02-16T14:20:33Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.32832920000152e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "postboxes", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_25m": 1 - }, - "id": 117479097 - } - }, - { - "id": 117475720, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1238787, - 50.9458789 - ], - [ - 3.1287298, - 50.9458789 - ], - [ - 3.1287298, - 50.9465679 - ], - [ - 3.1238787, - 50.9465679 - ], - [ - 3.1238787, - 50.9458789 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dasrakel", - "uid": "673393", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-16T12:55:47Z", - "reviewed_features": [], - "create": 1, - "modify": 4, - "delete": 0, - "area": 0.00000334240790000602, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "answer": 4, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 117475720 - } - }, - { - "id": 117469991, - "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": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-16T10:31:57Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "shops", - "locale": "en", - "add-image": 2, - "change_within_25m": 2 - }, - "id": 117469991 - } - }, - { - "id": 117469662, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7786352, - 39.6473863 - ], - [ - 2.7786352, - 39.6473863 - ], - [ - 2.7786352, - 39.6473863 - ], - [ - 2.7786352, - 39.6473863 - ], - [ - 2.7786352, - 39.6473863 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "benetj", - "uid": "2353661", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #policia", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-16T10:23:56Z", - "reviewed_features": [], - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "policia", - "answer": 1, - "locale": "es", - "imagery": "osm" - }, - "id": 117469662 - } - }, - { - "id": 117464857, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.9082359, - 41.1379841 - ], - [ - 1.0927266, - 41.1379841 - ], - [ - 1.0927266, - 41.3944351 - ], - [ - 0.9082359, - 41.3944351 - ], - [ - 0.9082359, - 41.1379841 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ecabre4", - "uid": "554769", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-16T08:17:01Z", - "reviewed_features": [], - "create": 11, - "modify": 3, - "delete": 0, - "area": 0.047312824505701, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "answer": 3, - "create": 11, - "locale": "en", - "imagery": "PNOA-Spain-TMS" - }, - "id": 117464857 - } - }, - { - "id": 117464726, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.9082684, - 41.1372192 - ], - [ - 0.9087968, - 41.1372192 - ], - [ - 0.9087968, - 41.1382778 - ], - [ - 0.9082684, - 41.1382778 - ], - [ - 0.9082684, - 41.1372192 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ecabre4", - "uid": "554769", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-16T08:13:17Z", - "reviewed_features": [], - "create": 4, - "modify": 0, - "delete": 0, - "area": 5.5936424000017e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "create": 4, - "locale": "en", - "imagery": "PNOA-Spain-TMS" - }, - "id": 117464726 - } - }, - { - "id": 117464533, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.9077905, - 41.1374154 - ], - [ - 0.9095773, - 41.1374154 - ], - [ - 0.9095773, - 41.1388938 - ], - [ - 0.9077905, - 41.1388938 - ], - [ - 0.9077905, - 41.1374154 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ecabre4", - "uid": "554769", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-16T08:07:02Z", - "reviewed_features": [], - "create": 2, - "modify": 29, - "delete": 0, - "area": 0.00000264160511999357, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "trees", - "answer": 29, - "create": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 117464533 - } - }, - { - "id": 117464419, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.9087029, - 41.1374788 - ], - [ - 0.9096511, - 41.1374788 - ], - [ - 0.9096511, - 41.1384929 - ], - [ - 0.9087029, - 41.1384929 - ], - [ - 0.9087029, - 41.1374788 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ecabre4", - "uid": "554769", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-16T08:04:16Z", - "reviewed_features": [], - "create": 3, - "modify": 1, - "delete": 0, - "area": 9.61569620005873e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "waste_basket", - "answer": 2, - "create": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 117464419 - } - }, - { - "id": 117464351, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.9091768, - 41.1373682 - ], - [ - 1.1029999, - 41.1373682 - ], - [ - 1.1029999, - 41.1456321 - ], - [ - 0.9091768, - 41.1456321 - ], - [ - 0.9091768, - 41.1373682 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ecabre4", - "uid": "554769", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-16T08:02:19Z", - "reviewed_features": [], - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00160173471609056, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 117464351 - } - }, - { - "id": 117457096, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.0079139, - 38.7380017 - ], - [ - 0.0878291, - 38.7380017 - ], - [ - 0.0878291, - 38.8496073 - ], - [ - -0.0079139, - 38.8496073 - ], - [ - -0.0079139, - 38.7380017 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.15.8", - "comment": "Adding data with #MapComplete for theme #policia", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-16T02:04:06Z", - "reviewed_features": [], - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0106854549608004, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "policia", - "answer": 6, - "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": 2, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-15T13:38:32Z", - "reviewed_features": [], - "create": 1, - "modify": 3, - "delete": 0, - "area": 0.0294471418661003, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "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": 117287043, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.6461941, - 42.9169099 - ], - [ - 1.646608, - 42.9169099 - ], - [ - 1.646608, - 42.9171661 - ], - [ - 1.6461941, - 42.9171661 - ], - [ - 1.6461941, - 42.9169099 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "rejbzh", - "uid": "15051154", - "editor": "iD 2.20.4", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "BDOrtho IGN", - "date": "2022-02-11T12:54:27Z", - "reviewed_features": [], - "create": 1, - "modify": 1, - "delete": 0, - "area": 1.06041180001093e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://www.openstreetmap.org/edit", - "locale": "fr", - "hashtags": "#MapComplete;#surveillance", - "changesets_count": 7 - }, - "id": 117287043 - } - }, - { - "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": 117256030, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.6573136, - 42.9146837 - ], - [ - 1.6716781, - 42.9146837 - ], - [ - 1.6716781, - 42.917024 - ], - [ - 1.6573136, - 42.917024 - ], - [ - 1.6573136, - 42.9146837 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "rejbzh", - "uid": "15051154", - "editor": "iD 2.20.4", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "BDOrtho IGN", - "date": "2022-02-10T17:42:34Z", - "reviewed_features": [], - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000336172393500029, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://www.openstreetmap.org/edit", - "locale": "fr", - "hashtags": "#MapComplete;#surveillance", - "changesets_count": 6 - }, - "id": 117256030 - } - }, - { - "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": 117253731, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.6402526, - 42.9134642 - ], - [ - 1.6656386, - 42.9134642 - ], - [ - 1.6656386, - 42.9188424 - ], - [ - 1.6402526, - 42.9188424 - ], - [ - 1.6402526, - 42.9134642 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "rejbzh", - "uid": "15051154", - "editor": "iD 2.20.4", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "BDOrtho IGN", - "date": "2022-02-10T16:38:38Z", - "reviewed_features": [], - "create": 8, - "modify": 4, - "delete": 3, - "area": 0.000136530985200068, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://www.openstreetmap.org/edit", - "locale": "fr", - "hashtags": "#MapComplete;#surveillance", - "changesets_count": 5 - }, - "id": 117253731 - } - }, - { - "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": 117244083, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1852899, - 50.9119365 - ], - [ - 5.2098409, - 50.9119365 - ], - [ - 5.2098409, - 50.9361395 - ], - [ - 5.1852899, - 50.9361395 - ], - [ - 5.1852899, - 50.9119365 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 41, - "name": "Software editor was not declared" - } - ], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": null, - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-10T12:27:22Z", - "reviewed_features": [], - "create": 2, - "modify": 5, - "delete": 0, - "area": 0.000594207852999994, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "toerisme_vlaanderen", - "answer": 12, - "import": 2, - "import:node/9495257973": "source: https://osm.org/note/3044279", - "import:node/9495282428": "source: https://osm.org/note/3044139" - }, - "id": 117244083 - } - }, - { - "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": 1, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-08T08:48:32Z", - "reviewed_features": [], - "create": 0, - "modify": 20, - "delete": 0, - "area": 0.000074070873000003, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "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": 117010979, - "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": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 41, - "name": "Software editor was not declared" - } - ], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": null, - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 3, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-04T15:22:45Z", - "reviewed_features": [], - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "toerisme_vlaanderen", - "answer": 3, - "import": 1, - "import:node/9476264469": "source: https://osm.org/note/3023001" - }, - "id": 117010979 - } - }, - { - "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" - } - }, - { - "url": "way-929712895", - "name": "Consett Road", - "osm_id": 929712895, - "reasons": [ - 91 - ], - "version": 5, - "primary_tags": { - "highway": "trunk" - } - } - ], - "user": "confusedbuffalo", - "uid": "242345", - "editor": "MapComplete 0.15.3", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-02-03T22:29:42Z", - "reviewed_features": [], - "create": 0, - "modify": 81, - "delete": 0, - "area": 0.0479769859208512, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "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/Tools/stats/stats.2022-3.json b/Docs/Tools/stats/stats.2022-3.json deleted file mode 100644 index 66c44127e0..0000000000 --- a/Docs/Tools/stats/stats.2022-3.json +++ /dev/null @@ -1,48390 +0,0 @@ -{ - "features": [ - { - "id": 119179130, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8097883, - 51.1276893 - ], - [ - 5.0996267, - 51.1276893 - ], - [ - 5.0996267, - 51.1712407 - ], - [ - 4.8097883, - 51.1712407 - ], - [ - 4.8097883, - 51.1276893 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-31T22:10:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 269, - "modify": 268, - "delete": 7, - "area": 0.0126228680937595, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 235, - "theme": "grb", - "answer": 4, - "delete": 7, - "import": 19, - "locale": "nl", - "imagery": "osm", - "conflation": 64, - "change_over_5000m": 23 - }, - "id": 119179130 - } - }, - { - "id": 119177668, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2404717, - 51.2068242 - ], - [ - 3.2411961, - 51.2068242 - ], - [ - 3.2411961, - 51.2075518 - ], - [ - 3.2404717, - 51.2075518 - ], - [ - 3.2404717, - 51.2068242 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0-alpha", - "comment": "Adding data with #MapComplete for theme #sidewalks", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-31T21:05:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 5.27073439998075e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/sidewalks.html", - "theme": "sidewalks", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_500m": 1 - }, - "id": 119177668 - } - }, - { - "id": 119177017, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4823647, - 50.8439023 - ], - [ - 5.485757, - 50.8439023 - ], - [ - 5.485757, - 50.8464527 - ], - [ - 5.4823647, - 50.8464527 - ], - [ - 5.4823647, - 50.8439023 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-31T20:42:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 165, - "modify": 0, - "delete": 0, - "area": 0.00000865172191999141, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 26, - "locale": "nl", - "imagery": "osm" - }, - "id": 119177017 - } - }, - { - "id": 119176477, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3951609, - 50.7952296 - ], - [ - 4.4076558, - 50.7952296 - ], - [ - 4.4076558, - 50.7973983 - ], - [ - 4.3951609, - 50.7973983 - ], - [ - 4.3951609, - 50.7952296 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-31T20:23:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.0000270976896299824, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 4, - "locale": "en", - "imagery": "osm", - "add-image": 3 - }, - "id": 119176477 - } - }, - { - "id": 119174003, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3079188, - 50.9896615 - ], - [ - 3.330834, - 50.9896615 - ], - [ - 3.330834, - 50.9979404 - ], - [ - 3.3079188, - 50.9979404 - ], - [ - 3.3079188, - 50.9896615 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #sidewalks", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-31T19:00:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 16, - "modify": 47, - "delete": 0, - "area": 0.000189712649280011, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sidewalks.html", - "split": 18, - "theme": "sidewalks", - "answer": 75, - "locale": "en", - "imagery": "osm" - }, - "id": 119174003 - } - }, - { - "id": 119173579, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4072158, - 51.2126045 - ], - [ - 4.4251232, - 51.2126045 - ], - [ - 4.4251232, - 51.2163039 - ], - [ - 4.4072158, - 51.2163039 - ], - [ - 4.4072158, - 51.2126045 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "philippec", - "uid": "76884", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-31T18:45:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0.0000662466355600361, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 3, - "change_over_5000m": 5 - }, - "id": 119173579 - } - }, - { - "id": 119166365, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.150535, - 41.3780295 - ], - [ - 2.1822848, - 41.3780295 - ], - [ - 2.1822848, - 41.4018566 - ], - [ - 2.150535, - 41.4018566 - ], - [ - 2.150535, - 41.3780295 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "ccamara", - "uid": "423535", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-31T15:29:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 254, - "delete": 0, - "area": 0.000756505659580174, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 400, - "locale": "en", - "imagery": "osm" - }, - "id": 119166365 - } - }, - { - "id": 119166248, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1954288, - 51.2497832 - ], - [ - 3.1954288, - 51.2497832 - ], - [ - 3.1954288, - 51.2497832 - ], - [ - 3.1954288, - 51.2497832 - ], - [ - 3.1954288, - 51.2497832 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-31T15:26:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix", - "theme": "cyclofix", - "answer": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1 - }, - "id": 119166248 - } - }, - { - "id": 119164497, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4846282, - 50.8454638 - ], - [ - 5.484712, - 50.8454638 - ], - [ - 5.484712, - 50.8456352 - ], - [ - 5.4846282, - 50.8456352 - ], - [ - 5.4846282, - 50.8454638 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-31T14:47:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 12, - "modify": 0, - "delete": 0, - "area": 1.43633199998758e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 119164497 - } - }, - { - "id": 119163895, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.0583474, - 52.3648204 - ], - [ - 13.0936165, - 52.3648204 - ], - [ - 13.0936165, - 52.4080108 - ], - [ - 13.0583474, - 52.4080108 - ], - [ - 13.0583474, - 52.3648204 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "AaronRi112", - "uid": "15408103", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-31T14:34:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 8, - "modify": 7, - "delete": 0, - "area": 0.00152328653663996, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 119163895 - } - }, - { - "id": 119163511, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3806916, - 50.8114407 - ], - [ - 4.3806916, - 50.8114407 - ], - [ - 4.3806916, - 50.8114407 - ], - [ - 4.3806916, - 50.8114407 - ], - [ - 4.3806916, - 50.8114407 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-31T14:25:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 119163511 - } - }, - { - "id": 119161053, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1419668, - 41.3738288 - ], - [ - 2.2162241, - 41.3738288 - ], - [ - 2.2162241, - 41.4133962 - ], - [ - 2.1419668, - 41.4133962 - ], - [ - 2.1419668, - 41.3738288 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "ccamara", - "uid": "423535", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-31T13:40:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 588, - "delete": 0, - "area": 0.0029381682920202, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 829, - "locale": "en", - "imagery": "osm" - }, - "id": 119161053 - } - }, - { - "id": 119160499, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4642697, - 50.8151642 - ], - [ - 5.4885144, - 50.8151642 - ], - [ - 5.4885144, - 50.8470484 - ], - [ - 5.4642697, - 50.8470484 - ], - [ - 5.4642697, - 50.8151642 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-31T13:29:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1075, - "modify": 0, - "delete": 0, - "area": 0.000773022863739998, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 143, - "locale": "nl", - "imagery": "osm" - }, - "id": 119160499 - } - }, - { - "id": 119160492, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1909382, - 51.1027885 - ], - [ - 4.1914069, - 51.1027885 - ], - [ - 4.1914069, - 51.1030537 - ], - [ - 4.1909382, - 51.1030537 - ], - [ - 4.1909382, - 51.1027885 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "LDW56", - "uid": "9403294", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-31T13:29:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 9, - "modify": 55, - "delete": 0, - "area": 1.24299239997193e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 15, - "theme": "toerisme_vlaanderen", - "answer": 47, - "create": 9, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "move:node/9626571473": "improve_accuracy", - "move:node/9626576649": "improve_accuracy", - "move:node/9626613959": "improve_accuracy", - "move:node/9626675921": "improve_accuracy", - "move:node/9626683663": "improve_accuracy", - "move:node/9626695007": "improve_accuracy" - }, - "id": 119160492 - } - }, - { - "id": 119156524, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0309681, - 51.2744692 - ], - [ - 3.0309681, - 51.2744692 - ], - [ - 3.0309681, - 51.2744692 - ], - [ - 3.0309681, - 51.2744692 - ], - [ - 3.0309681, - 51.2744692 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-1467418953", - "name": "Cattrysse", - "osm_id": 1467418953, - "reasons": [ - 43 - ], - "version": 10, - "primary_tags": { - "shop": "bicycle_rental" - } - } - ], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-31T11:54:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119156524 - } - }, - { - "id": 119154766, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3483082, - 50.8476208 - ], - [ - 4.3483082, - 50.8476208 - ], - [ - 4.3483082, - 50.8476208 - ], - [ - 4.3483082, - 50.8476208 - ], - [ - 4.3483082, - 50.8476208 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-31T11:14:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "locale": "en", - "imagery": "osm", - "add-image": 2 - }, - "id": 119154766 - } - }, - { - "id": 119151020, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7992225, - 50.8840682 - ], - [ - 4.8136264, - 50.8840682 - ], - [ - 4.8136264, - 50.8905493 - ], - [ - 4.7992225, - 50.8905493 - ], - [ - 4.7992225, - 50.8840682 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Hilde OSM", - "uid": "15275790", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-31T09:42:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 5, - "delete": 0, - "area": 0.0000933531162900321, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 7, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 1, - "change_within_25m": 9 - }, - "id": 119151020 - } - }, - { - "id": 119146600, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7611752, - 50.8809221 - ], - [ - 4.767744, - 50.8809221 - ], - [ - 4.767744, - 50.8953682 - ], - [ - 4.7611752, - 50.8953682 - ], - [ - 4.7611752, - 50.8809221 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Hilde OSM", - "uid": "15275790", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-31T07:52:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 10, - "delete": 1, - "area": 0.0000948935416800067, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 14, - "create": 4, - "locale": "nl", - "imagery": "osm", - "deletion": 1, - "add-image": 3, - "change_over_5000m": 4, - "change_within_25m": 18, - "deletion:node/6007337660": "duplicate" - }, - "id": 119146600 - } - }, - { - "id": 119144605, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1357315, - 41.3762562 - ], - [ - 2.2047684, - 41.3762562 - ], - [ - 2.2047684, - 41.4018956 - ], - [ - 2.1357315, - 41.4018956 - ], - [ - 2.1357315, - 41.3762562 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "ccamara", - "uid": "423535", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-31T07:02:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 679, - "delete": 0, - "area": 0.0017700646938602, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 1006, - "locale": "en", - "imagery": "osm" - }, - "id": 119144605 - } - }, - { - "id": 119135159, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3954021, - 51.0350253 - ], - [ - 3.399709, - 51.0350253 - ], - [ - 3.399709, - 51.0411198 - ], - [ - 3.3954021, - 51.0411198 - ], - [ - 3.3954021, - 51.0350253 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-30T22:40:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.0000262484020499833, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 9, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_within_100m": 3, - "change_within_500m": 3, - "change_within_1000m": 3 - }, - "id": 119135159 - } - }, - { - "id": 119133649, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.177537, - 41.3825515 - ], - [ - 2.1784062, - 41.3825515 - ], - [ - 2.1784062, - 41.3829988 - ], - [ - 2.177537, - 41.3829988 - ], - [ - 2.177537, - 41.3825515 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ccamara", - "uid": "423535", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-30T21:33:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 3.88793160004044e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 119133649 - } - }, - { - "id": 119122579, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8836353, - 50.8715807 - ], - [ - 4.8840805, - 50.8715807 - ], - [ - 4.8840805, - 50.8721656 - ], - [ - 4.8836353, - 50.8721656 - ], - [ - 4.8836353, - 50.8715807 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Hilde OSM", - "uid": "15275790", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-30T15:47:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 2.60397479999726e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "locale": "nl", - "imagery": "AGIV", - "add-image": 3, - "change_within_25m": 2, - "change_within_50m": 1 - }, - "id": 119122579 - } - }, - { - "id": 119122559, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1404755, - 41.3749368 - ], - [ - 2.2205812, - 41.3749368 - ], - [ - 2.2205812, - 41.4279348 - ], - [ - 2.1404755, - 41.4279348 - ], - [ - 2.1404755, - 41.3749368 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "ccamara", - "uid": "423535", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-30T15:47:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 961, - "delete": 0, - "area": 0.00424544188860018, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 1260, - "locale": "en", - "imagery": "osm" - }, - "id": 119122559 - } - }, - { - "id": 119118909, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2140803, - 50.9309198 - ], - [ - 4.2140803, - 50.9309198 - ], - [ - 4.2140803, - 50.9309198 - ], - [ - 4.2140803, - 50.9309198 - ], - [ - 4.2140803, - 50.9309198 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-30T14:21:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "add-image": 1 - }, - "id": 119118909 - } - }, - { - "id": 119117926, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4423555, - 50.8350599 - ], - [ - 5.4561535, - 50.8350599 - ], - [ - 5.4561535, - 50.8467667 - ], - [ - 5.4423555, - 50.8467667 - ], - [ - 5.4423555, - 50.8350599 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-30T13:54:07Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1868, - "modify": 0, - "delete": 0, - "area": 0.000161530426400088, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 205, - "locale": "nl", - "imagery": "osm" - }, - "id": 119117926 - } - }, - { - "id": 119117724, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1969432, - 41.4111124 - ], - [ - 2.2117752, - 41.4111124 - ], - [ - 2.2117752, - 41.4232992 - ], - [ - 2.1969432, - 41.4232992 - ], - [ - 2.1969432, - 41.4111124 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ccamara", - "uid": "423535", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-30T13:49:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 69, - "delete": 0, - "area": 0.000180754617600027, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 85, - "locale": "en", - "imagery": "osm" - }, - "id": 119117724 - } - }, - { - "id": 119115021, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9171349, - 51.2279432 - ], - [ - 4.972092, - 51.2279432 - ], - [ - 4.972092, - 51.2416073 - ], - [ - 4.9171349, - 51.2416073 - ], - [ - 4.9171349, - 51.2279432 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Toerisme Kasterlee", - "uid": "15445529", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-30T12:39:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 10, - "delete": 0, - "area": 0.000750939310109988, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 14, - "create": 3, - "locale": "nl", - "imagery": "osm" - }, - "id": 119115021 - } - }, - { - "id": 119113734, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4402897, - 50.8444476 - ], - [ - 5.4486191, - 50.8444476 - ], - [ - 5.4486191, - 50.8691174 - ], - [ - 5.4402897, - 50.8691174 - ], - [ - 5.4402897, - 50.8444476 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-30T12:06:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1044, - "modify": 0, - "delete": 0, - "area": 0.000205484632119985, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 126, - "locale": "nl", - "imagery": "osm" - }, - "id": 119113734 - } - }, - { - "id": 119112224, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.414628, - 47.0288082 - ], - [ - 15.4976521, - 47.0288082 - ], - [ - 15.4976521, - 47.0644337 - ], - [ - 15.414628, - 47.0644337 - ], - [ - 15.414628, - 47.0288082 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Woazboat", - "uid": "3545112", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-30T11:34:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 86, - "delete": 0, - "area": 0.00295777507455013, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 115, - "locale": "de", - "imagery": "osm" - }, - "id": 119112224 - } - }, - { - "id": 119110756, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1390723, - 51.1623843 - ], - [ - 4.1528401, - 51.1623843 - ], - [ - 4.1528401, - 51.1748062 - ], - [ - 4.1390723, - 51.1748062 - ], - [ - 4.1390723, - 51.1623843 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "vott", - "uid": "15407842", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-30T10:58:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 18, - "modify": 15, - "delete": 0, - "area": 0.000171022234819997, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 56, - "create": 18, - "locale": "nl", - "imagery": "osm", - "move:node/9623615925": "improve_accuracy" - }, - "id": 119110756 - } - }, - { - "id": 119110068, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7512302, - 51.0665929 - ], - [ - 4.9727833, - 51.0665929 - ], - [ - 4.9727833, - 51.2332368 - ], - [ - 4.7512302, - 51.2332368 - ], - [ - 4.7512302, - 51.0665929 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "StevenPelckmans", - "uid": "15444901", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-30T10:39:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 3, - "delete": 0, - "area": 0.0369204726410892, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 2, - "create": 2, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 3 - }, - "id": 119110068 - } - }, - { - "id": 119108504, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2210085, - 51.2153016 - ], - [ - 3.2210085, - 51.2153016 - ], - [ - 3.2210085, - 51.2153016 - ], - [ - 3.2210085, - 51.2153016 - ], - [ - 3.2210085, - 51.2153016 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0-alpha", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-30T10:05:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/aed.html", - "theme": "aed", - "answer": 5, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 6 - }, - "id": 119108504 - } - }, - { - "id": 119107732, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3770886, - 50.9606057 - ], - [ - 5.3770886, - 50.9606057 - ], - [ - 5.3770886, - 50.9606057 - ], - [ - 5.3770886, - 50.9606057 - ], - [ - 5.3770886, - 50.9606057 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-30T09:46:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 5, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 5 - }, - "id": 119107732 - } - }, - { - "id": 119107215, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4590083, - 50.8547548 - ], - [ - 5.4606506, - 50.8547548 - ], - [ - 5.4606506, - 50.8553187 - ], - [ - 5.4590083, - 50.8553187 - ], - [ - 5.4590083, - 50.8547548 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-30T09:33:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 36, - "modify": 0, - "delete": 0, - "area": 9.26092969993534e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 6, - "locale": "nl", - "imagery": "osm" - }, - "id": 119107215 - } - }, - { - "id": 119106590, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3773941, - 50.960818 - ], - [ - 5.3773941, - 50.960818 - ], - [ - 5.3773941, - 50.960818 - ], - [ - 5.3773941, - 50.960818 - ], - [ - 5.3773941, - 50.960818 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-30T09:19:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 1, - "change_within_50m": 2 - }, - "id": 119106590 - } - }, - { - "id": 119106179, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3605091, - 50.8713106 - ], - [ - 4.3605091, - 50.8713106 - ], - [ - 4.3605091, - 50.8713106 - ], - [ - 4.3605091, - 50.8713106 - ], - [ - 4.3605091, - 50.8713106 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-30T09:09:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "locale": "en", - "imagery": "osm", - "add-image": 3 - }, - "id": 119106179 - } - }, - { - "id": 119106050, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3635402, - 50.8710788 - ], - [ - 4.3642163, - 50.8710788 - ], - [ - 4.3642163, - 50.87122 - ], - [ - 4.3635402, - 50.87122 - ], - [ - 4.3635402, - 50.8710788 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-30T09:06:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 9.54653200010564e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 2 - }, - "id": 119106050 - } - }, - { - "id": 119103722, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1470492, - 51.1519325 - ], - [ - 4.1584378, - 51.1519325 - ], - [ - 4.1584378, - 51.1746936 - ], - [ - 4.1470492, - 51.1746936 - ], - [ - 4.1470492, - 51.1519325 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "vott", - "uid": "15407842", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-30T08:08:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 8, - "modify": 5, - "delete": 0, - "area": 0.000259217063459965, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 23, - "create": 8, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 29 - }, - "id": 119103722 - } - }, - { - "id": 119103430, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.9816881, - 45.7998889 - ], - [ - 15.9853624, - 45.7998889 - ], - [ - 15.9853624, - 45.800313 - ], - [ - 15.9816881, - 45.800313 - ], - [ - 15.9816881, - 45.7998889 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Janjko", - "uid": "244754", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-30T08:00:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00000155827063001325, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 5, - "locale": "en", - "imagery": "osm", - "change_within_500m": 5 - }, - "id": 119103430 - } - }, - { - "id": 119103034, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1944437, - 41.408957 - ], - [ - 2.2039076, - 41.408957 - ], - [ - 2.2039076, - 41.4131098 - ], - [ - 2.1944437, - 41.4131098 - ], - [ - 2.1944437, - 41.408957 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ccamara", - "uid": "423535", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-30T07:50:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 46, - "delete": 0, - "area": 0.0000393016839199999, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 66, - "locale": "en", - "imagery": "osm" - }, - "id": 119103034 - } - }, - { - "id": 119100793, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3740495, - 50.959407 - ], - [ - 5.3937721, - 50.959407 - ], - [ - 5.3937721, - 50.9635295 - ], - [ - 5.3740495, - 50.9635295 - ], - [ - 5.3740495, - 50.959407 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-30T07:02:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6, - "modify": 37, - "delete": 0, - "area": 0.0000813064185000212, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 61, - "create": 5, - "import": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 9, - "change_over_5000m": 6, - "change_within_25m": 68, - "change_within_50m": 3, - "move:node/9623114660": "improve_accuracy", - "import:node/9623114660": "source: https://osm.org/note/3044478" - }, - "id": 119100793 - } - }, - { - "id": 119099387, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4471719, - 51.0923592 - ], - [ - 3.44723, - 51.0923592 - ], - [ - 3.44723, - 51.0924822 - ], - [ - 3.4471719, - 51.0924822 - ], - [ - 3.4471719, - 51.0923592 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-30T06:34:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 7.14630000011547e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 6, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 5, - "change_within_50m": 1 - }, - "id": 119099387 - } - }, - { - "id": 119093761, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.3528552, - -33.6405306 - ], - [ - -70.3528552, - -33.6405306 - ], - [ - -70.3528552, - -33.6405306 - ], - [ - -70.3528552, - -33.6405306 - ], - [ - -70.3528552, - -33.6405306 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-30T02:51:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "cyclosm", - "add-image": 1 - }, - "id": 119093761 - } - }, - { - "id": 119093546, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.570752, - -33.5903044 - ], - [ - -70.5707098, - -33.5903044 - ], - [ - -70.5707098, - -33.5903024 - ], - [ - -70.570752, - -33.5903024 - ], - [ - -70.570752, - -33.5903044 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-30T02:33:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 8.44000000783063e-11, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "cyclosm", - "add-image": 2, - "change_within_500m": 2 - }, - "id": 119093546 - } - }, - { - "id": 119089343, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7547662, - 50.9012133 - ], - [ - 4.7739295, - 50.9012133 - ], - [ - 4.7739295, - 50.9050555 - ], - [ - 4.7547662, - 50.9050555 - ], - [ - 4.7547662, - 50.9012133 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-29T21:35:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 960, - "modify": 0, - "delete": 0, - "area": 0.0000736292312600242, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "theme": "grb", - "import": 92, - "locale": "nl", - "imagery": "osm" - }, - "id": 119089343 - } - }, - { - "id": 119089030, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3376108, - 51.1381546 - ], - [ - 3.3377831, - 51.1381546 - ], - [ - 3.3377831, - 51.1384626 - ], - [ - 3.3376108, - 51.1384626 - ], - [ - 3.3376108, - 51.1381546 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-29T21:20:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 5.30683999993276e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "create": 2, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 119089030 - } - }, - { - "id": 119088449, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1093212, - 38.8380822 - ], - [ - 0.1108428, - 38.8380822 - ], - [ - 0.1108428, - 38.8391814 - ], - [ - 0.1093212, - 38.8391814 - ], - [ - 0.1093212, - 38.8380822 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-29T20:58:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0.0000016725427199981, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 7, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 7 - }, - "id": 119088449 - } - }, - { - "id": 119085117, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1468927, - 51.1015078 - ], - [ - 5.1488677, - 51.1015078 - ], - [ - 5.1488677, - 51.1021083 - ], - [ - 5.1468927, - 51.1021083 - ], - [ - 5.1468927, - 51.1015078 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-29T19:10:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 4, - "delete": 0, - "area": 0.00000118598749999465, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 7, - "create": 4, - "locale": "nl", - "imagery": "osm" - }, - "id": 119085117 - } - }, - { - "id": 119081123, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.3747032, - 47.0083214 - ], - [ - 15.5102197, - 47.0083214 - ], - [ - 15.5102197, - 47.1185912 - ], - [ - 15.3747032, - 47.1185912 - ], - [ - 15.3747032, - 47.0083214 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "Woazboat", - "uid": "3545112", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-29T17:31:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1245, - "delete": 0, - "area": 0.0149433773516996, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 1612, - "locale": "de", - "imagery": "osm" - }, - "id": 119081123 - } - }, - { - "id": 119078563, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.21317, - 45.5014076 - ], - [ - 9.21317, - 45.5014076 - ], - [ - 9.21317, - 45.5014076 - ], - [ - 9.21317, - 45.5014076 - ], - [ - 9.21317, - 45.5014076 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "skizz98", - "uid": "13920670", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-29T16:32:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 119078563 - } - }, - { - "id": 119075894, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9786855, - 51.229465 - ], - [ - 4.9810428, - 51.229465 - ], - [ - 4.9810428, - 51.2300208 - ], - [ - 4.9786855, - 51.2300208 - ], - [ - 4.9786855, - 51.229465 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Vic Van Eyck", - "uid": "8791681", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-29T15:29:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00000131018734000176, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 8, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 119075894 - } - }, - { - "id": 119073619, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.216212, - 51.1968385 - ], - [ - 3.216212, - 51.1968385 - ], - [ - 3.216212, - 51.1968385 - ], - [ - 3.216212, - 51.1968385 - ], - [ - 3.216212, - 51.1968385 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-29T14:35:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 4, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 4 - }, - "id": 119073619 - } - }, - { - "id": 119073087, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.0764169, - 52.36248 - ], - [ - 13.0855805, - 52.36248 - ], - [ - 13.0855805, - 52.3726611 - ], - [ - 13.0764169, - 52.3726611 - ], - [ - 13.0764169, - 52.36248 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "AaronRi112", - "uid": "15408103", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-29T14:22:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 7, - "modify": 4, - "delete": 0, - "area": 0.0000932955279600455, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 119073087 - } - }, - { - "id": 119068383, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1228005, - 41.3931541 - ], - [ - 2.2130427, - 41.3931541 - ], - [ - 2.2130427, - 41.4180424 - ], - [ - 2.1228005, - 41.4180424 - ], - [ - 2.1228005, - 41.3931541 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "ccamara", - "uid": "423535", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-29T12:42:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 971, - "delete": 0, - "area": 0.00224597494626006, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 1281, - "locale": "en", - "imagery": "osm" - }, - "id": 119068383 - } - }, - { - "id": 119066726, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1554874, - 50.8531612 - ], - [ - 4.1841857, - 50.8531612 - ], - [ - 4.1841857, - 50.8858542 - ], - [ - 4.1554874, - 50.8858542 - ], - [ - 4.1554874, - 50.8531612 - ] - ] - ] - }, - "properties": { - "check_user": "jospyck", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Shana Matthys", - "uid": "15437476", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 1, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-29T12:08:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 21, - "modify": 20, - "delete": 2, - "area": 0.00093823352189983, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-29T20:26:57.111651Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 68, - "create": 21, - "locale": "nl", - "imagery": "EsriWorldImagery", - "move:node/9620954105": "improve_accuracy" - }, - "id": 119066726 - } - }, - { - "id": 119064572, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3959502, - 50.8169302 - ], - [ - 3.5054597, - 50.8169302 - ], - [ - 3.5054597, - 50.8348014 - ], - [ - 3.3959502, - 50.8348014 - ], - [ - 3.3959502, - 50.8169302 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Toerisme Anzegem", - "uid": "12747497", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 1, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-29T11:24:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 3, - "delete": 0, - "area": 0.0019570661764002, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 12, - "create": 3, - "locale": "nl", - "imagery": "osm" - }, - "id": 119064572 - } - }, - { - "id": 119064497, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3078879, - 50.7669057 - ], - [ - 4.3078879, - 50.7669057 - ], - [ - 4.3078879, - 50.7669057 - ], - [ - 4.3078879, - 50.7669057 - ], - [ - 4.3078879, - 50.7669057 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-29T11:22:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 5, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "change_over_5000m": 1, - "change_within_5000m": 5 - }, - "id": 119064497 - } - }, - { - "id": 119061696, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3754458, - 50.8682112 - ], - [ - 4.3754458, - 50.8682112 - ], - [ - 4.3754458, - 50.8682112 - ], - [ - 4.3754458, - 50.8682112 - ], - [ - 4.3754458, - 50.8682112 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-29T10:17:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 119061696 - } - }, - { - "id": 119060959, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3954421, - 51.0373864 - ], - [ - 3.396152, - 51.0373864 - ], - [ - 3.396152, - 51.0380593 - ], - [ - 3.3954421, - 51.0380593 - ], - [ - 3.3954421, - 51.0373864 - ] - ] - ] - }, - "properties": { - "check_user": "L'imaginaire", - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-29T10:00:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 4.77691709998439e-7, - "is_suspect": false, - "harmful": false, - "checked": true, - "check_date": "2022-03-29T10:25:53.394407Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 5, - "locale": "nl", - "imagery": "osm", - "change_within_1000m": 5 - }, - "id": 119060959 - } - }, - { - "id": 119060707, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1424354, - 41.3672644 - ], - [ - 2.1955827, - 41.3672644 - ], - [ - 2.1955827, - 41.4419527 - ], - [ - 2.1424354, - 41.4419527 - ], - [ - 2.1424354, - 41.3672644 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "ccamara", - "uid": "423535", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-29T09:55:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 946, - "delete": 0, - "area": 0.00396948148658991, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 1246, - "locale": "en", - "imagery": "osm" - }, - "id": 119060707 - } - }, - { - "id": 119059490, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.8031269, - 53.2203066 - ], - [ - 7.8109039, - 53.2203066 - ], - [ - 7.8109039, - 53.2265638 - ], - [ - 7.8031269, - 53.2265638 - ], - [ - 7.8031269, - 53.2203066 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "obst96", - "uid": "10436028", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-29T09:27:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000486622444000018, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/personal.html", - "theme": "personal", - "answer": 3, - "locale": "de", - "imagery": "EsriWorldImagery" - }, - "id": 119059490 - } - }, - { - "id": 119059135, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.432184, - 50.8782359 - ], - [ - 4.432184, - 50.8782359 - ], - [ - 4.432184, - 50.8782359 - ], - [ - 4.432184, - 50.8782359 - ], - [ - 4.432184, - 50.8782359 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #bicycle_rental", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-29T09:20:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bicycle_rental.html", - "theme": "bicycle_rental", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 119059135 - } - }, - { - "id": 119058167, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4031989, - 50.8674395 - ], - [ - 4.4031989, - 50.8674395 - ], - [ - 4.4031989, - 50.8674395 - ], - [ - 4.4031989, - 50.8674395 - ], - [ - 4.4031989, - 50.8674395 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-29T08:57:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "en", - "imagery": "AGIV", - "add-image": 1 - }, - "id": 119058167 - } - }, - { - "id": 119058021, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.9330792, - 43.2636887 - ], - [ - -2.9307806, - 43.2636887 - ], - [ - -2.9307806, - 43.2678406 - ], - [ - -2.9330792, - 43.2678406 - ], - [ - -2.9330792, - 43.2636887 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "pezespe", - "uid": "149682", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-29T08:54:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000954355733999222, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 3, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 119058021 - } - }, - { - "id": 119057810, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.6185769, - 60.6032214 - ], - [ - 15.6185769, - 60.6032214 - ], - [ - 15.6185769, - 60.6032214 - ], - [ - 15.6185769, - 60.6032214 - ], - [ - 15.6185769, - 60.6032214 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Aerond", - "uid": "10217353", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-29T08:50:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 119057810 - } - }, - { - "id": 119057559, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1129783, - 38.8360513 - ], - [ - 0.1129783, - 38.8360513 - ], - [ - 0.1129783, - 38.8360513 - ], - [ - 0.1129783, - 38.8360513 - ], - [ - 0.1129783, - 38.8360513 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-29T08:43:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 119057559 - } - }, - { - "id": 119057550, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-29T08:43:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 119057550 - } - }, - { - "id": 119057537, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1111708, - 38.8365312 - ], - [ - 0.1111708, - 38.8365312 - ], - [ - 0.1111708, - 38.8365312 - ], - [ - 0.1111708, - 38.8365312 - ], - [ - 0.1111708, - 38.8365312 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-29T08:43:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 3, - "locale": "en", - "imagery": "osm", - "change_within_25m": 3 - }, - "id": 119057537 - } - }, - { - "id": 119057460, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1101609, - 38.8365312 - ], - [ - 0.1111708, - 38.8365312 - ], - [ - 0.1111708, - 38.8368234 - ], - [ - 0.1101609, - 38.8368234 - ], - [ - 0.1101609, - 38.8365312 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/containeronvas.json", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-29T08:41:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 1, - "delete": 0, - "area": 2.95092779996935e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/containeronvas.json", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_500m": 1 - }, - "id": 119057460 - } - }, - { - "id": 119057080, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3875151, - 50.739564 - ], - [ - 4.4349461, - 50.739564 - ], - [ - 4.4349461, - 50.7605485 - ], - [ - 4.3875151, - 50.7605485 - ], - [ - 4.3875151, - 50.739564 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-29T08:31:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 2, - "area": 0.000995315819499881, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "import": 1, - "locale": "nl", - "imagery": "osm", - "deletion": 2, - "import:node/9620399323": "source: https://osm.org/note/3090198", - "deletion:node/693277863": "disused", - "deletion:node/2390001958": "disused" - }, - "id": 119057080 - } - }, - { - "id": 119056220, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7645427, - 50.9033108 - ], - [ - 4.7671606, - 50.9033108 - ], - [ - 4.7671606, - 50.9050871 - ], - [ - 4.7645427, - 50.9050871 - ], - [ - 4.7645427, - 50.9033108 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-29T08:11:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 266, - "modify": 0, - "delete": 0, - "area": 0.00000465017577000911, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "theme": "grb", - "import": 26, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 26 - }, - "id": 119056220 - } - }, - { - "id": 119056198, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2887424, - 48.7450862 - ], - [ - 2.2887424, - 48.7450862 - ], - [ - 2.2887424, - 48.7450862 - ], - [ - 2.2887424, - 48.7450862 - ], - [ - 2.2887424, - 48.7450862 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "milenasonneveld", - "uid": "8177639", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-29T08:10:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/climbing", - "theme": "climbing", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "CartoDB.VoyagerNoLabels", - "add-image": 1, - "change_over_5000m": 1, - "change_within_5000m": 4 - }, - "id": 119056198 - } - }, - { - "id": 119055562, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4454687, - 50.8417317 - ], - [ - 5.4498101, - 50.8417317 - ], - [ - 5.4498101, - 50.8456317 - ], - [ - 5.4454687, - 50.8456317 - ], - [ - 5.4454687, - 50.8417317 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-29T07:54:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 224, - "modify": 0, - "delete": 0, - "area": 0.0000169314600000048, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 40, - "locale": "nl", - "imagery": "osm" - }, - "id": 119055562 - } - }, - { - "id": 119055014, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1828673, - 41.4067365 - ], - [ - 2.2283179, - 41.4067365 - ], - [ - 2.2283179, - 41.4546675 - ], - [ - 2.1828673, - 41.4546675 - ], - [ - 2.1828673, - 41.4067365 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - }, - { - "id": 91, - "name": "Motorway/trunk geometry modified" - } - ], - "tags": [], - "features": [ - { - "url": "way-904787526", - "name": "Avinguda Meridiana", - "osm_id": 904787526, - "reasons": [ - 91 - ], - "version": 2, - "primary_tags": { - "highway": "trunk" - } - }, - { - "url": "way-52586323", - "name": "Passeig de Torras i Bages", - "osm_id": 52586323, - "reasons": [ - 91 - ], - "version": 18, - "primary_tags": { - "highway": "trunk_link" - } - } - ], - "user": "ccamara", - "uid": "423535", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-29T07:43:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 813, - "delete": 0, - "area": 0.00217849270859993, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 1094, - "locale": "en", - "imagery": "osm" - }, - "id": 119055014 - } - }, - { - "id": 119047637, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6754949, - 51.2612705 - ], - [ - 4.6754949, - 51.2612705 - ], - [ - 4.6754949, - 51.2612705 - ], - [ - 4.6754949, - 51.2612705 - ], - [ - 4.6754949, - 51.2612705 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Frank Y", - "uid": "15434739", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-29T03:59:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119047637 - } - }, - { - "id": 119040374, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.4558879, - 41.1848155 - ], - [ - 1.4560703, - 41.1848155 - ], - [ - 1.4560703, - 41.1849507 - ], - [ - 1.4558879, - 41.1849507 - ], - [ - 1.4558879, - 41.1848155 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 489, - "name": "Mapbox: Spam text" - } - ], - "tags": [], - "features": [ - { - "url": "way-239261173", - "note": "Spam text reported in [\"name\"] tags in the feature", - "osm_id": 239261173, - "reasons": [ - 489 - ], - "version": 10 - } - ], - "user": "hortacalaf", - "uid": "14495457", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-28T21:11:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 19, - "delete": 0, - "area": 2.46604800004548e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", - "answer": 22, - "locale": "ca", - "imagery": "osm" - }, - "id": 119040374 - } - }, - { - "id": 119039787, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4477262, - 50.8398166 - ], - [ - 5.45659, - 50.8398166 - ], - [ - 5.45659, - 50.8438679 - ], - [ - 5.4477262, - 50.8438679 - ], - [ - 5.4477262, - 50.8398166 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-28T20:53:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 322, - "modify": 0, - "delete": 0, - "area": 0.000035909912940005, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 56, - "locale": "nl", - "imagery": "osm" - }, - "id": 119039787 - } - }, - { - "id": 119039288, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7579486, - 50.9008983 - ], - [ - 4.7763372, - 50.9008983 - ], - [ - 4.7763372, - 50.9081796 - ], - [ - 4.7579486, - 50.9081796 - ], - [ - 4.7579486, - 50.9008983 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-28T20:39:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2384, - "modify": 5, - "delete": 0, - "area": 0.00013389291317992, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "theme": "grb", - "answer": 5, - "import": 232, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 119039288 - } - }, - { - "id": 119036842, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1188807, - 41.3703216 - ], - [ - 2.1893553, - 41.3703216 - ], - [ - 2.1893553, - 41.4348606 - ], - [ - 2.1188807, - 41.4348606 - ], - [ - 2.1188807, - 41.3703216 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "ccamara", - "uid": "423535", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-28T19:33:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 492, - "delete": 0, - "area": 0.00454836020940023, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 669, - "locale": "en", - "imagery": "osm" - }, - "id": 119036842 - } - }, - { - "id": 119035721, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1453003, - 51.1771793 - ], - [ - 4.1763597, - 51.1771793 - ], - [ - 4.1763597, - 51.1960261 - ], - [ - 4.1453003, - 51.1960261 - ], - [ - 4.1453003, - 51.1771793 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Rembrandt De Vlaeminck", - "uid": "504998", - "editor": "MapComplete 0.0.8f", - "comment": "Adding data with #MapComplete for theme #buurtnatuur", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-28T18:59:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 12, - "delete": 0, - "area": 0.00058537029991996, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 119035721 - } - }, - { - "id": 119035632, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3485848, - 50.8546324 - ], - [ - 4.3485848, - 50.8546324 - ], - [ - 4.3485848, - 50.8546324 - ], - [ - 4.3485848, - 50.8546324 - ], - [ - 4.3485848, - 50.8546324 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-28T18:56:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 119035632 - } - }, - { - "id": 119035611, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4527561, - 50.8504069 - ], - [ - 5.4620633, - 50.8504069 - ], - [ - 5.4620633, - 50.8611982 - ], - [ - 5.4527561, - 50.8611982 - ], - [ - 5.4527561, - 50.8504069 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-28T18:56:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1367, - "modify": 0, - "delete": 0, - "area": 0.000100436787359937, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 184, - "locale": "nl", - "imagery": "osm" - }, - "id": 119035611 - } - }, - { - "id": 119035579, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3503256, - 50.8547037 - ], - [ - 4.3503256, - 50.8547037 - ], - [ - 4.3503256, - 50.8547037 - ], - [ - 4.3503256, - 50.8547037 - ], - [ - 4.3503256, - 50.8547037 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-28T18:54:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 119035579 - } - }, - { - "id": 119035534, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3529301, - 50.863851 - ], - [ - 4.3529301, - 50.863851 - ], - [ - 4.3529301, - 50.863851 - ], - [ - 4.3529301, - 50.863851 - ], - [ - 4.3529301, - 50.863851 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-28T18:53:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 119035534 - } - }, - { - "id": 119033861, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.721699, - 51.0268317 - ], - [ - 3.7218979, - 51.0268317 - ], - [ - 3.7218979, - 51.0269374 - ], - [ - 3.721699, - 51.0269374 - ], - [ - 3.721699, - 51.0268317 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-28T18:08:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 2.10237299997767e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119033861 - } - }, - { - "id": 119033803, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -5.9925066, - 37.3801318 - ], - [ - -5.9884467, - 37.3801318 - ], - [ - -5.9884467, - 37.3852233 - ], - [ - -5.9925066, - 37.3852233 - ], - [ - -5.9925066, - 37.3801318 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Dinn0", - "uid": "14893874", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-28T18:07:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000206709808499939, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 5, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_25m": 1, - "change_within_50m": 3, - "change_within_100m": 1 - }, - "id": 119033803 - } - }, - { - "id": 119028879, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.0904835, - 52.3857849 - ], - [ - 13.0945586, - 52.3857849 - ], - [ - 13.0945586, - 52.3898148 - ], - [ - 13.0904835, - 52.3898148 - ], - [ - 13.0904835, - 52.3857849 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "AaronRi112", - "uid": "15408103", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-28T16:08:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 5, - "modify": 5, - "delete": 0, - "area": 0.0000164222454900237, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 119028879 - } - }, - { - "id": 119026022, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4571182, - 50.8598611 - ], - [ - 5.4604299, - 50.8598611 - ], - [ - 5.4604299, - 50.8611263 - ], - [ - 5.4571182, - 50.8611263 - ], - [ - 5.4571182, - 50.8598611 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-28T14:54:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 103, - "modify": 0, - "delete": 0, - "area": 0.00000418996283999653, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 17, - "locale": "nl", - "imagery": "osm" - }, - "id": 119026022 - } - }, - { - "id": 119025721, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4528218, - 50.8610906 - ], - [ - 5.4596328, - 50.8610906 - ], - [ - 5.4596328, - 50.8646914 - ], - [ - 5.4528218, - 50.8646914 - ], - [ - 5.4528218, - 50.8610906 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-28T14:47:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 363, - "modify": 0, - "delete": 0, - "area": 0.0000245250488000062, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 59, - "locale": "nl", - "imagery": "osm" - }, - "id": 119025721 - } - }, - { - "id": 119017661, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0278304, - 51.1490134 - ], - [ - 4.1475749, - 51.1490134 - ], - [ - 4.1475749, - 51.1852167 - ], - [ - 4.0278304, - 51.1852167 - ], - [ - 4.0278304, - 51.1490134 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "vott", - "uid": "15407842", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-28T11:32:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 16, - "modify": 10, - "delete": 0, - "area": 0.00433514605684963, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 47, - "create": 16, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 18, - "change_within_500m": 1, - "change_within_1000m": 2, - "change_within_5000m": 42 - }, - "id": 119017661 - } - }, - { - "id": 119015966, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1460736, - 41.3603358 - ], - [ - 2.2027431, - 41.3603358 - ], - [ - 2.2027431, - 41.4238872 - ], - [ - 2.1460736, - 41.4238872 - ], - [ - 2.1460736, - 41.3603358 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "ccamara", - "uid": "423535", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-28T10:50:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1302, - "delete": 0, - "area": 0.00360142606230011, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 1782, - "locale": "en", - "imagery": "osm" - }, - "id": 119015966 - } - }, - { - "id": 119015015, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.8083526, - 51.123326 - ], - [ - 5.8166166, - 51.123326 - ], - [ - 5.8166166, - 51.1341377 - ], - [ - 5.8083526, - 51.1341377 - ], - [ - 5.8083526, - 51.123326 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Visit Kinrooi", - "uid": "15291736", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-28T10:26:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 18, - "delete": 0, - "area": 0.0000893478887999781, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 25, - "create": 2, - "import": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 11, - "move:node/9612972833": "improve_accuracy", - "import:node/9612845526": "source: https://osm.org/note/3044291", - "import:node/9612946095": "source: https://osm.org/note/3044265" - }, - "id": 119015015 - } - }, - { - "id": 119012923, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9754378, - 51.1714242 - ], - [ - 4.9823749, - 51.1714242 - ], - [ - 4.9823749, - 51.175427 - ], - [ - 4.9754378, - 51.175427 - ], - [ - 4.9754378, - 51.1714242 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-28T09:37:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 17, - "modify": 0, - "delete": 0, - "area": 0.0000277678238800146, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "theme": "grb", - "import": 3, - "locale": "nl", - "imagery": "osm" - }, - "id": 119012923 - } - }, - { - "id": 119012620, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0309681, - 51.2742907 - ], - [ - 3.0320066, - 51.2742907 - ], - [ - 3.0320066, - 51.2753396 - ], - [ - 3.0309681, - 51.2753396 - ], - [ - 3.0309681, - 51.2742907 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-28T09:30:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.00000108928265000065, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 11, - "locale": "nl", - "imagery": "osm" - }, - "id": 119012620 - } - }, - { - "id": 119010852, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5706811, - 52.9923595 - ], - [ - 6.5706811, - 52.9923595 - ], - [ - 6.5706811, - 52.9923595 - ], - [ - 6.5706811, - 52.9923595 - ], - [ - 6.5706811, - 52.9923595 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-28T08:46:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "theme": "waste_basket", - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 119010852 - } - }, - { - "id": 119009586, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5306645, - 44.8391173 - ], - [ - -0.5306645, - 44.8391173 - ], - [ - -0.5306645, - 44.8391173 - ], - [ - -0.5306645, - 44.8391173 - ], - [ - -0.5306645, - 44.8391173 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-28T08:13:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 4, - "create": 1, - "locale": "fr", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 119009586 - } - }, - { - "id": 119009426, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4469557, - 52.1295048 - ], - [ - 13.4790471, - 52.1295048 - ], - [ - 13.4790471, - 52.1375927 - ], - [ - 13.4469557, - 52.1375927 - ], - [ - 13.4469557, - 52.1295048 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "ebihardy", - "uid": "263464", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-28T08:08:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 2, - "delete": 0, - "area": 0.000259552034059991, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 119009426 - } - }, - { - "id": 119009236, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1429171, - 41.3837436 - ], - [ - 2.2089015, - 41.3837436 - ], - [ - 2.2089015, - 41.4240873 - ], - [ - 2.1429171, - 41.4240873 - ], - [ - 2.1429171, - 41.3837436 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "ccamara", - "uid": "423535", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-28T08:03:07Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1092, - "delete": 0, - "area": 0.00266205483827961, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 1452, - "locale": "en", - "imagery": "osm" - }, - "id": 119009236 - } - }, - { - "id": 119007905, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5967011, - 45.3638508 - ], - [ - 5.5967011, - 45.3638508 - ], - [ - 5.5967011, - 45.3638508 - ], - [ - 5.5967011, - 45.3638508 - ], - [ - 5.5967011, - 45.3638508 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Eric Royer", - "uid": "12137407", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-28T07:32:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 119007905 - } - }, - { - "id": 119000040, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2402575, - -39.8314888 - ], - [ - -73.2402575, - -39.8314888 - ], - [ - -73.2402575, - -39.8314888 - ], - [ - -73.2402575, - -39.8314888 - ], - [ - -73.2402575, - -39.8314888 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-28T01:03:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "cyclosm", - "add-image": 1 - }, - "id": 119000040 - } - }, - { - "id": 118999619, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.3563549, - 47.6803374 - ], - [ - -122.356354, - 47.6803374 - ], - [ - -122.356354, - 47.6803374 - ], - [ - -122.3563549, - 47.6803374 - ], - [ - -122.3563549, - 47.6803374 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Wim L", - "uid": "223681", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-28T00:25:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 4, - "locale": "en", - "imagery": "osm", - "change_within_25m": 4 - }, - "id": 118999619 - } - }, - { - "id": 118998067, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0240488, - 38.8174665 - ], - [ - 0.0244855, - 38.8174665 - ], - [ - 0.0244855, - 38.8180262 - ], - [ - 0.0240488, - 38.8180262 - ], - [ - 0.0240488, - 38.8174665 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-27T22:37:07Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 14, - "delete": 0, - "area": 2.44420989998521e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 19, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 19 - }, - "id": 118998067 - } - }, - { - "id": 118997076, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.5498217, - -33.0196915 - ], - [ - -71.5498217, - -33.0196915 - ], - [ - -71.5498217, - -33.0196915 - ], - [ - -71.5498217, - -33.0196915 - ], - [ - -71.5498217, - -33.0196915 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-27T21:41:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "cyclosm", - "add-image": 1 - }, - "id": 118997076 - } - }, - { - "id": 118996653, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0299306, - 51.27261 - ], - [ - 3.0330916, - 51.27261 - ], - [ - 3.0330916, - 51.2766967 - ], - [ - 3.0299306, - 51.2766967 - ], - [ - 3.0299306, - 51.27261 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #postboxes", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-27T21:18:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000129180587000062, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/postboxes.html", - "theme": "postboxes", - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 2 - }, - "id": 118996653 - } - }, - { - "id": 118995770, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.6054104, - 41.1885579 - ], - [ - 1.6732638, - 41.1885579 - ], - [ - 1.6732638, - 41.2086404 - ], - [ - 1.6054104, - 41.2086404 - ], - [ - 1.6054104, - 41.1885579 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "hortacalaf", - "uid": "14495457", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-27T20:38:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 43, - "delete": 0, - "area": 0.00136266590550006, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", - "answer": 57, - "locale": "ca", - "imagery": "osm" - }, - "id": 118995770 - } - }, - { - "id": 118994915, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.855607, - 51.145162 - ], - [ - 4.8567025, - 51.145162 - ], - [ - 4.8567025, - 51.1464737 - ], - [ - 4.855607, - 51.1464737 - ], - [ - 4.855607, - 51.145162 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-27T20:09:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 56, - "modify": 0, - "delete": 0, - "area": 0.00000143696735000235, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "theme": "grb", - "import": 8, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 118994915 - } - }, - { - "id": 118994625, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0270948, - 51.2699932 - ], - [ - 3.03172, - 51.2699932 - ], - [ - 3.03172, - 51.278134 - ], - [ - 3.0270948, - 51.278134 - ], - [ - 3.0270948, - 51.2699932 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.17.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-27T20:00:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 10, - "delete": 0, - "area": 0.0000376528281599982, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 4 - }, - "id": 118994625 - } - }, - { - "id": 118990728, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5549891, - 53.0173317 - ], - [ - 6.5549891, - 53.0173317 - ], - [ - 6.5549891, - 53.0173317 - ], - [ - 6.5549891, - 53.0173317 - ], - [ - 6.5549891, - 53.0173317 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-27T17:57:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 4, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 118990728 - } - }, - { - "id": 118983300, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1262041, - 51.0873396 - ], - [ - 5.1262041, - 51.0873396 - ], - [ - 5.1262041, - 51.0873396 - ], - [ - 5.1262041, - 51.0873396 - ], - [ - 5.1262041, - 51.0873396 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-27T14:35:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "change_within_50m": 2 - }, - "id": 118983300 - } - }, - { - "id": 118981764, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3482953, - 50.8710458 - ], - [ - 4.3482953, - 50.8710458 - ], - [ - 4.3482953, - 50.8710458 - ], - [ - 4.3482953, - 50.8710458 - ], - [ - 4.3482953, - 50.8710458 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.17.0-alpha-3", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-27T13:52:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/aed.html", - "theme": "aed", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 118981764 - } - }, - { - "id": 118981358, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3481934, - 50.8709375 - ], - [ - 4.3481934, - 50.8709375 - ], - [ - 4.3481934, - 50.8709375 - ], - [ - 4.3481934, - 50.8709375 - ], - [ - 4.3481934, - 50.8709375 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.17.0-alpha-3", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-27T13:41:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/bookcases.html", - "theme": "bookcases", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 5 - }, - "id": 118981358 - } - }, - { - "id": 118981312, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5393488, - 48.0143759 - ], - [ - 8.5393488, - 48.0143759 - ], - [ - 8.5393488, - 48.0143759 - ], - [ - 8.5393488, - 48.0143759 - ], - [ - 8.5393488, - 48.0143759 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "blubberbass", - "uid": "15227900", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-27T13:40:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 118981312 - } - }, - { - "id": 118981144, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3477535, - 50.8706328 - ], - [ - 4.3477535, - 50.8706328 - ], - [ - 4.3477535, - 50.8706328 - ], - [ - 4.3477535, - 50.8706328 - ], - [ - 4.3477535, - 50.8706328 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-27T13:35:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 5, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 5 - }, - "id": 118981144 - } - }, - { - "id": 118980898, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7467333, - 52.0843469 - ], - [ - 4.7467333, - 52.0843469 - ], - [ - 4.7467333, - 52.0843469 - ], - [ - 4.7467333, - 52.0843469 - ], - [ - 4.7467333, - 52.0843469 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "js374", - "uid": "12733546", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 1, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-27T13:27:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_500m": 1 - }, - "id": 118980898 - } - }, - { - "id": 118979583, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2033451, - 50.9146668 - ], - [ - 4.2033451, - 50.9146668 - ], - [ - 4.2033451, - 50.9146668 - ], - [ - 4.2033451, - 50.9146668 - ], - [ - 4.2033451, - 50.9146668 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-27T12:46:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 5, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 6 - }, - "id": 118979583 - } - }, - { - "id": 118979377, - "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": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-27T12:39:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 5, - "delete": 0, - "area": 2.61590000002776e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 10, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 1, - "change_within_25m": 12 - }, - "id": 118979377 - } - }, - { - "id": 118978420, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5327499, - 48.0269778 - ], - [ - 8.533528, - 48.0269778 - ], - [ - 8.533528, - 48.0272216 - ], - [ - 8.5327499, - 48.0272216 - ], - [ - 8.5327499, - 48.0269778 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "blubberbass", - "uid": "15227900", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-27T12:10:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 1.89700779999787e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 1, - "locale": "en", - "imagery": "osm", - "add-image": 2 - }, - "id": 118978420 - } - }, - { - "id": 118978278, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3430399, - 50.8725722 - ], - [ - 4.3448595, - 50.8725722 - ], - [ - 4.3448595, - 50.8734894 - ], - [ - 4.3430399, - 50.8734894 - ], - [ - 4.3430399, - 50.8725722 - ] - ] - ] - }, - "properties": { - "check_user": "L'imaginaire", - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-27T12:06:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000166893711999358, - "is_suspect": false, - "harmful": false, - "checked": true, - "check_date": "2022-03-28T07:14:49.250585Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_1000m": 2 - }, - "id": 118978278 - } - }, - { - "id": 118977525, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9821042, - 51.1730194 - ], - [ - 4.9842686, - 51.1730194 - ], - [ - 4.9842686, - 51.1742892 - ], - [ - 4.9821042, - 51.1742892 - ], - [ - 4.9821042, - 51.1730194 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-27T11:40:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 102, - "modify": 0, - "delete": 0, - "area": 0.00000274835511999064, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "theme": "grb", - "import": 14, - "locale": "nl", - "imagery": "osm" - }, - "id": 118977525 - } - }, - { - "id": 118976472, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5866177, - 50.7349341 - ], - [ - 3.6486948, - 50.7349341 - ], - [ - 3.6486948, - 50.7659525 - ], - [ - 3.5866177, - 50.7659525 - ], - [ - 3.5866177, - 50.7349341 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Toerisme Ronse", - "uid": "15420943", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 1, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-27T10:59:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 12, - "modify": 28, - "delete": 2, - "area": 0.00192553231864003, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 2, - "theme": "toerisme_vlaanderen", - "answer": 37, - "create": 12, - "locale": "nl", - "imagery": "osm", - "deletion": 2, - "add-image": 11, - "move:node/9610640449": "improve_accuracy", - "deletion:node/9610607360": "testing point", - "deletion:node/9610615775": "duplicate" - }, - "id": 118976472 - } - }, - { - "id": 118976363, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3453395, - 50.8659811 - ], - [ - 4.3453395, - 50.8659811 - ], - [ - 4.3453395, - 50.8659811 - ], - [ - 4.3453395, - 50.8659811 - ], - [ - 4.3453395, - 50.8659811 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-27T10:54:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 8, - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118976363 - } - }, - { - "id": 118975431, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3423013, - 50.8699755 - ], - [ - 4.3423013, - 50.8699755 - ], - [ - 4.3423013, - 50.8699755 - ], - [ - 4.3423013, - 50.8699755 - ], - [ - 4.3423013, - 50.8699755 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.17.0-alpha-3", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-27T10:24:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 118975431 - } - }, - { - "id": 118974254, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3454796, - 50.8758046 - ], - [ - 4.3471785, - 50.8758046 - ], - [ - 4.3471785, - 50.876941 - ], - [ - 4.3454796, - 50.876941 - ], - [ - 4.3454796, - 50.8758046 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-27T09:45:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 8, - "delete": 0, - "area": 0.00000193062996000013, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 11, - "locale": "nl", - "imagery": "osm", - "add-image": 5, - "change_within_25m": 16 - }, - "id": 118974254 - } - }, - { - "id": 118974155, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7153033, - 50.8468888 - ], - [ - 2.7199058, - 50.8468888 - ], - [ - 2.7199058, - 50.8557503 - ], - [ - 2.7153033, - 50.8557503 - ], - [ - 2.7153033, - 50.8468888 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Vakantiehuis Velogies", - "uid": "15380005", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-27T09:41:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 10, - "delete": 0, - "area": 0.0000407850537499744, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 16, - "create": 4, - "locale": "nl", - "imagery": "AGIV", - "add-image": 4 - }, - "id": 118974155 - } - }, - { - "id": 118974004, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5286262, - 48.0236429 - ], - [ - 8.5295462, - 48.0236429 - ], - [ - 8.5295462, - 48.0249509 - ], - [ - 8.5286262, - 48.0249509 - ], - [ - 8.5286262, - 48.0236429 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "blubberbass", - "uid": "15227900", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-27T09:36:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.00000120336000000242, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 7, - "locale": "en", - "imagery": "osm" - }, - "id": 118974004 - } - }, - { - "id": 118973591, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5344565, - 48.0271619 - ], - [ - 8.5345209, - 48.0271619 - ], - [ - 8.5345209, - 48.0271671 - ], - [ - 8.5344565, - 48.0271671 - ], - [ - 8.5344565, - 48.0271619 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "blubberbass", - "uid": "15227900", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-27T09:22:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 3.348799998013e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "move": 1, - "theme": "benches", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "osm", - "move:node/9610486727": "improve_accuracy" - }, - "id": 118973591 - } - }, - { - "id": 118973150, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8472962, - 50.9559059 - ], - [ - 4.0301746, - 50.9559059 - ], - [ - 4.0301746, - 51.0799871 - ], - [ - 3.8472962, - 51.0799871 - ], - [ - 3.8472962, - 50.9559059 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "WimBau", - "uid": "15313167", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-27T09:07:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 22, - "modify": 109, - "delete": 1, - "area": 0.0226917713260798, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 168, - "create": 22, - "locale": "nl", - "imagery": "osm", - "deletion": 1, - "add-image": 39, - "deletion:node/9610487768": "testing point" - }, - "id": 118973150 - } - }, - { - "id": 118970451, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7360472, - 50.8003684 - ], - [ - 2.7518291, - 50.8003684 - ], - [ - 2.7518291, - 50.8218461 - ], - [ - 2.7360472, - 50.8218461 - ], - [ - 2.7360472, - 50.8003684 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Vakantiehuis Velogies", - "uid": "15380005", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-27T07:16:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 1, - "delete": 0, - "area": 0.000338958913629982, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 13, - "create": 5, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 118970451 - } - }, - { - "id": 118969986, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9956042, - 48.5006029 - ], - [ - 9.0026513, - 48.5006029 - ], - [ - 9.0026513, - 48.5013896 - ], - [ - 8.9956042, - 48.5013896 - ], - [ - 8.9956042, - 48.5006029 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-27T06:55:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000554395357004278, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 3, - "locale": "en", - "imagery": "osm", - "change_within_500m": 1, - "change_within_1000m": 2 - }, - "id": 118969986 - } - }, - { - "id": 118962600, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5337675, - 48.0154597 - ], - [ - 8.5551894, - 48.0154597 - ], - [ - 8.5551894, - 48.0292513 - ], - [ - 8.5337675, - 48.0292513 - ], - [ - 8.5337675, - 48.0154597 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "blubberbass", - "uid": "15227900", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #sidewalks", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-26T21:00:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 10, - "delete": 0, - "area": 0.000295442276039948, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sidewalks", - "split": 28, - "theme": "sidewalks", - "answer": 401, - "locale": "en", - "imagery": "osm" - }, - "id": 118962600 - } - }, - { - "id": 118962216, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.525049, - 48.0099225 - ], - [ - 8.5494137, - 48.0099225 - ], - [ - 8.5494137, - 48.0289703 - ], - [ - 8.525049, - 48.0289703 - ], - [ - 8.525049, - 48.0099225 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "blubberbass", - "uid": "15227900", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #sidewalks", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-26T20:45:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 14, - "delete": 0, - "area": 0.000464093932659919, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sidewalks", - "split": 48, - "theme": "sidewalks", - "answer": 638, - "locale": "en", - "imagery": "osm" - }, - "id": 118962216 - } - }, - { - "id": 118961966, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3453301, - 50.8755168 - ], - [ - 4.3453462, - 50.8755168 - ], - [ - 4.3453462, - 50.8755642 - ], - [ - 4.3453301, - 50.8755642 - ], - [ - 4.3453301, - 50.8755168 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.17.0-alpha-3", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-26T20:34:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 7.63139999988134e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/waste.html", - "move": 1, - "theme": "waste", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_500m": 3, - "move:node/9609677678": "improve_accuracy" - }, - "id": 118961966 - } - }, - { - "id": 118961492, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.525049, - 48.0090908 - ], - [ - 8.5345199, - 48.0090908 - ], - [ - 8.5345199, - 48.03563 - ], - [ - 8.525049, - 48.03563 - ], - [ - 8.525049, - 48.0090908 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "blubberbass", - "uid": "15227900", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #sidewalks", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-26T20:18:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6, - "modify": 32, - "delete": 0, - "area": 0.000251350109279956, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sidewalks", - "split": 90, - "theme": "sidewalks", - "answer": 665, - "locale": "en", - "imagery": "osm" - }, - "id": 118961492 - } - }, - { - "id": 118959722, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5233543, - 48.0172956 - ], - [ - 8.5386986, - 48.0172956 - ], - [ - 8.5386986, - 48.0321813 - ], - [ - 8.5233543, - 48.0321813 - ], - [ - 8.5233543, - 48.0172956 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "blubberbass", - "uid": "15227900", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-26T19:23:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 18, - "delete": 0, - "area": 0.00022841064651002, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 95, - "locale": "en", - "imagery": "osm" - }, - "id": 118959722 - } - }, - { - "id": 118959319, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5339321, - 48.0272763 - ], - [ - 8.5345081, - 48.0272763 - ], - [ - 8.5345081, - 48.0273624 - ], - [ - 8.5339321, - 48.0273624 - ], - [ - 8.5339321, - 48.0272763 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "blubberbass", - "uid": "15227900", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-26T19:07:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 0, - "delete": 0, - "area": 4.95936000025309e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/nature.html", - "theme": "nature", - "answer": 4, - "create": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 118959319 - } - }, - { - "id": 118956190, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6037127, - 50.7698991 - ], - [ - 4.6037127, - 50.7698991 - ], - [ - 4.6037127, - 50.7698991 - ], - [ - 4.6037127, - 50.7698991 - ], - [ - 4.6037127, - 50.7698991 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Tuur Jena", - "uid": "10072061", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-26T17:22:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 6, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 9, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 118956190 - } - }, - { - "id": 118955012, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4767226, - 51.028858 - ], - [ - 4.4767226, - 51.028858 - ], - [ - 4.4767226, - 51.028858 - ], - [ - 4.4767226, - 51.028858 - ], - [ - 4.4767226, - 51.028858 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "philippec", - "uid": "76884", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-26T16:47:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 5, - "locale": "nl", - "imagery": "osm", - "add-image": 3 - }, - "id": 118955012 - } - }, - { - "id": 118954066, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.8101476, - 43.2184376 - ], - [ - -3.8101476, - 43.2184376 - ], - [ - -3.8101476, - 43.2184376 - ], - [ - -3.8101476, - 43.2184376 - ], - [ - -3.8101476, - 43.2184376 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Ninopiña10", - "uid": "11138282", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-26T16:24:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 118954066 - } - }, - { - "id": 118952182, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9751509, - 50.326175 - ], - [ - 4.9774826, - 50.326175 - ], - [ - 4.9774826, - 50.3262362 - ], - [ - 4.9751509, - 50.3262362 - ], - [ - 4.9751509, - 50.326175 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-26T15:37:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 1.42700039994269e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 118952182 - } - }, - { - "id": 118951945, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4515388, - 50.8639033 - ], - [ - 5.4554398, - 50.8639033 - ], - [ - 5.4554398, - 50.8683292 - ], - [ - 5.4515388, - 50.8683292 - ], - [ - 5.4515388, - 50.8639033 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-26T15:32:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 436, - "modify": 314, - "delete": 0, - "area": 0.000017265435900004, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 277, - "theme": "grb", - "import": 60, - "locale": "nl", - "imagery": "osm", - "conflation": 74 - }, - "id": 118951945 - } - }, - { - "id": 118951841, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.974052, - 50.3258132 - ], - [ - 4.974052, - 50.3258132 - ], - [ - 4.974052, - 50.3258132 - ], - [ - 4.974052, - 50.3258132 - ], - [ - 4.974052, - 50.3258132 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.17.0-alpha-3", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-26T15:29:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/nature.html", - "theme": "nature", - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 118951841 - } - }, - { - "id": 118951522, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2242065, - 51.0854796 - ], - [ - 3.2242065, - 51.0854796 - ], - [ - 3.2242065, - 51.0854796 - ], - [ - 3.2242065, - 51.0854796 - ], - [ - 3.2242065, - 51.0854796 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RubOSM", - "uid": "2096650", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-26T15:19:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 118951522 - } - }, - { - "id": 118950655, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4516485, - 50.8676811 - ], - [ - 5.4557478, - 50.8676811 - ], - [ - 5.4557478, - 50.8720743 - ], - [ - 5.4516485, - 50.8720743 - ], - [ - 5.4516485, - 50.8676811 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-26T14:54:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 320, - "modify": 96, - "delete": 2, - "area": 0.000018009044760011, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 84, - "theme": "grb", - "delete": 2, - "import": 43, - "locale": "nl", - "imagery": "osm", - "conflation": 24 - }, - "id": 118950655 - } - }, - { - "id": 118950309, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.973273, - 50.3255046 - ], - [ - 4.9760261, - 50.3255046 - ], - [ - 4.9760261, - 50.3265387 - ], - [ - 4.973273, - 50.3265387 - ], - [ - 4.973273, - 50.3255046 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.17.0-alpha-3", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-26T14:44:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 7, - "modify": 7, - "delete": 0, - "area": 0.00000284698070999574, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/climbing.html", - "theme": "climbing", - "answer": 11, - "create": 7, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 7, - "change_within_25m": 11, - "change_within_100m": 1 - }, - "id": 118950309 - } - }, - { - "id": 118947984, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2627859, - 50.7338614 - ], - [ - 5.4576692, - 50.7338614 - ], - [ - 5.4576692, - 50.8778491 - ], - [ - 5.2627859, - 50.8778491 - ], - [ - 5.2627859, - 50.7338614 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-26T13:39:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1516, - "modify": 1267, - "delete": 41, - "area": 0.0280607981354093, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 1144, - "theme": "grb", - "delete": 41, - "import": 185, - "locale": "nl", - "imagery": "osm", - "conflation": 268 - }, - "id": 118947984 - } - }, - { - "id": 118946672, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.027931, - 51.2708096 - ], - [ - 3.027931, - 51.2708096 - ], - [ - 3.027931, - 51.2708096 - ], - [ - 3.027931, - 51.2708096 - ], - [ - 3.027931, - 51.2708096 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-26T13:04:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 118946672 - } - }, - { - "id": 118946498, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0246647, - 51.2708796 - ], - [ - 3.0278495, - 51.2708796 - ], - [ - 3.0278495, - 51.2744327 - ], - [ - 3.0246647, - 51.2744327 - ], - [ - 3.0246647, - 51.2708796 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-26T13:00:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000113159128799916, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/", - "theme": "nature", - "locale": "nl", - "add-image": 3, - "change_within_25m": 2, - "change_within_500m": 1 - }, - "id": 118946498 - } - }, - { - "id": 118946264, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0275808, - 51.271105 - ], - [ - 3.0277176, - 51.271105 - ], - [ - 3.0277176, - 51.2711419 - ], - [ - 3.0275808, - 51.2711419 - ], - [ - 3.0275808, - 51.271105 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-26T12:56:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 1, - "delete": 0, - "area": 5.04792000066681e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 2, - "create": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 2, - "change_within_25m": 3 - }, - "id": 118946264 - } - }, - { - "id": 118946021, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.5844983, - 37.1820409 - ], - [ - -3.5844983, - 37.1820409 - ], - [ - -3.5844983, - 37.1820409 - ], - [ - -3.5844983, - 37.1820409 - ], - [ - -3.5844983, - 37.1820409 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Dinn0", - "uid": "14893874", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-26T12:52:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_25m": 1 - }, - "id": 118946021 - } - }, - { - "id": 118945101, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2876404, - 50.4347344 - ], - [ - 5.3008655, - 50.4347344 - ], - [ - 5.3008655, - 50.4418356 - ], - [ - 5.2876404, - 50.4418356 - ], - [ - 5.2876404, - 50.4347344 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Salambre", - "uid": "15272429", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-26T12:24:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 5, - "delete": 0, - "area": 0.0000939140801199172, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 14, - "create": 3, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 3, - "change_within_25m": 9, - "change_within_500m": 4, - "change_within_5000m": 2, - "move:node/9608966079": "improve_accuracy" - }, - "id": 118945101 - } - }, - { - "id": 118944527, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.22421, - 45.9530898 - ], - [ - 14.22421, - 45.9530898 - ], - [ - 14.22421, - 45.9530898 - ], - [ - 14.22421, - 45.9530898 - ], - [ - 14.22421, - 45.9530898 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "DavidKarlas", - "uid": "12422736", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-26T12:05:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 5, - "create": 1, - "locale": "sl", - "imagery": "osm" - }, - "id": 118944527 - } - }, - { - "id": 118939595, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.9240468, - 53.2582381 - ], - [ - 7.944147, - 53.2582381 - ], - [ - 7.944147, - 53.2642205 - ], - [ - 7.9240468, - 53.2642205 - ], - [ - 7.9240468, - 53.2582381 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "obst96", - "uid": "10436028", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-26T09:32:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 34, - "delete": 0, - "area": 0.000120247436480012, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/personal.html", - "theme": "personal", - "answer": 40, - "locale": "de", - "imagery": "EsriWorldImagery" - }, - "id": 118939595 - } - }, - { - "id": 118939000, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9751509, - 50.326175 - ], - [ - 4.9773806, - 50.326175 - ], - [ - 4.9773806, - 50.3262293 - ], - [ - 4.9751509, - 50.3262293 - ], - [ - 4.9751509, - 50.326175 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-26T09:17:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 1.21072710004843e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 118939000 - } - }, - { - "id": 118936067, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1356472, - 51.1435364 - ], - [ - 3.1356472, - 51.1435364 - ], - [ - 3.1356472, - 51.1435364 - ], - [ - 3.1356472, - 51.1435364 - ], - [ - 3.1356472, - 51.1435364 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "ilja_space", - "uid": "14124839", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-26T07:17:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 118936067 - } - }, - { - "id": 118935904, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2015893, - 50.8146133 - ], - [ - 3.2016168, - 50.8146133 - ], - [ - 3.2016168, - 50.8146205 - ], - [ - 3.2015893, - 50.8146205 - ], - [ - 3.2015893, - 50.8146133 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.17.0-alpha-3", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-26T07:07:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 1.97999999967955e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/waste.html", - "theme": "waste", - "answer": 2, - "create": 2, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 2 - }, - "id": 118935904 - } - }, - { - "id": 118935708, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.201545, - 50.8144243 - ], - [ - 3.2017703, - 50.8144243 - ], - [ - 3.2017703, - 50.814498 - ], - [ - 3.201545, - 50.814498 - ], - [ - 3.201545, - 50.8144243 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-26T06:57:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 1, - "delete": 0, - "area": 1.66046100003633e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 3, - "create": 3, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 3, - "change_within_25m": 4 - }, - "id": 118935708 - } - }, - { - "id": 118935646, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4468317, - 51.0919947 - ], - [ - 3.4468317, - 51.0919947 - ], - [ - 3.4468317, - 51.0919947 - ], - [ - 3.4468317, - 51.0919947 - ], - [ - 3.4468317, - 51.0919947 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-26T06:54:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118935646 - } - }, - { - "id": 118935515, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5433089, - 51.151688 - ], - [ - 5.5472927, - 51.151688 - ], - [ - 5.5472927, - 51.1529121 - ], - [ - 5.5433089, - 51.1529121 - ], - [ - 5.5433089, - 51.151688 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-26T06:46:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 7, - "modify": 58, - "delete": 0, - "area": 0.00000487656958000618, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 50, - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm", - "conflation": 16 - }, - "id": 118935515 - } - }, - { - "id": 118931740, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2788483, - 51.0205077 - ], - [ - 5.327871, - 51.0205077 - ], - [ - 5.327871, - 51.0349117 - ], - [ - 5.2788483, - 51.0349117 - ], - [ - 5.2788483, - 51.0205077 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #cyclestreets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-26T00:30:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 15, - "delete": 0, - "area": 0.000706122970799951, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclestreets.html", - "theme": "cyclestreets", - "answer": 15, - "locale": "en", - "imagery": "osm" - }, - "id": 118931740 - } - }, - { - "id": 118931706, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3112658, - 51.0170096 - ], - [ - 5.3161918, - 51.0170096 - ], - [ - 5.3161918, - 51.0249851 - ], - [ - 5.3112658, - 51.0249851 - ], - [ - 5.3112658, - 51.0170096 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #cyclestreets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-26T00:28:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 5, - "delete": 0, - "area": 0.0000392873130000045, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclestreets.html", - "split": 2, - "theme": "cyclestreets", - "answer": 5, - "locale": "en", - "imagery": "osm" - }, - "id": 118931706 - } - }, - { - "id": 118931694, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3141746, - 51.0185349 - ], - [ - 5.3178776, - 51.0185349 - ], - [ - 5.3178776, - 51.0234257 - ], - [ - 5.3141746, - 51.0234257 - ], - [ - 5.3141746, - 51.0185349 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #cyclestreets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-26T00:27:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0.0000181106323999927, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclestreets.html", - "split": 2, - "theme": "cyclestreets", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 118931694 - } - }, - { - "id": 118931665, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3103337, - 51.0230483 - ], - [ - 5.3181717, - 51.0230483 - ], - [ - 5.3181717, - 51.0244818 - ], - [ - 5.3103337, - 51.0244818 - ], - [ - 5.3103337, - 51.0230483 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #cyclestreets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-26T00:24:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 7, - "delete": 0, - "area": 0.0000112357729999792, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclestreets.html", - "split": 2, - "theme": "cyclestreets", - "answer": 6, - "locale": "en", - "imagery": "osm" - }, - "id": 118931665 - } - }, - { - "id": 118926908, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7766275, - -34.661613 - ], - [ - -58.5035129, - -34.661613 - ], - [ - -58.5035129, - -34.6364862 - ], - [ - -58.7766275, - -34.6364862 - ], - [ - -58.7766275, - -34.661613 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AgusQui", - "uid": "331218", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-25T20:30:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 5, - "delete": 0, - "area": 0.00686249593128066, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "answer": 11, - "create": 1, - "locale": "es", - "imagery": "EsriWorldImagery", - "change_over_5000m": 1, - "change_within_25m": 11 - }, - "id": 118926908 - } - }, - { - "id": 118923758, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.0823868, - 52.3581938 - ], - [ - 13.0982204, - 52.3581938 - ], - [ - 13.0982204, - 52.3680269 - ], - [ - 13.0823868, - 52.3680269 - ], - [ - 13.0823868, - 52.3581938 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "AaronRi112", - "uid": "15408103", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-25T18:51:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 41, - "modify": 40, - "delete": 0, - "area": 0.000155693372159918, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 118923758 - } - }, - { - "id": 118920715, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4478521, - 51.0922075 - ], - [ - 3.4479225, - 51.0922075 - ], - [ - 3.4479225, - 51.0923381 - ], - [ - 3.4478521, - 51.0923381 - ], - [ - 3.4478521, - 51.0922075 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-25T17:27:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 9.19423999987143e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 4, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 4 - }, - "id": 118920715 - } - }, - { - "id": 118917662, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0380925, - 51.1460957 - ], - [ - 4.1809094, - 51.1460957 - ], - [ - 4.1809094, - 51.1958904 - ], - [ - 4.0380925, - 51.1958904 - ], - [ - 4.0380925, - 51.1460957 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "vott", - "uid": "15407842", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-25T16:09:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 17, - "modify": 49, - "delete": 1, - "area": 0.00711152469043095, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 125, - "create": 17, - "locale": "nl", - "imagery": "osm", - "deletion": 1, - "deletion:node/9606139248": "testing point" - }, - "id": 118917662 - } - }, - { - "id": 118916321, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.5698773, - -33.5920148 - ], - [ - -70.5698514, - -33.5920148 - ], - [ - -70.5698514, - -33.5919618 - ], - [ - -70.5698773, - -33.5919618 - ], - [ - -70.5698773, - -33.5920148 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-25T15:40:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 1.37269999987908e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "cyclosm", - "add-image": 3, - "change_within_25m": 3 - }, - "id": 118916321 - } - }, - { - "id": 118916056, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.0881332, - 52.3635561 - ], - [ - 13.0881332, - 52.3635561 - ], - [ - 13.0881332, - 52.3635561 - ], - [ - 13.0881332, - 52.3635561 - ], - [ - 13.0881332, - 52.3635561 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "AaronRi112", - "uid": "15408103", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-25T15:36:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 118916056 - } - }, - { - "id": 118914410, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3321012, - 51.0130236 - ], - [ - 5.3324, - 51.0130236 - ], - [ - 5.3324, - 51.0131685 - ], - [ - 5.3321012, - 51.0131685 - ], - [ - 5.3321012, - 51.0130236 - ] - ] - ] - }, - "properties": { - "check_user": "L'imaginaire", - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-25T14:58:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 4.32961200005903e-8, - "is_suspect": false, - "harmful": false, - "checked": true, - "check_date": "2022-03-25T15:55:08.310817Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 118914410 - } - }, - { - "id": 118914351, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3326654, - 51.0129804 - ], - [ - 5.3326654, - 51.0129804 - ], - [ - 5.3326654, - 51.0129804 - ], - [ - 5.3326654, - 51.0129804 - ], - [ - 5.3326654, - 51.0129804 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-25T14:56:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 118914351 - } - }, - { - "id": 118911166, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0917354, - 51.0929136 - ], - [ - 3.4503636, - 51.0929136 - ], - [ - 3.4503636, - 51.1182521 - ], - [ - 3.0917354, - 51.1182521 - ], - [ - 3.0917354, - 51.0929136 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-25T13:45:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0.00908710064569878, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_500m": 1 - }, - "id": 118911166 - } - }, - { - "id": 118906009, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.3969838, - 50.624101 - ], - [ - -3.3902093, - 50.624101 - ], - [ - -3.3902093, - 50.6251458 - ], - [ - -3.3969838, - 50.6251458 - ], - [ - -3.3969838, - 50.624101 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "JassKurn", - "uid": "4345757", - "editor": "MapComplete 0.17.0-alpha-3", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-25T11:46:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.000007077997599969, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cycle_infra.html", - "theme": "cycle_infra", - "answer": 6, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 118906009 - } - }, - { - "id": 118904087, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0357134, - 51.1295389 - ], - [ - 3.0357134, - 51.1295389 - ], - [ - 3.0357134, - 51.1295389 - ], - [ - 3.0357134, - 51.1295389 - ], - [ - 3.0357134, - 51.1295389 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "ICT 112", - "uid": "15406213", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 2, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-25T11:07:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 3 - }, - "id": 118904087 - } - }, - { - "id": 118892472, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4107361, - 51.141158 - ], - [ - 3.4107361, - 51.141158 - ], - [ - 3.4107361, - 51.141158 - ], - [ - 3.4107361, - 51.141158 - ], - [ - 3.4107361, - 51.141158 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-25T06:02:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 118892472 - } - }, - { - "id": 118889189, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 149.094485, - -35.1442242 - ], - [ - 149.094485, - -35.1442242 - ], - [ - 149.094485, - -35.1442242 - ], - [ - 149.094485, - -35.1442242 - ], - [ - 149.094485, - -35.1442242 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Becsta", - "uid": "15402954", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-25T02:26:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 118889189 - } - }, - { - "id": 118883794, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.9732737, - 52.3241798 - ], - [ - 13.118518, - 52.3241798 - ], - [ - 13.118518, - 52.4093951 - ], - [ - 12.9732737, - 52.4093951 - ], - [ - 12.9732737, - 52.3241798 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "daniel46", - "uid": "9677", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-24T21:34:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6, - "modify": 7, - "delete": 0, - "area": 0.0123770365977892, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 16, - "create": 6, - "locale": "de", - "imagery": "osm" - }, - "id": 118883794 - } - }, - { - "id": 118883056, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8997343, - 51.1504362 - ], - [ - 4.9192742, - 51.1504362 - ], - [ - 4.9192742, - 51.1576273 - ], - [ - 4.8997343, - 51.1576273 - ], - [ - 4.8997343, - 51.1504362 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-24T21:08:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 536, - "modify": 535, - "delete": 2, - "area": 0.000140513374889999, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 444, - "theme": "grb", - "answer": 14, - "delete": 2, - "import": 29, - "locale": "nl", - "imagery": "osm", - "conflation": 160, - "change_over_5000m": 43 - }, - "id": 118883056 - } - }, - { - "id": 118882639, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0290468, - 51.2614399 - ], - [ - 3.101327, - 51.2614399 - ], - [ - 3.101327, - 51.2729013 - ], - [ - 3.0290468, - 51.2729013 - ], - [ - 3.0290468, - 51.2614399 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-24T20:54:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 2, - "delete": 0, - "area": 0.000828432284280123, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "create": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 118882639 - } - }, - { - "id": 118881949, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0001521, - 51.1602547 - ], - [ - 5.0001521, - 51.1602547 - ], - [ - 5.0001521, - 51.1602547 - ], - [ - 5.0001521, - 51.1602547 - ], - [ - 5.0001521, - 51.1602547 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-24T20:32:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118881949 - } - }, - { - "id": 118877282, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3093885, - 50.9345775 - ], - [ - 5.309455, - 50.9345775 - ], - [ - 5.309455, - 50.9346131 - ], - [ - 5.3093885, - 50.9346131 - ], - [ - 5.3093885, - 50.9345775 - ] - ] - ] - }, - "properties": { - "check_user": "L'imaginaire", - "reasons": [], - "tags": [], - "features": [], - "user": "smedo", - "uid": "9002106", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-24T18:37:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 2.36739999978643e-9, - "is_suspect": false, - "harmful": false, - "checked": true, - "check_date": "2022-03-24T21:27:30.744773Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 118877282 - } - }, - { - "id": 118875823, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3664248, - 50.8334766 - ], - [ - 4.3664612, - 50.8334766 - ], - [ - 4.3664612, - 50.8335392 - ], - [ - 4.3664248, - 50.8335392 - ], - [ - 4.3664248, - 50.8334766 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "StefDeGreef", - "uid": "1860737", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-24T18:02:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 2.27863999998476e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "move": 1, - "theme": "cyclofix", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 2, - "change_within_25m": 5, - "move:node/6853889587": "improve_accuracy" - }, - "id": 118875823 - } - }, - { - "id": 118873730, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4516034, - 51.0958068 - ], - [ - 3.4537235, - 51.0958068 - ], - [ - 3.4537235, - 51.0965507 - ], - [ - 3.4516034, - 51.0965507 - ], - [ - 3.4516034, - 51.0958068 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-24T17:10:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000157714239000707, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 118873730 - } - }, - { - "id": 118873708, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3292675, - 51.0023056 - ], - [ - 3.3298147, - 51.0023056 - ], - [ - 3.3298147, - 51.0027142 - ], - [ - 3.3292675, - 51.0027142 - ], - [ - 3.3292675, - 51.0023056 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RubOSM", - "uid": "2096650", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-24T17:09:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6, - "modify": 6, - "delete": 0, - "area": 2.23585920000129e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 35, - "create": 6, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 6, - "change_within_25m": 35 - }, - "id": 118873708 - } - }, - { - "id": 118870458, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.4153595, - 46.0096562 - ], - [ - 14.4158491, - 46.0096562 - ], - [ - 14.4158491, - 46.0098959 - ], - [ - 14.4153595, - 46.0098959 - ], - [ - 14.4153595, - 46.0096562 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "DavidKarlas", - "uid": "12422736", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-24T15:43:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 5, - "delete": 0, - "area": 1.17357119997708e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 5, - "create": 2, - "locale": "sl", - "imagery": "osm", - "add-image": 1 - }, - "id": 118870458 - } - }, - { - "id": 118867598, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3228605, - 51.2933456 - ], - [ - 4.3228605, - 51.2933456 - ], - [ - 4.3228605, - 51.2933456 - ], - [ - 4.3228605, - 51.2933456 - ], - [ - 4.3228605, - 51.2933456 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "woutvg", - "uid": "15339080", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-24T14:31:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 1, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations", - "theme": "charging_stations", - "create": 1, - "locale": "en", - "imagery": "osm", - "deletion": 1, - "deletion:node/9603423370": "testing point" - }, - "id": 118867598 - } - }, - { - "id": 118862621, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1837877, - 51.2911118 - ], - [ - 5.1837877, - 51.2911118 - ], - [ - 5.1837877, - 51.2911118 - ], - [ - 5.1837877, - 51.2911118 - ], - [ - 5.1837877, - 51.2911118 - ] - ] - ] - }, - "properties": { - "check_user": "L'imaginaire", - "reasons": [], - "tags": [], - "features": [], - "user": "Jorisbo", - "uid": "1983103", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-24T12:21:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": false, - "checked": true, - "check_date": "2022-03-24T20:02:01.020833Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 4, - "locale": "nl", - "imagery": "osm", - "change_within_50m": 4 - }, - "id": 118862621 - } - }, - { - "id": 118862378, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1109762, - 51.2430925 - ], - [ - 3.1109762, - 51.2430925 - ], - [ - 3.1109762, - 51.2430925 - ], - [ - 3.1109762, - 51.2430925 - ], - [ - 3.1109762, - 51.2430925 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Francis Sprangers", - "uid": "15383214", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 1, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-24T12:16:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 118862378 - } - }, - { - "id": 118857632, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2074815, - 51.1876063 - ], - [ - 3.2077067, - 51.1876063 - ], - [ - 3.2077067, - 51.1876872 - ], - [ - 3.2074815, - 51.1876872 - ], - [ - 3.2074815, - 51.1876063 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-24T10:21:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.82186800000893e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_within_500m": 5 - }, - "id": 118857632 - } - }, - { - "id": 118855117, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0462867, - 51.2793738 - ], - [ - 3.067047, - 51.2793738 - ], - [ - 3.067047, - 51.2901876 - ], - [ - 3.0462867, - 51.2901876 - ], - [ - 3.0462867, - 51.2793738 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Francis Sprangers", - "uid": "15383214", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-24T09:26:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6, - "modify": 0, - "delete": 0, - "area": 0.000224497732140023, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 6, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 6 - }, - "id": 118855117 - } - }, - { - "id": 118850644, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0550414, - 50.8475052 - ], - [ - 3.0989707, - 50.8475052 - ], - [ - 3.0989707, - 50.8892553 - ], - [ - 3.0550414, - 50.8892553 - ], - [ - 3.0550414, - 50.8475052 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Toerisme Dadizele", - "uid": "12309530", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 1, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-24T07:38:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 12, - "modify": 5, - "delete": 1, - "area": 0.00183405266793008, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 18, - "create": 12, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "deletion": 1, - "deletion:node/9602533302": "foutje" - }, - "id": 118850644 - } - }, - { - "id": 118846044, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -105.9603328, - -12.0000018 - ], - [ - 49.3047792, - -12.0000018 - ], - [ - 49.3047792, - 35.796214 - ], - [ - -105.9603328, - 35.796214 - ], - [ - -105.9603328, - -12.0000018 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Arlo James Barnes", - "uid": "682928", - "editor": "iD 2.20.4", - "comment": "Adding data with #MapComplete", - "comments_count": 0, - "source": "aerial imagery", - "imagery_used": "Bing Maps Aerial", - "date": "2022-03-24T04:47:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 165, - "modify": 52, - "delete": 46, - "area": 7421.08479936317, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://www.openstreetmap.org/edit", - "locale": "en", - "hashtags": "#MapComplete", - "changesets_count": 1403, - "resolved:help_request:fixme_tag": 9, - "resolved:outdated_tags:incomplete_tags": 2, - "resolved:almost_junction:highway-highway": 1 - }, - "id": 118846044 - } - }, - { - "id": 118842944, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.347242, - 50.8816672 - ], - [ - 5.347242, - 50.8816672 - ], - [ - 5.347242, - 50.8816672 - ], - [ - 5.347242, - 50.8816672 - ], - [ - 5.347242, - 50.8816672 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.17.0-alpha-3", - "comment": "Adding data with #MapComplete for theme #unkown", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-24T01:07:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "http://127.0.0.1:1234/import_helper.html", - "theme": "unkown", - "answer": 2, - "locale": "nl" - }, - "id": 118842944 - } - }, - { - "id": 118842562, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3453587, - 50.9915429 - ], - [ - 3.3469273, - 50.9915429 - ], - [ - 3.3469273, - 50.9928111 - ], - [ - 3.3453587, - 50.9928111 - ], - [ - 3.3453587, - 50.9915429 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RubOSM", - "uid": "2096650", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-24T00:33:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000198929851999765, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/nature.html", - "theme": "nature", - "answer": 3, - "locale": "nl", - "imagery": "osm" - }, - "id": 118842562 - } - }, - { - "id": 118837894, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 20.3665066, - 44.7987499 - ], - [ - 20.3665066, - 44.7987499 - ], - [ - 20.3665066, - 44.7987499 - ], - [ - 20.3665066, - 44.7987499 - ], - [ - 20.3665066, - 44.7987499 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "gautrr", - "uid": "4157466", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T20:46:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 118837894 - } - }, - { - "id": 118837590, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 20.4116475, - 44.8481872 - ], - [ - 20.4116475, - 44.8481872 - ], - [ - 20.4116475, - 44.8481872 - ], - [ - 20.4116475, - 44.8481872 - ], - [ - 20.4116475, - 44.8481872 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9601744671", - "name": "Art Dekor", - "osm_id": 9601744671, - "reasons": [ - 43 - ], - "version": 3, - "primary_tags": { - "shop": "Souvenirs" - } - } - ], - "user": "gautrr", - "uid": "4157466", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T20:36:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 5, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 118837590 - } - }, - { - "id": 118837511, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.5987492, - -32.838203 - ], - [ - -70.5987492, - -32.838203 - ], - [ - -70.5987492, - -32.838203 - ], - [ - -70.5987492, - -32.838203 - ], - [ - -70.5987492, - -32.838203 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T20:33:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "cyclosm", - "add-image": 2 - }, - "id": 118837511 - } - }, - { - "id": 118837297, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 20.4119593, - 44.8197656 - ], - [ - 20.4119593, - 44.8197656 - ], - [ - 20.4119593, - 44.8197656 - ], - [ - 20.4119593, - 44.8197656 - ], - [ - 20.4119593, - 44.8197656 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "gautrr", - "uid": "4157466", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T20:25:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 5, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 6, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 118837297 - } - }, - { - "id": 118837260, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3000842, - 50.7431059 - ], - [ - 5.3027659, - 50.7431059 - ], - [ - 5.3027659, - 50.7444623 - ], - [ - 5.3000842, - 50.7444623 - ], - [ - 5.3000842, - 50.7431059 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T20:24:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 50, - "modify": 17, - "delete": 0, - "area": 0.00000363745787999698, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 16, - "theme": "grb", - "import": 9, - "locale": "nl", - "imagery": "osm", - "conflation": 6 - }, - "id": 118837260 - } - }, - { - "id": 118837119, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1404993, - 51.0257776 - ], - [ - 3.141837, - 51.0257776 - ], - [ - 3.141837, - 51.027488 - ], - [ - 3.1404993, - 51.027488 - ], - [ - 3.1404993, - 51.0257776 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T20:18:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.00000228800208000063, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 7, - "locale": "nl", - "imagery": "osm" - }, - "id": 118837119 - } - }, - { - "id": 118837090, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9185908, - 42.6855329 - ], - [ - 2.9237613, - 42.6855329 - ], - [ - 2.9237613, - 42.6875869 - ], - [ - 2.9185908, - 42.6875869 - ], - [ - 2.9185908, - 42.6855329 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LySioS", - "uid": "11579673", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-23T20:18:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 5, - "delete": 0, - "area": 0.0000106202070000052, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 6, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_1000m": 2, - "change_within_5000m": 4 - }, - "id": 118837090 - } - }, - { - "id": 118836999, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 20.4345167, - 44.8129312 - ], - [ - 20.4345167, - 44.8129312 - ], - [ - 20.4345167, - 44.8129312 - ], - [ - 20.4345167, - 44.8129312 - ], - [ - 20.4345167, - 44.8129312 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "gautrr", - "uid": "4157466", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T20:14:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "EsriWorldImagery" - }, - "id": 118836999 - } - }, - { - "id": 118836126, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 20.4792372, - 44.8028969 - ], - [ - 20.4792372, - 44.8028969 - ], - [ - 20.4792372, - 44.8028969 - ], - [ - 20.4792372, - 44.8028969 - ], - [ - 20.4792372, - 44.8028969 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9601643872", - "name": "Jelena Plus", - "osm_id": 9601643872, - "reasons": [ - 43 - ], - "version": 4, - "primary_tags": { - "shop": "Jewelry" - } - } - ], - "user": "gautrr", - "uid": "4157466", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T19:45:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 5, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 10, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 118836126 - } - }, - { - "id": 118835510, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 17.306244, - 62.3873676 - ], - [ - 17.306244, - 62.3873676 - ], - [ - 17.306244, - 62.3873676 - ], - [ - 17.306244, - 62.3873676 - ], - [ - 17.306244, - 62.3873676 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9600988589", - "name": "Butik Ametist", - "osm_id": 9600988589, - "reasons": [ - 43 - ], - "version": 4, - "primary_tags": { - "shop": "Spiritual shop" - } - } - ], - "user": "gautrr", - "uid": "4157466", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T19:26:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 4, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 118835510 - } - }, - { - "id": 118834771, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 20.4603441, - 44.8217824 - ], - [ - 20.4603441, - 44.8217824 - ], - [ - 20.4603441, - 44.8217824 - ], - [ - 20.4603441, - 44.8217824 - ], - [ - 20.4603441, - 44.8217824 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "gautrr", - "uid": "4157466", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T19:04:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 118834771 - } - }, - { - "id": 118834542, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3252393, - 52.4724848 - ], - [ - 13.3252393, - 52.4724848 - ], - [ - 13.3252393, - 52.4724848 - ], - [ - 13.3252393, - 52.4724848 - ], - [ - 13.3252393, - 52.4724848 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "mariobra", - "uid": "15391987", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T18:56:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 6, - "create": 1, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 118834542 - } - }, - { - "id": 118830235, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8474563, - 50.985012 - ], - [ - 4.8598483, - 50.985012 - ], - [ - 4.8598483, - 50.9922004 - ], - [ - 4.8474563, - 50.9922004 - ], - [ - 4.8474563, - 50.985012 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "user_15392026", - "uid": "15392026", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T16:59:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 2, - "delete": 0, - "area": 0.0000890786528000506, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 10, - "create": 2, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 118830235 - } - }, - { - "id": 118829535, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 17.2626201, - 62.3905033 - ], - [ - 17.2701403, - 62.3905033 - ], - [ - 17.2701403, - 62.3924167 - ], - [ - 17.2626201, - 62.3924167 - ], - [ - 17.2626201, - 62.3905033 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "gautrr", - "uid": "4157466", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T16:43:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 9, - "delete": 1, - "area": 0.000014389150679999, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "move": 2, - "theme": "food", - "answer": 10, - "create": 1, - "locale": "en", - "imagery": "osm", - "deletion": 1, - "move:node/1870596305": "relocated", - "move:node/9600337506": "improve_accuracy", - "deletion:node/1870596308": "shop_closed" - }, - "id": 118829535 - } - }, - { - "id": 118829424, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 17.267713, - 62.388925 - ], - [ - 17.267713, - 62.388925 - ], - [ - 17.267713, - 62.388925 - ], - [ - 17.267713, - 62.388925 - ], - [ - 17.267713, - 62.388925 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "gautrr", - "uid": "4157466", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T16:40:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 1, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "create": 1, - "locale": "en", - "imagery": "osm", - "deletion": 1, - "deletion:node/9600166563": "testing point" - }, - "id": 118829424 - } - }, - { - "id": 118828837, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2123548, - 51.1904915 - ], - [ - 3.2160335, - 51.1904915 - ], - [ - 3.2160335, - 51.1961158 - ], - [ - 3.2123548, - 51.1961158 - ], - [ - 3.2123548, - 51.1904915 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-23T16:27:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 14, - "delete": 0, - "area": 0.0000206901124100036, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 15, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "change_over_5000m": 1, - "change_within_100m": 3, - "change_within_500m": 9, - "change_within_1000m": 3 - }, - "id": 118828837 - } - }, - { - "id": 118828667, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 17.2677183, - 62.3879653 - ], - [ - 17.2688824, - 62.3879653 - ], - [ - 17.2688824, - 62.3889486 - ], - [ - 17.2677183, - 62.3889486 - ], - [ - 17.2677183, - 62.3879653 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "gautrr", - "uid": "4157466", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T16:22:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 3, - "delete": 1, - "area": 0.00000114465953000214, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 4, - "create": 3, - "locale": "en", - "imagery": "osm", - "deletion": 1, - "deletion:node/9600144043": "testing point" - }, - "id": 118828667 - } - }, - { - "id": 118826984, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3662044, - 50.7941529 - ], - [ - 4.3663527, - 50.7941529 - ], - [ - 4.3663527, - 50.7941681 - ], - [ - 4.3662044, - 50.7941681 - ], - [ - 4.3662044, - 50.7941529 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "StefDeGreef", - "uid": "1860737", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-23T15:37:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 2.25416000000219e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "move": 1, - "theme": "cyclofix", - "answer": 8, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 10, - "move:node/9165167061": "improve_accuracy" - }, - "id": 118826984 - } - }, - { - "id": 118825761, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "StefDeGreef", - "uid": "1860737", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T15:05:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "move": 1, - "theme": "cyclofix", - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_25m": 1, - "move:node/9165158557": "improve_accuracy" - }, - "id": 118825761 - } - }, - { - "id": 118825666, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3732795, - 50.7957296 - ], - [ - 4.3734598, - 50.7957296 - ], - [ - 4.3734598, - 50.7958796 - ], - [ - 4.3732795, - 50.7958796 - ], - [ - 4.3732795, - 50.7957296 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "StefDeGreef", - "uid": "1860737", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-23T15:03:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 2.70449999996533e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "move": 1, - "theme": "cyclofix", - "answer": 8, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 10, - "move:node/9165158557": "improve_accuracy" - }, - "id": 118825666 - } - }, - { - "id": 118824523, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3057313, - 51.7011904 - ], - [ - 5.3187735, - 51.7011904 - ], - [ - 5.3187735, - 51.7085614 - ], - [ - 5.3057313, - 51.7085614 - ], - [ - 5.3057313, - 51.7011904 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ken2009", - "uid": "207307", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T14:33:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 12, - "modify": 7, - "delete": 0, - "area": 0.0000961340561999895, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 26, - "create": 12, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS" - }, - "id": 118824523 - } - }, - { - "id": 118823099, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1610544, - 51.2219578 - ], - [ - 3.1610544, - 51.2219578 - ], - [ - 3.1610544, - 51.2219578 - ], - [ - 3.1610544, - 51.2219578 - ], - [ - 3.1610544, - 51.2219578 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Francis Sprangers", - "uid": "15383214", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 3, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-23T13:59:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 118823099 - } - }, - { - "id": 118822966, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7193238, - 50.8161786 - ], - [ - 2.7632037, - 50.8161786 - ], - [ - 2.7632037, - 50.8572645 - ], - [ - 2.7193238, - 50.8572645 - ], - [ - 2.7193238, - 50.8161786 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Vakantiehuis Velogies", - "uid": "15380005", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T13:56:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 2, - "delete": 0, - "area": 0.00180284518340994, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-23T14:57:40.226333Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 10, - "create": 2, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 118822966 - } - }, - { - "id": 118821368, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2965619, - 50.7304435 - ], - [ - 5.3478836, - 50.7304435 - ], - [ - 5.3478836, - 50.7534922 - ], - [ - 5.2965619, - 50.7534922 - ], - [ - 5.2965619, - 50.7304435 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T13:17:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1055, - "modify": 812, - "delete": 16, - "area": 0.00118289846678983, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 702, - "theme": "grb", - "delete": 15, - "import": 199, - "locale": "nl", - "imagery": "osm", - "conflation": 198 - }, - "id": 118821368 - } - }, - { - "id": 118820890, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1721658, - 50.9106083 - ], - [ - 4.2333193, - 50.9106083 - ], - [ - 4.2333193, - 50.9680812 - ], - [ - 4.1721658, - 50.9680812 - ], - [ - 4.1721658, - 50.9106083 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T13:04:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 7, - "delete": 1, - "area": 0.00351466899015001, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 20, - "import": 2, - "locale": "nl", - "imagery": "osm", - "deletion": 1, - "import:node/9599653855": "source: https://osm.org/note/3090144", - "import:node/9599691223": "source: https://osm.org/note/3084029", - "deletion:node/2321047983": "Dit is een binnenspeeltuin" - }, - "id": 118820890 - } - }, - { - "id": 118820870, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2960994, - 50.7325418 - ], - [ - 5.3411513, - 50.7325418 - ], - [ - 5.3411513, - 50.757111 - ], - [ - 5.2960994, - 50.757111 - ], - [ - 5.2960994, - 50.7325418 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T13:04:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 148, - "modify": 251, - "delete": 19, - "area": 0.00110688914148008, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 228, - "theme": "grb", - "delete": 19, - "import": 32, - "locale": "nl", - "imagery": "osm", - "conflation": 54 - }, - "id": 118820870 - } - }, - { - "id": 118820079, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2096091, - 51.1765831 - ], - [ - 3.2104127, - 51.1765831 - ], - [ - 3.2104127, - 51.1770814 - ], - [ - 3.2096091, - 51.1770814 - ], - [ - 3.2096091, - 51.1765831 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T12:45:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 4.00433879997271e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 118820079 - } - }, - { - "id": 118818681, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.508599, - 44.882315 - ], - [ - -0.50664, - 44.882315 - ], - [ - -0.50664, - 44.884347 - ], - [ - -0.508599, - 44.884347 - ], - [ - -0.508599, - 44.882315 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-23T12:10:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 11, - "delete": 0, - "area": 0.00000398068799999972, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 12, - "create": 6, - "locale": "fr", - "imagery": "osm", - "change_within_50m": 6, - "change_within_500m": 12 - }, - "id": 118818681 - } - }, - { - "id": 118816109, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5744437, - 50.6136656 - ], - [ - 5.575029, - 50.6136656 - ], - [ - 5.575029, - 50.6143708 - ], - [ - 5.5744437, - 50.6143708 - ], - [ - 5.5744437, - 50.6136656 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-23T11:18:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 16, - "modify": 65, - "delete": 0, - "area": 4.12753560003429e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 77, - "create": 16, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 16, - "change_within_25m": 70, - "change_within_50m": 9 - }, - "id": 118816109 - } - }, - { - "id": 118813152, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2928242, - 50.7510097 - ], - [ - 5.3002482, - 50.7510097 - ], - [ - 5.3002482, - 50.7546024 - ], - [ - 5.2928242, - 50.7546024 - ], - [ - 5.2928242, - 50.7510097 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T10:21:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 114, - "modify": 122, - "delete": 7, - "area": 0.000026672204800044, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 109, - "theme": "grb", - "delete": 7, - "import": 20, - "locale": "nl", - "imagery": "osm", - "conflation": 26 - }, - "id": 118813152 - } - }, - { - "id": 118811423, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2083429, - 51.1868573 - ], - [ - 3.2109469, - 51.1868573 - ], - [ - 3.2109469, - 51.1883962 - ], - [ - 3.2083429, - 51.1883962 - ], - [ - 3.2083429, - 51.1868573 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T09:39:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.00000400729560000016, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 5, - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 118811423 - } - }, - { - "id": 118810739, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1929553, - 51.1765954 - ], - [ - 3.1965172, - 51.1765954 - ], - [ - 3.1965172, - 51.1793934 - ], - [ - 3.1929553, - 51.1793934 - ], - [ - 3.1929553, - 51.1765954 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Francis Sprangers", - "uid": "15383214", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-23T09:21:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 7, - "modify": 1, - "delete": 2, - "area": 0.00000996619620002069, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 4, - "create": 8, - "locale": "nl", - "imagery": "osm", - "deletion": 2, - "change_over_5000m": 8, - "change_within_25m": 5, - "change_within_50m": 1, - "deletion:node/9599234795": "testing point", - "deletion:node/9599258625": "duplicate" - }, - "id": 118810739 - } - }, - { - "id": 118810416, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3659688, - 51.1482326 - ], - [ - 5.4695289, - 51.1482326 - ], - [ - 5.4695289, - 51.2319747 - ], - [ - 5.3659688, - 51.2319747 - ], - [ - 5.3659688, - 51.1482326 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Mieke Kerkhofs", - "uid": "15388519", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 1, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T09:14:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 12, - "modify": 3, - "delete": 0, - "area": 0.00867234025021022, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 16, - "import": 12, - "locale": "nl", - "imagery": "osm", - "import:node/-10": "source: https://osm.org/note/3044216", - "import:node/-11": "source: https://osm.org/note/3044606", - "import:node/-12": "source: https://osm.org/note/3044716", - "import:node/9599155075": "source: https://osm.org/note/3044558", - "import:node/9599230042": "source: https://osm.org/note/3044538", - "import:node/9599234601": "source: https://osm.org/note/3044564", - "import:node/9599234793": "source: https://osm.org/note/3044708", - "import:node/9599234802": "source: https://osm.org/note/3044207", - "import:node/9599246200": "source: https://osm.org/note/3044393", - "import:node/9599250273": "source: https://osm.org/note/3044212", - "import:node/9599251375": "source: https://osm.org/note/3023043", - "import:node/9599263108": "source: https://osm.org/note/3044290" - }, - "id": 118810416 - } - }, - { - "id": 118809679, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2919552, - 50.751239 - ], - [ - 5.2942271, - 50.751239 - ], - [ - 5.2942271, - 50.7544285 - ], - [ - 5.2919552, - 50.7544285 - ], - [ - 5.2919552, - 50.751239 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T08:56:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 38, - "modify": 58, - "delete": 4, - "area": 0.00000724622505000885, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 54, - "theme": "grb", - "delete": 4, - "import": 8, - "locale": "nl", - "imagery": "osm", - "conflation": 8 - }, - "id": 118809679 - } - }, - { - "id": 118809671, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T08:56:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118809671 - } - }, - { - "id": 118809579, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3811255, - 51.1842511 - ], - [ - 5.4949129, - 51.1842511 - ], - [ - 5.4949129, - 51.2539337 - ], - [ - 5.3811255, - 51.2539337 - ], - [ - 5.3811255, - 51.1842511 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Carmen van den Akker", - "uid": "15388402", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T08:55:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 17, - "modify": 3, - "delete": 1, - "area": 0.00792900187924005, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-23T15:27:57.339912Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 4, - "create": 15, - "import": 2, - "locale": "nl", - "imagery": "osm", - "deletion": 1, - "import:node/-17": "source: https://osm.org/note/3044287", - "import:node/9599160916": "source: https://osm.org/note/3044386", - "deletion:node/9599246201": "duplicate" - }, - "id": 118809579 - } - }, - { - "id": 118809158, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2721472, - 50.7519358 - ], - [ - 5.2924626, - 50.7519358 - ], - [ - 5.2924626, - 50.7641911 - ], - [ - 5.2721472, - 50.7641911 - ], - [ - 5.2721472, - 50.7519358 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T08:45:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 146, - "modify": 166, - "delete": 4, - "area": 0.000248971321619996, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 148, - "theme": "grb", - "delete": 4, - "import": 23, - "locale": "nl", - "imagery": "osm", - "conflation": 36 - }, - "id": 118809158 - } - }, - { - "id": 118808752, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2715416, - 50.7579725 - ], - [ - 5.2805706, - 50.7579725 - ], - [ - 5.2805706, - 50.7632261 - ], - [ - 5.2715416, - 50.7632261 - ], - [ - 5.2715416, - 50.7579725 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T08:35:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 309, - "modify": 438, - "delete": 4, - "area": 0.0000474347543999644, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 403, - "theme": "grb", - "delete": 4, - "import": 40, - "locale": "nl", - "imagery": "osm", - "conflation": 78 - }, - "id": 118808752 - } - }, - { - "id": 118808005, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.272258, - 50.7627094 - ], - [ - 5.2868625, - 50.7627094 - ], - [ - 5.2868625, - 50.7669993 - ], - [ - 5.272258, - 50.7669993 - ], - [ - 5.272258, - 50.7627094 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T08:17:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 271, - "modify": 396, - "delete": 0, - "area": 0.0000626518445500493, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 355, - "theme": "grb", - "import": 46, - "locale": "nl", - "imagery": "osm", - "conflation": 86 - }, - "id": 118808005 - } - }, - { - "id": 118807679, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2793714, - 50.7654961 - ], - [ - 5.2839727, - 50.7654961 - ], - [ - 5.2839727, - 50.767644 - ], - [ - 5.2793714, - 50.767644 - ], - [ - 5.2793714, - 50.7654961 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-23T08:08:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 205, - "modify": 221, - "delete": 1, - "area": 0.00000988313226998669, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 199, - "theme": "grb", - "delete": 1, - "import": 34, - "locale": "nl", - "imagery": "osm", - "conflation": 44 - }, - "id": 118807679 - } - }, - { - "id": 118806384, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.449298, - 51.0918984 - ], - [ - 3.4495212, - 51.0918984 - ], - [ - 3.4495212, - 51.0924042 - ], - [ - 3.449298, - 51.0924042 - ], - [ - 3.449298, - 51.0918984 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-23T07:32:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 8, - "delete": 0, - "area": 1.12894559999679e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 11, - "create": 3, - "locale": "nl", - "imagery": "AGIV", - "add-image": 2, - "change_over_5000m": 3, - "change_within_25m": 11, - "change_within_50m": 2 - }, - "id": 118806384 - } - }, - { - "id": 118795094, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.807863, - 44.137594 - ], - [ - 4.8078947, - 44.137594 - ], - [ - 4.8078947, - 44.1381869 - ], - [ - 4.807863, - 44.1381869 - ], - [ - 4.807863, - 44.137594 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "JLZIMMERMANN", - "uid": "188930", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-22T21:22:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.87949300000752e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "move": 1, - "theme": "street_lighting", - "locale": "en", - "imagery": "fr.ign.bdortho", - "move:node/1985817833": "improve_accuracy" - }, - "id": 118795094 - } - }, - { - "id": 118792115, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2746562, - 50.7635479 - ], - [ - 5.2801029, - 50.7635479 - ], - [ - 5.2801029, - 50.7681029 - ], - [ - 5.2746562, - 50.7681029 - ], - [ - 5.2746562, - 50.7635479 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-22T19:43:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 94, - "modify": 139, - "delete": 4, - "area": 0.0000248097185000197, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 128, - "theme": "grb", - "delete": 4, - "import": 15, - "locale": "nl", - "imagery": "osm", - "conflation": 30 - }, - "id": 118792115 - } - }, - { - "id": 118787553, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7059572, - 51.1468866 - ], - [ - 4.7059572, - 51.1468866 - ], - [ - 4.7059572, - 51.1468866 - ], - [ - 4.7059572, - 51.1468866 - ], - [ - 4.7059572, - 51.1468866 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Salambre", - "uid": "15272429", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-22T17:17:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-23T15:29:26.961338Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 5, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_50m": 5 - }, - "id": 118787553 - } - }, - { - "id": 118787292, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5728963, - 44.8399712 - ], - [ - -0.5707742, - 44.8399712 - ], - [ - -0.5707742, - 44.850484 - ], - [ - -0.5728963, - 44.850484 - ], - [ - -0.5728963, - 44.8399712 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-22T17:09:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 5, - "delete": 0, - "area": 0.0000223092128800018, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 10, - "create": 6, - "locale": "fr", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 10, - "change_within_50m": 5 - }, - "id": 118787292 - } - }, - { - "id": 118786020, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2167155, - 50.9762338 - ], - [ - 5.2168067, - 50.9762338 - ], - [ - 5.2168067, - 50.9763039 - ], - [ - 5.2167155, - 50.9763039 - ], - [ - 5.2167155, - 50.9762338 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Thiewinkel23", - "uid": "15378404", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 1, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-22T16:35:07Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 1, - "area": 6.39311999953794e-9, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-23T16:07:35.608380Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 6, - "locale": "nl", - "imagery": "AGIV", - "deletion": 1, - "add-image": 6, - "deletion:node/9596688538": "testing point" - }, - "id": 118786020 - } - }, - { - "id": 118784301, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2754996, - 50.764629 - ], - [ - 5.2779098, - 50.764629 - ], - [ - 5.2779098, - 50.7663507 - ], - [ - 5.2754996, - 50.7663507 - ], - [ - 5.2754996, - 50.764629 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-22T15:46:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 90, - "modify": 145, - "delete": 0, - "area": 0.00000414964133999355, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 130, - "theme": "grb", - "import": 17, - "locale": "nl", - "imagery": "osm", - "conflation": 30 - }, - "id": 118784301 - } - }, - { - "id": 118783891, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2763933, - 50.7662448 - ], - [ - 5.2804301, - 50.7662448 - ], - [ - 5.2804301, - 50.7696468 - ], - [ - 5.2763933, - 50.7696468 - ], - [ - 5.2763933, - 50.7662448 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-22T15:36:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 274, - "modify": 257, - "delete": 2, - "area": 0.0000137331935999784, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 226, - "theme": "grb", - "delete": 2, - "import": 48, - "locale": "nl", - "imagery": "osm", - "conflation": 62 - }, - "id": 118783891 - } - }, - { - "id": 118783363, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3416969, - 50.9918382 - ], - [ - 3.3459945, - 50.9918382 - ], - [ - 3.3459945, - 50.9937037 - ], - [ - 3.3416969, - 50.9937037 - ], - [ - 3.3416969, - 50.9918382 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [], - "tags": [], - "features": [], - "user": "RubOSM", - "uid": "2096650", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-22T15:25:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 2, - "delete": 1, - "area": 0.00000801717280000437, - "is_suspect": false, - "harmful": false, - "checked": true, - "check_date": "2022-03-23T16:09:44.706018Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 8, - "create": 4, - "locale": "nl", - "imagery": "osm", - "deletion": 1, - "change_over_5000m": 4, - "change_within_25m": 9, - "deletion:node/9597678820": "Wrong tag" - }, - "id": 118783363 - } - }, - { - "id": 118782549, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2162865, - 51.2056037 - ], - [ - 3.2247287, - 51.2056037 - ], - [ - 3.2247287, - 51.2100005 - ], - [ - 3.2162865, - 51.2100005 - ], - [ - 3.2162865, - 51.2056037 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.17.0-alpha-3", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-22T15:04:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 1, - "delete": 0, - "area": 0.0000371186649600184, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/shops.html", - "theme": "shops", - "answer": 5, - "create": 2, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 5 - }, - "id": 118782549 - } - }, - { - "id": 118782337, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.215805, - 51.2046391 - ], - [ - 3.215805, - 51.2046391 - ], - [ - 3.215805, - 51.2046391 - ], - [ - 3.215805, - 51.2046391 - ], - [ - 3.215805, - 51.2046391 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.17.0-alpha-3", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-22T14:57:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_50m": 2 - }, - "id": 118782337 - } - }, - { - "id": 118780210, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.121407, - 50.9077429 - ], - [ - 5.1236538, - 50.9077429 - ], - [ - 5.1236538, - 50.908357 - ], - [ - 5.121407, - 50.908357 - ], - [ - 5.121407, - 50.9077429 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-22T13:59:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 7, - "modify": 36, - "delete": 2, - "area": 0.00000137975987999989, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 32, - "theme": "grb", - "delete": 2, - "locale": "nl", - "imagery": "osm", - "conflation": 8 - }, - "id": 118780210 - } - }, - { - "id": 118779818, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.6734435, - 50.8267418 - ], - [ - 2.6769408, - 50.8267418 - ], - [ - 2.6769408, - 50.8285273 - ], - [ - 2.6734435, - 50.8285273 - ], - [ - 2.6734435, - 50.8267418 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Vakantiehuis Velogies", - "uid": "15380005", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 1, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-22T13:49:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 5, - "modify": 0, - "delete": 0, - "area": 0.00000624442914998957, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 5, - "locale": "nl", - "imagery": "osm" - }, - "id": 118779818 - } - }, - { - "id": 118777957, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.780934, - 51.1369525 - ], - [ - 4.7809398, - 51.1369525 - ], - [ - 4.7809398, - 51.1369571 - ], - [ - 4.780934, - 51.1369571 - ], - [ - 4.780934, - 51.1369525 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Salambre", - "uid": "15272429", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-22T13:01:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 2.66799999792855e-11, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-23T16:11:37.341532Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 5, - "create": 1, - "locale": "nl", - "imagery": "osm", - "move:node/9597257573": "improve_accuracy" - }, - "id": 118777957 - } - }, - { - "id": 118777122, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7252654, - 50.9140821 - ], - [ - 4.7645463, - 50.9140821 - ], - [ - 4.7645463, - 50.9333957 - ], - [ - 4.7252654, - 50.9333957 - ], - [ - 4.7252654, - 50.9140821 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "pieterpaul", - "uid": "14539037", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-22T12:38:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 6, - "delete": 0, - "area": 0.000758655590239881, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-23T16:18:04.767734Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 12, - "create": 2, - "import": 2, - "locale": "nl", - "imagery": "AGIV", - "add-image": 1, - "import:node/9597282387": "source: https://osm.org/note/3084026", - "import:node/9597282938": "source: https://osm.org/note/3084018" - }, - "id": 118777122 - } - }, - { - "id": 118776934, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.17.0-alpha-3", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-22T12:32:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 118776934 - } - }, - { - "id": 118776933, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3704124, - 50.848361 - ], - [ - 4.3704124, - 50.848361 - ], - [ - 4.3704124, - 50.848361 - ], - [ - 4.3704124, - 50.848361 - ], - [ - 4.3704124, - 50.848361 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.17.0-alpha-3", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-22T12:32:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cafes_and_pubs.html", - "theme": "cyclofix", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 118776933 - } - }, - { - "id": 118776922, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.17.0-alpha-3", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-22T12:32:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 118776922 - } - }, - { - "id": 118776010, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.179276, - 51.2627113 - ], - [ - 3.1809168, - 51.2627113 - ], - [ - 3.1809168, - 51.2631367 - ], - [ - 3.179276, - 51.2631367 - ], - [ - 3.179276, - 51.2627113 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Aurélie8377", - "uid": "15380511", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-22T12:06:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6, - "modify": 25, - "delete": 0, - "area": 6.97996319995701e-7, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-23T16:32:22.662457Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "move": 3, - "theme": "toerisme_vlaanderen", - "answer": 30, - "create": 6, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "move:node/9597204888": "improve_accuracy", - "move:node/9597212551": "improve_accuracy", - "move:node/9597219630": "improve_accuracy" - }, - "id": 118776010 - } - }, - { - "id": 118775276, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7168302, - 50.8739477 - ], - [ - 4.717758, - 50.8739477 - ], - [ - 4.717758, - 50.8757209 - ], - [ - 4.7168302, - 50.8757209 - ], - [ - 4.7168302, - 50.8739477 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Hilde OSM", - "uid": "15275790", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-22T11:45:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 11, - "modify": 17, - "delete": 0, - "area": 0.00000164517495999468, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-23T16:33:44.855006Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 18, - "create": 10, - "locale": "nl", - "imagery": "AGIV", - "add-image": 4, - "change_over_5000m": 10, - "change_within_25m": 23, - "move:node/9597188035": "improve_accuracy" - }, - "id": 118775276 - } - }, - { - "id": 118774584, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7134475, - 50.8157348 - ], - [ - 2.7653705, - 50.8157348 - ], - [ - 2.7653705, - 50.8581294 - ], - [ - 2.7134475, - 50.8581294 - ], - [ - 2.7134475, - 50.8157348 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Vakantiehuis Velogies", - "uid": "15380005", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 1, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-22T11:27:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 11, - "modify": 0, - "delete": 0, - "area": 0.00220125481580008, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 11, - "locale": "nl", - "imagery": "osm" - }, - "id": 118774584 - } - }, - { - "id": 118771407, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1970811, - 50.9098446 - ], - [ - 4.1976708, - 50.9098446 - ], - [ - 4.1976708, - 50.9103091 - ], - [ - 4.1970811, - 50.9103091 - ], - [ - 4.1970811, - 50.9098446 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-22T10:01:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 7, - "delete": 0, - "area": 2.73915649999752e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 7, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "move:node/7281830764": "improve_accuracy" - }, - "id": 118771407 - } - }, - { - "id": 118770693, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.505214, - 50.8134248 - ], - [ - 3.5599203, - 50.8134248 - ], - [ - 3.5599203, - 50.8544786 - ], - [ - 3.505214, - 50.8544786 - ], - [ - 3.505214, - 50.8134248 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Toerisme Wortegem-Petegem", - "uid": "10387981", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-22T09:44:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 13, - "modify": 0, - "delete": 0, - "area": 0.00224590149894001, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-23T16:47:22.901760Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 2, - "create": 13, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 118770693 - } - }, - { - "id": 118769485, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3704124, - 50.848361 - ], - [ - 4.3704124, - 50.848361 - ], - [ - 4.3704124, - 50.848361 - ], - [ - 4.3704124, - 50.848361 - ], - [ - 4.3704124, - 50.848361 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.17.0-alpha-3", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-22T09:15:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 118769485 - } - }, - { - "id": 118765260, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2167155, - 50.9762338 - ], - [ - 5.2168067, - 50.9762338 - ], - [ - 5.2168067, - 50.9763039 - ], - [ - 5.2167155, - 50.9763039 - ], - [ - 5.2167155, - 50.9762338 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Thiewinkel23", - "uid": "15378404", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-22T07:26:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 5, - "modify": 3, - "delete": 0, - "area": 6.39311999953794e-9, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-23T16:35:31.367145Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 7, - "create": 5, - "locale": "nl", - "imagery": "osm", - "add-image": 5 - }, - "id": 118765260 - } - }, - { - "id": 118749940, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.272705, - 50.7692556 - ], - [ - 5.2782195, - 50.7692556 - ], - [ - 5.2782195, - 50.7705308 - ], - [ - 5.272705, - 50.7705308 - ], - [ - 5.272705, - 50.7692556 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-21T19:35:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 101, - "modify": 102, - "delete": 1, - "area": 0.00000703209040001046, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 93, - "theme": "grb", - "delete": 1, - "import": 14, - "locale": "nl", - "imagery": "osm", - "conflation": 22 - }, - "id": 118749940 - } - }, - { - "id": 118749922, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2733082, - 50.770678 - ], - [ - 5.2742181, - 50.770678 - ], - [ - 5.2742181, - 50.7708014 - ], - [ - 5.2733082, - 50.7708014 - ], - [ - 5.2733082, - 50.770678 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-21T19:35:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 10, - "modify": 0, - "delete": 0, - "area": 1.12281660006147e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 118749922 - } - }, - { - "id": 118744338, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3947619, - 51.2077547 - ], - [ - 4.3947619, - 51.2077547 - ], - [ - 4.3947619, - 51.2077547 - ], - [ - 4.3947619, - 51.2077547 - ], - [ - 4.3947619, - 51.2077547 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "matissevdberg", - "uid": "12928471", - "editor": "MapComplete 0.17.0-alpha-3", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-21T16:57:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/surveillance", - "theme": "surveillance", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 118744338 - } - }, - { - "id": 118743392, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7078187, - 51.1051475 - ], - [ - 4.7188437, - 51.1051475 - ], - [ - 4.7188437, - 51.121909 - ], - [ - 4.7078187, - 51.121909 - ], - [ - 4.7078187, - 51.1051475 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Salambre", - "uid": "15272429", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-21T16:31:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 2, - "delete": 0, - "area": 0.000184795537500014, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-23T16:38:32.921953Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 11, - "create": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 118743392 - } - }, - { - "id": 118742468, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6921501, - 51.0540287 - ], - [ - 3.6923154, - 51.0540287 - ], - [ - 3.6923154, - 51.0541537 - ], - [ - 3.6921501, - 51.0541537 - ], - [ - 3.6921501, - 51.0540287 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-21T16:05:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 2.06624999995019e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 3 - }, - "id": 118742468 - } - }, - { - "id": 118742460, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Salambre", - "uid": "15272429", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-21T16:05:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-23T16:39:48.148632Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 118742460 - } - }, - { - "id": 118742458, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Salambre", - "uid": "15272429", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-21T16:05:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-23T16:39:51.639262Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118742458 - } - }, - { - "id": 118741722, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.79272, - 51.1850743 - ], - [ - 4.79272, - 51.1850743 - ], - [ - 4.79272, - 51.1850743 - ], - [ - 4.79272, - 51.1850743 - ], - [ - 4.79272, - 51.1850743 - ] - ] - ] - }, - "properties": { - "check_user": "L'imaginaire", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Salambre", - "uid": "15272429", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-21T15:44:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-21T19:43:20.543030Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118741722 - } - }, - { - "id": 118741234, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2727258, - 50.7705316 - ], - [ - 5.2779548, - 50.7705316 - ], - [ - 5.2779548, - 50.7747908 - ], - [ - 5.2727258, - 50.7747908 - ], - [ - 5.2727258, - 50.7705316 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-21T15:31:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 447, - "modify": 539, - "delete": 13, - "area": 0.0000222713567999992, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 491, - "theme": "grb", - "delete": 13, - "import": 67, - "locale": "nl", - "imagery": "osm", - "conflation": 104 - }, - "id": 118741234 - } - }, - { - "id": 118740648, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5003718, - 50.9659266 - ], - [ - 5.5003718, - 50.9659266 - ], - [ - 5.5003718, - 50.9659266 - ], - [ - 5.5003718, - 50.9659266 - ], - [ - 5.5003718, - 50.9659266 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Michael Didderiens", - "uid": "15281757", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-21T15:16:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-23T16:48:05.559232Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 118740648 - } - }, - { - "id": 118737999, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0157963, - 50.9047711 - ], - [ - 4.0573726, - 50.9047711 - ], - [ - 4.0573726, - 50.9194159 - ], - [ - 4.0157963, - 50.9194159 - ], - [ - 4.0157963, - 50.9047711 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Erin76", - "uid": "8982454", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-21T14:03:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 18, - "delete": 0, - "area": 0.000608876598239968, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "answer": 18, - "locale": "nl", - "imagery": "osm" - }, - "id": 118737999 - } - }, - { - "id": 118735229, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 20.9938677, - 52.2368405 - ], - [ - 20.9960904, - 52.2368405 - ], - [ - 20.9960904, - 52.2398343 - ], - [ - 20.9938677, - 52.2398343 - ], - [ - 20.9938677, - 52.2368405 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Tetryk", - "uid": "13505870", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-21T12:53:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 3, - "area": 0.00000665431925999953, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "locale": "en", - "imagery": "osm", - "deletion": 3, - "deletion:node/4602946348": "disused", - "deletion:node/5235959914": "shop_closed", - "deletion:node/8093829729": "shop_closed" - }, - "id": 118735229 - } - }, - { - "id": 118735147, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9781033, - 50.7770621 - ], - [ - 3.1257172, - 50.7770621 - ], - [ - 3.1257172, - 51.0890881 - ], - [ - 2.9781033, - 51.0890881 - ], - [ - 2.9781033, - 50.7770621 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-21T12:51:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.0460593747613994, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 7, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 4 - }, - "id": 118735147 - } - }, - { - "id": 118734824, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7345758, - -34.6634816 - ], - [ - -58.5951036, - -34.6634816 - ], - [ - -58.5951036, - -34.6449105 - ], - [ - -58.7345758, - -34.6449105 - ], - [ - -58.7345758, - -34.6634816 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AgusQui", - "uid": "331218", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-21T12:43:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00259015217341938, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "answer": 3, - "locale": "es", - "imagery": "osmfr", - "change_within_25m": 2, - "change_within_50m": 1 - }, - "id": 118734824 - } - }, - { - "id": 118733801, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7115, - 50.8774487 - ], - [ - 4.7123542, - 50.8774487 - ], - [ - 4.7123542, - 50.877761 - ], - [ - 4.7115, - 50.877761 - ], - [ - 4.7115, - 50.8774487 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-21T12:19:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 5, - "modify": 11, - "delete": 0, - "area": 2.66766659997769e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 14, - "create": 5, - "locale": "nl", - "imagery": "AGIV", - "change_over_5000m": 5, - "change_within_25m": 4, - "change_within_50m": 5, - "change_within_100m": 6, - "move:node/4908035523": "improve_accuracy" - }, - "id": 118733801 - } - }, - { - "id": 118732935, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3381466, - 50.9925796 - ], - [ - 3.3419934, - 50.9925796 - ], - [ - 3.3419934, - 50.9944163 - ], - [ - 3.3381466, - 50.9944163 - ], - [ - 3.3381466, - 50.9925796 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RubOSM", - "uid": "2096650", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-21T11:59:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6, - "modify": 28, - "delete": 0, - "area": 0.00000706541755999335, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 41, - "create": 6, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 6, - "change_within_25m": 42, - "move:node/9594268350": "improve_accuracy" - }, - "id": 118732935 - } - }, - { - "id": 118731804, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2010138, - 51.1861374 - ], - [ - 3.2010138, - 51.1861374 - ], - [ - 3.2010138, - 51.1861374 - ], - [ - 3.2010138, - 51.1861374 - ], - [ - 3.2010138, - 51.1861374 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-21T11:36:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 118731804 - } - }, - { - "id": 118726456, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.8165661, - 51.1239165 - ], - [ - 5.8165661, - 51.1239165 - ], - [ - 5.8165661, - 51.1239165 - ], - [ - 5.8165661, - 51.1239165 - ], - [ - 5.8165661, - 51.1239165 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Visit Kinrooi", - "uid": "15291736", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-21T09:25:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 3, - "import": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "import:node/9593947994": "source: https://osm.org/note/3044265" - }, - "id": 118726456 - } - }, - { - "id": 118721867, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 78.1411426, - 9.3571947 - ], - [ - 79.8344868, - 9.3571947 - ], - [ - 79.8344868, - 10.9429615 - ], - [ - 78.1411426, - 10.9429615 - ], - [ - 78.1411426, - 9.3571947 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-21T07:24:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 14, - "delete": 0, - "area": 2.68524901333255, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 15, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 8 - }, - "id": 118721867 - } - }, - { - "id": 118721482, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 77.7980578, - 9.1665969 - ], - [ - 77.9857183, - 9.1665969 - ], - [ - 77.9857183, - 9.8220391 - ], - [ - 77.7980578, - 9.8220391 - ], - [ - 77.7980578, - 9.1665969 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-21T07:13:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.123000610973104, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 4, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 4 - }, - "id": 118721482 - } - }, - { - "id": 118719959, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.2413023, - 53.5469108 - ], - [ - 10.2422837, - 53.5469108 - ], - [ - 10.2422837, - 53.5474457 - ], - [ - 10.2413023, - 53.5474457 - ], - [ - 10.2413023, - 53.5469108 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "un1matr1x", - "uid": "9133122", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-21T06:24:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 5.24950859998461e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 118719959 - } - }, - { - "id": 118718813, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.012732, - 51.4545217 - ], - [ - 7.012732, - 51.4545217 - ], - [ - 7.012732, - 51.4545217 - ], - [ - 7.012732, - 51.4545217 - ], - [ - 7.012732, - 51.4545217 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "thschick", - "uid": "2753036", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-21T05:39:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 118718813 - } - }, - { - "id": 118715002, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2984379, - 50.8322585 - ], - [ - 4.2990546, - 50.8322585 - ], - [ - 4.2990546, - 50.832483 - ], - [ - 4.2984379, - 50.832483 - ], - [ - 4.2984379, - 50.8322585 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-21T01:10:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.38449150001034e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "locale": "nl", - "imagery": "osm", - "add-image": 5 - }, - "id": 118715002 - } - }, - { - "id": 118708091, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 20.9567039, - 52.2495538 - ], - [ - 20.9567039, - 52.2495538 - ], - [ - 20.9567039, - 52.2495538 - ], - [ - 20.9567039, - 52.2495538 - ], - [ - 20.9567039, - 52.2495538 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "tomczk", - "uid": "4345690", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-20T19:29:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "create": 1, - "locale": "en", - "imagery": "Geoportal2-PL-HighResolution-aerial_image_WMS" - }, - "id": 118708091 - } - }, - { - "id": 118706934, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8019088, - 51.3215277 - ], - [ - 4.8019088, - 51.3215277 - ], - [ - 4.8019088, - 51.3215277 - ], - [ - 4.8019088, - 51.3215277 - ], - [ - 4.8019088, - 51.3215277 - ] - ] - ] - }, - "properties": { - "check_user": "L'imaginaire", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Philippe Winant", - "uid": "6354026", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-20T18:47:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-22T10:28:12.210336Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 5, - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 118706934 - } - }, - { - "id": 118702127, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0468115, - 51.6453612 - ], - [ - 5.0470636, - 51.6453612 - ], - [ - 5.0470636, - 51.6454999 - ], - [ - 5.0468115, - 51.6454999 - ], - [ - 5.0468115, - 51.6453612 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-20T16:14:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 3.49662699985366e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 118702127 - } - }, - { - "id": 118701048, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1638534, - 50.9354031 - ], - [ - 4.1638534, - 50.9354031 - ], - [ - 4.1638534, - 50.9354031 - ], - [ - 4.1638534, - 50.9354031 - ], - [ - 4.1638534, - 50.9354031 - ] - ] - ] - }, - "properties": { - "check_user": "L'imaginaire", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Liezeke P", - "uid": "15315945", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-20T15:43:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-20T18:42:33.265518Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_1000m": 1 - }, - "id": 118701048 - } - }, - { - "id": 118700505, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.9928168, - 45.7969148 - ], - [ - 16.0019013, - 45.7969148 - ], - [ - 16.0019013, - 45.7998059 - ], - [ - 15.9928168, - 45.7998059 - ], - [ - 15.9928168, - 45.7969148 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Janjko", - "uid": "244754", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-20T15:31:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.0000262641979499947, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 3, - "locale": "en", - "imagery": "osm", - "change_within_500m": 3 - }, - "id": 118700505 - } - }, - { - "id": 118698189, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.1058316, - 49.7465855 - ], - [ - 6.1058316, - 49.7465855 - ], - [ - 6.1058316, - 49.7465855 - ], - [ - 6.1058316, - 49.7465855 - ], - [ - 6.1058316, - 49.7465855 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "ClarissaWAM", - "uid": "13745921", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-20T14:35:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases", - "theme": "bookcases", - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 118698189 - } - }, - { - "id": 118696122, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.1264086, - 51.534583 - ], - [ - -0.1264086, - 51.534583 - ], - [ - -0.1264086, - 51.534583 - ], - [ - -0.1264086, - 51.534583 - ], - [ - -0.1264086, - 51.534583 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "queenLizzie", - "uid": "15349770", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-20T13:32:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 118696122 - } - }, - { - "id": 118696100, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "queenLizzie", - "uid": "15349770", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-20T13:31:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 118696100 - } - }, - { - "id": 118695699, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.1273764, - 51.5345378 - ], - [ - -0.1264086, - 51.5345378 - ], - [ - -0.1264086, - 51.5352034 - ], - [ - -0.1273764, - 51.5352034 - ], - [ - -0.1273764, - 51.5345378 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "queenLizzie", - "uid": "15349770", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-20T13:19:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 5, - "modify": 10, - "delete": 1, - "area": 6.44167679997887e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 14, - "create": 5, - "locale": "nl", - "imagery": "osm", - "deletion": 1, - "add-image": 4, - "change_over_5000m": 5, - "change_within_25m": 19, - "deletion:node/9592055349": "testing point" - }, - "id": 118695699 - } - }, - { - "id": 118693357, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0068178, - 51.12731 - ], - [ - 5.0179173, - 51.12731 - ], - [ - 5.0179173, - 51.1368512 - ], - [ - 5.0068178, - 51.1368512 - ], - [ - 5.0068178, - 51.12731 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-20T11:55:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 69, - "modify": 286, - "delete": 9, - "area": 0.000105902549400005, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 253, - "theme": "grb", - "answer": 4, - "delete": 9, - "import": 14, - "locale": "nl", - "imagery": "osm", - "conflation": 68 - }, - "id": 118693357 - } - }, - { - "id": 118691909, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2237072, - 51.1647811 - ], - [ - 5.368466, - 51.1647811 - ], - [ - 5.368466, - 51.2639152 - ], - [ - 5.2237072, - 51.2639152 - ], - [ - 5.2237072, - 51.1647811 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Toerisme Lommel", - "uid": "15363065", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-20T11:05:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 20, - "modify": 1, - "delete": 0, - "area": 0.0143505333550801, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 5, - "create": 15, - "import": 5, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "import:node/-14": "source: https://osm.org/note/3022908", - "import:node/-19": "source: https://osm.org/note/3044336", - "import:node/-20": "source: https://osm.org/note/3044408", - "import:node/9591751423": "source: https://osm.org/note/3023036", - "import:node/9591769183": "source: https://osm.org/note/3023012" - }, - "id": 118691909 - } - }, - { - "id": 118689635, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7187547, - 51.0378678 - ], - [ - 3.8125348, - 51.0378678 - ], - [ - 3.8125348, - 51.0749558 - ], - [ - 3.7187547, - 51.0749558 - ], - [ - 3.7187547, - 51.0378678 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "WimBau", - "uid": "15313167", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-20T09:42:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 20, - "modify": 94, - "delete": 0, - "area": 0.00347811634879973, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 2, - "theme": "toerisme_vlaanderen", - "answer": 129, - "create": 20, - "locale": "nl", - "imagery": "osm", - "add-image": 25, - "move:node/9591648663": "improve_accuracy", - "move:node/9591655479": "improve_accuracy" - }, - "id": 118689635 - } - }, - { - "id": 118689577, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "WimBau", - "uid": "15313167", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-20T09:39:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118689577 - } - }, - { - "id": 118689571, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "WimBau", - "uid": "15313167", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-20T09:39:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118689571 - } - }, - { - "id": 118689566, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "WimBau", - "uid": "15313167", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-20T09:39:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118689566 - } - }, - { - "id": 118689563, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "WimBau", - "uid": "15313167", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-20T09:39:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 118689563 - } - }, - { - "id": 118689555, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "WimBau", - "uid": "15313167", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-20T09:38:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118689555 - } - }, - { - "id": 118689499, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8363957, - 51.0462844 - ], - [ - 3.8363957, - 51.0462844 - ], - [ - 3.8363957, - 51.0462844 - ], - [ - 3.8363957, - 51.0462844 - ], - [ - 3.8363957, - 51.0462844 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "WimBau", - "uid": "15313167", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-20T09:36:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118689499 - } - }, - { - "id": 118688521, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8677005, - 50.980861 - ], - [ - 3.8951291, - 50.980861 - ], - [ - 3.8951291, - 51.0103096 - ], - [ - 3.8677005, - 51.0103096 - ], - [ - 3.8677005, - 50.980861 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Erin76", - "uid": "8982454", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-20T08:53:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 2, - "delete": 0, - "area": 0.000807733869960054, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 3, - "create": 2, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 118688521 - } - }, - { - "id": 118686881, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.841616, - 50.9511986 - ], - [ - 4.0276212, - 50.9511986 - ], - [ - 4.0276212, - 51.0379716 - ], - [ - 3.841616, - 51.0379716 - ], - [ - 3.841616, - 50.9511986 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "WimBau", - "uid": "15313167", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-20T07:26:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 16, - "modify": 64, - "delete": 0, - "area": 0.0161402292196001, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 106, - "create": 16, - "locale": "nl", - "imagery": "osm", - "add-image": 18, - "move:node/9591488277": "improve_accuracy" - }, - "id": 118686881 - } - }, - { - "id": 118682470, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3793721, - 50.8607021 - ], - [ - 4.3793721, - 50.8607021 - ], - [ - 4.3793721, - 50.8607021 - ], - [ - 4.3793721, - 50.8607021 - ], - [ - 4.3793721, - 50.8607021 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-19T23:54:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 118682470 - } - }, - { - "id": 118682451, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3517883, - 50.8492024 - ], - [ - 4.3517883, - 50.8492024 - ], - [ - 4.3517883, - 50.8492024 - ], - [ - 4.3517883, - 50.8492024 - ], - [ - 4.3517883, - 50.8492024 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-19T23:52:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 118682451 - } - }, - { - "id": 118682388, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3834236, - 50.8560664 - ], - [ - 4.3834236, - 50.8560664 - ], - [ - 4.3834236, - 50.8560664 - ], - [ - 4.3834236, - 50.8560664 - ], - [ - 4.3834236, - 50.8560664 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-19T23:47:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "UrbISOrtho", - "add-image": 1 - }, - "id": 118682388 - } - }, - { - "id": 118681569, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.3183669, - 47.637297 - ], - [ - -122.3183669, - 47.637297 - ], - [ - -122.3183669, - 47.637297 - ], - [ - -122.3183669, - 47.637297 - ], - [ - -122.3183669, - 47.637297 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Wim L", - "uid": "223681", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-19T22:55:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_500m": 1 - }, - "id": 118681569 - } - }, - { - "id": 118681432, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.9615528, - 49.2079629 - ], - [ - -122.9615528, - 49.2079629 - ], - [ - -122.9615528, - 49.2079629 - ], - [ - -122.9615528, - 49.2079629 - ], - [ - -122.9615528, - 49.2079629 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Zarr", - "uid": "6670496", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-19T22:46:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/personal.html", - "theme": "personal", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "EsriWorldImagery", - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 118681432 - } - }, - { - "id": 118678876, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0326262, - 50.946925 - ], - [ - 4.0682083, - 50.946925 - ], - [ - 4.0682083, - 50.9526703 - ], - [ - 4.0326262, - 50.9526703 - ], - [ - 4.0326262, - 50.946925 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "WimBau", - "uid": "15313167", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-19T20:50:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 10, - "modify": 49, - "delete": 0, - "area": 0.000204429839130034, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 55, - "create": 10, - "locale": "nl", - "imagery": "osm", - "add-image": 12 - }, - "id": 118678876 - } - }, - { - "id": 118676646, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2325124, - 50.73165 - ], - [ - 4.2325124, - 50.73165 - ], - [ - 4.2325124, - 50.73165 - ], - [ - 4.2325124, - 50.73165 - ], - [ - 4.2325124, - 50.73165 - ] - ] - ] - }, - "properties": { - "check_user": "L'imaginaire", - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-19T19:17:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": false, - "checked": true, - "check_date": "2022-03-20T18:45:32.041910Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_5000m": 2 - }, - "id": 118676646 - } - }, - { - "id": 118676265, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7244255, - 51.0439385 - ], - [ - 3.7262325, - 51.0439385 - ], - [ - 3.7262325, - 51.043965 - ], - [ - 3.7244255, - 51.043965 - ], - [ - 3.7244255, - 51.0439385 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.17.0-alpha-3", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-19T18:58:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 4.78854999946534e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/etymology.html", - "theme": "etymology", - "answer": 2, - "locale": "en", - "imagery": "osm", - "change_within_500m": 2 - }, - "id": 118676265 - } - }, - { - "id": 118671861, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7279218, - 51.0444851 - ], - [ - 3.7279218, - 51.0444851 - ], - [ - 3.7279218, - 51.0444851 - ], - [ - 3.7279218, - 51.0444851 - ], - [ - 3.7279218, - 51.0444851 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #vending_machines", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-19T16:35:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "vending_machines", - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_within_100m": 1 - }, - "id": 118671861 - } - }, - { - "id": 118670971, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.495001, - 50.990407 - ], - [ - 4.4950384, - 50.990407 - ], - [ - 4.4950384, - 50.991846 - ], - [ - 4.495001, - 50.991846 - ], - [ - 4.495001, - 50.990407 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #cyclestreets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-19T16:08:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 5.38186000002912e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclestreets.html", - "theme": "cyclestreets", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 118670971 - } - }, - { - "id": 118669747, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7279218, - 51.0444851 - ], - [ - 3.7279218, - 51.0444851 - ], - [ - 3.7279218, - 51.0444851 - ], - [ - 3.7279218, - 51.0444851 - ], - [ - 3.7279218, - 51.0444851 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #vending_machines", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-19T15:33:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "vending_machines", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_within_100m": 1 - }, - "id": 118669747 - } - }, - { - "id": 118669196, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5148994, - 50.8251802 - ], - [ - 4.5148994, - 50.8251802 - ], - [ - 4.5148994, - 50.8251802 - ], - [ - 4.5148994, - 50.8251802 - ], - [ - 4.5148994, - 50.8251802 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-19T15:17:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "add-image": 1 - }, - "id": 118669196 - } - }, - { - "id": 118667027, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3552997, - 50.8776305 - ], - [ - 4.3552997, - 50.8776305 - ], - [ - 4.3552997, - 50.8776305 - ], - [ - 4.3552997, - 50.8776305 - ], - [ - 4.3552997, - 50.8776305 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-19T14:06:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 118667027 - } - }, - { - "id": 118666687, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4238443, - 50.8846536 - ], - [ - 4.4239035, - 50.8846536 - ], - [ - 4.4239035, - 50.8847598 - ], - [ - 4.4238443, - 50.8847598 - ], - [ - 4.4238443, - 50.8846536 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-19T13:53:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 6.28703999985087e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 5, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "add-image": 2 - }, - "id": 118666687 - } - }, - { - "id": 118665576, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5331481, - 44.8653597 - ], - [ - -0.5331481, - 44.8653597 - ], - [ - -0.5331481, - 44.8653597 - ], - [ - -0.5331481, - 44.8653597 - ], - [ - -0.5331481, - 44.8653597 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-19T13:17:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "create": 1, - "locale": "fr", - "imagery": "osm" - }, - "id": 118665576 - } - }, - { - "id": 118665478, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Vincent Bombaerts", - "uid": "98569", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-19T13:14:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 1, - "locale": "fr", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 118665478 - } - }, - { - "id": 118665471, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Vincent Bombaerts", - "uid": "98569", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-19T13:14:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 1, - "locale": "fr", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 118665471 - } - }, - { - "id": 118663453, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7640118, - -34.6588894 - ], - [ - -58.7597403, - -34.6588894 - ], - [ - -58.7597403, - -34.6576606 - ], - [ - -58.7640118, - -34.6576606 - ], - [ - -58.7640118, - -34.6588894 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AgusQui", - "uid": "331218", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-19T12:02:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000524881920000107, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "answer": 3, - "locale": "es", - "imagery": "osm" - }, - "id": 118663453 - } - }, - { - "id": 118663259, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5516893, - 51.2529797 - ], - [ - 4.5517436, - 51.2529797 - ], - [ - 4.5517436, - 51.2530276 - ], - [ - 4.5516893, - 51.2530276 - ], - [ - 4.5516893, - 51.2529797 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Jorisbo", - "uid": "1983103", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-19T11:55:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 2.60097000031982e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 5, - "move:node/9589827080": "improve_accuracy" - }, - "id": 118663259 - } - }, - { - "id": 118662751, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1112677, - 38.841307 - ], - [ - 0.1112677, - 38.841307 - ], - [ - 0.1112677, - 38.841307 - ], - [ - 0.1112677, - 38.841307 - ], - [ - 0.1112677, - 38.841307 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-19T11:34:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 4, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_within_25m": 4 - }, - "id": 118662751 - } - }, - { - "id": 118662292, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2357428, - 50.7364971 - ], - [ - 4.2357428, - 50.7364971 - ], - [ - 4.2357428, - 50.7364971 - ], - [ - 4.2357428, - 50.7364971 - ], - [ - 4.2357428, - 50.7364971 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-19T11:21:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 3, - "locale": "en", - "imagery": "osm", - "change_within_25m": 3 - }, - "id": 118662292 - } - }, - { - "id": 118660316, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.424582, - 51.203289 - ], - [ - 4.4246191, - 51.203289 - ], - [ - 4.4246191, - 51.2032934 - ], - [ - 4.424582, - 51.2032934 - ], - [ - 4.424582, - 51.203289 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Jorisbo", - "uid": "1983103", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-19T10:21:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.63240000062901e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 4, - "locale": "nl", - "imagery": "osm", - "move:node/7242959910": "improve_accuracy" - }, - "id": 118660316 - } - }, - { - "id": 118659636, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.450867, - 50.8811808 - ], - [ - 4.450867, - 50.8811808 - ], - [ - 4.450867, - 50.8811808 - ], - [ - 4.450867, - 50.8811808 - ], - [ - 4.450867, - 50.8811808 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-19T10:00:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "add-image": 1 - }, - "id": 118659636 - } - }, - { - "id": 118659559, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4017757, - 50.8601498 - ], - [ - 4.450812, - 50.8601498 - ], - [ - 4.450812, - 50.8812785 - ], - [ - 4.4017757, - 50.8812785 - ], - [ - 4.4017757, - 50.8601498 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-19T09:57:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 7, - "delete": 0, - "area": 0.00103607327180992, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 5, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 118659559 - } - }, - { - "id": 118658975, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.712281, - 51.0603454 - ], - [ - 3.7129765, - 51.0603454 - ], - [ - 3.7129765, - 51.0609068 - ], - [ - 3.712281, - 51.0609068 - ], - [ - 3.712281, - 51.0603454 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ruben Van de Velde", - "uid": "2676725", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-19T09:36:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 3.90453699996611e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant", - "theme": "hailhydrant", - "locale": "en", - "imagery": "HDM_HOT", - "add-image": 3 - }, - "id": 118658975 - } - }, - { - "id": 118657435, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4847071, - 50.8855086 - ], - [ - 4.4847071, - 50.8855086 - ], - [ - 4.4847071, - 50.8855086 - ], - [ - 4.4847071, - 50.8855086 - ], - [ - 4.4847071, - 50.8855086 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-19T08:38:07Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 4, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 118657435 - } - }, - { - "id": 118657115, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -105.9931524, - 35.5360336 - ], - [ - -105.890378, - 35.5360336 - ], - [ - -105.890378, - 35.6620126 - ], - [ - -105.9931524, - 35.6620126 - ], - [ - -105.9931524, - 35.5360336 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Arlo James Barnes", - "uid": "682928", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #hackerspaces", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-19T08:24:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.0129474161375995, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hackerspaces.html", - "theme": "hackerspaces", - "answer": 7, - "locale": "en", - "imagery": "osm" - }, - "id": 118657115 - } - }, - { - "id": 118656381, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0972963, - 50.9970135 - ], - [ - 3.0972963, - 50.9970135 - ], - [ - 3.0972963, - 50.9970135 - ], - [ - 3.0972963, - 50.9970135 - ], - [ - 3.0972963, - 50.9970135 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.17.0-alpha-3", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-19T07:49:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/shops.html", - "theme": "shops", - "answer": 2, - "locale": "en", - "imagery": "osm", - "change_within_25m": 2 - }, - "id": 118656381 - } - }, - { - "id": 118647769, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2574215, - 50.7728685 - ], - [ - 5.2704821, - 50.7728685 - ], - [ - 5.2704821, - 50.7827933 - ], - [ - 5.2574215, - 50.7827933 - ], - [ - 5.2574215, - 50.7728685 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-18T21:06:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 37, - "modify": 16, - "delete": 0, - "area": 0.000129623842879997, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 15, - "theme": "grb", - "import": 7, - "locale": "nl", - "imagery": "osm", - "conflation": 2 - }, - "id": 118647769 - } - }, - { - "id": 118645314, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.6232461, - 50.9150033 - ], - [ - 2.6286645, - 50.9150033 - ], - [ - 2.6286645, - 50.9200743 - ], - [ - 2.6232461, - 50.9200743 - ], - [ - 2.6232461, - 50.9150033 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.17.0-alpha-3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-18T19:25:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 908, - "modify": 0, - "delete": 0, - "area": 0.000027476706400007, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 137, - "locale": "nl", - "imagery": "osm", - "change_within_100m": 5, - "change_within_500m": 57, - "change_within_1000m": 70, - "change_within_5000m": 5 - }, - "id": 118645314 - } - }, - { - "id": 118644313, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.912223, - -53.1576011 - ], - [ - -70.912223, - -53.1576011 - ], - [ - -70.912223, - -53.1576011 - ], - [ - -70.912223, - -53.1576011 - ], - [ - -70.912223, - -53.1576011 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-18T18:51:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "cyclosm", - "add-image": 1 - }, - "id": 118644313 - } - }, - { - "id": 118641855, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1445045, - 51.1783051 - ], - [ - 4.1446257, - 51.1783051 - ], - [ - 4.1446257, - 51.1783223 - ], - [ - 4.1445045, - 51.1783223 - ], - [ - 4.1445045, - 51.1783051 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Rembrandt De Vlaeminck", - "uid": "504998", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-18T17:31:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 6, - "delete": 0, - "area": 2.08463999938217e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 9, - "create": 2, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 9 - }, - "id": 118641855 - } - }, - { - "id": 118641720, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.1378696, - 51.5485577 - ], - [ - -0.1378696, - 51.5485577 - ], - [ - -0.1378696, - 51.5485577 - ], - [ - -0.1378696, - 51.5485577 - ], - [ - -0.1378696, - 51.5485577 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "queenLizzie", - "uid": "15349770", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-18T17:27:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 4, - "locale": "nl", - "imagery": "osm" - }, - "id": 118641720 - } - }, - { - "id": 118634971, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9953565, - 51.0992387 - ], - [ - 5.0508165, - 51.0992387 - ], - [ - 5.0508165, - 51.1100066 - ], - [ - 4.9953565, - 51.1100066 - ], - [ - 4.9953565, - 51.0992387 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-18T14:18:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 765, - "modify": 1928, - "delete": 31, - "area": 0.000597187733999868, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 1667, - "theme": "grb", - "answer": 6, - "delete": 31, - "import": 85, - "locale": "nl", - "imagery": "osm", - "conflation": 520, - "change_within_5000m": 7 - }, - "id": 118634971 - } - }, - { - "id": 118633589, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2540982, - 50.7653407 - ], - [ - 5.2701725, - 50.7653407 - ], - [ - 5.2701725, - 50.7733537 - ], - [ - 5.2540982, - 50.7733537 - ], - [ - 5.2540982, - 50.7653407 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-18T13:44:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1284, - "modify": 1525, - "delete": 13, - "area": 0.000128803365899977, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 1384, - "theme": "grb", - "delete": 13, - "import": 156, - "locale": "nl", - "imagery": "osm", - "conflation": 348 - }, - "id": 118633589 - } - }, - { - "id": 118633102, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7068666, - 51.011344 - ], - [ - 2.7078308, - 51.011344 - ], - [ - 2.7078308, - 51.0121448 - ], - [ - 2.7068666, - 51.0121448 - ], - [ - 2.7068666, - 51.011344 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Toerisme Alveringem", - "uid": "15348388", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-18T13:30:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 0, - "delete": 0, - "area": 7.72131360000253e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 4, - "locale": "nl", - "imagery": "osm" - }, - "id": 118633102 - } - }, - { - "id": 118632455, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.348841, - 50.8664898 - ], - [ - 4.348841, - 50.8664898 - ], - [ - 4.348841, - 50.8664898 - ], - [ - 4.348841, - 50.8664898 - ], - [ - 4.348841, - 50.8664898 - ] - ] - ] - }, - "properties": { - "check_user": "L'imaginaire", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Dries Verdoodt", - "uid": "7250277", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-18T13:11:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-18T19:14:33.947925Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118632455 - } - }, - { - "id": 118625875, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9451979, - 51.024093 - ], - [ - 4.0001709, - 51.024093 - ], - [ - 4.0001709, - 51.0448438 - ], - [ - 3.9451979, - 51.0448438 - ], - [ - 3.9451979, - 51.024093 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 42, - "name": "Invalid tag modification" - } - ], - "tags": [], - "features": [ - { - "url": "way-981249348", - "osm_id": 981249348, - "reasons": [ - 42 - ], - "version": 3, - "primary_tags": {} - } - ], - "user": "DNK9290", - "uid": "14143286", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-18T10:02:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 10, - "modify": 13, - "delete": 1, - "area": 0.00114073372840009, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 23, - "create": 10, - "locale": "nl", - "imagery": "AGIV", - "deletion": 1, - "soft-delete": 1, - "deletion:node/1624607361": "shop_closed", - "soft-delete:way/981249348": "disused" - }, - "id": 118625875 - } - }, - { - "id": 118625802, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2469473, - 50.7302745 - ], - [ - 5.2772536, - 50.7302745 - ], - [ - 5.2772536, - 50.7509102 - ], - [ - 5.2469473, - 50.7509102 - ], - [ - 5.2469473, - 50.7302745 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 1, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-18T09:59:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 696, - "modify": 608, - "delete": 23, - "area": 0.00062539171490998, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 543, - "theme": "grb", - "delete": 23, - "import": 134, - "locale": "nl", - "imagery": "osm", - "conflation": 164 - }, - "id": 118625802 - } - }, - { - "id": 118624092, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2533719, - 50.7383938 - ], - [ - 5.2663586, - 50.7383938 - ], - [ - 5.2663586, - 50.7648132 - ], - [ - 5.2533719, - 50.7648132 - ], - [ - 5.2533719, - 50.7383938 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-18T09:09:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 950, - "modify": 843, - "delete": 38, - "area": 0.00034310082198002, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 767, - "theme": "grb", - "delete": 38, - "import": 149, - "locale": "nl", - "imagery": "osm", - "conflation": 180 - }, - "id": 118624092 - } - }, - { - "id": 118624029, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2593851, - 50.7559834 - ], - [ - 5.2629409, - 50.7559834 - ], - [ - 5.2629409, - 50.7593698 - ], - [ - 5.2593851, - 50.7593698 - ], - [ - 5.2593851, - 50.7559834 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-18T09:07:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 41, - "modify": 26, - "delete": 0, - "area": 0.0000120413611200131, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 23, - "theme": "grb", - "import": 5, - "locale": "nl", - "imagery": "osm", - "conflation": 6 - }, - "id": 118624029 - } - }, - { - "id": 118623219, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1381595, - 51.1771819 - ], - [ - 4.1391805, - 51.1771819 - ], - [ - 4.1391805, - 51.1778163 - ], - [ - 4.1381595, - 51.1778163 - ], - [ - 4.1381595, - 51.1771819 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Rembrandt De Vlaeminck", - "uid": "504998", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-18T08:45:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 6.47722400002576e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 118623219 - } - }, - { - "id": 118621703, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2540586, - 50.7563627 - ], - [ - 5.2638141, - 50.7563627 - ], - [ - 5.2638141, - 50.7682053 - ], - [ - 5.2540586, - 50.7682053 - ], - [ - 5.2540586, - 50.7563627 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-18T08:06:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1342, - "modify": 1282, - "delete": 6, - "area": 0.000115530484300022, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 1165, - "theme": "grb", - "delete": 6, - "import": 175, - "locale": "nl", - "imagery": "osm", - "conflation": 282 - }, - "id": 118621703 - } - }, - { - "id": 118621398, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7361168, - 50.8545877 - ], - [ - 2.7361168, - 50.8545877 - ], - [ - 2.7361168, - 50.8545877 - ], - [ - 2.7361168, - 50.8545877 - ], - [ - 2.7361168, - 50.8545877 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-18T07:58:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 4, - "locale": "nl", - "imagery": "osm" - }, - "id": 118621398 - } - }, - { - "id": 118613561, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8571554, - 50.9910854 - ], - [ - 2.8571554, - 50.9910854 - ], - [ - 2.8571554, - 50.9910854 - ], - [ - 2.8571554, - 50.9910854 - ], - [ - 2.8571554, - 50.9910854 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-17T22:50:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 3, - "locale": "nl", - "imagery": "osm" - }, - "id": 118613561 - } - }, - { - "id": 118611994, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1054638, - 51.0649694 - ], - [ - 3.1054638, - 51.0649694 - ], - [ - 3.1054638, - 51.0649694 - ], - [ - 3.1054638, - 51.0649694 - ], - [ - 3.1054638, - 51.0649694 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-17T21:47:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 118611994 - } - }, - { - "id": 118610877, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9706113, - 51.3037531 - ], - [ - 5.0229024, - 51.3037531 - ], - [ - 5.0229024, - 51.3381883 - ], - [ - 4.9706113, - 51.3381883 - ], - [ - 4.9706113, - 51.3037531 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Stinus_Clasius", - "uid": "1086503", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-17T21:01:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00180065448671988, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 118610877 - } - }, - { - "id": 118608266, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4382719, - 51.3790681 - ], - [ - 4.4747186, - 51.3790681 - ], - [ - 4.4747186, - 51.4027986 - ], - [ - 4.4382719, - 51.4027986 - ], - [ - 4.4382719, - 51.3790681 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "tissie", - "uid": "11544291", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-17T19:32:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 16, - "delete": 0, - "area": 0.00086489841434997, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 29, - "import": 1, - "locale": "nl", - "imagery": "osm", - "import:node/9586258366": "source: https://osm.org/note/3022934" - }, - "id": 118608266 - } - }, - { - "id": 118607485, - "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": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-17T19:08:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 2.5314093000299e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118607485 - } - }, - { - "id": 118605990, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2809095, - 51.044789 - ], - [ - 4.2978522, - 51.044789 - ], - [ - 4.2978522, - 51.0516574 - ], - [ - 4.2809095, - 51.0516574 - ], - [ - 4.2809095, - 51.044789 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Rienux", - "uid": "11911273", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-17T18:13:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.000116369240680035, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 6, - "locale": "nl", - "imagery": "osm" - }, - "id": 118605990 - } - }, - { - "id": 118600405, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2539997, - 50.7615161 - ], - [ - 5.2576069, - 50.7615161 - ], - [ - 5.2576069, - 50.7651598 - ], - [ - 5.2539997, - 50.7651598 - ], - [ - 5.2539997, - 50.7615161 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-17T15:52:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 112, - "modify": 182, - "delete": 0, - "area": 0.000013143554639993, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 159, - "theme": "grb", - "import": 16, - "locale": "nl", - "imagery": "osm", - "conflation": 50 - }, - "id": 118600405 - } - }, - { - "id": 118596301, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2434297, - 50.7619019 - ], - [ - 5.2566503, - 50.7619019 - ], - [ - 5.2566503, - 50.7727309 - ], - [ - 5.2434297, - 50.7727309 - ], - [ - 5.2434297, - 50.7619019 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-17T14:19:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1515, - "modify": 1393, - "delete": 9, - "area": 0.000143165877400018, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 1239, - "theme": "grb", - "answer": 1, - "delete": 9, - "import": 208, - "locale": "nl", - "imagery": "osm", - "conflation": 326 - }, - "id": 118596301 - } - }, - { - "id": 118595932, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1048169, - 38.8351861 - ], - [ - 0.1048592, - 38.8351861 - ], - [ - 0.1048592, - 38.8352122 - ], - [ - 0.1048169, - 38.8352122 - ], - [ - 0.1048169, - 38.8351861 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-17T14:11:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.10402999997761e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 4, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 4 - }, - "id": 118595932 - } - }, - { - "id": 118591272, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7505282, - 50.796036 - ], - [ - 2.7505282, - 50.796036 - ], - [ - 2.7505282, - 50.796036 - ], - [ - 2.7505282, - 50.796036 - ], - [ - 2.7505282, - 50.796036 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-17T12:21:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 118591272 - } - }, - { - "id": 118588371, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1859969, - 50.7589208 - ], - [ - 5.2149174, - 50.7589208 - ], - [ - 5.2149174, - 50.7700923 - ], - [ - 5.1859969, - 50.7700923 - ], - [ - 5.1859969, - 50.7589208 - ] - ] - ] - }, - "properties": { - "check_user": "jospyck", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jan Pirard", - "uid": "13678221", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-17T11:19:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.000323085365750092, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-17T13:11:23.974143Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 7, - "locale": "nl", - "imagery": "osm" - }, - "id": 118588371 - } - }, - { - "id": 118587883, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2373959, - 51.039901 - ], - [ - 3.402338, - 51.039901 - ], - [ - 3.402338, - 51.1885224 - ], - [ - 3.2373959, - 51.1885224 - ], - [ - 3.2373959, - 51.039901 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-17T11:10:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0245139258209393, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 118587883 - } - }, - { - "id": 118587640, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5677573, - 53.0171193 - ], - [ - 6.572693, - 53.0171193 - ], - [ - 6.572693, - 53.017782 - ], - [ - 6.5677573, - 53.017782 - ], - [ - 6.5677573, - 53.0171193 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-17T11:05:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0.00000327088838999726, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 1, - "change_within_25m": 5 - }, - "id": 118587640 - } - }, - { - "id": 118587636, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2446239, - 50.770267 - ], - [ - 5.2574916, - 50.770267 - ], - [ - 5.2574916, - 50.778658 - ], - [ - 5.2446239, - 50.778658 - ], - [ - 5.2446239, - 50.770267 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-17T11:05:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 704, - "modify": 452, - "delete": 3, - "area": 0.000107972870700042, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 385, - "theme": "grb", - "delete": 3, - "import": 81, - "locale": "nl", - "imagery": "osm", - "conflation": 132 - }, - "id": 118587636 - } - }, - { - "id": 118584609, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2482268, - 50.7739306 - ], - [ - 5.2649189, - 50.7739306 - ], - [ - 5.2649189, - 50.7906614 - ], - [ - 5.2482268, - 50.7906614 - ], - [ - 5.2482268, - 50.7739306 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-17T10:02:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 921, - "modify": 539, - "delete": 9, - "area": 0.00027927218667995, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 464, - "theme": "grb", - "delete": 9, - "import": 100, - "locale": "nl", - "imagery": "osm", - "conflation": 152 - }, - "id": 118584609 - } - }, - { - "id": 118584599, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-17T10:02:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118584599 - } - }, - { - "id": 118584594, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-17T10:02:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118584594 - } - }, - { - "id": 118584592, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-17T10:02:07Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 118584592 - } - }, - { - "id": 118584566, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2566122, - 50.7784498 - ], - [ - 5.2585177, - 50.7784498 - ], - [ - 5.2585177, - 50.7794487 - ], - [ - 5.2566122, - 50.7794487 - ], - [ - 5.2566122, - 50.7784498 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-17T10:01:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 44, - "modify": 10, - "delete": 0, - "area": 0.00000190340395001113, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 8, - "theme": "grb", - "import": 6, - "locale": "nl", - "imagery": "osm", - "conflation": 4 - }, - "id": 118584566 - } - }, - { - "id": 118581339, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.572496, - 53.0172648 - ], - [ - 6.572717, - 53.0172648 - ], - [ - 6.572717, - 53.0172674 - ], - [ - 6.572496, - 53.0172674 - ], - [ - 6.572496, - 53.0172648 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-17T08:37:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 5.74600000433126e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "move": 1, - "theme": "waste", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_500m": 4, - "move:node/9383788521": "improve_accuracy" - }, - "id": 118581339 - } - }, - { - "id": 118577261, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4299302, - 51.2053376 - ], - [ - 4.4362235, - 51.2053376 - ], - [ - 4.4362235, - 51.2091072 - ], - [ - 4.4299302, - 51.2091072 - ], - [ - 4.4299302, - 51.2053376 - ] - ] - ] - }, - "properties": { - "check_user": "L'imaginaire", - "reasons": [], - "tags": [], - "features": [], - "user": "Jorisbo", - "uid": "1983103", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-17T06:41:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 14, - "delete": 0, - "area": 0.0000237232236799868, - "is_suspect": false, - "harmful": false, - "checked": true, - "check_date": "2022-03-17T19:57:07.984287Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 23, - "locale": "nl", - "imagery": "osm" - }, - "id": 118577261 - } - }, - { - "id": 118567688, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0447095, - 50.8765803 - ], - [ - 5.0464267, - 50.8765803 - ], - [ - 5.0464267, - 50.8785107 - ], - [ - 5.0447095, - 50.8785107 - ], - [ - 5.0447095, - 50.8765803 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Stinus_Clasius", - "uid": "1086503", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-16T21:00:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 28, - "modify": 33, - "delete": 0, - "area": 0.00000331488287999821, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 28, - "theme": "grb", - "import": 2, - "locale": "nl", - "imagery": "osm", - "conflation": 10 - }, - "id": 118567688 - } - }, - { - "id": 118567052, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.9154983, - 40.7042166 - ], - [ - -73.9150495, - 40.7042166 - ], - [ - -73.9150495, - 40.7045557 - ], - [ - -73.9154983, - 40.7045557 - ], - [ - -73.9154983, - 40.7042166 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "davidtorcivia", - "uid": "1798584", - "editor": "MapComplete 0.17.0-alpha-3", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-16T20:39:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 2, - "delete": 0, - "area": 1.5218807999938e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/surveillance.html", - "theme": "surveillance", - "answer": 7, - "create": 4, - "locale": "en", - "imagery": "osm", - "change_within_25m": 11 - }, - "id": 118567052 - } - }, - { - "id": 118566700, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2567941, - 50.77885 - ], - [ - 5.2605416, - 50.77885 - ], - [ - 5.2605416, - 50.781399 - ], - [ - 5.2567941, - 50.781399 - ], - [ - 5.2567941, - 50.77885 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-16T20:28:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 208, - "modify": 106, - "delete": 0, - "area": 0.00000955237750000776, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 91, - "theme": "grb", - "answer": 1, - "import": 21, - "locale": "nl", - "imagery": "osm", - "conflation": 28 - }, - "id": 118566700 - } - }, - { - "id": 118566695, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-16T20:28:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118566695 - } - }, - { - "id": 118566538, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2585037, - 50.7812278 - ], - [ - 5.2610177, - 50.7812278 - ], - [ - 5.2610177, - 50.7824599 - ], - [ - 5.2585037, - 50.7824599 - ], - [ - 5.2585037, - 50.7812278 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-16T20:23:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 121, - "modify": 142, - "delete": 0, - "area": 0.0000030974993999889, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 126, - "theme": "grb", - "import": 22, - "locale": "nl", - "imagery": "osm", - "conflation": 32 - }, - "id": 118566538 - } - }, - { - "id": 118566196, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1792095, - 50.7426497 - ], - [ - 5.1799368, - 50.7426497 - ], - [ - 5.1799368, - 50.7429096 - ], - [ - 5.1792095, - 50.7429096 - ], - [ - 5.1792095, - 50.7426497 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-16T20:11:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 40, - "delete": 0, - "area": 1.89025269997242e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 37, - "theme": "grb", - "locale": "nl", - "imagery": "osm", - "conflation": 10 - }, - "id": 118566196 - } - }, - { - "id": 118565951, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1780104, - 50.7373722 - ], - [ - 5.1820223, - 50.7373722 - ], - [ - 5.1820223, - 50.7420779 - ], - [ - 5.1780104, - 50.7420779 - ], - [ - 5.1780104, - 50.7373722 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-16T20:02:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 742, - "modify": 52, - "delete": 0, - "area": 0.0000188787978299813, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 46, - "theme": "grb", - "answer": 3, - "import": 87, - "locale": "nl", - "imagery": "osm", - "conflation": 8 - }, - "id": 118565951 - } - }, - { - "id": 118561656, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.2781527, - 47.8029322 - ], - [ - -4.1868272, - 47.8029322 - ], - [ - -4.1868272, - 47.8293318 - ], - [ - -4.2781527, - 47.8293318 - ], - [ - -4.2781527, - 47.8029322 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "TedScouGV", - "uid": "75300", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-16T17:40:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 5, - "modify": 16, - "delete": 0, - "area": 0.00241095666979979, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "answer": 24, - "create": 5, - "locale": "en", - "imagery": "HDM_HOT", - "add-image": 3, - "change_over_5000m": 5, - "change_within_25m": 27 - }, - "id": 118561656 - } - }, - { - "id": 118561467, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.79272, - 51.1850221 - ], - [ - 4.7928427, - 51.1850221 - ], - [ - 4.7928427, - 51.1850743 - ], - [ - 4.79272, - 51.1850743 - ], - [ - 4.79272, - 51.1850221 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Salambre", - "uid": "15272429", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-16T17:33:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 1, - "area": 6.40493999984351e-9, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 1, - "locale": "nl", - "imagery": "osm", - "deletion": 1, - "deletion:node/4882081431": "Is geen zitbank maar een picknickbank" - }, - "id": 118561467 - } - }, - { - "id": 118559047, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5660567, - 50.7645165 - ], - [ - 3.5660567, - 50.7645165 - ], - [ - 3.5660567, - 50.7645165 - ], - [ - 3.5660567, - 50.7645165 - ], - [ - 3.5660567, - 50.7645165 - ] - ] - ] - }, - "properties": { - "check_user": "L'imaginaire", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Logies De Boskouter", - "uid": "15276486", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-16T16:30:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-16T22:02:08.153936Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 118559047 - } - }, - { - "id": 118557775, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -123.0026648, - 49.2252089 - ], - [ - -123.002606, - 49.2252089 - ], - [ - -123.002606, - 49.225247 - ], - [ - -123.0026648, - 49.225247 - ], - [ - -123.0026648, - 49.2252089 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Zarr", - "uid": "6670496", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-16T16:00:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 2.2402800004679e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/personal.html", - "theme": "personal", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 118557775 - } - }, - { - "id": 118556890, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1512455, - 50.9696173 - ], - [ - 4.1512455, - 50.9696173 - ], - [ - 4.1512455, - 50.9696173 - ], - [ - 4.1512455, - 50.9696173 - ], - [ - 4.1512455, - 50.9696173 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Dries Verdoodt", - "uid": "7250277", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-16T15:39:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 1, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "deletion": 1, - "deletion:node/9583281442": "testing point" - }, - "id": 118556890 - } - }, - { - "id": 118556714, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7924578, - 50.872848 - ], - [ - 4.7925247, - 50.872848 - ], - [ - 4.7925247, - 50.8730475 - ], - [ - 4.7924578, - 50.8730475 - ], - [ - 4.7924578, - 50.872848 - ] - ] - ] - }, - "properties": { - "check_user": "L'imaginaire", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Hilde OSM", - "uid": "15275790", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 1, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-16T15:33:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 1, - "delete": 0, - "area": 1.33465500000938e-8, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-17T22:43:55.896239Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 2, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 118556714 - } - }, - { - "id": 118556460, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9639441, - 51.1978204 - ], - [ - 4.9639441, - 51.1978204 - ], - [ - 4.9639441, - 51.1978204 - ], - [ - 4.9639441, - 51.1978204 - ], - [ - 4.9639441, - 51.1978204 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-16T15:25:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_5000m": 5 - }, - "id": 118556460 - } - }, - { - "id": 118555484, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.583343, - 50.7914615 - ], - [ - 3.920322, - 50.7914615 - ], - [ - 3.920322, - 50.8167307 - ], - [ - 3.583343, - 50.8167307 - ], - [ - 3.583343, - 50.7914615 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Logies De Boskouter", - "uid": "15276486", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-16T14:58:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.0085151897468013, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 5, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 6 - }, - "id": 118555484 - } - }, - { - "id": 118554638, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2609919, - 50.7807598 - ], - [ - 5.4484827, - 50.7807598 - ], - [ - 5.4484827, - 50.9288567 - ], - [ - 5.2609919, - 50.9288567 - ], - [ - 5.2609919, - 50.7807598 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-16T14:35:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1004, - "modify": 1315, - "delete": 13, - "area": 0.0277668062585198, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 1160, - "theme": "grb", - "delete": 13, - "import": 164, - "locale": "nl", - "imagery": "osm", - "conflation": 310 - }, - "id": 118554638 - } - }, - { - "id": 118553947, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4282584, - 50.9220276 - ], - [ - 5.4488772, - 50.9220276 - ], - [ - 5.4488772, - 50.9295588 - ], - [ - 5.4282584, - 50.9295588 - ], - [ - 5.4282584, - 50.9220276 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-16T14:15:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 203, - "modify": 506, - "delete": 4, - "area": 0.000155284306560054, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 449, - "theme": "grb", - "delete": 4, - "import": 34, - "locale": "nl", - "imagery": "osm", - "conflation": 124 - }, - "id": 118553947 - } - }, - { - "id": 118553941, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4277416, - 50.9218625 - ], - [ - 5.4288456, - 50.9218625 - ], - [ - 5.4288456, - 50.9222718 - ], - [ - 5.4277416, - 50.9222718 - ], - [ - 5.4277416, - 50.9218625 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-16T14:14:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 18, - "modify": 34, - "delete": 0, - "area": 4.51867199993351e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 33, - "theme": "grb", - "import": 3, - "locale": "nl", - "imagery": "osm", - "conflation": 6 - }, - "id": 118553941 - } - }, - { - "id": 118552313, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.6323347, - -34.6496348 - ], - [ - -58.6323347, - -34.6496348 - ], - [ - -58.6323347, - -34.6496348 - ], - [ - -58.6323347, - -34.6496348 - ], - [ - -58.6323347, - -34.6496348 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AgusQui", - "uid": "331218", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-16T13:30:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "answer": 1, - "locale": "es", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 118552313 - } - }, - { - "id": 118552005, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.255115, - 51.0275769 - ], - [ - 5.2631839, - 51.0275769 - ], - [ - 5.2631839, - 51.0400286 - ], - [ - 5.255115, - 51.0400286 - ], - [ - 5.255115, - 51.0275769 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "markloenders", - "uid": "5690621", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-16T13:22:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 0.000100471522129993, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "import": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "import:node/9582956239": "source: https://osm.org/note/3044211" - }, - "id": 118552005 - } - }, - { - "id": 118551109, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1773773, - 50.7330906 - ], - [ - 5.1851269, - 50.7330906 - ], - [ - 5.1851269, - 50.7434785 - ], - [ - 5.1773773, - 50.7434785 - ], - [ - 5.1773773, - 50.7330906 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-16T12:56:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1370, - "modify": 5, - "delete": 0, - "area": 0.0000805020698400416, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 4, - "theme": "grb", - "answer": 1, - "import": 176, - "locale": "nl", - "imagery": "osm", - "conflation": 2 - }, - "id": 118551109 - } - }, - { - "id": 118550004, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.8125521, - 51.1255921 - ], - [ - 5.8243639, - 51.1255921 - ], - [ - 5.8243639, - 51.1497122 - ], - [ - 5.8125521, - 51.1497122 - ], - [ - 5.8125521, - 51.1255921 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Visit Kinrooi", - "uid": "15291736", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 1, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-16T12:28:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 5, - "delete": 0, - "area": 0.00028490179718004, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 12, - "import": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "import:node/9582862682": "source: https://osm.org/note/3044320", - "import:node/9582907281": "source: https://osm.org/note/3044341" - }, - "id": 118550004 - } - }, - { - "id": 118544600, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8794264, - 50.9709998 - ], - [ - 4.8798394, - 50.9709998 - ], - [ - 4.8798394, - 50.9710488 - ], - [ - 4.8794264, - 50.9710488 - ], - [ - 4.8794264, - 50.9709998 - ] - ] - ] - }, - "properties": { - "check_user": "L'imaginaire", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Pluimpapaver Hotel & Glamping", - "uid": "15329767", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-16T10:08:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 1, - "delete": 1, - "area": 2.02369999987935e-8, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-17T08:28:40.364264Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 2, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 118544600 - } - }, - { - "id": 118544445, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.002474, - 51.2537847 - ], - [ - 5.002474, - 51.2537847 - ], - [ - 5.002474, - 51.2537847 - ], - [ - 5.002474, - 51.2537847 - ], - [ - 5.002474, - 51.2537847 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Driehoekshoeve", - "uid": "15329516", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-16T10:05:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118544445 - } - }, - { - "id": 118543291, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8398303, - 50.8830083 - ], - [ - 4.8405777, - 50.8830083 - ], - [ - 4.8405777, - 50.8833229 - ], - [ - 4.8398303, - 50.8833229 - ], - [ - 4.8398303, - 50.8830083 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Hilde OSM", - "uid": "15275790", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-16T09:39:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6, - "modify": 15, - "delete": 0, - "area": 2.35132040002148e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 31, - "create": 6, - "locale": "nl", - "imagery": "osm" - }, - "id": 118543291 - } - }, - { - "id": 118540122, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.423047, - 50.920232 - ], - [ - 5.4435465, - 50.920232 - ], - [ - 5.4435465, - 50.9331975 - ], - [ - 5.423047, - 50.9331975 - ], - [ - 5.423047, - 50.920232 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-16T08:13:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 456, - "modify": 551, - "delete": 9, - "area": 0.000265786267249995, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 495, - "theme": "grb", - "delete": 9, - "import": 82, - "locale": "nl", - "imagery": "osm", - "conflation": 112 - }, - "id": 118540122 - } - }, - { - "id": 118538208, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2233015, - 51.2051967 - ], - [ - 3.2233015, - 51.2051967 - ], - [ - 3.2233015, - 51.2051967 - ], - [ - 3.2233015, - 51.2051967 - ], - [ - 3.2233015, - 51.2051967 - ] - ] - ] - }, - "properties": { - "check_user": "L'imaginaire", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "VisitBruges", - "uid": "15310759", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-16T07:18:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 1, - "area": 0, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-16T08:14:51.979153Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "deletion": 1, - "deletion:node/738894732": "shop_closed" - }, - "id": 118538208 - } - }, - { - "id": 118529847, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -123.0022266, - 49.2254297 - ], - [ - -123.002226, - 49.2254297 - ], - [ - -123.002226, - 49.2254297 - ], - [ - -123.0022266, - 49.2254297 - ], - [ - -123.0022266, - 49.2254297 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Zarr", - "uid": "6670496", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-15T22:49:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/personal.html", - "theme": "personal", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 118529847 - } - }, - { - "id": 118527759, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4400613, - 50.9317504 - ], - [ - 5.4457077, - 50.9317504 - ], - [ - 5.4457077, - 50.9338233 - ], - [ - 5.4400613, - 50.9338233 - ], - [ - 5.4400613, - 50.9317504 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 1, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-15T21:17:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 229, - "modify": 318, - "delete": 10, - "area": 0.0000117044225600093, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 285, - "theme": "grb", - "delete": 10, - "import": 37, - "locale": "nl", - "imagery": "osm", - "conflation": 66 - }, - "id": 118527759 - } - }, - { - "id": 118526961, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5561089, - 44.8269918 - ], - [ - -0.5561089, - 44.8269918 - ], - [ - -0.5561089, - 44.8269918 - ], - [ - -0.5561089, - 44.8269918 - ], - [ - -0.5561089, - 44.8269918 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-15T20:47:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 2, - "locale": "fr", - "imagery": "osm" - }, - "id": 118526961 - } - }, - { - "id": 118525421, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7742691, - 51.0756882 - ], - [ - 3.7742691, - 51.0756882 - ], - [ - 3.7742691, - 51.0756882 - ], - [ - 3.7742691, - 51.0756882 - ], - [ - 3.7742691, - 51.0756882 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ruben Van de Velde", - "uid": "2676725", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-15T19:55:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant", - "theme": "hailhydrant", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "HDM_HOT" - }, - "id": 118525421 - } - }, - { - "id": 118525053, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0003875, - 51.1569022 - ], - [ - 5.0207401, - 51.1569022 - ], - [ - 5.0207401, - 51.1639003 - ], - [ - 5.0003875, - 51.1639003 - ], - [ - 5.0003875, - 51.1569022 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-15T19:44:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 9, - "delete": 0, - "area": 0.000142429530060083, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 9, - "locale": "nl", - "imagery": "osm", - "change_within_5000m": 9 - }, - "id": 118525053 - } - }, - { - "id": 118524561, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5117392, - 51.1259771 - ], - [ - 5.5246082, - 51.1259771 - ], - [ - 5.5246082, - 51.1426386 - ], - [ - 5.5117392, - 51.1426386 - ], - [ - 5.5117392, - 51.1259771 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-15T19:29:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 19, - "modify": 33, - "delete": 0, - "area": 0.000214416843499977, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 28, - "theme": "grb", - "answer": 1, - "import": 1, - "locale": "nl", - "imagery": "osm", - "conflation": 12 - }, - "id": 118524561 - } - }, - { - "id": 118521492, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5565103, - 44.826238 - ], - [ - -0.556223, - 44.826238 - ], - [ - -0.556223, - 44.8270348 - ], - [ - -0.5565103, - 44.8270348 - ], - [ - -0.5565103, - 44.826238 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-15T17:53:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 2.28920640000961e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 11, - "create": 1, - "locale": "fr", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_50m": 11 - }, - "id": 118521492 - } - }, - { - "id": 118517174, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4400511, - 50.9323997 - ], - [ - 5.4444424, - 50.9323997 - ], - [ - 5.4444424, - 50.9337487 - ], - [ - 5.4400511, - 50.9337487 - ], - [ - 5.4400511, - 50.9323997 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-15T15:52:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 101, - "modify": 247, - "delete": 4, - "area": 0.00000592386370002065, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 217, - "theme": "grb", - "delete": 4, - "import": 18, - "locale": "nl", - "imagery": "osm", - "conflation": 60 - }, - "id": 118517174 - } - }, - { - "id": 118517083, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4405195, - 50.9315404 - ], - [ - 5.442817, - 50.9315404 - ], - [ - 5.442817, - 50.9325443 - ], - [ - 5.4405195, - 50.9325443 - ], - [ - 5.4405195, - 50.9315404 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-15T15:49:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 69, - "modify": 102, - "delete": 4, - "area": 0.00000230646025000147, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 88, - "theme": "grb", - "delete": 4, - "import": 9, - "locale": "nl", - "imagery": "osm", - "conflation": 28 - }, - "id": 118517083 - } - }, - { - "id": 118517078, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-15T15:49:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118517078 - } - }, - { - "id": 118517074, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-15T15:49:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118517074 - } - }, - { - "id": 118517068, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-15T15:49:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118517068 - } - }, - { - "id": 118516791, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4322072, - 50.9255292 - ], - [ - 5.4433236, - 50.9255292 - ], - [ - 5.4433236, - 50.9319836 - ], - [ - 5.4322072, - 50.9319836 - ], - [ - 5.4322072, - 50.9255292 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-15T15:42:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 152, - "modify": 165, - "delete": 5, - "area": 0.0000717496921600331, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 146, - "theme": "grb", - "delete": 5, - "import": 29, - "locale": "nl", - "imagery": "osm", - "conflation": 38 - }, - "id": 118516791 - } - }, - { - "id": 118513998, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2134326, - 51.2049828 - ], - [ - 3.2134326, - 51.2049828 - ], - [ - 3.2134326, - 51.2049828 - ], - [ - 3.2134326, - 51.2049828 - ], - [ - 3.2134326, - 51.2049828 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.17.0-alpha-3", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-15T14:28:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 5, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/shops.html", - "theme": "shops", - "answer": 6, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 2, - "change_within_5000m": 4 - }, - "id": 118513998 - } - }, - { - "id": 118513576, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1097819, - 50.7415797 - ], - [ - 4.1097819, - 50.7415797 - ], - [ - 4.1097819, - 50.7415797 - ], - [ - 4.1097819, - 50.7415797 - ], - [ - 4.1097819, - 50.7415797 - ] - ] - ] - }, - "properties": { - "check_user": "jospyck", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Ce_", - "uid": "15322395", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-15T14:17:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-15T14:36:08.662655Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "add-image": 1 - }, - "id": 118513576 - } - }, - { - "id": 118512905, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2155716, - 51.2047105 - ], - [ - 3.2155716, - 51.2047105 - ], - [ - 3.2155716, - 51.2047105 - ], - [ - 3.2155716, - 51.2047105 - ], - [ - 3.2155716, - 51.2047105 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-15T13:59:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 7 - }, - "id": 118512905 - } - }, - { - "id": 118512295, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4312985, - 50.9235708 - ], - [ - 5.437657, - 50.9235708 - ], - [ - 5.437657, - 50.9259151 - ], - [ - 5.4312985, - 50.9259151 - ], - [ - 5.4312985, - 50.9235708 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-15T13:42:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 269, - "modify": 208, - "delete": 0, - "area": 0.0000149062315499825, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 185, - "theme": "grb", - "import": 43, - "locale": "nl", - "imagery": "osm", - "conflation": 46 - }, - "id": 118512295 - } - }, - { - "id": 118512258, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4369566, - 50.9253045 - ], - [ - 5.4384496, - 50.9253045 - ], - [ - 5.4384496, - 50.9261287 - ], - [ - 5.4369566, - 50.9261287 - ], - [ - 5.4369566, - 50.9253045 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-15T13:41:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 52, - "modify": 47, - "delete": 0, - "area": 0.00000123053059999508, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 44, - "theme": "grb", - "import": 7, - "locale": "nl", - "imagery": "osm", - "conflation": 6 - }, - "id": 118512258 - } - }, - { - "id": 118512257, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4088274, - 50.9520654 - ], - [ - 5.5318871, - 50.9520654 - ], - [ - 5.5318871, - 50.9826053 - ], - [ - 5.4088274, - 50.9826053 - ], - [ - 5.4088274, - 50.9520654 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Michael Didderiens", - "uid": "15281757", - "editor": "MapComplete 0.16.7", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-15T13:41:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 0, - "delete": 0, - "area": 0.0037582309320301, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 4, - "locale": "nl", - "imagery": "osm" - }, - "id": 118512257 - } - }, - { - "id": 118511602, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5206506, - 51.1257608 - ], - [ - 5.5251692, - 51.1257608 - ], - [ - 5.5251692, - 51.1278536 - ], - [ - 5.5206506, - 51.1278536 - ], - [ - 5.5206506, - 51.1257608 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-15T13:24:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 105, - "modify": 211, - "delete": 2, - "area": 0.00000945652607999887, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 184, - "theme": "grb", - "answer": 1, - "delete": 2, - "import": 9, - "locale": "nl", - "imagery": "osm", - "conflation": 52 - }, - "id": 118511602 - } - }, - { - "id": 118511107, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.5670295, - 45.5252685 - ], - [ - 14.5196027, - 45.5252685 - ], - [ - 14.5196027, - 46.0878809 - ], - [ - 13.5670295, - 46.0878809 - ], - [ - 13.5670295, - 45.5252685 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "StefanB", - "uid": "3834", - "editor": "MapComplete 0.16.8", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-15T13:09:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 342, - "delete": 0, - "area": 0.535929494227679, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 506, - "locale": "en", - "imagery": "osm" - }, - "id": 118511107 - } - }, - { - "id": 118510679, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4351923, - 50.9398675 - ], - [ - 5.4351923, - 50.9398675 - ], - [ - 5.4351923, - 50.9398675 - ], - [ - 5.4351923, - 50.9398675 - ], - [ - 5.4351923, - 50.9398675 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.7", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-15T12:57:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/nature", - "theme": "nature", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 2 - }, - "id": 118510679 - } - }, - { - "id": 118510502, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1144671, - 38.8332691 - ], - [ - 0.1144715, - 38.8332691 - ], - [ - 0.1144715, - 38.833498 - ], - [ - 0.1144671, - 38.833498 - ], - [ - 0.1144671, - 38.8332691 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.16.7", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-15T12:52:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 1.00715999998366e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/entrances.html", - "theme": "entrances", - "answer": 3, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 3 - }, - "id": 118510502 - } - }, - { - "id": 118510076, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.16.7", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-15T12:41:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 118510076 - } - }, - { - "id": 118509959, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "'t Kroonrad", - "uid": "15316179", - "editor": "MapComplete 0.16.7", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-15T12:37:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118509959 - } - }, - { - "id": 118509934, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5354477, - 50.9555309 - ], - [ - 5.5354477, - 50.9555309 - ], - [ - 5.5354477, - 50.9555309 - ], - [ - 5.5354477, - 50.9555309 - ], - [ - 5.5354477, - 50.9555309 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.7", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-15T12:36:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 4, - "locale": "nl", - "imagery": "osm" - }, - "id": 118509934 - } - }, - { - "id": 118509928, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.017831, - 51.0027831 - ], - [ - 5.0179195, - 51.0027831 - ], - [ - 5.0179195, - 51.0027992 - ], - [ - 5.017831, - 51.0027992 - ], - [ - 5.017831, - 51.0027831 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "'t Kroonrad", - "uid": "15316179", - "editor": "MapComplete 0.16.7", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-15T12:36:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 10, - "delete": 0, - "area": 1.42484999966433e-9, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 15, - "create": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 118509928 - } - }, - { - "id": 118509349, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0178766, - 51.0028135 - ], - [ - 5.0178766, - 51.0028135 - ], - [ - 5.0178766, - 51.0028135 - ], - [ - 5.0178766, - 51.0028135 - ], - [ - 5.0178766, - 51.0028135 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "'t Kroonrad", - "uid": "15316179", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-15T12:19:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 5, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 9, - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 118509349 - } - }, - { - "id": 118507695, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9204159, - 50.8167443 - ], - [ - 3.9204159, - 50.8167443 - ], - [ - 3.9204159, - 50.8167443 - ], - [ - 3.9204159, - 50.8167443 - ], - [ - 3.9204159, - 50.8167443 - ] - ] - ] - }, - "properties": { - "check_user": "L'imaginaire", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Logies De Boskouter", - "uid": "15276486", - "editor": "MapComplete 0.16.7", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-15T11:34:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-15T12:23:56.373122Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_within_25m": 5 - }, - "id": 118507695 - } - }, - { - "id": 118507463, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1125982, - 38.83466 - ], - [ - 0.1128593, - 38.83466 - ], - [ - 0.1128593, - 38.8346995 - ], - [ - 0.1125982, - 38.8346995 - ], - [ - 0.1125982, - 38.83466 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.16.7", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-15T11:28:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 5, - "delete": 0, - "area": 1.03134499999342e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 9, - "create": 2, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_100m": 9 - }, - "id": 118507463 - } - }, - { - "id": 118507410, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.16.7", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-15T11:26:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 2, - "locale": "en", - "imagery": "osm", - "change_within_50m": 2 - }, - "id": 118507410 - } - }, - { - "id": 118507371, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.16.7", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-15T11:25:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118507371 - } - }, - { - "id": 118507367, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.16.7", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-15T11:25:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118507367 - } - }, - { - "id": 118506235, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4370192, - 50.9259321 - ], - [ - 5.4439327, - 50.9259321 - ], - [ - 5.4439327, - 50.9309198 - ], - [ - 5.4370192, - 50.9309198 - ], - [ - 5.4370192, - 50.9259321 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.7", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-15T10:56:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 492, - "modify": 1155, - "delete": 3, - "area": 0.0000344824639500087, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 1013, - "theme": "grb", - "delete": 3, - "import": 78, - "locale": "nl", - "imagery": "osm", - "conflation": 284 - }, - "id": 118506235 - } - }, - { - "id": 118505771, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4394167, - 50.9282982 - ], - [ - 5.4409517, - 50.9282982 - ], - [ - 5.4409517, - 50.929627 - ], - [ - 5.4394167, - 50.929627 - ], - [ - 5.4394167, - 50.9282982 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.7", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-15T10:45:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 14, - "modify": 134, - "delete": 5, - "area": 0.00000203970800000548, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 113, - "theme": "grb", - "delete": 5, - "import": 4, - "locale": "nl", - "imagery": "osm", - "conflation": 42 - }, - "id": 118505771 - } - }, - { - "id": 118505486, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4375505, - 50.9280924 - ], - [ - 5.4398457, - 50.9280924 - ], - [ - 5.4398457, - 50.929438 - ], - [ - 5.4375505, - 50.929438 - ], - [ - 5.4375505, - 50.9280924 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.7", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-15T10:37:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 22, - "modify": 223, - "delete": 4, - "area": 0.00000308842112000092, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 194, - "theme": "grb", - "delete": 4, - "import": 5, - "locale": "nl", - "imagery": "osm", - "conflation": 58 - }, - "id": 118505486 - } - }, - { - "id": 118505128, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4371773, - 50.9265953 - ], - [ - 5.4395753, - 50.9265953 - ], - [ - 5.4395753, - 50.928231 - ], - [ - 5.4371773, - 50.928231 - ], - [ - 5.4371773, - 50.9265953 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.7", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-15T10:30:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 49, - "modify": 304, - "delete": 20, - "area": 0.00000392240859998531, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 263, - "theme": "grb", - "delete": 20, - "import": 11, - "locale": "nl", - "imagery": "osm", - "conflation": 82 - }, - "id": 118505128 - } - }, - { - "id": 118504760, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8472569, - 50.47587 - ], - [ - 4.8475663, - 50.47587 - ], - [ - 4.8475663, - 50.4762499 - ], - [ - 4.8472569, - 50.4762499 - ], - [ - 4.8472569, - 50.47587 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "rmic", - "uid": "805306", - "editor": "MapComplete 0.16.7", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-15T10:22:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.17541059999885e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "answer": 2, - "locale": "fr", - "imagery": "HDM_HOT" - }, - "id": 118504760 - } - }, - { - "id": 118504623, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0360647, - 50.9400314 - ], - [ - 4.0512186, - 50.9400314 - ], - [ - 4.0512186, - 50.950597 - ], - [ - 4.0360647, - 50.950597 - ], - [ - 4.0360647, - 50.9400314 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "WimBau", - "uid": "15313167", - "editor": "MapComplete 0.16.7", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 2, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-15T10:18:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 21, - "modify": 73, - "delete": 0, - "area": 0.00016011004584, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-22T13:53:13.120331Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 117, - "create": 21, - "locale": "nl", - "imagery": "osm", - "add-image": 27, - "move:node/9580330930": "improve_accuracy" - }, - "id": 118504623 - } - }, - { - "id": 118504497, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4341959, - 50.9250267 - ], - [ - 5.4405302, - 50.9250267 - ], - [ - 5.4405302, - 50.9305874 - ], - [ - 5.4341959, - 50.9305874 - ], - [ - 5.4341959, - 50.9250267 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.7", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-15T10:15:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 224, - "modify": 315, - "delete": 13, - "area": 0.0000352231420100275, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 280, - "theme": "grb", - "delete": 13, - "import": 40, - "locale": "nl", - "imagery": "osm", - "conflation": 70 - }, - "id": 118504497 - } - }, - { - "id": 118501930, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9706113, - 51.3037531 - ], - [ - 5.0229024, - 51.3037531 - ], - [ - 5.0229024, - 51.3381883 - ], - [ - 4.9706113, - 51.3381883 - ], - [ - 4.9706113, - 51.3037531 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Stinus_Clasius", - "uid": "1086503", - "editor": "MapComplete 0.16.7", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 3, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-15T09:09:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0.00180065448671988, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 4, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 118501930 - } - }, - { - "id": 118498050, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7738502, - 51.0847928 - ], - [ - 3.7738502, - 51.0847928 - ], - [ - 3.7738502, - 51.0847928 - ], - [ - 3.7738502, - 51.0847928 - ], - [ - 3.7738502, - 51.0847928 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Michiel Inter", - "uid": "15318935", - "editor": "MapComplete 0.16.7", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-15T07:24:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 118498050 - } - }, - { - "id": 118497313, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8538683, - 50.9505404 - ], - [ - 4.0658158, - 50.9505404 - ], - [ - 4.0658158, - 51.0084316 - ], - [ - 3.8538683, - 51.0084316 - ], - [ - 3.8538683, - 50.9505404 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "WimBau", - "uid": "15313167", - "editor": "MapComplete 0.16.7", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-15T07:02:07Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 7, - "modify": 24, - "delete": 0, - "area": 0.0122698951120001, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 45, - "create": 7, - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 118497313 - } - }, - { - "id": 118494501, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5630134, - 50.6593095 - ], - [ - 4.5637775, - 50.6593095 - ], - [ - 4.5637775, - 50.6598406 - ], - [ - 4.5630134, - 50.6598406 - ], - [ - 4.5630134, - 50.6593095 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "escada", - "uid": "436365", - "editor": "MapComplete 0.16.7", - "comment": "Adding data with #MapComplete for theme #cyclestreets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-15T05:18:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 4.05813510002423e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclestreets.html", - "theme": "cyclestreets", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118494501 - } - }, - { - "id": 118488666, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0177962, - 51.0028194 - ], - [ - 5.0178106, - 51.0028194 - ], - [ - 5.0178106, - 51.0028321 - ], - [ - 5.0177962, - 51.0028321 - ], - [ - 5.0177962, - 51.0028194 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "'t Kroonrad", - "uid": "15316179", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 1, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-14T22:36:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 1.82879999982451e-10, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 8, - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "move:node/9579359201": "improve_accuracy" - }, - "id": 118488666 - } - }, - { - "id": 118488492, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.933721, - 49.205931 - ], - [ - -122.93362, - 49.205931 - ], - [ - -122.93362, - 49.2060948 - ], - [ - -122.933721, - 49.2060948 - ], - [ - -122.933721, - 49.205931 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Zarr", - "uid": "6670496", - "editor": "MapComplete 0.16.7", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-14T22:30:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.65438000004153e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/personal.html", - "theme": "personal", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 118488492 - } - }, - { - "id": 118488198, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.9452348, - 49.2013656 - ], - [ - -122.9451871, - 49.2013656 - ], - [ - -122.9451871, - 49.2013789 - ], - [ - -122.9452348, - 49.2013789 - ], - [ - -122.9452348, - 49.2013656 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Zarr", - "uid": "6670496", - "editor": "MapComplete 0.16.7", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-14T22:18:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 6.34409999905446e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/personal.html", - "move": 1, - "theme": "personal", - "locale": "en", - "imagery": "osm", - "move:node/9432790097": "improve_accuracy" - }, - "id": 118488198 - } - }, - { - "id": 118487962, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.9429364, - 49.2011073 - ], - [ - -122.937016, - 49.2011073 - ], - [ - -122.937016, - 49.2042423 - ], - [ - -122.9429364, - 49.2042423 - ], - [ - -122.9429364, - 49.2011073 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Zarr", - "uid": "6670496", - "editor": "MapComplete 0.16.7", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-14T22:08:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000185604539999823, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/personal.html", - "theme": "personal", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 118487962 - } - }, - { - "id": 118487957, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1283019, - 51.0235359 - ], - [ - 3.1504677, - 51.0235359 - ], - [ - 3.1504677, - 51.0275662 - ], - [ - 3.1283019, - 51.0275662 - ], - [ - 3.1283019, - 51.0235359 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "rudi3324", - "uid": "15316049", - "editor": "MapComplete 0.16.7", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 1, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-14T22:08:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 7, - "modify": 0, - "delete": 0, - "area": 0.0000893348237400831, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "create": 7, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 118487957 - } - }, - { - "id": 118484793, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5129932, - 51.1050033 - ], - [ - 5.5176304, - 51.1050033 - ], - [ - 5.5176304, - 51.1056927 - ], - [ - 5.5129932, - 51.1056927 - ], - [ - 5.5129932, - 51.1050033 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.7", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-14T20:16:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 5, - "modify": 46, - "delete": 2, - "area": 0.00000319688567999425, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 38, - "theme": "grb", - "answer": 2, - "delete": 2, - "import": 1, - "locale": "nl", - "imagery": "osm", - "conflation": 14, - "change_over_5000m": 3 - }, - "id": 118484793 - } - }, - { - "id": 118484496, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5129872, - 51.1052985 - ], - [ - 5.5130846, - 51.1052985 - ], - [ - 5.5130846, - 51.1164537 - ], - [ - 5.5129872, - 51.1164537 - ], - [ - 5.5129872, - 51.1052985 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-14T20:06:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0.00000108651647999508, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 5, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "add-image": 2, - "change_over_5000m": 8 - }, - "id": 118484496 - } - }, - { - "id": 118483875, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8745012, - 50.7701623 - ], - [ - 4.0037093, - 50.7701623 - ], - [ - 4.0037093, - 50.861202 - ], - [ - 3.8745012, - 50.861202 - ], - [ - 3.8745012, - 50.7701623 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "WimBau", - "uid": "15313167", - "editor": "MapComplete 0.16.7", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-14T19:46:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 13, - "modify": 61, - "delete": 0, - "area": 0.0117630666615695, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 2, - "theme": "toerisme_vlaanderen", - "answer": 79, - "create": 13, - "locale": "nl", - "imagery": "osm", - "add-image": 16, - "move:node/9579123619": "improve_accuracy", - "move:node/9579250644": "improve_accuracy" - }, - "id": 118483875 - } - }, - { - "id": 118483786, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "WimBau", - "uid": "15313167", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-14T19:43:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 118483786 - } - }, - { - "id": 118483753, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2241441, - 51.2077668 - ], - [ - 3.2247866, - 51.2077668 - ], - [ - 3.2247866, - 51.2100561 - ], - [ - 3.2241441, - 51.2100561 - ], - [ - 3.2241441, - 51.2077668 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #bicycle_rental", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-14T19:41:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000147087524999989, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "http://127.0.0.1:1234/theme.html", - "theme": "bicycle_rental", - "answer": 3, - "locale": "nl", - "imagery": "osm" - }, - "id": 118483753 - } - }, - { - "id": 118482999, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 41.076271, - 37.8176932 - ], - [ - 41.076271, - 37.8176932 - ], - [ - 41.076271, - 37.8176932 - ], - [ - 41.076271, - 37.8176932 - ], - [ - 41.076271, - 37.8176932 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Nesim", - "uid": "1386706", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-14T19:16:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 118482999 - } - }, - { - "id": 118482886, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.67432, - 40.7144083 - ], - [ - 0.716153, - 40.7144083 - ], - [ - 0.716153, - 40.7800118 - ], - [ - 0.67432, - 40.7800118 - ], - [ - 0.67432, - 40.7144083 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jcn706", - "uid": "351940", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-14T19:12:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.00274439121549977, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/campersite.html", - "theme": "campersite", - "answer": 10, - "locale": "fr", - "imagery": "osm", - "change_over_5000m": 4, - "change_within_25m": 6 - }, - "id": 118482886 - } - }, - { - "id": 118482232, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9982831, - 50.8718109 - ], - [ - 4.0669584, - 50.8718109 - ], - [ - 4.0669584, - 50.9258229 - ], - [ - 3.9982831, - 50.9258229 - ], - [ - 3.9982831, - 50.8718109 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "WimBau", - "uid": "15313167", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-14T18:53:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 11, - "modify": 40, - "delete": 1, - "area": 0.0037092903036, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 56, - "create": 11, - "locale": "nl", - "imagery": "osm", - "deletion": 1, - "add-image": 11, - "deletion:node/9578947698": "duplicate" - }, - "id": 118482232 - } - }, - { - "id": 118481877, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5118492, - 51.1255159 - ], - [ - 5.5414062, - 51.1255159 - ], - [ - 5.5414062, - 51.1532328 - ], - [ - 5.5118492, - 51.1532328 - ], - [ - 5.5118492, - 51.1255159 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-14T18:42:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 13, - "delete": 0, - "area": 0.000819228413299823, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 18, - "create": 4, - "locale": "nl", - "imagery": "AGIV", - "add-image": 5, - "change_over_5000m": 27 - }, - "id": 118481877 - } - }, - { - "id": 118480648, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 41.1303963, - 37.8966723 - ], - [ - 41.1303963, - 37.8966723 - ], - [ - 41.1303963, - 37.8966723 - ], - [ - 41.1303963, - 37.8966723 - ], - [ - 41.1303963, - 37.8966723 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Nesim", - "uid": "1386706", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-14T18:10:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 118480648 - } - }, - { - "id": 118480364, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 41.128613, - 37.8891871 - ], - [ - 41.128613, - 37.8891871 - ], - [ - 41.128613, - 37.8891871 - ], - [ - 41.128613, - 37.8891871 - ], - [ - 41.128613, - 37.8891871 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Nesim", - "uid": "1386706", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-14T18:03:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 118480364 - } - }, - { - "id": 118477544, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.826011, - 50.7826911 - ], - [ - 2.8842337, - 50.7826911 - ], - [ - 2.8842337, - 50.7874528 - ], - [ - 2.826011, - 50.7874528 - ], - [ - 2.826011, - 50.7826911 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Ambigirl", - "uid": "15314372", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-14T16:49:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 0.000277239030589766, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-26T10:47:10.492799Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "create": 2, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 118477544 - } - }, - { - "id": 118476072, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2403508, - 50.7335895 - ], - [ - 4.2421387, - 50.7335895 - ], - [ - 4.2421387, - 50.7346099 - ], - [ - 4.2403508, - 50.7346099 - ], - [ - 4.2403508, - 50.7335895 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-14T16:07:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000018243731600029, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 6, - "locale": "nl", - "imagery": "osm", - "change_within_5000m": 6 - }, - "id": 118476072 - } - }, - { - "id": 118474661, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.1331118, - 52.3943701 - ], - [ - 14.1331118, - 52.3943701 - ], - [ - 14.1331118, - 52.3943701 - ], - [ - 14.1331118, - 52.3943701 - ], - [ - 14.1331118, - 52.3943701 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Casi1980", - "uid": "13989376", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-14T15:29:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 118474661 - } - }, - { - "id": 118474613, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2579217, - 51.0947729 - ], - [ - 3.5037657, - 51.0947729 - ], - [ - 3.5037657, - 51.1385479 - ], - [ - 3.2579217, - 51.1385479 - ], - [ - 3.2579217, - 51.0947729 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-14T15:28:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0107618210999992, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 118474613 - } - }, - { - "id": 118474199, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.6038415, - 50.9167567 - ], - [ - 2.6301188, - 50.9167567 - ], - [ - 2.6301188, - 50.925408 - ], - [ - 2.6038415, - 50.925408 - ], - [ - 2.6038415, - 50.9167567 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-14T15:16:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3116, - "modify": 46, - "delete": 0, - "area": 0.000227332805489915, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 45, - "theme": "grb", - "import": 397, - "locale": "nl", - "imagery": "osm", - "conflation": 2 - }, - "id": 118474199 - } - }, - { - "id": 118473045, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0153892, - 51.4764115 - ], - [ - 0.0171848, - 51.4764115 - ], - [ - 0.0171848, - 51.4788238 - ], - [ - 0.0153892, - 51.4788238 - ], - [ - 0.0153892, - 51.4764115 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "endim8", - "uid": "13666626", - "editor": "MapComplete 0.17.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #uk_addresses", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-14T14:46:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.00000433152588000564, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/uk_addresses.html", - "theme": "uk_addresses", - "answer": 5, - "locale": "en", - "imagery": "osm" - }, - "id": 118473045 - } - }, - { - "id": 118471676, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0443903, - 50.9520384 - ], - [ - 4.0489098, - 50.9520384 - ], - [ - 4.0489098, - 50.9531369 - ], - [ - 4.0443903, - 50.9531369 - ], - [ - 4.0443903, - 50.9520384 - ] - ] - ] - }, - "properties": { - "check_user": "jospyck", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "WimBau", - "uid": "15313167", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-14T14:09:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6, - "modify": 25, - "delete": 0, - "area": 0.00000496467074998924, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-14T15:35:27.157477Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 28, - "create": 6, - "locale": "nl", - "imagery": "osm", - "add-image": 7 - }, - "id": 118471676 - } - }, - { - "id": 118471072, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.168353, - 47.8407103 - ], - [ - -4.168353, - 47.8407103 - ], - [ - -4.168353, - 47.8407103 - ], - [ - -4.168353, - 47.8407103 - ], - [ - -4.168353, - 47.8407103 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ydel", - "uid": "3842332", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-14T13:53:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 118471072 - } - }, - { - "id": 118469480, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.423047, - 50.9210968 - ], - [ - 5.4411297, - 50.9210968 - ], - [ - 5.4411297, - 50.9314386 - ], - [ - 5.423047, - 50.9314386 - ], - [ - 5.423047, - 50.9210968 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-14T13:04:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 761, - "modify": 1035, - "delete": 22, - "area": 0.000187007666859982, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 942, - "theme": "grb", - "delete": 22, - "import": 128, - "locale": "nl", - "imagery": "osm", - "conflation": 212 - }, - "id": 118469480 - } - }, - { - "id": 118468970, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4349325, - 50.9288552 - ], - [ - 5.4393715, - 50.9288552 - ], - [ - 5.4393715, - 50.9315662 - ], - [ - 5.4349325, - 50.9315662 - ], - [ - 5.4349325, - 50.9288552 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-14T12:50:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 89, - "modify": 327, - "delete": 9, - "area": 0.0000120341289999897, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 283, - "theme": "grb", - "delete": 9, - "import": 18, - "locale": "nl", - "imagery": "osm", - "conflation": 88 - }, - "id": 118468970 - } - }, - { - "id": 118468672, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.1652527, - 52.4488826 - ], - [ - 14.1652527, - 52.4488826 - ], - [ - 14.1652527, - 52.4488826 - ], - [ - 14.1652527, - 52.4488826 - ], - [ - 14.1652527, - 52.4488826 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Casi1980", - "uid": "13989376", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-14T12:41:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 118468672 - } - }, - { - "id": 118466411, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4308766, - 50.9255786 - ], - [ - 5.4397654, - 50.9255786 - ], - [ - 5.4397654, - 50.9321101 - ], - [ - 5.4308766, - 50.9321101 - ], - [ - 5.4308766, - 50.9255786 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-14T11:34:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 58, - "modify": 970, - "delete": 27, - "area": 0.0000580571972000069, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 863, - "theme": "grb", - "delete": 27, - "import": 10, - "locale": "nl", - "imagery": "osm", - "conflation": 222 - }, - "id": 118466411 - } - }, - { - "id": 118461165, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.0103434, - 51.4387381 - ], - [ - 7.0108673, - 51.4387381 - ], - [ - 7.0108673, - 51.4391613 - ], - [ - 7.0103434, - 51.4391613 - ], - [ - 7.0103434, - 51.4387381 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "thschick", - "uid": "2753036", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-14T09:04:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 2.2171448000015e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_100m": 1 - }, - "id": 118461165 - } - }, - { - "id": 118459528, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.0108294, - 51.4393695 - ], - [ - 7.0128489, - 51.4393695 - ], - [ - 7.0128489, - 51.4396793 - ], - [ - 7.0108294, - 51.4396793 - ], - [ - 7.0108294, - 51.4393695 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "thschick", - "uid": "2753036", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-14T08:21:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 6.25641100007266e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/entrances.html", - "theme": "entrances", - "answer": 3, - "locale": "de", - "imagery": "osm", - "change_within_25m": 1, - "change_within_500m": 2 - }, - "id": 118459528 - } - }, - { - "id": 118459394, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.01076, - 51.4393456 - ], - [ - 7.01076, - 51.4393456 - ], - [ - 7.01076, - 51.4393456 - ], - [ - 7.01076, - 51.4393456 - ], - [ - 7.01076, - 51.4393456 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "thschick", - "uid": "2753036", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-14T08:18:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_50m": 1 - }, - "id": 118459394 - } - }, - { - "id": 118456364, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2185042, - 51.2037389 - ], - [ - 3.2377943, - 51.2037389 - ], - [ - 3.2377943, - 51.2229216 - ], - [ - 3.2185042, - 51.2229216 - ], - [ - 3.2185042, - 51.2037389 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "VisitBruges", - "uid": "15310759", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-14T06:55:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 32, - "delete": 0, - "area": 0.000370036201270036, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-24T09:09:37.988234Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 37, - "create": 3, - "locale": "nl", - "imagery": "osm" - }, - "id": 118456364 - } - }, - { - "id": 118451315, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.1938738, - 53.1549237 - ], - [ - -1.1937056, - 53.1549237 - ], - [ - -1.1937056, - 53.1550236 - ], - [ - -1.1938738, - 53.1550236 - ], - [ - -1.1938738, - 53.1549237 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "doublah", - "uid": "4948143", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-14T02:41:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 1.68031800003681e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 6, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_5000m": 6 - }, - "id": 118451315 - } - }, - { - "id": 118451289, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.1938738, - 53.1549237 - ], - [ - -1.1937056, - 53.1549237 - ], - [ - -1.1937056, - 53.1550236 - ], - [ - -1.1938738, - 53.1550236 - ], - [ - -1.1938738, - 53.1549237 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "doublah", - "uid": "4948143", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-14T02:39:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 1.68031800003681e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_5000m": 2 - }, - "id": 118451289 - } - }, - { - "id": 118451144, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4765478, - 51.0288652 - ], - [ - 4.4766176, - 51.0288652 - ], - [ - 4.4766176, - 51.0288854 - ], - [ - 4.4765478, - 51.0288854 - ], - [ - 4.4765478, - 51.0288652 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-14T02:30:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 2, - "area": 1.40996000011719e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "http://127.0.0.1:1234/theme.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "import": 2, - "locale": "nl", - "imagery": "osm", - "deletion": 2, - "import:node/9576684258": "source: https://osm.org/note/3023071", - "import:node/9576738884": "source: https://osm.org/note/3023071", - "deletion:node/9576684258": "testing point", - "deletion:node/9576738884": "testing point" - }, - "id": 118451144 - } - }, - { - "id": 118450888, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-14T02:15:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "http://127.0.0.1:1234/theme.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118450888 - } - }, - { - "id": 118445282, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.5556894, - 50.8839646 - ], - [ - 10.7457286, - 50.8839646 - ], - [ - 10.7457286, - 50.9795206 - ], - [ - 10.5556894, - 50.9795206 - ], - [ - 10.5556894, - 50.8839646 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "complete_gth", - "uid": "9837674", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-13T20:45:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 70, - "delete": 0, - "area": 0.0181593857952003, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 95, - "locale": "de", - "imagery": "osm" - }, - "id": 118445282 - } - }, - { - "id": 118445234, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.012898, - 49.4126348 - ], - [ - 11.012898, - 49.4126348 - ], - [ - 11.012898, - 49.4126348 - ], - [ - 11.012898, - 49.4126348 - ], - [ - 11.012898, - 49.4126348 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "P Kanzler", - "uid": "6173912", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-13T20:43:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 118445234 - } - }, - { - "id": 118443748, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7092939, - 51.0361902 - ], - [ - 3.709952, - 51.0361902 - ], - [ - 3.709952, - 51.0364194 - ], - [ - 3.7092939, - 51.0364194 - ], - [ - 3.7092939, - 51.0361902 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-13T19:52:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 1.50836519999781e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 5, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 6 - }, - "id": 118443748 - } - }, - { - "id": 118437254, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1600115, - 41.3600669 - ], - [ - 2.16722, - 41.3600669 - ], - [ - 2.16722, - 41.3641 - ], - [ - 2.1600115, - 41.3641 - ], - [ - 2.1600115, - 41.3600669 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Dinn0", - "uid": "14893874", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-13T16:37:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.0000290726013500063, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 5, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_25m": 1, - "change_within_50m": 4 - }, - "id": 118437254 - } - }, - { - "id": 118436939, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2157245, - 51.1970468 - ], - [ - 3.2192074, - 51.1970468 - ], - [ - 3.2192074, - 51.2045795 - ], - [ - 3.2157245, - 51.2045795 - ], - [ - 3.2157245, - 51.1970468 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-13T16:29:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 9, - "delete": 0, - "area": 0.0000262356408299977, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 12, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 1, - "change_within_5000m": 14 - }, - "id": 118436939 - } - }, - { - "id": 118431501, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2228492, - 51.2086252 - ], - [ - 3.2233343, - 51.2086252 - ], - [ - 3.2233343, - 51.2088339 - ], - [ - 3.2228492, - 51.2088339 - ], - [ - 3.2228492, - 51.2086252 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.17.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-13T14:19:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.01240370000772e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_500m": 1 - }, - "id": 118431501 - } - }, - { - "id": 118431030, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2175538, - 51.1969132 - ], - [ - 3.2231221, - 51.1969132 - ], - [ - 3.2231221, - 51.2087217 - ], - [ - 3.2175538, - 51.2087217 - ], - [ - 3.2175538, - 51.1969132 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-13T14:09:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 22, - "delete": 0, - "area": 0.0000657532705500014, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 34, - "create": 4, - "locale": "nl", - "imagery": "osm", - "add-image": 7, - "change_over_5000m": 4, - "change_within_25m": 17, - "change_within_50m": 14, - "change_within_100m": 6, - "change_within_500m": 4 - }, - "id": 118431030 - } - }, - { - "id": 118430760, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5303936, - 44.8382183 - ], - [ - -0.5303936, - 44.8382183 - ], - [ - -0.5303936, - 44.8382183 - ], - [ - -0.5303936, - 44.8382183 - ], - [ - -0.5303936, - 44.8382183 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-13T14:02:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 1, - "locale": "fr", - "imagery": "osm" - }, - "id": 118430760 - } - }, - { - "id": 118425866, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9986014, - 51.1310482 - ], - [ - 4.9990191, - 51.1310482 - ], - [ - 4.9990191, - 51.1311551 - ], - [ - 4.9986014, - 51.1311551 - ], - [ - 4.9986014, - 51.1310482 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-13T11:24:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 18, - "delete": 0, - "area": 4.46521299994367e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 16, - "theme": "grb", - "locale": "nl", - "imagery": "osm", - "conflation": 4 - }, - "id": 118425866 - } - }, - { - "id": 118422299, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.534592, - 50.9572326 - ], - [ - 5.5367934, - 50.9572326 - ], - [ - 5.5367934, - 50.9575349 - ], - [ - 5.534592, - 50.9575349 - ], - [ - 5.534592, - 50.9572326 - ] - ] - ] - }, - "properties": { - "check_user": "L'imaginaire", - "reasons": [ - { - "id": 41, - "name": "Software editor was not declared" - } - ], - "tags": [], - "features": [], - "user": "kersentaart", - "uid": "9812520", - "editor": null, - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-13T09:24:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 6.65483220002789e-7, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-13T18:15:50.140295Z", - "metadata": { - "theme": "toerisme_vlaanderen", - "import": 2, - "change_over_5000m": 2, - "import:node/9574672296": "source: https://osm.org/note/3023039", - "import:node/9574693847": "source: https://osm.org/note/3044323" - }, - "id": 118422299 - } - }, - { - "id": 118419134, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9970864, - 51.1233589 - ], - [ - 5.0167582, - 51.1233589 - ], - [ - 5.0167582, - 51.133623 - ], - [ - 4.9970864, - 51.133623 - ], - [ - 4.9970864, - 51.1233589 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-13T06:26:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 488, - "modify": 1853, - "delete": 29, - "area": 0.000201913322380013, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 1650, - "theme": "grb", - "answer": 5, - "delete": 29, - "import": 65, - "locale": "nl", - "imagery": "osm", - "conflation": 442 - }, - "id": 118419134 - } - }, - { - "id": 118415420, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8927031, - 50.7970801 - ], - [ - 3.8940033, - 50.7970801 - ], - [ - 3.8940033, - 50.797813 - ], - [ - 3.8927031, - 50.797813 - ], - [ - 3.8927031, - 50.7970801 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wegspotter", - "uid": "428001", - "editor": "MapComplete 0.17.0-alpha-1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-12T23:37:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 68, - "modify": 0, - "delete": 0, - "area": 9.52916579994416e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb", - "theme": "grb", - "import": 10, - "locale": "nl", - "imagery": "AGIVFlandersGRB" - }, - "id": 118415420 - } - }, - { - "id": 118415064, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.6076353, - 54.8545089 - ], - [ - -1.603269, - 54.8545089 - ], - [ - -1.603269, - 54.8567974 - ], - [ - -1.6076353, - 54.8567974 - ], - [ - -1.6076353, - 54.8545089 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "confusedbuffalo", - "uid": "242345", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-12T23:13:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 18, - "delete": 0, - "area": 0.00000999227754999489, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "answer": 22, - "locale": "en", - "imagery": "osm" - }, - "id": 118415064 - } - }, - { - "id": 118410404, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.0953947, - 52.3908416 - ], - [ - 14.1640645, - 52.3908416 - ], - [ - 14.1640645, - 52.4240863 - ], - [ - 14.0953947, - 52.4240863 - ], - [ - 14.0953947, - 52.3908416 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Casi1980", - "uid": "13989376", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-12T19:39:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 9, - "modify": 4, - "delete": 0, - "area": 0.00228290690005983, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 118410404 - } - }, - { - "id": 118403754, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3672267, - 50.8145768 - ], - [ - 4.3672284, - 50.8145768 - ], - [ - 4.3672284, - 50.8145928 - ], - [ - 4.3672267, - 50.8145928 - ], - [ - 4.3672267, - 50.8145768 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "StefDeGreef", - "uid": "1860737", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-12T16:11:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 2.7200000009025e-11, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "move": 1, - "theme": "cyclofix", - "answer": 8, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 10, - "move:node/9165158595": "improve_accuracy" - }, - "id": 118403754 - } - }, - { - "id": 118401351, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.949057, - 50.9080911 - ], - [ - 4.9965039, - 50.9080911 - ], - [ - 4.9965039, - 50.9251341 - ], - [ - 4.949057, - 50.9251341 - ], - [ - 4.949057, - 50.9080911 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-12T15:04:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2228, - "modify": 69, - "delete": 4, - "area": 0.00080863751670006, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 55, - "theme": "grb", - "answer": 7, - "delete": 4, - "import": 257, - "locale": "nl", - "imagery": "osm", - "conflation": 20 - }, - "id": 118401351 - } - }, - { - "id": 118401126, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4497273, - 52.4729002 - ], - [ - 13.4497273, - 52.4729002 - ], - [ - 13.4497273, - 52.4729002 - ], - [ - 13.4497273, - 52.4729002 - ], - [ - 13.4497273, - 52.4729002 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "tordans", - "uid": "11881", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-12T14:59:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 118401126 - } - }, - { - "id": 118399034, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7132296, - 50.8981473 - ], - [ - 2.7207809, - 50.8981473 - ], - [ - 2.7207809, - 50.901106 - ], - [ - 2.7132296, - 50.901106 - ], - [ - 2.7132296, - 50.8981473 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-12T13:56:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 3, - "delete": 0, - "area": 0.0000223420313100043, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 10, - "create": 2, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 10 - }, - "id": 118399034 - } - }, - { - "id": 118398322, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8121588, - 51.1936374 - ], - [ - 4.8121588, - 51.1936374 - ], - [ - 4.8121588, - 51.1936374 - ], - [ - 4.8121588, - 51.1936374 - ], - [ - 4.8121588, - 51.1936374 - ] - ] - ] - }, - "properties": { - "check_user": "L'imaginaire", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Salambre", - "uid": "15272429", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-12T13:33:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-13T07:37:51.167869Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118398322 - } - }, - { - "id": 118398167, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-12T13:28:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/", - "theme": "aed", - "answer": 6, - "create": 1, - "locale": "nl", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 7 - }, - "id": 118398167 - } - }, - { - "id": 118398166, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-12T13:28:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/", - "theme": "benches", - "create": 1, - "locale": "nl", - "change_over_5000m": 1 - }, - "id": 118398166 - } - }, - { - "id": 118398164, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-12T13:28:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/", - "theme": "aed", - "answer": 6, - "create": 1, - "locale": "nl", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 7 - }, - "id": 118398164 - } - }, - { - "id": 118398162, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-12T13:28:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/", - "theme": "benches", - "create": 1, - "locale": "nl", - "change_over_5000m": 1 - }, - "id": 118398162 - } - }, - { - "id": 118398152, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-12T13:27:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/", - "theme": "aed", - "answer": 6, - "create": 1, - "locale": "nl", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 7 - }, - "id": 118398152 - } - }, - { - "id": 118398151, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-12T13:27:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/", - "theme": "aed", - "answer": 6, - "create": 1, - "locale": "nl", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 7 - }, - "id": 118398151 - } - }, - { - "id": 118398150, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5562629, - 53.2301499 - ], - [ - 6.5562629, - 53.2301499 - ], - [ - 6.5562629, - 53.2301499 - ], - [ - 6.5562629, - 53.2301499 - ], - [ - 6.5562629, - 53.2301499 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-12T13:27:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/", - "theme": "benches", - "create": 1, - "locale": "nl", - "change_over_5000m": 1 - }, - "id": 118398150 - } - }, - { - "id": 118396864, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.504258, - 47.4446216 - ], - [ - -0.504258, - 47.4446216 - ], - [ - -0.504258, - 47.4446216 - ], - [ - -0.504258, - 47.4446216 - ], - [ - -0.504258, - 47.4446216 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ltrlg", - "uid": "5035134", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-12T12:50:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 2, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_within_5000m": 3 - }, - "id": 118396864 - } - }, - { - "id": 118393302, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.9198734, - 50.6826348 - ], - [ - 10.9229019, - 50.6826348 - ], - [ - 10.9229019, - 50.6838749 - ], - [ - 10.9198734, - 50.6838749 - ], - [ - 10.9198734, - 50.6826348 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cMartin", - "uid": "128287", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-12T10:46:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0.00000375564284998951, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 3, - "create": 1, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 118393302 - } - }, - { - "id": 118389625, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3365213, - 51.0874552 - ], - [ - 3.3368106, - 51.0874552 - ], - [ - 3.3368106, - 51.0876473 - ], - [ - 3.3365213, - 51.0876473 - ], - [ - 3.3365213, - 51.0874552 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-12T08:32:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 5.55745299999529e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118389625 - } - }, - { - "id": 118388467, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 20.9489759, - 52.2016344 - ], - [ - 20.9624177, - 52.2016344 - ], - [ - 20.9624177, - 52.208925 - ], - [ - 20.9489759, - 52.208925 - ], - [ - 20.9489759, - 52.2016344 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Asteliks", - "uid": "9420959", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-12T07:29:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 11, - "delete": 0, - "area": 0.0000979987870799585, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/personal.html", - "theme": "personal", - "answer": 11, - "locale": "en", - "imagery": "osm" - }, - "id": 118388467 - } - }, - { - "id": 118388310, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1552405, - 50.805731 - ], - [ - 4.1552405, - 50.805731 - ], - [ - 4.1552405, - 50.805731 - ], - [ - 4.1552405, - 50.805731 - ], - [ - 4.1552405, - 50.805731 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-12T07:18:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 118388310 - } - }, - { - "id": 118386966, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9804107, - 50.9189334 - ], - [ - 5.0039626, - 50.9189334 - ], - [ - 5.0039626, - 50.92793 - ], - [ - 4.9804107, - 50.92793 - ], - [ - 4.9804107, - 50.9189334 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-12T05:34:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1854, - "modify": 258, - "delete": 0, - "area": 0.000211887023540078, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 221, - "theme": "grb", - "answer": 9, - "import": 229, - "locale": "nl", - "imagery": "osm", - "conflation": 64 - }, - "id": 118386966 - } - }, - { - "id": 118377606, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3381958, - 51.0862626 - ], - [ - 3.3381958, - 51.0862626 - ], - [ - 3.3381958, - 51.0862626 - ], - [ - 3.3381958, - 51.0862626 - ], - [ - 3.3381958, - 51.0862626 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-7421525825", - "osm_id": 7421525825, - "reasons": [ - 43 - ], - "version": 5, - "primary_tags": { - "amenity": "binoculars" - } - } - ], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #binoculars", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-11T19:56:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/binoculars.html", - "theme": "binoculars", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1 - }, - "id": 118377606 - } - }, - { - "id": 118377145, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3433464, - 51.0760974 - ], - [ - 3.3766525, - 51.0760974 - ], - [ - 3.3766525, - 51.0793616 - ], - [ - 3.3433464, - 51.0793616 - ], - [ - 3.3433464, - 51.0760974 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-11T19:42:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.00010871777161989, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/nature.html", - "theme": "nature", - "answer": 4, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 6 - }, - "id": 118377145 - } - }, - { - "id": 118376992, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.4909855, - 46.071118 - ], - [ - 14.4909855, - 46.071118 - ], - [ - 14.4909855, - 46.071118 - ], - [ - 14.4909855, - 46.071118 - ], - [ - 14.4909855, - 46.071118 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "StefanB", - "uid": "3834", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-11T19:37:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed", - "theme": "aed", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 118376992 - } - }, - { - "id": 118374773, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6166235, - 50.7778042 - ], - [ - 4.6807323, - 50.7778042 - ], - [ - 4.6807323, - 50.8851029 - ], - [ - 4.6166235, - 50.8851029 - ], - [ - 4.6166235, - 50.7778042 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Els Q", - "uid": "15213418", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-11T18:24:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 13, - "modify": 5, - "delete": 0, - "area": 0.00687879089856004, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-24T08:14:53.674857Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 14, - "create": 13, - "locale": "nl", - "imagery": "osm", - "move:node/9571364716": "improve_accuracy" - }, - "id": 118374773 - } - }, - { - "id": 118374322, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.338839, - 51.0866906 - ], - [ - 3.338839, - 51.0866906 - ], - [ - 3.338839, - 51.0866906 - ], - [ - 3.338839, - 51.0866906 - ], - [ - 3.338839, - 51.0866906 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-11T18:06:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 118374322 - } - }, - { - "id": 118370715, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3380263, - 51.0710812 - ], - [ - 3.3983414, - 51.0710812 - ], - [ - 3.3983414, - 51.0906272 - ], - [ - 3.3380263, - 51.0906272 - ], - [ - 3.3380263, - 51.0710812 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-11T16:30:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 30, - "delete": 0, - "area": 0.0011789189445999, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 28, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 13 - }, - "id": 118370715 - } - }, - { - "id": 118370544, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3422388, - 51.0713978 - ], - [ - 3.3716839, - 51.0713978 - ], - [ - 3.3716839, - 51.0943832 - ], - [ - 3.3422388, - 51.0943832 - ], - [ - 3.3422388, - 51.0713978 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-11T16:25:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 17, - "delete": 0, - "area": 0.000676807401540088, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "answer": 12, - "locale": "en", - "imagery": "osm", - "add-image": 5 - }, - "id": 118370544 - } - }, - { - "id": 118369149, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9921876, - 50.9126791 - ], - [ - 5.0011939, - 50.9126791 - ], - [ - 5.0011939, - 50.9189186 - ], - [ - 4.9921876, - 50.9189186 - ], - [ - 4.9921876, - 50.9126791 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-11T15:48:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1688, - "modify": 11, - "delete": 0, - "area": 0.0000561948088499916, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 10, - "theme": "grb", - "import": 212, - "locale": "nl", - "imagery": "osm", - "conflation": 2 - }, - "id": 118369149 - } - }, - { - "id": 118368873, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0003817, - 50.9128453 - ], - [ - 5.0056148, - 50.9128453 - ], - [ - 5.0056148, - 50.9146741 - ], - [ - 5.0003817, - 50.9146741 - ], - [ - 5.0003817, - 50.9128453 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-11T15:40:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 202, - "modify": 133, - "delete": 0, - "area": 0.00000957029327999146, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 107, - "theme": "grb", - "answer": 12, - "import": 15, - "locale": "nl", - "imagery": "osm", - "conflation": 30 - }, - "id": 118368873 - } - }, - { - "id": 118368425, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-11T15:27:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "aed", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 7 - }, - "id": 118368425 - } - }, - { - "id": 118368424, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5562629, - 53.2301499 - ], - [ - 6.5562629, - 53.2301499 - ], - [ - 6.5562629, - 53.2301499 - ], - [ - 6.5562629, - 53.2301499 - ], - [ - 6.5562629, - 53.2301499 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-11T15:27:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 118368424 - } - }, - { - "id": 118368418, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-11T15:27:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 118368418 - } - }, - { - "id": 118368417, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-11T15:27:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "aed", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 7 - }, - "id": 118368417 - } - }, - { - "id": 118368356, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-11T15:26:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 7 - }, - "id": 118368356 - } - }, - { - "id": 118366520, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9945833, - 50.9130691 - ], - [ - 5.0091629, - 50.9130691 - ], - [ - 5.0091629, - 50.9175733 - ], - [ - 4.9945833, - 50.9175733 - ], - [ - 4.9945833, - 50.9130691 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-11T14:33:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 87, - "modify": 111, - "delete": 0, - "area": 0.00006566943431999, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 88, - "theme": "grb", - "answer": 13, - "import": 11, - "locale": "nl", - "imagery": "osm", - "conflation": 28 - }, - "id": 118366520 - } - }, - { - "id": 118365197, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0000339, - 50.9147805 - ], - [ - 5.0063773, - 50.9147805 - ], - [ - 5.0063773, - 50.9175436 - ], - [ - 5.0000339, - 50.9175436 - ], - [ - 5.0000339, - 50.9147805 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-11T13:54:07Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 488, - "modify": 192, - "delete": 2, - "area": 0.0000175274485400165, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 151, - "theme": "grb", - "answer": 17, - "delete": 2, - "import": 52, - "locale": "nl", - "imagery": "osm", - "conflation": 56 - }, - "id": 118365197 - } - }, - { - "id": 118363238, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7002817, - 51.0535344 - ], - [ - 3.7002817, - 51.0535344 - ], - [ - 3.7002817, - 51.0535344 - ], - [ - 3.7002817, - 51.0535344 - ], - [ - 3.7002817, - 51.0535344 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.17.0-alpha-1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-11T12:57:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/waste.html", - "theme": "waste", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 118363238 - } - }, - { - "id": 118363062, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.1224848, - 49.4797711 - ], - [ - 11.1224848, - 49.4797711 - ], - [ - 11.1224848, - 49.4797711 - ], - [ - 11.1224848, - 49.4797711 - ], - [ - 11.1224848, - 49.4797711 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "P Kanzler", - "uid": "6173912", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-11T12:51:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/climbing.html", - "theme": "climbing", - "answer": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 118363062 - } - }, - { - "id": 118363052, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0029014, - 50.9157598 - ], - [ - 5.0116102, - 50.9157598 - ], - [ - 5.0116102, - 50.9210367 - ], - [ - 5.0029014, - 50.9210367 - ], - [ - 5.0029014, - 50.9157598 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-11T12:51:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1448, - "modify": 245, - "delete": 6, - "area": 0.0000459554667200474, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 202, - "theme": "grb", - "answer": 17, - "delete": 6, - "import": 176, - "locale": "nl", - "imagery": "osm", - "conflation": 56 - }, - "id": 118363052 - } - }, - { - "id": 118363047, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-11T12:51:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "theme": "grb", - "answer": 1, - "import": 3, - "locale": "nl", - "imagery": "osm" - }, - "id": 118363047 - } - }, - { - "id": 118360995, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6956789, - 50.9632618 - ], - [ - 5.7078186, - 50.9632618 - ], - [ - 5.7078186, - 51.0013946 - ], - [ - 5.6956789, - 51.0013946 - ], - [ - 5.6956789, - 50.9632618 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [ - { - "id": 9, - "name": "Resolved" - } - ], - "features": [], - "user": "Visit_Maasmechelen", - "uid": "15271831", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-11T11:52:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 10, - "modify": 19, - "delete": 2, - "area": 0.000462920752160016, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-24T08:13:47.046238Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 43, - "create": 9, - "import": 1, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "deletion": 2, - "import:node/9570710286": "source: https://osm.org/note/3044260", - "deletion:node/9570698173": "duplicate", - "deletion:node/9570698174": "duplicate" - }, - "id": 118360995 - } - }, - { - "id": 118359426, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7549343, - 51.1292953 - ], - [ - 4.7557824, - 51.1292953 - ], - [ - 4.7557824, - 51.1308686 - ], - [ - 4.7549343, - 51.1308686 - ], - [ - 4.7549343, - 51.1292953 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Salambre", - "uid": "15272429", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-11T11:18:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 6, - "delete": 0, - "area": 0.00000133431572999704, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-14T15:36:06.529903Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 6, - "create": 3, - "locale": "nl", - "imagery": "osm", - "add-image": 3 - }, - "id": 118359426 - } - }, - { - "id": 118356986, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5562629, - 53.2301499 - ], - [ - 6.5562629, - 53.2301499 - ], - [ - 6.5562629, - 53.2301499 - ], - [ - 6.5562629, - 53.2301499 - ], - [ - 6.5562629, - 53.2301499 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-11T10:23:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 7 - }, - "id": 118356986 - } - }, - { - "id": 118356486, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.4909855, - 46.071118 - ], - [ - 14.4909855, - 46.071118 - ], - [ - 14.4909855, - 46.071118 - ], - [ - 14.4909855, - 46.071118 - ], - [ - 14.4909855, - 46.071118 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "StefanB", - "uid": "3834", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-11T10:13:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 2, - "locale": "en", - "imagery": "osm", - "change_within_1000m": 2 - }, - "id": 118356486 - } - }, - { - "id": 118356139, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5562629, - 53.2301499 - ], - [ - 6.5562629, - 53.2301499 - ], - [ - 6.5562629, - 53.2301499 - ], - [ - 6.5562629, - 53.2301499 - ], - [ - 6.5562629, - 53.2301499 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-11T10:05:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 7 - }, - "id": 118356139 - } - }, - { - "id": 118354803, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 24.8898929, - 60.2625226 - ], - [ - 24.8898929, - 60.2625226 - ], - [ - 24.8898929, - 60.2625226 - ], - [ - 24.8898929, - 60.2625226 - ], - [ - 24.8898929, - 60.2625226 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Muokkaaja", - "uid": "494482", - "editor": "MapComplete 0.17.0-alpha-1", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-11T09:29:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/benches.html", - "theme": "benches", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 3 - }, - "id": 118354803 - } - }, - { - "id": 118347932, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9089535, - 50.9197851 - ], - [ - 5.0095482, - 50.9197851 - ], - [ - 5.0095482, - 51.1398195 - ], - [ - 4.9089535, - 51.1398195 - ], - [ - 4.9089535, - 50.9197851 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-11T05:37:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1006, - "modify": 546, - "delete": 4, - "area": 0.0221342944576804, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 489, - "theme": "grb", - "answer": 3, - "delete": 4, - "import": 117, - "locale": "nl", - "imagery": "osm", - "conflation": 120 - }, - "id": 118347932 - } - }, - { - "id": 118344483, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.459969, - 50.7691044 - ], - [ - 5.459969, - 50.7691044 - ], - [ - 5.459969, - 50.7691044 - ], - [ - 5.459969, - 50.7691044 - ], - [ - 5.459969, - 50.7691044 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-11T01:20:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds", - "theme": "playgrounds", - "answer": 3, - "locale": "nl", - "imagery": "osm" - }, - "id": 118344483 - } - }, - { - "id": 118344062, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1320375, - 51.0324953 - ], - [ - 5.2986449, - 51.0324953 - ], - [ - 5.2986449, - 51.0846407 - ], - [ - 5.1320375, - 51.0846407 - ], - [ - 5.1320375, - 51.0324953 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 41, - "name": "Software editor was not declared" - } - ], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": null, - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-11T00:43:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 1, - "delete": 0, - "area": 0.0086878095159601, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "toerisme_vlaanderen", - "answer": 3, - "import": 2, - "import:node/9569800008": "source: https://osm.org/note/3044645", - "import:node/9569885802": "source: https://osm.org/note/3044554" - }, - "id": 118344062 - } - }, - { - "id": 118343765, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0778074, - 51.1277139 - ], - [ - 5.0891519, - 51.1277139 - ], - [ - 5.0891519, - 51.1325468 - ], - [ - 5.0778074, - 51.1325468 - ], - [ - 5.0778074, - 51.1277139 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-11T00:20:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.0000548268340499619, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 5, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 5 - }, - "id": 118343765 - } - }, - { - "id": 118343688, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9822961, - 50.7951163 - ], - [ - 5.0146129, - 50.7951163 - ], - [ - 5.0146129, - 50.8147792 - ], - [ - 4.9822961, - 50.8147792 - ], - [ - 4.9822961, - 50.7951163 - ] - ] - ] - }, - "properties": { - "check_user": "L'imaginaire", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Regionaal Landschap Zuid-Hageland", - "uid": "8539263", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-11T00:14:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 5, - "delete": 0, - "area": 0.00063544200672001, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-11T20:25:04.775224Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 10, - "create": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 118343688 - } - }, - { - "id": 118343025, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7040531, - 51.0499375 - ], - [ - 3.7040531, - 51.0499375 - ], - [ - 3.7040531, - 51.0499375 - ], - [ - 3.7040531, - 51.0499375 - ], - [ - 3.7040531, - 51.0499375 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.6", - "comment": "Adding data with #MapComplete for theme #fritures", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-10T23:29:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/fritures.html", - "theme": "fritures", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 118343025 - } - }, - { - "id": 118340668, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.8511402, - 51.297651 - ], - [ - 6.8528456, - 51.297651 - ], - [ - 6.8528456, - 51.2984172 - ], - [ - 6.8511402, - 51.2984172 - ], - [ - 6.8511402, - 51.297651 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "totosm", - "uid": "252884", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-10T21:35:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000130667748000219, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 118340668 - } - }, - { - "id": 118340407, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.2661075, - 52.2970677 - ], - [ - 13.2661075, - 52.2970677 - ], - [ - 13.2661075, - 52.2970677 - ], - [ - 13.2661075, - 52.2970677 - ], - [ - 13.2661075, - 52.2970677 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Christopher", - "uid": "2956", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-10T21:25:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 118340407 - } - }, - { - "id": 118337950, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3737036, - 51.0818367 - ], - [ - 3.3737036, - 51.0818367 - ], - [ - 3.3737036, - 51.0818367 - ], - [ - 3.3737036, - 51.0818367 - ], - [ - 3.3737036, - 51.0818367 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-10T20:07:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 118337950 - } - }, - { - "id": 118335890, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.48466, - 51.0009077 - ], - [ - 4.48466, - 51.0009077 - ], - [ - 4.48466, - 51.0009077 - ], - [ - 4.48466, - 51.0009077 - ], - [ - 4.48466, - 51.0009077 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "philippec", - "uid": "76884", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-10T19:01:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 118335890 - } - }, - { - "id": 118335792, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4845031, - 51.0009929 - ], - [ - 4.4845031, - 51.0009929 - ], - [ - 4.4845031, - 51.0009929 - ], - [ - 4.4845031, - 51.0009929 - ], - [ - 4.4845031, - 51.0009929 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "philippec", - "uid": "76884", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-10T18:58:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 118335792 - } - }, - { - "id": 118334701, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6996553, - 51.0521448 - ], - [ - 3.6996553, - 51.0521448 - ], - [ - 3.6996553, - 51.0521448 - ], - [ - 3.6996553, - 51.0521448 - ], - [ - 3.6996553, - 51.0521448 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #fritures", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-10T18:24:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/fritures.html", - "theme": "fritures", - "answer": 5, - "locale": "nl", - "imagery": "osm", - "change_within_50m": 5 - }, - "id": 118334701 - } - }, - { - "id": 118329336, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.9815052, - 45.7951974 - ], - [ - 16.0834128, - 45.7951974 - ], - [ - 16.0834128, - 45.8266931 - ], - [ - 15.9815052, - 45.8266931 - ], - [ - 15.9815052, - 45.7951974 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 87, - "name": "Irrelevant tags on highway" - } - ], - "tags": [], - "features": [ - { - "url": "way-203753872", - "name": "Ulica kneza Branimira", - "osm_id": 203753872, - "reasons": [ - 87 - ], - "version": 10, - "primary_tags": { - "highway": "secondary" - } - } - ], - "user": "Janjko", - "uid": "244754", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-10T15:52:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 110, - "delete": 0, - "area": 0.00320965119732009, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 134, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 26, - "change_within_25m": 2, - "change_within_50m": 1, - "change_within_100m": 1, - "change_within_500m": 2, - "change_within_5000m": 102 - }, - "id": 118329336 - } - }, - { - "id": 118327277, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3316559, - 51.0129144 - ], - [ - 5.3332203, - 51.0129144 - ], - [ - 5.3332203, - 51.0131685 - ], - [ - 5.3316559, - 51.0131685 - ], - [ - 5.3316559, - 51.0129144 - ] - ] - ] - }, - "properties": { - "check_user": "L'imaginaire", - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-10T14:55:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 9, - "delete": 0, - "area": 3.97514039998877e-7, - "is_suspect": false, - "harmful": false, - "checked": true, - "check_date": "2022-03-11T20:15:35.954271Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 11, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 5, - "change_within_50m": 3, - "change_within_100m": 1, - "change_within_500m": 2 - }, - "id": 118327277 - } - }, - { - "id": 118327062, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1594464, - 51.1126316 - ], - [ - 4.1751373, - 51.1126316 - ], - [ - 4.1751373, - 51.1147753 - ], - [ - 4.1594464, - 51.1147753 - ], - [ - 4.1594464, - 51.1126316 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-10T14:49:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 11, - "delete": 0, - "area": 0.0000336365823299648, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "answer": 16, - "locale": "nl", - "imagery": "osm" - }, - "id": 118327062 - } - }, - { - "id": 118326565, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1116141, - 51.1116539 - ], - [ - 4.1680349, - 51.1116539 - ], - [ - 4.1680349, - 51.2266334 - ], - [ - 4.1116141, - 51.2266334 - ], - [ - 4.1116141, - 51.1116539 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-10T14:34:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4906, - "modify": 77, - "delete": 0, - "area": 0.00648723537359989, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 74, - "theme": "grb", - "import": 674, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "conflation": 34, - "change_over_5000m": 333 - }, - "id": 118326565 - } - }, - { - "id": 118326429, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9035435, - 48.6488569 - ], - [ - 8.9039342, - 48.6488569 - ], - [ - 8.9039342, - 48.6489374 - ], - [ - 8.9035435, - 48.6489374 - ], - [ - 8.9035435, - 48.6488569 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "fx99", - "uid": "130472", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-10T14:30:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 3.14513500011416e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 6, - "locale": "de", - "imagery": "osm" - }, - "id": 118326429 - } - }, - { - "id": 118325923, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0125418, - 50.9441163 - ], - [ - 4.0125418, - 50.9441163 - ], - [ - 4.0125418, - 50.9441163 - ], - [ - 4.0125418, - 50.9441163 - ], - [ - 4.0125418, - 50.9441163 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Dries Verdoodt", - "uid": "7250277", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-10T14:17:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 1, - "area": 0, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-11T15:11:33.090652Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 1, - "locale": "nl", - "imagery": "osm", - "deletion": 1, - "deletion:node/9568829106": "testing point" - }, - "id": 118325923 - } - }, - { - "id": 118322667, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1192958, - 50.7951108 - ], - [ - 3.1196558, - 50.7951108 - ], - [ - 3.1196558, - 50.7952074 - ], - [ - 3.1192958, - 50.7952074 - ], - [ - 3.1192958, - 50.7951108 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Toerisme Menen", - "uid": "15282506", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-10T12:47:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 0, - "delete": 0, - "area": 3.47759999996515e-8, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-11T15:08:59.116049Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "create": 4, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 118322667 - } - }, - { - "id": 118322336, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9032776, - 51.1241822 - ], - [ - 4.9094331, - 51.1241822 - ], - [ - 4.9094331, - 51.1328506 - ], - [ - 4.9032776, - 51.1328506 - ], - [ - 4.9032776, - 51.1241822 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-10T12:35:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 205, - "modify": 1024, - "delete": 19, - "area": 0.0000533583361999875, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 894, - "theme": "grb", - "answer": 12, - "delete": 19, - "import": 28, - "locale": "nl", - "imagery": "osm", - "conflation": 266 - }, - "id": 118322336 - } - }, - { - "id": 118322266, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8148495, - 50.9738491 - ], - [ - 4.8939049, - 50.9738491 - ], - [ - 4.8939049, - 50.9982257 - ], - [ - 4.8148495, - 50.9982257 - ], - [ - 4.8148495, - 50.9738491 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "AnnabelleVerhaegen", - "uid": "12319350", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 1, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-10T12:33:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 7, - "modify": 1, - "delete": 0, - "area": 0.00192710186363972, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-11T15:06:59.557170Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "create": 7, - "locale": "nl", - "imagery": "AGIV", - "move:node/9568658420": "improve_accuracy" - }, - "id": 118322266 - } - }, - { - "id": 118321860, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1151512, - 51.2197506 - ], - [ - 4.1213442, - 51.2197506 - ], - [ - 4.1213442, - 51.2256053 - ], - [ - 4.1151512, - 51.2256053 - ], - [ - 4.1151512, - 51.2197506 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-10T12:21:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2479, - "modify": 0, - "delete": 0, - "area": 0.000036258157100006, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 330, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 330 - }, - "id": 118321860 - } - }, - { - "id": 118321391, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1127932, - 51.217534 - ], - [ - 4.123984, - 51.217534 - ], - [ - 4.123984, - 51.2208069 - ], - [ - 4.1127932, - 51.2208069 - ], - [ - 4.1127932, - 51.217534 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-10T12:07:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1543, - "modify": 0, - "delete": 0, - "area": 0.0000366263693199895, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 215, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 215 - }, - "id": 118321391 - } - }, - { - "id": 118318869, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7947919, - 50.8092246 - ], - [ - 4.7947919, - 50.8092246 - ], - [ - 4.7947919, - 50.8092246 - ], - [ - 4.7947919, - 50.8092246 - ], - [ - 4.7947919, - 50.8092246 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "jeugddienst Bierbeek", - "uid": "15281781", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 1, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-10T11:08:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 118318869 - } - }, - { - "id": 118313135, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4028605, - 50.8211061 - ], - [ - 4.4028608, - 50.8211061 - ], - [ - 4.4028608, - 50.8211128 - ], - [ - 4.4028605, - 50.8211128 - ], - [ - 4.4028605, - 50.8211061 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "StefDeGreef", - "uid": "1860737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-10T09:35:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 8, - "delete": 0, - "area": 2.00999999972702e-12, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "move": 1, - "theme": "cyclofix", - "answer": 10, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "move:node/5212386109": "improve_accuracy" - }, - "id": 118313135 - } - }, - { - "id": 118310778, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4227108, - 50.9208603 - ], - [ - 5.4309153, - 50.9208603 - ], - [ - 5.4309153, - 50.9272861 - ], - [ - 5.4227108, - 50.9272861 - ], - [ - 5.4227108, - 50.9208603 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-10T08:43:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 382, - "modify": 452, - "delete": 0, - "area": 0.0000527204761000177, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 411, - "theme": "grb", - "import": 60, - "locale": "nl", - "imagery": "osm", - "conflation": 82 - }, - "id": 118310778 - } - }, - { - "id": 118310233, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1466602, - 50.9630489 - ], - [ - 5.2036679, - 50.9630489 - ], - [ - 5.2036679, - 51.0125245 - ], - [ - 5.1466602, - 51.0125245 - ], - [ - 5.1466602, - 50.9630489 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Vrijetijd", - "uid": "15265182", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-10T08:31:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 8, - "delete": 0, - "area": 0.00282049016212004, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-11T14:57:13.993816Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 4, - "create": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 5, - "change_within_5000m": 1 - }, - "id": 118310233 - } - }, - { - "id": 118309449, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2228492, - 51.2086252 - ], - [ - 3.2233343, - 51.2086252 - ], - [ - 3.2233343, - 51.2088339 - ], - [ - 3.2228492, - 51.2088339 - ], - [ - 3.2228492, - 51.2086252 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-10T08:10:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.01240370000772e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 118309449 - } - }, - { - "id": 118307883, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8130907, - 51.1921633 - ], - [ - 4.8130907, - 51.1921633 - ], - [ - 4.8130907, - 51.1921633 - ], - [ - 4.8130907, - 51.1921633 - ], - [ - 4.8130907, - 51.1921633 - ] - ] - ] - }, - "properties": { - "check_user": "L'imaginaire", - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-10T07:44:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": false, - "checked": true, - "check_date": "2022-03-10T16:13:43.717092Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 7, - "locale": "nl", - "imagery": "osm" - }, - "id": 118307883 - } - }, - { - "id": 118303992, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9042419, - 51.1339496 - ], - [ - 4.9197896, - 51.1339496 - ], - [ - 4.9197896, - 51.1365131 - ], - [ - 4.9042419, - 51.1365131 - ], - [ - 4.9042419, - 51.1339496 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-10T05:43:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 51, - "modify": 420, - "delete": 8, - "area": 0.0000398565289500127, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 362, - "theme": "grb", - "answer": 13, - "delete": 8, - "import": 5, - "locale": "nl", - "imagery": "osm", - "conflation": 106 - }, - "id": 118303992 - } - }, - { - "id": 118303101, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 78.0751328, - 9.875329 - ], - [ - 80.272782, - 9.875329 - ], - [ - 80.272782, - 13.0993988 - ], - [ - 78.0751328, - 13.0993988 - ], - [ - 78.0751328, - 9.875329 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 489, - "name": "Mapbox: Spam text" - } - ], - "tags": [], - "features": [ - { - "url": "node-4318020492", - "note": "Spam text reported in [\"name:en\",\"name:etymology:wikidata\"] tags in the feature", - "osm_id": 4318020492, - "reasons": [ - 489 - ], - "version": 4 - } - ], - "user": "bponkishore", - "uid": "14062769", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-10T05:00:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 72, - "delete": 0, - "area": 7.08537441671416, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 87, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 14, - "change_within_5000m": 15 - }, - "id": 118303101 - } - }, - { - "id": 118300475, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1433572, - 51.1714002 - ], - [ - 4.1435442, - 51.1714002 - ], - [ - 4.1435442, - 51.1715213 - ], - [ - 4.1433572, - 51.1715213 - ], - [ - 4.1433572, - 51.1714002 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.17.0-alpha", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-10T02:08:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 2.26457000002718e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", - "theme": "cyclofix", - "answer": 5, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 5 - }, - "id": 118300475 - } - }, - { - "id": 118296034, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.0275858, - 49.5736112 - ], - [ - 11.0304387, - 49.5736112 - ], - [ - 11.0304387, - 49.5744117 - ], - [ - 11.0275858, - 49.5744117 - ], - [ - 11.0275858, - 49.5736112 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "P Kanzler", - "uid": "6173912", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-09T22:03:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.00000228374644999014, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 5, - "locale": "de", - "imagery": "osm" - }, - "id": 118296034 - } - }, - { - "id": 118295878, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0287163, - 38.7973129 - ], - [ - 0.1217642, - 38.7973129 - ], - [ - 0.1217642, - 38.8470615 - ], - [ - 0.0287163, - 38.8470615 - ], - [ - 0.0287163, - 38.7973129 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-09T21:56:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 75, - "delete": 0, - "area": 0.00462900275794009, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance", - "theme": "surveillance", - "answer": 103, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 15 - }, - "id": 118295878 - } - }, - { - "id": 118295287, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2278747, - 48.9687045 - ], - [ - 2.4408906, - 48.9687045 - ], - [ - 2.4408906, - 49.1603436 - ], - [ - 2.2278747, - 49.1603436 - ], - [ - 2.2278747, - 48.9687045 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LeTopographeFou", - "uid": "3178375", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-09T21:32:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 149, - "delete": 0, - "area": 0.0408221753616892, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 175, - "locale": "en", - "imagery": "osm" - }, - "id": 118295287 - } - }, - { - "id": 118295283, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LeTopographeFou", - "uid": "3178375", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-09T21:32:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/", - "theme": "etymology", - "answer": 1, - "locale": "en" - }, - "id": 118295283 - } - }, - { - "id": 118294518, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.1333814, - 49.3041449 - ], - [ - 8.1333814, - 49.3041449 - ], - [ - 8.1333814, - 49.3041449 - ], - [ - 8.1333814, - 49.3041449 - ], - [ - 8.1333814, - 49.3041449 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Dinn0", - "uid": "14893874", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-09T21:05:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 4, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_500m": 4 - }, - "id": 118294518 - } - }, - { - "id": 118294281, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5032318, - 50.8499895 - ], - [ - 4.6358281, - 50.8499895 - ], - [ - 4.6358281, - 50.8648283 - ], - [ - 4.5032318, - 50.8648283 - ], - [ - 4.5032318, - 50.8499895 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Els Q", - "uid": "15213418", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-09T20:56:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 7, - "modify": 11, - "delete": 0, - "area": 0.00196756997643997, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-11T10:09:47.830923Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 27, - "create": 7, - "locale": "nl", - "imagery": "osm", - "move:node/9566924243": "improve_accuracy" - }, - "id": 118294281 - } - }, - { - "id": 118294029, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9015094, - 50.8095837 - ], - [ - 3.9204159, - 50.8095837 - ], - [ - 3.9204159, - 50.8167443 - ], - [ - 3.9015094, - 50.8167443 - ], - [ - 3.9015094, - 50.8095837 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Logies De Boskouter", - "uid": "15276486", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-09T20:47:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 2, - "delete": 0, - "area": 0.000135381883900112, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-24T08:11:47.869987Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 2, - "change_within_5000m": 3, - "move:node/9566927051": "improve_accuracy" - }, - "id": 118294029 - } - }, - { - "id": 118293075, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1433572, - 51.1714002 - ], - [ - 4.1435442, - 51.1714002 - ], - [ - 4.1435442, - 51.1715213 - ], - [ - 4.1433572, - 51.1715213 - ], - [ - 4.1433572, - 51.1714002 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.17.0-alpha", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-09T20:11:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 2.26457000002718e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 3, - "change_within_25m": 3 - }, - "id": 118293075 - } - }, - { - "id": 118292206, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8567589, - 50.8834305 - ], - [ - 4.8567589, - 50.8834305 - ], - [ - 4.8567589, - 50.8834305 - ], - [ - 4.8567589, - 50.8834305 - ], - [ - 4.8567589, - 50.8834305 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Hilde OSM", - "uid": "15275790", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-09T19:38:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-11T09:27:15.949720Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118292206 - } - }, - { - "id": 118289942, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7445212, - 51.1135442 - ], - [ - 4.7871397, - 51.1135442 - ], - [ - 4.7871397, - 51.1391938 - ], - [ - 4.7445212, - 51.1391938 - ], - [ - 4.7445212, - 51.1135442 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Salambre", - "uid": "15272429", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-09T18:28:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 10, - "delete": 0, - "area": 0.00109314747760005, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-11T09:11:41.003729Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 21, - "create": 2, - "locale": "nl", - "imagery": "osm", - "move:node/9566663258": "improve_accuracy" - }, - "id": 118289942 - } - }, - { - "id": 118287854, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1167916, - 51.2156823 - ], - [ - 4.1221932, - 51.2156823 - ], - [ - 4.1221932, - 51.2197997 - ], - [ - 4.1167916, - 51.2197997 - ], - [ - 4.1167916, - 51.2156823 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-09T17:26:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1942, - "modify": 0, - "delete": 0, - "area": 0.0000222405478400292, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "theme": "grb", - "import": 283, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "change_within_50m": 5, - "change_within_100m": 42, - "change_within_500m": 23, - "change_within_1000m": 213 - }, - "id": 118287854 - } - }, - { - "id": 118285899, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1105411, - 51.2195024 - ], - [ - 4.1121833, - 51.2195024 - ], - [ - 4.1121833, - 51.221819 - ], - [ - 4.1105411, - 51.221819 - ], - [ - 4.1105411, - 51.2195024 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-09T16:32:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.00000380432052000064, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 2, - "locale": "en", - "imagery": "osm", - "change_within_500m": 2 - }, - "id": 118285899 - } - }, - { - "id": 118282335, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7534705, - 51.0628504 - ], - [ - 3.7534705, - 51.0628504 - ], - [ - 3.7534705, - 51.0628504 - ], - [ - 3.7534705, - 51.0628504 - ], - [ - 3.7534705, - 51.0628504 - ] - ] - ] - }, - "properties": { - "check_user": "L'imaginaire", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Mappers_Delight", - "uid": "15267966", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-09T14:51:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-09T21:43:53.652609Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 5, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 5 - }, - "id": 118282335 - } - }, - { - "id": 118282091, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4223835, - 50.92078 - ], - [ - 5.4252088, - 50.92078 - ], - [ - 5.4252088, - 50.9223859 - ], - [ - 5.4223835, - 50.9223859 - ], - [ - 5.4223835, - 50.92078 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-09T14:44:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 97, - "modify": 240, - "delete": 4, - "area": 0.00000453714927000435, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 215, - "theme": "grb", - "delete": 4, - "import": 17, - "locale": "nl", - "imagery": "osm", - "conflation": 50 - }, - "id": 118282091 - } - }, - { - "id": 118282013, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4215927, - 50.9197214 - ], - [ - 5.4239968, - 50.9197214 - ], - [ - 5.4239968, - 50.9210443 - ], - [ - 5.4215927, - 50.9210443 - ], - [ - 5.4215927, - 50.9197214 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-09T14:42:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 128, - "modify": 94, - "delete": 4, - "area": 0.00000318038388999626, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 82, - "theme": "grb", - "delete": 4, - "import": 19, - "locale": "nl", - "imagery": "osm", - "conflation": 24 - }, - "id": 118282013 - } - }, - { - "id": 118281107, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2166589, - 50.9304418 - ], - [ - 3.2166589, - 50.9304418 - ], - [ - 3.2166589, - 50.9304418 - ], - [ - 3.2166589, - 50.9304418 - ], - [ - 3.2166589, - 50.9304418 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 41, - "name": "Software editor was not declared" - } - ], - "tags": [], - "features": [], - "user": "vatho", - "uid": "3146120", - "editor": null, - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-09T14:20:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "change_over_5000m": 1, - "change_within_1000m": 2, - "move:node/9566127444": "improve_accuracy" - }, - "id": 118281107 - } - }, - { - "id": 118280901, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4163881, - 50.9175281 - ], - [ - 5.4228182, - 50.9175281 - ], - [ - 5.4228182, - 50.9225666 - ], - [ - 5.4163881, - 50.9225666 - ], - [ - 5.4163881, - 50.9175281 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-09T14:14:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 186, - "modify": 332, - "delete": 39, - "area": 0.0000323980588500322, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 289, - "theme": "grb", - "delete": 39, - "import": 33, - "locale": "nl", - "imagery": "osm", - "conflation": 86 - }, - "id": 118280901 - } - }, - { - "id": 118280827, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4212925, - 50.92013 - ], - [ - 5.4218092, - 50.92013 - ], - [ - 5.4218092, - 50.9203981 - ], - [ - 5.4212925, - 50.9203981 - ], - [ - 5.4212925, - 50.92013 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-09T14:12:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6, - "modify": 13, - "delete": 3, - "area": 1.38527269999866e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 11, - "theme": "grb", - "delete": 3, - "import": 1, - "locale": "nl", - "imagery": "osm", - "conflation": 4 - }, - "id": 118280827 - } - }, - { - "id": 118280802, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8835236, - 51.1339171 - ], - [ - 4.9169114, - 51.1339171 - ], - [ - 4.9169114, - 51.142992 - ], - [ - 4.8835236, - 51.142992 - ], - [ - 4.8835236, - 51.1339171 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-09T14:12:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 34, - "delete": 0, - "area": 0.000302990946220054, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 34, - "locale": "nl", - "imagery": "osm" - }, - "id": 118280802 - } - }, - { - "id": 118280741, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8574015, - 51.1275216 - ], - [ - 4.9359518, - 51.1275216 - ], - [ - 4.9359518, - 51.1410287 - ], - [ - 4.8574015, - 51.1410287 - ], - [ - 4.8574015, - 51.1275216 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - }, - { - "id": 531, - "name": "Mapbox: Overlapping features" - } - ], - "tags": [], - "features": [ - { - "url": "way-1038766925", - "osm_id": 1038766925, - "reasons": [ - 531 - ], - "version": 1 - } - ], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-09T14:10:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 92, - "modify": 267, - "delete": 9, - "area": 0.00106098675712986, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/", - "move": 233, - "theme": "grb", - "answer": 7, - "delete": 9, - "import": 4, - "locale": "nl", - "conflation": 56 - }, - "id": 118280741 - } - }, - { - "id": 118280600, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0775733, - 50.8625073 - ], - [ - 4.1014463, - 50.8625073 - ], - [ - 4.1014463, - 50.8841925 - ], - [ - 4.0775733, - 50.8841925 - ], - [ - 4.0775733, - 50.8625073 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "jumpguitarke", - "uid": "1764929", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 1, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-09T14:07:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 19, - "modify": 0, - "delete": 0, - "area": 0.000517690779600008, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-10T09:13:14.449642Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 19, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 118280600 - } - }, - { - "id": 118279890, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1391715, - 51.1690027 - ], - [ - 4.1391715, - 51.1690027 - ], - [ - 4.1391715, - 51.1690027 - ], - [ - 4.1391715, - 51.1690027 - ], - [ - 4.1391715, - 51.1690027 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-09T13:47:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 5, - "locale": "en", - "imagery": "AGIVFlandersGRB", - "change_within_25m": 4, - "change_within_50m": 1 - }, - "id": 118279890 - } - }, - { - "id": 118279228, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5562629, - 53.2301499 - ], - [ - 6.5562629, - 53.2301499 - ], - [ - 6.5562629, - 53.2301499 - ], - [ - 6.5562629, - 53.2301499 - ], - [ - 6.5562629, - 53.2301499 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-09T13:26:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 10, - "create": 4, - "locale": "nl", - "imagery": "osm", - "add-image": 3, - "change_over_5000m": 4, - "change_within_25m": 13 - }, - "id": 118279228 - } - }, - { - "id": 118277942, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4136981, - 50.9189857 - ], - [ - 5.4271815, - 50.9189857 - ], - [ - 5.4271815, - 50.930283 - ], - [ - 5.4136981, - 50.930283 - ], - [ - 5.4136981, - 50.9189857 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-09T12:46:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 572, - "modify": 1472, - "delete": 24, - "area": 0.000152326014820025, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 1279, - "theme": "grb", - "delete": 24, - "import": 95, - "locale": "nl", - "imagery": "osm", - "conflation": 390 - }, - "id": 118277942 - } - }, - { - "id": 118275036, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1391715, - 51.1690027 - ], - [ - 4.1391715, - 51.1690027 - ], - [ - 4.1391715, - 51.1690027 - ], - [ - 4.1391715, - 51.1690027 - ], - [ - 4.1391715, - 51.1690027 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-09T11:34:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 5, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 6, - "create": 1, - "locale": "en", - "imagery": "AGIVFlandersGRB", - "change_over_5000m": 1, - "change_within_25m": 6 - }, - "id": 118275036 - } - }, - { - "id": 118274475, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.424048, - 50.9283495 - ], - [ - 5.4294592, - 50.9283495 - ], - [ - 5.4294592, - 50.9318052 - ], - [ - 5.424048, - 50.9318052 - ], - [ - 5.424048, - 50.9283495 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-09T11:19:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 132, - "modify": 140, - "delete": 1, - "area": 0.0000186994838399811, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 124, - "theme": "grb", - "delete": 1, - "import": 21, - "locale": "nl", - "imagery": "osm", - "conflation": 36 - }, - "id": 118274475 - } - }, - { - "id": 118274197, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4254643, - 50.9295738 - ], - [ - 5.4287014, - 50.9295738 - ], - [ - 5.4287014, - 50.9309451 - ], - [ - 5.4254643, - 50.9309451 - ], - [ - 5.4254643, - 50.9295738 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-09T11:12:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 45, - "modify": 183, - "delete": 4, - "area": 0.00000443903523000748, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 175, - "theme": "grb", - "delete": 4, - "import": 5, - "locale": "nl", - "imagery": "osm", - "conflation": 42 - }, - "id": 118274197 - } - }, - { - "id": 118272545, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7445212, - 51.1135442 - ], - [ - 4.7871397, - 51.1135442 - ], - [ - 4.7871397, - 51.1314453 - ], - [ - 4.7445212, - 51.1314453 - ], - [ - 4.7445212, - 51.1135442 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Salambre", - "uid": "15272429", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-09T10:31:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 5, - "modify": 5, - "delete": 0, - "area": 0.000762918030350127, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-09T14:08:12.245479Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "move": 2, - "theme": "toerisme_vlaanderen", - "answer": 6, - "create": 5, - "locale": "nl", - "imagery": "osm", - "move:node/9565779052": "improve_accuracy" - }, - "id": 118272545 - } - }, - { - "id": 118271953, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 76.6723064, - 11.7680018 - ], - [ - 80.2805687, - 11.7680018 - ], - [ - 80.2805687, - 13.1266014 - ], - [ - 76.6723064, - 13.1266014 - ], - [ - 76.6723064, - 11.7680018 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "bponkishore", - "uid": "14062769", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-09T10:16:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 126, - "delete": 0, - "area": 4.90218371747509, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 163, - "locale": "en", - "imagery": "osm" - }, - "id": 118271953 - } - }, - { - "id": 118270704, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9921597, - 50.6904888 - ], - [ - 4.1635448, - 50.6904888 - ], - [ - 4.1635448, - 50.7640269 - ], - [ - 3.9921597, - 50.7640269 - ], - [ - 3.9921597, - 50.6904888 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "LienV", - "uid": "15272266", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-09T09:44:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 4, - "delete": 0, - "area": 0.0126033346223101, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-09T14:05:01.484344Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 9, - "create": 4, - "locale": "nl", - "imagery": "osm" - }, - "id": 118270704 - } - }, - { - "id": 118269085, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4224351, - 50.9280837 - ], - [ - 5.4398668, - 50.9280837 - ], - [ - 5.4398668, - 50.9347685 - ], - [ - 5.4224351, - 50.9347685 - ], - [ - 5.4224351, - 50.9280837 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-09T09:03:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 657, - "modify": 1526, - "delete": 39, - "area": 0.00011652742815991, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 1364, - "theme": "grb", - "delete": 39, - "import": 107, - "locale": "nl", - "imagery": "osm", - "conflation": 330 - }, - "id": 118269085 - } - }, - { - "id": 118265775, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2433647, - 50.908124 - ], - [ - 3.2779829, - 50.908124 - ], - [ - 3.2779829, - 50.9415035 - ], - [ - 3.2433647, - 50.9415035 - ], - [ - 3.2433647, - 50.908124 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "reginaldc", - "uid": "510576", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-09T07:35:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 14, - "modify": 16, - "delete": 0, - "area": 0.00115553820690009, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 16, - "create": 14, - "locale": "en", - "imagery": "osm", - "add-image": 14 - }, - "id": 118265775 - } - }, - { - "id": 118265167, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.241455, - 50.9076521 - ], - [ - 3.2621482, - 50.9076521 - ], - [ - 3.2621482, - 50.9265759 - ], - [ - 3.241455, - 50.9265759 - ], - [ - 3.241455, - 50.9076521 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 42, - "name": "Invalid tag modification" - } - ], - "tags": [], - "features": [ - { - "url": "way-412829145", - "osm_id": 412829145, - "reasons": [ - 42 - ], - "version": 5, - "primary_tags": {} - } - ], - "user": "reginaldc", - "uid": "510576", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-09T07:17:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 5, - "modify": 7, - "delete": 0, - "area": 0.00039159397816006, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds", - "theme": "playgrounds", - "answer": 4, - "create": 5, - "locale": "en", - "imagery": "osm", - "add-image": 5, - "soft-delete": 1, - "soft-delete:way/412829145": "This point is not on the right place" - }, - "id": 118265167 - } - }, - { - "id": 118254055, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5159318, - 51.0019985 - ], - [ - 4.5160278, - 51.0019985 - ], - [ - 4.5160278, - 51.0020949 - ], - [ - 4.5159318, - 51.0020949 - ], - [ - 4.5159318, - 51.0019985 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "philippec", - "uid": "76884", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-08T21:53:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 9.25440000038195e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 6, - "locale": "nl", - "imagery": "osm" - }, - "id": 118254055 - } - }, - { - "id": 118253993, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7534705, - 51.0628504 - ], - [ - 3.7534705, - 51.0628504 - ], - [ - 3.7534705, - 51.0628504 - ], - [ - 3.7534705, - 51.0628504 - ], - [ - 3.7534705, - 51.0628504 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Mappers_Delight", - "uid": "15267966", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-08T21:50:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-09T09:02:22.390225Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 1, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 118253993 - } - }, - { - "id": 118253482, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.6495404, - 44.7025129 - ], - [ - 10.7017946, - 44.7025129 - ], - [ - 10.7017946, - 44.7726113 - ], - [ - 10.6495404, - 44.7726113 - ], - [ - 10.6495404, - 44.7025129 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "NonnEmilia", - "uid": "683102", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-08T21:31:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 255, - "delete": 0, - "area": 0.00366293581327996, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "answer": 297, - "locale": "it", - "imagery": "osm", - "change_within_500m": 26, - "change_within_1000m": 36, - "change_within_5000m": 38 - }, - "id": 118253482 - } - }, - { - "id": 118252393, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4192831, - 50.9243635 - ], - [ - 5.424997, - 50.9243635 - ], - [ - 5.424997, - 50.9288008 - ], - [ - 5.4192831, - 50.9288008 - ], - [ - 5.4192831, - 50.9243635 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-08T20:53:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 22, - "modify": 191, - "delete": 6, - "area": 0.0000253542884699958, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 172, - "theme": "grb", - "delete": 6, - "import": 5, - "locale": "nl", - "imagery": "osm", - "conflation": 38 - }, - "id": 118252393 - } - }, - { - "id": 118250925, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9062461, - 51.1339475 - ], - [ - 4.9213496, - 51.1339475 - ], - [ - 4.9213496, - 51.1363542 - ], - [ - 4.9062461, - 51.1363542 - ], - [ - 4.9062461, - 51.1339475 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-08T20:03:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 50, - "delete": 7, - "area": 0.0000363495934500258, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 43, - "theme": "grb", - "answer": 3, - "delete": 7, - "locale": "nl", - "imagery": "osm", - "conflation": 8 - }, - "id": 118250925 - } - }, - { - "id": 118250413, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1318877, - 51.1824735 - ], - [ - 4.1318877, - 51.1824735 - ], - [ - 4.1318877, - 51.1824735 - ], - [ - 4.1318877, - 51.1824735 - ], - [ - 4.1318877, - 51.1824735 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [], - "tags": [], - "features": [], - "user": "Rembrandt De Vlaeminck", - "uid": "504998", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-08T19:44:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": false, - "checked": true, - "check_date": "2022-03-09T08:56:58.594720Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_1000m": 1 - }, - "id": 118250413 - } - }, - { - "id": 118242501, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9036658, - 51.1361315 - ], - [ - 4.9039681, - 51.1361315 - ], - [ - 4.9039681, - 51.1363107 - ], - [ - 4.9036658, - 51.1363107 - ], - [ - 4.9036658, - 51.1361315 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-08T16:06:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 11, - "modify": 15, - "delete": 0, - "area": 5.41721600016333e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 15, - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm", - "conflation": 4 - }, - "id": 118242501 - } - }, - { - "id": 118240767, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4051842, - 50.9226006 - ], - [ - 5.4219642, - 50.9226006 - ], - [ - 5.4219642, - 50.9321106 - ], - [ - 5.4051842, - 50.9321106 - ], - [ - 5.4051842, - 50.9226006 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-08T15:16:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 596, - "modify": 928, - "delete": 21, - "area": 0.000159577799999978, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 819, - "theme": "grb", - "delete": 21, - "import": 93, - "locale": "nl", - "imagery": "osm", - "conflation": 218 - }, - "id": 118240767 - } - }, - { - "id": 118239785, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3307371, - 51.0128097 - ], - [ - 5.3315503, - 51.0128097 - ], - [ - 5.3315503, - 51.0128142 - ], - [ - 5.3307371, - 51.0128142 - ], - [ - 5.3307371, - 51.0128097 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-08T14:50:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 3.65940000231548e-9, - "is_suspect": false, - "harmful": false, - "checked": true, - "check_date": "2022-03-10T08:22:18.317322Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_within_25m": 4 - }, - "id": 118239785 - } - }, - { - "id": 118239668, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1363625, - 50.9662838 - ], - [ - 5.2295344, - 50.9662838 - ], - [ - 5.2295344, - 51.0091974 - ], - [ - 5.1363625, - 51.0091974 - ], - [ - 5.1363625, - 50.9662838 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Vrijetijd", - "uid": "15265182", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-08T14:47:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 15, - "delete": 0, - "area": 0.00399834164783989, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-08T18:50:58.066169Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 14, - "create": 3, - "locale": "nl", - "imagery": "AGIV", - "add-image": 8, - "change_over_5000m": 1, - "change_within_5000m": 14 - }, - "id": 118239668 - } - }, - { - "id": 118239383, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2483268, - 50.911624 - ], - [ - 3.2625586, - 50.911624 - ], - [ - 3.2625586, - 50.9225909 - ], - [ - 3.2483268, - 50.9225909 - ], - [ - 3.2483268, - 50.911624 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "reginaldc", - "uid": "510576", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-08T14:38:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 1, - "delete": 0, - "area": 0.000156078727419997, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 4, - "create": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 118239383 - } - }, - { - "id": 118238619, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.459969, - 50.7691044 - ], - [ - 5.471524, - 50.7691044 - ], - [ - 5.471524, - 50.7829616 - ], - [ - 5.459969, - 50.7829616 - ], - [ - 5.459969, - 50.7691044 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Toerisme Tongeren", - "uid": "15265134", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-08T14:16:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 10, - "modify": 7, - "delete": 1, - "area": 0.000160119945999957, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-08T18:42:01.590764Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 9, - "create": 10, - "locale": "nl", - "imagery": "osm", - "deletion": 1, - "deletion:node/9562762302": "testing point" - }, - "id": 118238619 - } - }, - { - "id": 118237596, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4013964, - 50.9289324 - ], - [ - 5.4083462, - 50.9289324 - ], - [ - 5.4083462, - 50.9354488 - ], - [ - 5.4013964, - 50.9354488 - ], - [ - 5.4013964, - 50.9289324 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-08T13:48:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 321, - "modify": 345, - "delete": 3, - "area": 0.0000452876767200176, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 310, - "theme": "grb", - "delete": 3, - "import": 43, - "locale": "nl", - "imagery": "osm", - "conflation": 70 - }, - "id": 118237596 - } - }, - { - "id": 118237389, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.4745793, - 44.9077529 - ], - [ - -0.4745793, - 44.9077529 - ], - [ - -0.4745793, - 44.9077529 - ], - [ - -0.4745793, - 44.9077529 - ], - [ - -0.4745793, - 44.9077529 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-08T13:42:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 5, - "create": 1, - "locale": "fr", - "imagery": "osm" - }, - "id": 118237389 - } - }, - { - "id": 118237323, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.9794662, - 45.798923 - ], - [ - 15.9843998, - 45.798923 - ], - [ - 15.9843998, - 45.7994493 - ], - [ - 15.9794662, - 45.7994493 - ], - [ - 15.9794662, - 45.798923 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Janjko", - "uid": "244754", - "editor": "iD 2.20.4", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "dgu.hr: Croatia 2019-2020 aerial imagery", - "date": "2022-03-08T13:40:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000259655367998623, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://www.openstreetmap.org/edit", - "locale": "hr", - "hashtags": "#MapComplete;#etymology", - "changesets_count": 67771 - }, - "id": 118237323 - } - }, - { - "id": 118236745, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2420522, - 50.8909833 - ], - [ - 3.2420522, - 50.8909833 - ], - [ - 3.2420522, - 50.8909833 - ], - [ - 3.2420522, - 50.8909833 - ], - [ - 3.2420522, - 50.8909833 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [], - "tags": [], - "features": [], - "user": "Erin76", - "uid": "8982454", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-08T13:23:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": false, - "checked": true, - "check_date": "2022-03-08T15:34:15.073878Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 118236745 - } - }, - { - "id": 118236215, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -60.8622797, - -32.9292088 - ], - [ - -60.7926484, - -32.9292088 - ], - [ - -60.7926484, - -32.9103139 - ], - [ - -60.8622797, - -32.9103139 - ], - [ - -60.8622797, - -32.9292088 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mweper", - "uid": "1311281", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-08T13:07:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 18, - "delete": 0, - "area": 0.00131567645037004, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "answer": 18, - "locale": "en", - "imagery": "osm" - }, - "id": 118236215 - } - }, - { - "id": 118235536, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3298837, - 50.8561909 - ], - [ - 5.4051662, - 50.8561909 - ], - [ - 5.4051662, - 50.9335228 - ], - [ - 5.3298837, - 50.9335228 - ], - [ - 5.3298837, - 50.8561909 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-08T12:46:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 913, - "modify": 916, - "delete": 15, - "area": 0.0058217387617498, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 823, - "theme": "grb", - "delete": 15, - "import": 121, - "locale": "nl", - "imagery": "osm", - "conflation": 188 - }, - "id": 118235536 - } - }, - { - "id": 118235395, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8132414, - 51.1923822 - ], - [ - 4.8132414, - 51.1923822 - ], - [ - 4.8132414, - 51.1923822 - ], - [ - 4.8132414, - 51.1923822 - ], - [ - 4.8132414, - 51.1923822 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Hilde De Laet", - "uid": "15264487", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 3, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-08T12:42:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 118235395 - } - }, - { - "id": 118234219, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8976852, - 51.130627 - ], - [ - 4.908968, - 51.130627 - ], - [ - 4.908968, - 51.1400408 - ], - [ - 4.8976852, - 51.1400408 - ], - [ - 4.8976852, - 51.130627 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-08T12:10:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 150, - "modify": 486, - "delete": 21, - "area": 0.00010621402264005, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 425, - "theme": "grb", - "answer": 13, - "delete": 21, - "import": 18, - "locale": "nl", - "imagery": "osm", - "conflation": 130 - }, - "id": 118234219 - } - }, - { - "id": 118233805, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6431019, - 50.8379963 - ], - [ - 4.6431019, - 50.8379963 - ], - [ - 4.6431019, - 50.8379963 - ], - [ - 4.6431019, - 50.8379963 - ], - [ - 4.6431019, - 50.8379963 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "SanderVD", - "uid": "264932", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-08T12:00:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-08T15:30:14.453859Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118233805 - } - }, - { - "id": 118232324, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3308463, - 50.8649146 - ], - [ - 5.3359849, - 50.8649146 - ], - [ - 5.3359849, - 50.8699641 - ], - [ - 5.3308463, - 50.8699641 - ], - [ - 5.3308463, - 50.8649146 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-08T11:24:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 137, - "modify": 45, - "delete": 0, - "area": 0.0000259473606999894, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 44, - "theme": "grb", - "import": 17, - "locale": "nl", - "imagery": "osm", - "conflation": 8 - }, - "id": 118232324 - } - }, - { - "id": 118232317, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-08T11:23:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118232317 - } - }, - { - "id": 118232305, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-08T11:23:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118232305 - } - }, - { - "id": 118232290, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-08T11:23:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 118232290 - } - }, - { - "id": 118232233, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3347202, - 50.8649167 - ], - [ - 5.3364645, - 50.8649167 - ], - [ - 5.3364645, - 50.8651151 - ], - [ - 5.3347202, - 50.8651151 - ], - [ - 5.3347202, - 50.8649167 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-08T11:22:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 20, - "modify": 0, - "delete": 0, - "area": 3.46069119991433e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 4, - "locale": "nl", - "imagery": "osm" - }, - "id": 118232233 - } - }, - { - "id": 118231284, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1297449, - 50.9101197 - ], - [ - 4.2000654, - 50.9101197 - ], - [ - 4.2000654, - 51.1032146 - ], - [ - 4.1297449, - 51.1032146 - ], - [ - 4.1297449, - 50.9101197 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 1, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-08T10:57:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 5, - "delete": 0, - "area": 0.0135785299154498, - "is_suspect": false, - "harmful": false, - "checked": true, - "check_date": "2022-03-08T15:29:43.621514Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 13, - "create": 2, - "locale": "nl", - "imagery": "osm", - "move:node/9562341567": "improve_accuracy" - }, - "id": 118231284 - } - }, - { - "id": 118230692, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.9569758, - 45.7920947 - ], - [ - 16.0493842, - 45.7920947 - ], - [ - 16.0493842, - 45.8151102 - ], - [ - 15.9569758, - 45.8151102 - ], - [ - 15.9569758, - 45.7920947 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "Janjko", - "uid": "244754", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-08T10:43:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 480, - "delete": 0, - "area": 0.00212682553019993, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 635, - "locale": "en", - "imagery": "osm" - }, - "id": 118230692 - } - }, - { - "id": 118228793, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1063741, - 51.0827166 - ], - [ - 5.1701818, - 51.0827166 - ], - [ - 5.1701818, - 51.102316 - ], - [ - 5.1063741, - 51.102316 - ], - [ - 5.1063741, - 51.0827166 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 41, - "name": "Software editor was not declared" - } - ], - "tags": [], - "features": [], - "user": "dienst cultuur & toerisme", - "uid": "2133790", - "editor": null, - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-08T09:53:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 2, - "delete": 0, - "area": 0.00125059263538026, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "toerisme_vlaanderen", - "answer": 4, - "create": 1, - "import": 1, - "add-image": 1, - "import:node/9562203897": "source: https://osm.org/note/3044209" - }, - "id": 118228793 - } - }, - { - "id": 118228715, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.0292689, - 49.5713591 - ], - [ - 11.0292689, - 49.5713591 - ], - [ - 11.0292689, - 49.5713591 - ], - [ - 11.0292689, - 49.5713591 - ], - [ - 11.0292689, - 49.5713591 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "P Kanzler", - "uid": "6173912", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-08T09:51:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 2, - "locale": "de", - "imagery": "osm", - "change_within_50m": 2 - }, - "id": 118228715 - } - }, - { - "id": 118227572, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2412743, - 50.9110719 - ], - [ - 3.2612697, - 50.9110719 - ], - [ - 3.2612697, - 50.9272944 - ], - [ - 3.2412743, - 50.9272944 - ], - [ - 3.2412743, - 50.9110719 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 42, - "name": "Invalid tag modification" - } - ], - "tags": [], - "features": [ - { - "url": "way-784538238", - "osm_id": 784538238, - "reasons": [ - 42 - ], - "version": 2, - "primary_tags": {} - } - ], - "user": "reginaldc", - "uid": "510576", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-08T09:18:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 7, - "delete": 0, - "area": 0.000324375376499956, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds", - "theme": "playgrounds", - "answer": 5, - "create": 2, - "locale": "en", - "imagery": "osm", - "add-image": 5, - "soft-delete": 1, - "soft-delete:way/784538238": "not on the right place" - }, - "id": 118227572 - } - }, - { - "id": 118227218, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3318624, - 50.8096797 - ], - [ - 5.3513334, - 50.8096797 - ], - [ - 5.3513334, - 50.8699227 - ], - [ - 5.3318624, - 50.8699227 - ], - [ - 5.3318624, - 50.8096797 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-08T09:08:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1715, - "modify": 544, - "delete": 2, - "area": 0.00117299145299996, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 494, - "theme": "grb", - "delete": 2, - "import": 215, - "locale": "nl", - "imagery": "osm", - "conflation": 106 - }, - "id": 118227218 - } - }, - { - "id": 118221455, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8559138, - 51.1310222 - ], - [ - 4.9032734, - 51.1310222 - ], - [ - 4.9032734, - 51.145871 - ], - [ - 4.8559138, - 51.145871 - ], - [ - 4.8559138, - 51.1310222 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-08T05:40:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 432, - "modify": 341, - "delete": 0, - "area": 0.000703233228480137, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 296, - "theme": "grb", - "import": 39, - "locale": "nl", - "imagery": "osm", - "conflation": 90, - "change_over_5000m": 28 - }, - "id": 118221455 - } - }, - { - "id": 118214319, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7001051, - 51.0373892 - ], - [ - 3.7095286, - 51.0373892 - ], - [ - 3.7095286, - 51.0525401 - ], - [ - 3.7001051, - 51.0525401 - ], - [ - 3.7001051, - 51.0373892 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-07T21:57:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 8, - "delete": 0, - "area": 0.000142774506150018, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "food", - "answer": 11, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 7, - "change_within_500m": 1, - "change_within_5000m": 3 - }, - "id": 118214319 - } - }, - { - "id": 118213398, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5202947, - 51.433536 - ], - [ - 4.5208913, - 51.433536 - ], - [ - 4.5208913, - 51.4339552 - ], - [ - 4.5202947, - 51.4339552 - ], - [ - 4.5202947, - 51.433536 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Stinus_Clasius", - "uid": "1086503", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-07T21:26:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 16, - "modify": 0, - "delete": 0, - "area": 2.50094720001778e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "theme": "grb", - "import": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 118213398 - } - }, - { - "id": 118210701, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7102741, - 51.0231119 - ], - [ - 3.7102741, - 51.0231119 - ], - [ - 3.7102741, - 51.0231119 - ], - [ - 3.7102741, - 51.0231119 - ], - [ - 3.7102741, - 51.0231119 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #hackerspaces", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-07T19:52:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hackerspaces", - "theme": "hackerspaces", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 118210701 - } - }, - { - "id": 118209843, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2693028, - 50.8015758 - ], - [ - 3.2697818, - 50.8015758 - ], - [ - 3.2697818, - 50.8022928 - ], - [ - 3.2693028, - 50.8022928 - ], - [ - 3.2693028, - 50.8015758 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "beardhatcode", - "uid": "5439560", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-07T19:25:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 3.43442999997304e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/personal.html", - "theme": "personal", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 118209843 - } - }, - { - "id": 118209824, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7102741, - 51.0231119 - ], - [ - 3.7102741, - 51.0231119 - ], - [ - 3.7102741, - 51.0231119 - ], - [ - 3.7102741, - 51.0231119 - ], - [ - 3.7102741, - 51.0231119 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "ON7WPI", - "uid": "12424191", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #hackerspaces", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-07T19:24:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hackerspaces.html", - "theme": "hackerspaces", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 118209824 - } - }, - { - "id": 118204324, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.9746709, - 45.7893539 - ], - [ - 16.0050099, - 45.7893539 - ], - [ - 16.0050099, - 45.8009698 - ], - [ - 15.9746709, - 45.8009698 - ], - [ - 15.9746709, - 45.7893539 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Janjko", - "uid": "244754", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-07T16:43:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 95, - "delete": 0, - "area": 0.000352414790099876, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 125, - "locale": "en", - "imagery": "osm", - "change_within_25m": 2, - "change_within_50m": 1, - "change_within_100m": 3, - "change_within_500m": 23, - "change_within_1000m": 57, - "change_within_5000m": 28 - }, - "id": 118204324 - } - }, - { - "id": 118191412, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.9404205, - 45.8690835 - ], - [ - 15.9404205, - 45.8690835 - ], - [ - 15.9404205, - 45.8690835 - ], - [ - 15.9404205, - 45.8690835 - ], - [ - 15.9404205, - 45.8690835 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9560170891", - "osm_id": 9560170891, - "reasons": [ - 43 - ], - "version": 2, - "primary_tags": { - "amenity": "binoculars" - } - } - ], - "user": "Janjko", - "uid": "244754", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #binoculars", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-07T10:32:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/binoculars.html", - "theme": "binoculars", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 118191412 - } - }, - { - "id": 118189505, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4593111, - 51.0391101 - ], - [ - 4.4756513, - 51.0391101 - ], - [ - 4.4756513, - 51.042318 - ], - [ - 4.4593111, - 51.042318 - ], - [ - 4.4593111, - 51.0391101 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "philippec", - "uid": "76884", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-07T09:40:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000524177275799939, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 4, - "locale": "nl", - "imagery": "osm", - "change_within_5000m": 4 - }, - "id": 118189505 - } - }, - { - "id": 118188707, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3723686, - 50.869964 - ], - [ - 4.3723686, - 50.869964 - ], - [ - 4.3723686, - 50.869964 - ], - [ - 4.3723686, - 50.869964 - ], - [ - 4.3723686, - 50.869964 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-07T09:16:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118188707 - } - }, - { - "id": 118188610, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3719303, - 50.8698686 - ], - [ - 4.3723339, - 50.8698686 - ], - [ - 4.3723339, - 50.8699654 - ], - [ - 4.3719303, - 50.8699654 - ], - [ - 4.3719303, - 50.8698686 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-07T09:13:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 6, - "delete": 0, - "area": 3.9068480000613e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 10, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 118188610 - } - }, - { - "id": 118188555, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3724129, - 50.8699778 - ], - [ - 4.3724129, - 50.8699778 - ], - [ - 4.3724129, - 50.8699778 - ], - [ - 4.3724129, - 50.8699778 - ], - [ - 4.3724129, - 50.8699778 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-07T09:12:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 118188555 - } - }, - { - "id": 118188430, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8613415, - 51.1451338 - ], - [ - 4.8689968, - 51.1451338 - ], - [ - 4.8689968, - 51.1482688 - ], - [ - 4.8613415, - 51.1482688 - ], - [ - 4.8613415, - 51.1451338 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-07T09:08:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 600, - "modify": 427, - "delete": 3, - "area": 0.0000239993654999472, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 363, - "theme": "grb", - "delete": 3, - "import": 60, - "locale": "nl", - "imagery": "osm", - "conflation": 168, - "change_over_5000m": 17 - }, - "id": 118188430 - } - }, - { - "id": 118186892, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.9352559, - 45.7972548 - ], - [ - 15.9926534, - 45.7972548 - ], - [ - 15.9926534, - 45.8087857 - ], - [ - 15.9352559, - 45.8087857 - ], - [ - 15.9352559, - 45.7972548 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Janjko", - "uid": "244754", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-07T08:23:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 115, - "delete": 0, - "area": 0.000661844832750229, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 141, - "locale": "en", - "imagery": "osm", - "change_within_25m": 1, - "change_within_100m": 2, - "change_within_500m": 10, - "change_within_1000m": 38, - "change_within_5000m": 64 - }, - "id": 118186892 - } - }, - { - "id": 118178737, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.9722679, - 40.5793 - ], - [ - -73.9722679, - 40.5793 - ], - [ - -73.9722679, - 40.5793 - ], - [ - -73.9722679, - 40.5793 - ], - [ - -73.9722679, - 40.5793 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "MxxCon", - "uid": "384667", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-07T00:54:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 4, - "locale": "en", - "imagery": "osm", - "change_within_500m": 4 - }, - "id": 118178737 - } - }, - { - "id": 118167533, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.1189366, - 42.3749189 - ], - [ - -71.1189366, - 42.3749189 - ], - [ - -71.1189366, - 42.3749189 - ], - [ - -71.1189366, - 42.3749189 - ], - [ - -71.1189366, - 42.3749189 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "4b3eff", - "uid": "14349548", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-06T17:09:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 118167533 - } - }, - { - "id": 118163935, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.0635917, - 51.9928944 - ], - [ - 13.0635917, - 51.9928944 - ], - [ - 13.0635917, - 51.9928944 - ], - [ - 13.0635917, - 51.9928944 - ], - [ - 13.0635917, - 51.9928944 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "koofi_mk", - "uid": "2272879", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-06T15:36:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 118163935 - } - }, - { - "id": 118161679, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3673372, - 51.0777441 - ], - [ - 3.3792932, - 51.0777441 - ], - [ - 3.3792932, - 51.0851272 - ], - [ - 3.3673372, - 51.0851272 - ], - [ - 3.3673372, - 51.0777441 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-06T14:41:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 8, - "delete": 0, - "area": 0.0000882723436000667, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "answer": 7, - "locale": "en", - "imagery": "osm", - "add-image": 2 - }, - "id": 118161679 - } - }, - { - "id": 118153014, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3841175, - 50.9130414 - ], - [ - 5.3860901, - 50.9130414 - ], - [ - 5.3860901, - 50.9144031 - ], - [ - 5.3841175, - 50.9144031 - ], - [ - 5.3841175, - 50.9130414 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-06T10:32:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 106, - "delete": 2, - "area": 0.00000268608942000679, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 95, - "path": "mc/develop/", - "theme": "grb", - "delete": 2, - "locale": "nl", - "imagery": "osm", - "conflation": 22 - }, - "id": 118153014 - } - }, - { - "id": 118149109, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8614762, - 51.1458629 - ], - [ - 4.8657554, - 51.1458629 - ], - [ - 4.8657554, - 51.1487315 - ], - [ - 4.8614762, - 51.1487315 - ], - [ - 4.8614762, - 51.1458629 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-06T07:56:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 342, - "modify": 309, - "delete": 0, - "area": 0.0000122753131199973, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 264, - "theme": "grb", - "answer": 3, - "import": 16, - "locale": "nl", - "imagery": "osm", - "conflation": 124 - }, - "id": 118149109 - } - }, - { - "id": 118147708, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8117306, - 51.0822336 - ], - [ - 4.9137673, - 51.0822336 - ], - [ - 4.9137673, - 51.1570027 - ], - [ - 4.8117306, - 51.1570027 - ], - [ - 4.8117306, - 51.0822336 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-06T06:24:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 56, - "delete": 0, - "area": 0.00762919222596976, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 56, - "locale": "nl", - "imagery": "osm" - }, - "id": 118147708 - } - }, - { - "id": 118140353, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.6799834, - 55.7926476 - ], - [ - 37.6799834, - 55.7926476 - ], - [ - 37.6799834, - 55.7926476 - ], - [ - 37.6799834, - 55.7926476 - ], - [ - 37.6799834, - 55.7926476 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "solenoid jam", - "uid": "10129333", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-05T20:53:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "surveillance", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 118140353 - } - }, - { - "id": 118139848, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.9680947, - 40.673378 - ], - [ - -73.9680947, - 40.673378 - ], - [ - -73.9680947, - 40.673378 - ], - [ - -73.9680947, - 40.673378 - ], - [ - -73.9680947, - 40.673378 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "timshel500", - "uid": "14565618", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #swimmingpools", - "comments_count": 3, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-05T20:33:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "swimmingpools", - "answer": 4, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 118139848 - } - }, - { - "id": 118139784, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.9349078, - 40.6738154 - ], - [ - -73.9349078, - 40.6738154 - ], - [ - -73.9349078, - 40.6738154 - ], - [ - -73.9349078, - 40.6738154 - ], - [ - -73.9349078, - 40.6738154 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "timshel500", - "uid": "14565618", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #swimmingpools", - "comments_count": 2, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-05T20:31:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "swimmingpools", - "answer": 5, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 118139784 - } - }, - { - "id": 118137628, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3823628, - 50.9122279 - ], - [ - 5.3863564, - 50.9122279 - ], - [ - 5.3863564, - 50.9159702 - ], - [ - 5.3823628, - 50.9159702 - ], - [ - 5.3823628, - 50.9122279 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-05T19:09:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 128, - "modify": 58, - "delete": 2, - "area": 0.0000149452492799969, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 51, - "path": "mc/develop/", - "theme": "grb", - "delete": 2, - "import": 30, - "locale": "nl", - "imagery": "osm", - "conflation": 14 - }, - "id": 118137628 - } - }, - { - "id": 118135766, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8848472, - 30.5800732 - ], - [ - 2.8848472, - 30.5800732 - ], - [ - 2.8848472, - 30.5800732 - ], - [ - 2.8848472, - 30.5800732 - ], - [ - 2.8848472, - 30.5800732 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Slayne88", - "uid": "14768560", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-05T18:02:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 1, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "food", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm", - "deletion": 1, - "deletion:node/9556471822": "testing point" - }, - "id": 118135766 - } - }, - { - "id": 118135736, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8850269, - 30.5794058 - ], - [ - 2.8850269, - 30.5794058 - ], - [ - 2.8850269, - 30.5794058 - ], - [ - 2.8850269, - 30.5794058 - ], - [ - 2.8850269, - 30.5794058 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Slayne88", - "uid": "14768560", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-05T18:00:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 1, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "create": 1, - "locale": "en", - "imagery": "osm", - "deletion": 1, - "deletion:node/9556463133": "testing point" - }, - "id": 118135736 - } - }, - { - "id": 118129344, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9229988, - 50.3902303 - ], - [ - 5.9229988, - 50.3902303 - ], - [ - 5.9229988, - 50.3902303 - ], - [ - 5.9229988, - 50.3902303 - ], - [ - 5.9229988, - 50.3902303 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-05T14:58:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "waste", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 118129344 - } - }, - { - "id": 118128832, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8206243, - 51.1368447 - ], - [ - 4.8437268, - 51.1368447 - ], - [ - 4.8437268, - 51.1663368 - ], - [ - 4.8206243, - 51.1663368 - ], - [ - 4.8206243, - 51.1368447 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-05T14:42:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 15, - "delete": 0, - "area": 0.000681341240250118, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 19, - "locale": "nl", - "imagery": "osm" - }, - "id": 118128832 - } - }, - { - "id": 118128068, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9315776, - 50.3935123 - ], - [ - 5.9320933, - 50.3935123 - ], - [ - 5.9320933, - 50.3937115 - ], - [ - 5.9315776, - 50.3937115 - ], - [ - 5.9315776, - 50.3935123 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-05T14:20:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 3, - "delete": 0, - "area": 1.02727440002313e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "entrances", - "answer": 4, - "create": 4, - "locale": "en", - "imagery": "osm", - "change_within_50m": 8 - }, - "id": 118128068 - } - }, - { - "id": 118127846, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9321196, - 50.3937542 - ], - [ - 5.9321196, - 50.3937542 - ], - [ - 5.9321196, - 50.3937542 - ], - [ - 5.9321196, - 50.3937542 - ], - [ - 5.9321196, - 50.3937542 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-05T14:14:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "answer": 4, - "locale": "nl", - "imagery": "osm", - "change_within_500m": 4 - }, - "id": 118127846 - } - }, - { - "id": 118127769, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9321196, - 50.3937542 - ], - [ - 5.9321196, - 50.3937542 - ], - [ - 5.9321196, - 50.3937542 - ], - [ - 5.9321196, - 50.3937542 - ], - [ - 5.9321196, - 50.3937542 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-05T14:12:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toilets", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_500m": 4 - }, - "id": 118127769 - } - }, - { - "id": 118125332, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.1215198, - 50.4102953 - ], - [ - 6.1215198, - 50.4102953 - ], - [ - 6.1215198, - 50.4102953 - ], - [ - 6.1215198, - 50.4102953 - ], - [ - 6.1215198, - 50.4102953 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9555980278", - "osm_id": 9555980278, - "reasons": [ - 43 - ], - "version": 2, - "primary_tags": { - "tourism": "map" - } - } - ], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-05T12:54:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "nature", - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 118125332 - } - }, - { - "id": 118124234, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.1327422, - 50.370227 - ], - [ - 6.1327422, - 50.370227 - ], - [ - 6.1327422, - 50.370227 - ], - [ - 6.1327422, - 50.370227 - ], - [ - 6.1327422, - 50.370227 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-05T12:20:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cyclofix", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 118124234 - } - }, - { - "id": 118124171, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.1217049, - 50.3702663 - ], - [ - 6.1328843, - 50.3702663 - ], - [ - 6.1328843, - 50.4103585 - ], - [ - 6.1217049, - 50.4103585 - ], - [ - 6.1217049, - 50.3702663 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-05T12:16:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 5, - "modify": 3, - "delete": 0, - "area": 0.000448206740680026, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 5, - "create": 5, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 5, - "change_within_25m": 8, - "move:node/5861552919": "improve_accuracy" - }, - "id": 118124171 - } - }, - { - "id": 118121418, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8587625, - 51.1430913 - ], - [ - 4.8696988, - 51.1430913 - ], - [ - 4.8696988, - 51.146599 - ], - [ - 4.8587625, - 51.146599 - ], - [ - 4.8587625, - 51.1430913 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-05T10:46:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 481, - "modify": 237, - "delete": 0, - "area": 0.0000383612595100013, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 208, - "theme": "grb", - "import": 52, - "locale": "nl", - "imagery": "osm", - "conflation": 66 - }, - "id": 118121418 - } - }, - { - "id": 118120897, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2268249, - 50.809481 - ], - [ - 5.3879498, - 50.809481 - ], - [ - 5.3879498, - 50.9197824 - ], - [ - 5.2268249, - 50.9197824 - ], - [ - 5.2268249, - 50.809481 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-05T10:27:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1128, - "modify": 12, - "delete": 0, - "area": 0.0177723020448607, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 10, - "path": "mc/develop/", - "theme": "grb", - "import": 148, - "locale": "nl", - "imagery": "osm", - "conflation": 4 - }, - "id": 118120897 - } - }, - { - "id": 118120118, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9622073, - 50.3011109 - ], - [ - 5.9622073, - 50.3011109 - ], - [ - 5.9622073, - 50.3011109 - ], - [ - 5.9622073, - 50.3011109 - ], - [ - 5.9622073, - 50.3011109 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #openwindpowermap", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-05T10:10:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "openwindpowermap", - "create": 1, - "locale": "en", - "imagery": "SPW_ORTHO_LAST", - "add-image": 1, - "change_over_5000m": 1, - "change_within_500m": 1 - }, - "id": 118120118 - } - }, - { - "id": 118119606, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9233508, - 50.2905251 - ], - [ - 5.9233508, - 50.2905251 - ], - [ - 5.9233508, - 50.2905251 - ], - [ - 5.9233508, - 50.2905251 - ], - [ - 5.9233508, - 50.2905251 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-05T09:51:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "cycle_infra", - "answer": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_within_25m": 1 - }, - "id": 118119606 - } - }, - { - "id": 118117305, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8599922, - 51.1439211 - ], - [ - 4.8618007, - 51.1439211 - ], - [ - 4.8618007, - 51.1475705 - ], - [ - 4.8599922, - 51.1475705 - ], - [ - 4.8599922, - 51.1439211 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-05T08:21:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 75, - "modify": 91, - "delete": 0, - "area": 0.00000659993990000122, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 77, - "theme": "grb", - "answer": 7, - "import": 10, - "locale": "nl", - "imagery": "AGIV", - "conflation": 32 - }, - "id": 118117305 - } - }, - { - "id": 118116865, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8601473, - 51.1464674 - ], - [ - 4.8619407, - 51.1464674 - ], - [ - 4.8619407, - 51.1485308 - ], - [ - 4.8601473, - 51.1485308 - ], - [ - 4.8601473, - 51.1464674 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-05T08:02:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 138, - "modify": 51, - "delete": 0, - "area": 0.00000370050156000682, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 44, - "theme": "grb", - "import": 15, - "locale": "nl", - "imagery": "osm", - "conflation": 22 - }, - "id": 118116865 - } - }, - { - "id": 118116859, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-05T08:02:08Z", - "reviewed_features": [], - "tag_changes": {}, - "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": 118116859 - } - }, - { - "id": 118116407, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8585854, - 51.1462942 - ], - [ - 4.8609262, - 51.1462942 - ], - [ - 4.8609262, - 51.1478005 - ], - [ - 4.8585854, - 51.1478005 - ], - [ - 4.8585854, - 51.1462942 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-05T07:37:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 113, - "modify": 35, - "delete": 0, - "area": 0.00000352594704000586, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 28, - "theme": "grb", - "answer": 1, - "import": 13, - "locale": "nl", - "imagery": "osm", - "conflation": 12 - }, - "id": 118116407 - } - }, - { - "id": 118116393, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-05T07:36:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118116393 - } - }, - { - "id": 118116290, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8598938, - 51.1460503 - ], - [ - 4.8600833, - 51.1460503 - ], - [ - 4.8600833, - 51.1463889 - ], - [ - 4.8598938, - 51.1463889 - ], - [ - 4.8598938, - 51.1460503 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-05T07:33:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 13, - "modify": 5, - "delete": 0, - "area": 6.41646999999435e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 4, - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm", - "conflation": 2 - }, - "id": 118116290 - } - }, - { - "id": 118113124, - "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.16.5", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-05T03:07:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "shops", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 118113124 - } - }, - { - "id": 118111685, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9818673, - 51.2017315 - ], - [ - 4.9850164, - 51.2017315 - ], - [ - 4.9850164, - 51.2041026 - ], - [ - 4.9818673, - 51.2041026 - ], - [ - 4.9818673, - 51.2017315 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-05T00:49:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 123, - "modify": 403, - "delete": 7, - "area": 0.00000746683100999265, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 356, - "theme": "grb", - "answer": 5, - "delete": 7, - "import": 16, - "locale": "nl", - "imagery": "AGIV", - "conflation": 110 - }, - "id": 118111685 - } - }, - { - "id": 118111670, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9833103, - 51.203646 - ], - [ - 4.9841578, - 51.203646 - ], - [ - 4.9841578, - 51.2040523 - ], - [ - 4.9833103, - 51.2040523 - ], - [ - 4.9833103, - 51.203646 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-05T00:49:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 32, - "delete": 2, - "area": 3.44339250001342e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 29, - "theme": "grb", - "answer": 1, - "delete": 2, - "locale": "nl", - "imagery": "AGIV", - "conflation": 8 - }, - "id": 118111670 - } - }, - { - "id": 118110876, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.4741499, - 54.8558583 - ], - [ - -1.4722173, - 54.8558583 - ], - [ - -1.4722173, - 54.856262 - ], - [ - -1.4741499, - 54.856262 - ], - [ - -1.4741499, - 54.8558583 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "confusedbuffalo", - "uid": "242345", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-04T23:36:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 7.8019061999935e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 118110876 - } - }, - { - "id": 118108465, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9806461, - 51.2037576 - ], - [ - 4.9837853, - 51.2037576 - ], - [ - 4.9837853, - 51.2048152 - ], - [ - 4.9806461, - 51.2048152 - ], - [ - 4.9806461, - 51.2037576 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-04T21:27:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 43, - "modify": 159, - "delete": 0, - "area": 0.00000332001791998639, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 144, - "theme": "grb", - "answer": 1, - "import": 4, - "locale": "nl", - "imagery": "osm", - "conflation": 40 - }, - "id": 118108465 - } - }, - { - "id": 118105979, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8937306, - 51.007958 - ], - [ - 3.9582807, - 51.007958 - ], - [ - 3.9582807, - 51.0365182 - ], - [ - 3.8937306, - 51.0365182 - ], - [ - 3.8937306, - 51.007958 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-04T19:59:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 47, - "delete": 0, - "area": 0.00184356376602007, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "answer": 48, - "locale": "en", - "imagery": "osm", - "add-image": 4 - }, - "id": 118105979 - } - }, - { - "id": 118104458, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8911476, - 51.0106606 - ], - [ - 3.9252401, - 51.0106606 - ], - [ - 3.9252401, - 51.0328056 - ], - [ - 3.8911476, - 51.0328056 - ], - [ - 3.8911476, - 51.0106606 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-04T18:58:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 8, - "delete": 0, - "area": 0.00075497841250006, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toerisme_vlaanderen", - "answer": 4, - "locale": "nl", - "imagery": "AGIV", - "add-image": 5 - }, - "id": 118104458 - } - }, - { - "id": 118101553, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2070207, - 41.5398772 - ], - [ - 2.211438, - 41.5398772 - ], - [ - 2.211438, - 41.5443084 - ], - [ - 2.2070207, - 41.5443084 - ], - [ - 2.2070207, - 41.5398772 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Moisès", - "uid": "12884230", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-04T17:14:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 10, - "delete": 0, - "area": 0.0000195739397599943, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "food", - "answer": 12, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 118101553 - } - }, - { - "id": 118101373, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9762721, - 51.2009241 - ], - [ - 4.9819032, - 51.2009241 - ], - [ - 4.9819032, - 51.2026317 - ], - [ - 4.9762721, - 51.2026317 - ], - [ - 4.9762721, - 51.2009241 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - }, - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "way-453704920", - "osm_id": 453704920, - "reasons": [ - 43 - ], - "version": 2, - "primary_tags": { - "building": "porch" - } - } - ], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-04T17:10:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 29, - "modify": 222, - "delete": 7, - "area": 0.00000961566635997691, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 191, - "theme": "grb", - "answer": 5, - "delete": 7, - "import": 2, - "locale": "nl", - "imagery": "AGIV", - "conflation": 56 - }, - "id": 118101373 - } - }, - { - "id": 118100314, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.979249, - 51.2012155 - ], - [ - 4.9862417, - 51.2012155 - ], - [ - 4.9862417, - 51.2034369 - ], - [ - 4.979249, - 51.2034369 - ], - [ - 4.979249, - 51.2012155 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-04T16:43:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 37, - "modify": 129, - "delete": 2, - "area": 0.0000155335837799731, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 114, - "theme": "grb", - "delete": 2, - "import": 2, - "locale": "nl", - "imagery": "osm", - "conflation": 30 - }, - "id": 118100314 - } - }, - { - "id": 118098261, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7918182, - 51.0021278 - ], - [ - 3.8015311, - 51.0021278 - ], - [ - 3.8015311, - 51.0054288 - ], - [ - 3.7918182, - 51.0054288 - ], - [ - 3.7918182, - 51.0021278 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Isabel H", - "uid": "10282777", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-04T15:51:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.0000320622829000051, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-24T07:55:01.067081Z", - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toerisme_vlaanderen", - "answer": 10, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 118098261 - } - }, - { - "id": 118098026, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9778864, - 51.2010447 - ], - [ - 4.9799531, - 51.2010447 - ], - [ - 4.9799531, - 51.2025079 - ], - [ - 4.9778864, - 51.2025079 - ], - [ - 4.9778864, - 51.2010447 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-04T15:44:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00000302399544000756, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 4, - "locale": "nl", - "imagery": "osm" - }, - "id": 118098026 - } - }, - { - "id": 118094557, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9786978, - 51.1961009 - ], - [ - 4.9995142, - 51.1961009 - ], - [ - 4.9995142, - 51.211563 - ], - [ - 4.9786978, - 51.211563 - ], - [ - 4.9786978, - 51.1961009 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-04T13:55:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 32, - "delete": 0, - "area": 0.000321865258440015, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 32, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 26 - }, - "id": 118094557 - } - }, - { - "id": 118092916, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6437621, - 51.0493263 - ], - [ - 5.6437621, - 51.0493263 - ], - [ - 5.6437621, - 51.0493263 - ], - [ - 5.6437621, - 51.0493263 - ], - [ - 5.6437621, - 51.0493263 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 41, - "name": "Software editor was not declared" - } - ], - "tags": [], - "features": [], - "user": "kersentaart", - "uid": "9812520", - "editor": null, - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-04T13:13:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "toerisme_vlaanderen", - "answer": 2, - "import": 1, - "import:node/9554166555": "source: https://osm.org/note/3044266" - }, - "id": 118092916 - } - }, - { - "id": 118091882, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.1099882, - 52.4204603 - ], - [ - 14.1470861, - 52.4204603 - ], - [ - 14.1470861, - 52.4233056 - ], - [ - 14.1099882, - 52.4233056 - ], - [ - 14.1099882, - 52.4204603 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Casi1980", - "uid": "13989376", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-04T12:42:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 0.000105554654869888, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 118091882 - } - }, - { - "id": 118090192, - "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.16.5", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-04T11:53:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 4.70694639995571e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "locale": "en", - "imagery": "osm", - "add-image": 3, - "change_within_5000m": 3 - }, - "id": 118090192 - } - }, - { - "id": 118089917, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0207871, - 51.0805814 - ], - [ - 5.0207871, - 51.0805814 - ], - [ - 5.0207871, - 51.0805814 - ], - [ - 5.0207871, - 51.0805814 - ], - [ - 5.0207871, - 51.0805814 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Frans_Napaters", - "uid": "3574538", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-04T11:46:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "answer": 3, - "locale": "en", - "imagery": "osm", - "add-image": 3, - "change_over_5000m": 6 - }, - "id": 118089917 - } - }, - { - "id": 118085019, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0207871, - 51.0805814 - ], - [ - 5.0207871, - 51.0805814 - ], - [ - 5.0207871, - 51.0805814 - ], - [ - 5.0207871, - 51.0805814 - ], - [ - 5.0207871, - 51.0805814 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Frans_Napaters", - "uid": "3574538", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 3, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-04T09:25:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "answer": 3, - "locale": "en", - "imagery": "osm", - "change_within_25m": 3 - }, - "id": 118085019 - } - }, - { - "id": 118084984, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.021277, - 51.0810354 - ], - [ - 5.021277, - 51.0810354 - ], - [ - 5.021277, - 51.0810354 - ], - [ - 5.021277, - 51.0810354 - ], - [ - 5.021277, - 51.0810354 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Frans_Napaters", - "uid": "3574538", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #postboxes", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-04T09:24:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "postboxes", - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1 - }, - "id": 118084984 - } - }, - { - "id": 118084542, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2346426, - 50.7384954 - ], - [ - 4.2346426, - 50.7384954 - ], - [ - 4.2346426, - 50.7384954 - ], - [ - 4.2346426, - 50.7384954 - ], - [ - 4.2346426, - 50.7384954 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-04T09:11:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "food", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118084542 - } - }, - { - "id": 118084249, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0205501, - 51.0811663 - ], - [ - 5.0207176, - 51.0811663 - ], - [ - 5.0207176, - 51.0813237 - ], - [ - 5.0205501, - 51.0813237 - ], - [ - 5.0205501, - 51.0811663 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Frans_Napaters", - "uid": "3574538", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-04T09:02:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 2.63644999998274e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "answer": 4, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 5 - }, - "id": 118084249 - } - }, - { - "id": 118078451, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8806415, - 42.669099 - ], - [ - 2.8806415, - 42.669099 - ], - [ - 2.8806415, - 42.669099 - ], - [ - 2.8806415, - 42.669099 - ], - [ - 2.8806415, - 42.669099 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LySioS", - "uid": "11579673", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-04T05:32:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "answer": 1, - "locale": "fr", - "change_within_25m": 1 - }, - "id": 118078451 - } - }, - { - "id": 118076487, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.994277, - 51.1650366 - ], - [ - 4.9950528, - 51.1650366 - ], - [ - 4.9950528, - 51.1655218 - ], - [ - 4.994277, - 51.1655218 - ], - [ - 4.994277, - 51.1650366 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-04T03:03:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 8, - "modify": 44, - "delete": 0, - "area": 3.76418159999753e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 40, - "theme": "grb", - "locale": "nl", - "imagery": "AGIV", - "conflation": 8 - }, - "id": 118076487 - } - }, - { - "id": 118076378, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9940901, - 51.1634073 - ], - [ - 4.9972362, - 51.1634073 - ], - [ - 4.9972362, - 51.1669981 - ], - [ - 4.9940901, - 51.1669981 - ], - [ - 4.9940901, - 51.1634073 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-04T02:54:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 88, - "modify": 300, - "delete": 4, - "area": 0.0000112970158799912, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 267, - "theme": "grb", - "answer": 3, - "delete": 4, - "import": 9, - "locale": "nl", - "imagery": "osm", - "conflation": 64 - }, - "id": 118076378 - } - }, - { - "id": 118076244, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9903209, - 51.1653051 - ], - [ - 4.9950444, - 51.1653051 - ], - [ - 4.9950444, - 51.169348 - ], - [ - 4.9903209, - 51.169348 - ], - [ - 4.9903209, - 51.1653051 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-04T02:42:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 32, - "modify": 276, - "delete": 7, - "area": 0.0000190966381500077, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 253, - "theme": "grb", - "answer": 2, - "delete": 7, - "import": 4, - "locale": "nl", - "imagery": "osm", - "conflation": 48 - }, - "id": 118076244 - } - }, - { - "id": 118075743, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9899302, - 51.128574 - ], - [ - 5.0082582, - 51.128574 - ], - [ - 5.0082582, - 51.1682021 - ], - [ - 4.9899302, - 51.1682021 - ], - [ - 4.9899302, - 51.128574 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-04T01:58:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 76, - "modify": 427, - "delete": 9, - "area": 0.000726303816800043, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 386, - "theme": "grb", - "answer": 2, - "delete": 9, - "import": 10, - "locale": "nl", - "imagery": "osm", - "conflation": 110 - }, - "id": 118075743 - } - }, - { - "id": 118070354, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9109154, - 50.2807152 - ], - [ - 5.9109154, - 50.2807152 - ], - [ - 5.9109154, - 50.2807152 - ], - [ - 5.9109154, - 50.2807152 - ], - [ - 5.9109154, - 50.2807152 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-03T20:46:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "sport_pitches", - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 118070354 - } - }, - { - "id": 118069713, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9145337, - 50.2846932 - ], - [ - 5.9145337, - 50.2846932 - ], - [ - 5.9145337, - 50.2846932 - ], - [ - 5.9145337, - 50.2846932 - ], - [ - 5.9145337, - 50.2846932 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-03T20:28:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 118069713 - } - }, - { - "id": 118068873, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.840549, - 50.9744391 - ], - [ - 4.8459843, - 50.9744391 - ], - [ - 4.8459843, - 50.9763091 - ], - [ - 4.840549, - 50.9763091 - ], - [ - 4.840549, - 50.9744391 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-03T19:59:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 598, - "modify": 19, - "delete": 0, - "area": 0.0000101640110000195, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 16, - "theme": "grb", - "import": 73, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "conflation": 6 - }, - "id": 118068873 - } - }, - { - "id": 118059913, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.6151721, - 37.1767699 - ], - [ - -3.6118216, - 37.1767699 - ], - [ - -3.6118216, - 37.1793768 - ], - [ - -3.6151721, - 37.1793768 - ], - [ - -3.6151721, - 37.1767699 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pipeton", - "uid": "11969052", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-03T15:23:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 13, - "delete": 0, - "area": 0.00000873441845001246, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 17, - "locale": "en", - "imagery": "osm" - }, - "id": 118059913 - } - }, - { - "id": 118059165, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9774802, - 51.2009097 - ], - [ - 4.9797323, - 51.2009097 - ], - [ - 4.9797323, - 51.2028677 - ], - [ - 4.9774802, - 51.2028677 - ], - [ - 4.9774802, - 51.2009097 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-03T14:58:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 25, - "modify": 126, - "delete": 0, - "area": 0.00000440961180000555, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 111, - "theme": "grb", - "answer": 1, - "import": 4, - "locale": "nl", - "imagery": "AGIV", - "conflation": 28 - }, - "id": 118059165 - } - }, - { - "id": 118057594, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4254993, - 49.3100456 - ], - [ - 8.4254993, - 49.3100456 - ], - [ - 8.4254993, - 49.3100456 - ], - [ - 8.4254993, - 49.3100456 - ], - [ - 8.4254993, - 49.3100456 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Dinn0", - "uid": "14893874", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-03T14:10:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cycle_infra", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 118057594 - } - }, - { - "id": 118057057, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9718645, - 51.171372 - ], - [ - 4.972415, - 51.171372 - ], - [ - 4.972415, - 51.1716665 - ], - [ - 4.9718645, - 51.1716665 - ], - [ - 4.9718645, - 51.171372 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-03T13:53:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 16, - "modify": 34, - "delete": 2, - "area": 1.62122250001428e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 28, - "theme": "grb", - "answer": 3, - "delete": 2, - "import": 3, - "locale": "nl", - "imagery": "osm", - "conflation": 8 - }, - "id": 118057057 - } - }, - { - "id": 118054679, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.884738, - 51.0476801 - ], - [ - 5.3172761, - 51.0476801 - ], - [ - 5.3172761, - 51.1858902 - ], - [ - 4.884738, - 51.1858902 - ], - [ - 4.884738, - 51.0476801 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 87, - "name": "Irrelevant tags on highway" - } - ], - "tags": [], - "features": [ - { - "url": "way-144886153", - "name": "Koning Leopold III-laan", - "osm_id": 144886153, - "reasons": [ - 87 - ], - "version": 6, - "primary_tags": { - "highway": "tertiary" - } - } - ], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-03T12:41:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 135, - "delete": 0, - "area": 0.0597811340548109, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 135, - "locale": "nl", - "imagery": "osm" - }, - "id": 118054679 - } - }, - { - "id": 118052653, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2346426, - 50.7384954 - ], - [ - 4.2346426, - 50.7384954 - ], - [ - 4.2346426, - 50.7384954 - ], - [ - 4.2346426, - 50.7384954 - ], - [ - 4.2346426, - 50.7384954 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-03T11:38:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "food", - "answer": 7, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 7 - }, - "id": 118052653 - } - }, - { - "id": 118051527, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6489401, - 50.8581773 - ], - [ - 4.6545312, - 50.8581773 - ], - [ - 4.6545312, - 50.8602827 - ], - [ - 4.6489401, - 50.8602827 - ], - [ - 4.6489401, - 50.8581773 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Els Q", - "uid": "15213418", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-03T11:01:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 6, - "delete": 0, - "area": 0.0000117715019399882, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-24T07:52:41.965137Z", - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toerisme_vlaanderen", - "answer": 7, - "create": 3, - "locale": "nl", - "imagery": "osm" - }, - "id": 118051527 - } - }, - { - "id": 118049274, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.20932, - 50.9061817 - ], - [ - 4.2411283, - 50.9061817 - ], - [ - 4.2411283, - 50.9330615 - ], - [ - 4.20932, - 50.9330615 - ], - [ - 4.20932, - 50.9061817 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-03T09:58:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0.000855000742340097, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toerisme_vlaanderen", - "answer": 12, - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 118049274 - } - }, - { - "id": 118048962, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9153166, - 50.2846207 - ], - [ - 5.9153166, - 50.2846207 - ], - [ - 5.9153166, - 50.2846207 - ], - [ - 5.9153166, - 50.2846207 - ], - [ - 5.9153166, - 50.2846207 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-03T09:49:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "bookcases", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "change_within_500m": 2 - }, - "id": 118048962 - } - }, - { - "id": 118045751, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.1087168, - 49.1948325 - ], - [ - 8.1142469, - 49.1948325 - ], - [ - 8.1142469, - 49.197315 - ], - [ - 8.1087168, - 49.197315 - ], - [ - 8.1087168, - 49.1948325 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Dinn0", - "uid": "14893874", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-03T08:05:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.0000137284732500344, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cycle_infra", - "answer": 10, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 10 - }, - "id": 118045751 - } - }, - { - "id": 118045644, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.0760723, - 48.0995903 - ], - [ - 15.1683594, - 48.0995903 - ], - [ - 15.1683594, - 48.1501746 - ], - [ - 15.0760723, - 48.1501746 - ], - [ - 15.0760723, - 48.0995903 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "alxGS", - "uid": "13367754", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-03T08:00:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 50, - "delete": 0, - "area": 0.00466827835252973, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 79, - "locale": "de", - "imagery": "osm" - }, - "id": 118045644 - } - }, - { - "id": 118036767, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.058967, - 50.8197098 - ], - [ - 5.2150058, - 50.8197098 - ], - [ - 5.2150058, - 50.9106112 - ], - [ - 5.058967, - 50.9106112 - ], - [ - 5.058967, - 50.8197098 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-02T23:07:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 8, - "delete": 0, - "area": 0.01418414537432, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 8, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 8 - }, - "id": 118036767 - } - }, - { - "id": 118032364, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9134361, - 50.283579 - ], - [ - 5.9155768, - 50.283579 - ], - [ - 5.9155768, - 50.2881679 - ], - [ - 5.9134361, - 50.2881679 - ], - [ - 5.9134361, - 50.283579 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-02T20:04:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 38, - "modify": 124, - "delete": 13, - "area": 0.00000982345822998835, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 116, - "theme": "grb", - "delete": 13, - "import": 5, - "locale": "nl", - "imagery": "osm", - "conflation": 30 - }, - "id": 118032364 - } - }, - { - "id": 118030744, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.1131402, - 49.1948534 - ], - [ - 8.1155705, - 49.1948534 - ], - [ - 8.1155705, - 49.1984221 - ], - [ - 8.1131402, - 49.1984221 - ], - [ - 8.1131402, - 49.1948534 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Dinn0", - "uid": "14893874", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-02T19:08:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 8, - "delete": 0, - "area": 0.00000867301161000706, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 11, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 11 - }, - "id": 118030744 - } - }, - { - "id": 118028576, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9207833, - 50.2868903 - ], - [ - 5.9207833, - 50.2868903 - ], - [ - 5.9207833, - 50.2868903 - ], - [ - 5.9207833, - 50.2868903 - ], - [ - 5.9207833, - 50.2868903 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-02T17:54:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "playgrounds", - "answer": 2, - "locale": "nl", - "imagery": "SPW_ORTHO_LAST", - "change_within_500m": 2 - }, - "id": 118028576 - } - }, - { - "id": 118026853, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.92103, - 50.28615 - ], - [ - 5.92103, - 50.28615 - ], - [ - 5.92103, - 50.28615 - ], - [ - 5.92103, - 50.28615 - ], - [ - 5.92103, - 50.28615 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-02T16:57:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "waste", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_50m": 2 - }, - "id": 118026853 - } - }, - { - "id": 118026471, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9152713, - 50.2846641 - ], - [ - 5.9152713, - 50.2846641 - ], - [ - 5.9152713, - 50.2846641 - ], - [ - 5.9152713, - 50.2846641 - ], - [ - 5.9152713, - 50.2846641 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-02T16:44:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "path": "mc/develop/", - "theme": "bookcases", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 118026471 - } - }, - { - "id": 118026184, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.91308, - 50.2848646 - ], - [ - 5.9207833, - 50.2848646 - ], - [ - 5.9207833, - 50.2868903 - ], - [ - 5.91308, - 50.2868903 - ], - [ - 5.91308, - 50.2848646 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.5", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-02T16:33:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 8, - "modify": 7, - "delete": 0, - "area": 0.0000156045748100339, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 15, - "create": 8, - "locale": "nl", - "imagery": "osm", - "add-image": 5, - "change_over_5000m": 8, - "change_within_25m": 21, - "move:node/9550046979": "improve_accuracy" - }, - "id": 118026184 - } - }, - { - "id": 118025995, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2279131, - 50.8094247 - ], - [ - 5.2349775, - 50.8094247 - ], - [ - 5.2349775, - 50.8125636 - ], - [ - 5.2279131, - 50.8125636 - ], - [ - 5.2279131, - 50.8094247 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 531, - "name": "Mapbox: Overlapping features" - } - ], - "tags": [], - "features": [ - { - "url": "way-1036273113", - "osm_id": 1036273113, - "reasons": [ - 531 - ], - "version": 2 - } - ], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 2, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-02T16:27:07Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 125, - "modify": 193, - "delete": 17, - "area": 0.0000221744451599729, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 178, - "path": "mc/develop/", - "theme": "grb", - "delete": 17, - "import": 77, - "locale": "nl", - "imagery": "osm", - "conflation": 32 - }, - "id": 118025995 - } - }, - { - "id": 118024290, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9770838, - 51.2024475 - ], - [ - 4.9781358, - 51.2024475 - ], - [ - 4.9781358, - 51.2046523 - ], - [ - 4.9770838, - 51.2046523 - ], - [ - 4.9770838, - 51.2024475 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-02T15:35:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 18, - "delete": 0, - "area": 0.00000231944960000239, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 16, - "theme": "grb", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "conflation": 4 - }, - "id": 118024290 - } - }, - { - "id": 118021335, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.704264, - 50.2787235 - ], - [ - 5.9107947, - 50.2787235 - ], - [ - 5.9107947, - 51.0564835 - ], - [ - 3.704264, - 51.0564835 - ], - [ - 3.704264, - 50.2787235 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-02T14:11:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 3, - "delete": 0, - "area": 1.716151317232, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "127.0.0.1:1234", - "theme": "toerisme_vlaanderen", - "answer": 3, - "create": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 2, - "change_within_25m": 2 - }, - "id": 118021335 - } - }, - { - "id": 118018714, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9029005, - 50.9377961 - ], - [ - 4.9033352, - 50.9377961 - ], - [ - 4.9033352, - 50.937813 - ], - [ - 4.9029005, - 50.937813 - ], - [ - 4.9029005, - 50.9377961 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-02T12:51:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 7.34642999935934e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 118018714 - } - }, - { - "id": 118012467, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3717244, - 50.8638227 - ], - [ - 4.3729314, - 50.8638227 - ], - [ - 4.3729314, - 50.8675948 - ], - [ - 4.3717244, - 50.8675948 - ], - [ - 4.3717244, - 50.8638227 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-02T10:06:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 4, - "delete": 0, - "area": 0.0000045529246999987, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 15, - "create": 4, - "locale": "nl", - "imagery": "UrbISOrtho", - "add-image": 4 - }, - "id": 118012467 - } - }, - { - "id": 118003572, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5360277, - 51.1232626 - ], - [ - 4.6033846, - 51.1232626 - ], - [ - 4.6033846, - 51.1712872 - ], - [ - 4.5360277, - 51.1712872 - ], - [ - 4.5360277, - 51.1232626 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-02T05:34:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 128, - "delete": 0, - "area": 0.00323478817974034, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 129, - "locale": "nl", - "imagery": "osm" - }, - "id": 118003572 - } - }, - { - "id": 118001792, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.3671677, - 47.6799218 - ], - [ - -122.367167, - 47.6799218 - ], - [ - -122.367167, - 47.6799218 - ], - [ - -122.3671677, - 47.6799218 - ], - [ - -122.3671677, - 47.6799218 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Wim L", - "uid": "223681", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-02T03:38:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "bookcases", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 118001792 - } - }, - { - "id": 118001446, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9009786, - 50.9377585 - ], - [ - 5.0093492, - 50.9377585 - ], - [ - 5.0093492, - 51.0675961 - ], - [ - 4.9009786, - 51.0675961 - ], - [ - 4.9009786, - 50.9377585 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-02T03:10:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 11, - "delete": 0, - "area": 0.0140705786145602, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "etymology", - "answer": 11, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 11 - }, - "id": 118001446 - } - }, - { - "id": 117999381, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3546511, - 50.8620587 - ], - [ - 4.3550978, - 50.8620587 - ], - [ - 4.3550978, - 50.8621936 - ], - [ - 4.3546511, - 50.8621936 - ], - [ - 4.3546511, - 50.8620587 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-02T00:39:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 6.02598299996234e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 117999381 - } - }, - { - "id": 117994286, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3552119, - 50.8627531 - ], - [ - 4.3555928, - 50.8627531 - ], - [ - 4.3555928, - 50.8629816 - ], - [ - 4.3552119, - 50.8629816 - ], - [ - 4.3552119, - 50.8627531 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-01T20:49:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 8.703564999961e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "playgrounds", - "answer": 3, - "locale": "nl", - "imagery": "AGIV", - "add-image": 1 - }, - "id": 117994286 - } - }, - { - "id": 117994171, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3549539, - 50.8624438 - ], - [ - 4.3549539, - 50.8624438 - ], - [ - 4.3549539, - 50.8624438 - ], - [ - 4.3549539, - 50.8624438 - ], - [ - 4.3549539, - 50.8624438 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-01T20:46:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "sport_pitches", - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "add-image": 1 - }, - "id": 117994171 - } - }, - { - "id": 117993326, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3557774, - 50.8618885 - ], - [ - 4.3684649, - 50.8618885 - ], - [ - 4.3684649, - 50.8684831 - ], - [ - 4.3557774, - 50.8684831 - ], - [ - 4.3557774, - 50.8618885 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-01T20:20:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 1, - "delete": 0, - "area": 0.0000836689874999971, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "benches", - "answer": 3, - "create": 2, - "locale": "nl", - "imagery": "UrbISOrtho", - "add-image": 2 - }, - "id": 117993326 - } - }, - { - "id": 117993019, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3553837, - 50.8640081 - ], - [ - 4.3727538, - 50.8640081 - ], - [ - 4.3727538, - 50.8684382 - ], - [ - 4.3553837, - 50.8684382 - ], - [ - 4.3553837, - 50.8640081 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-01T20:10:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 9, - "delete": 0, - "area": 0.0000769512800100073, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 21, - "create": 4, - "locale": "nl", - "imagery": "AGIV", - "add-image": 7 - }, - "id": 117993019 - } - }, - { - "id": 117992969, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3685793, - 50.8684869 - ], - [ - 4.3685793, - 50.8684869 - ], - [ - 4.3685793, - 50.8684869 - ], - [ - 4.3685793, - 50.8684869 - ], - [ - 4.3685793, - 50.8684869 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-01T20:08:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "charging_stations", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 117992969 - } - }, - { - "id": 117986662, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8804295, - 51.060373 - ], - [ - 4.8804295, - 51.060373 - ], - [ - 4.8804295, - 51.060373 - ], - [ - 4.8804295, - 51.060373 - ], - [ - 4.8804295, - 51.060373 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Frans_Napaters", - "uid": "3574538", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-01T16:43:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "climbing", - "answer": 6, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 6 - }, - "id": 117986662 - } - }, - { - "id": 117981164, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1795213, - 50.7525094 - ], - [ - 5.2149104, - 50.7525094 - ], - [ - 5.2149104, - 50.8172188 - ], - [ - 5.1795213, - 50.8172188 - ], - [ - 5.1795213, - 50.7525094 - ] - ] - ] - }, - "properties": { - "check_user": "joost schouppe", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jan Pirard", - "uid": "13678221", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-01T13:54:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 3, - "delete": 0, - "area": 0.00229000742753992, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-03-24T07:51:37.490278Z", - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "toerisme_vlaanderen", - "answer": 8, - "create": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 117981164 - } - }, - { - "id": 117978946, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.6101442, - 44.1683316 - ], - [ - 9.6101442, - 44.1683316 - ], - [ - 9.6101442, - 44.1683316 - ], - [ - 9.6101442, - 44.1683316 - ], - [ - 9.6101442, - 44.1683316 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Dinn0", - "uid": "14893874", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-01T12:48:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "cyclofix", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_100m": 1 - }, - "id": 117978946 - } - }, - { - "id": 117975552, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2223008, - 50.8070497 - ], - [ - 5.2432544, - 50.8070497 - ], - [ - 5.2432544, - 50.8129331 - ], - [ - 5.2223008, - 50.8129331 - ], - [ - 5.2223008, - 50.8070497 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 531, - "name": "Mapbox: Overlapping features" - } - ], - "tags": [], - "features": [ - { - "url": "way-1036273114", - "osm_id": 1036273114, - "reasons": [ - 531 - ], - "version": 1 - } - ], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-01T11:06:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1202, - "modify": 1340, - "delete": 8, - "area": 0.000123278410240036, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 1184, - "path": "mc/develop/", - "theme": "grb", - "delete": 8, - "import": 221, - "locale": "nl", - "imagery": "osm", - "conflation": 332 - }, - "id": 117975552 - } - }, - { - "id": 117974627, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8806415, - 42.669099 - ], - [ - 2.8806415, - 42.669099 - ], - [ - 2.8806415, - 42.669099 - ], - [ - 2.8806415, - 42.669099 - ], - [ - 2.8806415, - 42.669099 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LySioS", - "uid": "11579673", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-01T10:41:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "theme": "aed", - "answer": 4, - "create": 1, - "locale": "fr", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 117974627 - } - }, - { - "id": 117973531, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2410549, - 50.7970064 - ], - [ - 5.2667139, - 50.7970064 - ], - [ - 5.2667139, - 50.8133577 - ], - [ - 5.2410549, - 50.8133577 - ], - [ - 5.2410549, - 50.7970064 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-01T10:11:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 901, - "modify": 1280, - "delete": 20, - "area": 0.000419558006699915, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 1143, - "path": "mc/develop/", - "theme": "grb", - "delete": 20, - "import": 119, - "locale": "nl", - "imagery": "osm", - "conflation": 296 - }, - "id": 117973531 - } - }, - { - "id": 117972399, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2559642, - 50.8083384 - ], - [ - 5.2653054, - 50.8083384 - ], - [ - 5.2653054, - 50.8129027 - ], - [ - 5.2559642, - 50.8129027 - ], - [ - 5.2559642, - 50.8083384 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-01T09:42:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 211, - "modify": 815, - "delete": 20, - "area": 0.0000426360391600502, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 709, - "path": "mc/develop/", - "theme": "grb", - "delete": 20, - "import": 48, - "locale": "nl", - "imagery": "osm", - "conflation": 218 - }, - "id": 117972399 - } - }, - { - "id": 117969677, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2570031, - 50.8081928 - ], - [ - 5.2664061, - 50.8081928 - ], - [ - 5.2664061, - 50.8131489 - ], - [ - 5.2570031, - 50.8131489 - ], - [ - 5.2570031, - 50.8081928 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.16.3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-03-01T08:20:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1802, - "modify": 1066, - "delete": 3, - "area": 0.0000466022083000098, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "pietervdvn.github.io", - "move": 961, - "path": "mc/develop/", - "theme": "grb", - "delete": 3, - "import": 258, - "locale": "nl", - "imagery": "osm", - "conflation": 248 - }, - "id": 117969677 - } - }, - { - "id": 117967568, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9774652, - 51.2026603 - ], - [ - 4.9806712, - 51.2026603 - ], - [ - 4.9806712, - 51.2067615 - ], - [ - 4.9774652, - 51.2067615 - ], - [ - 4.9774652, - 51.2026603 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.16.4", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-03-01T06:54:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 54, - "modify": 438, - "delete": 6, - "area": 0.0000131484472000013, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "mapcomplete.osm.be", - "move": 387, - "theme": "grb", - "answer": 3, - "delete": 6, - "import": 9, - "locale": "nl", - "imagery": "osm", - "conflation": 112 - }, - "id": 117967568 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-4.json b/Docs/Tools/stats/stats.2022-4.json deleted file mode 100644 index fb4c6dff40..0000000000 --- a/Docs/Tools/stats/stats.2022-4.json +++ /dev/null @@ -1,60956 +0,0 @@ -{ - "features": [ - { - "id": 120402521, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2398643, - -39.8452535 - ], - [ - -73.2364631, - -39.8452535 - ], - [ - -73.2364631, - -39.8438733 - ], - [ - -73.2398643, - -39.8438733 - ], - [ - -73.2398643, - -39.8452535 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-30T23:33:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 14, - "delete": 0, - "area": 0.00000469433623999804, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 2, - "locale": "es", - "imagery": "osm", - "add-image": 12 - }, - "id": 120402521 - } - }, - { - "id": 120399310, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0260386, - 51.1162673 - ], - [ - 5.0396545, - 51.1162673 - ], - [ - 5.0396545, - 51.1241221 - ], - [ - 5.0260386, - 51.1241221 - ], - [ - 5.0260386, - 51.1162673 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-30T20:43:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 6, - "delete": 0, - "area": 0.000106950171320059, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "move": 2, - "theme": "benches", - "answer": 13, - "create": 1, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "change_over_5000m": 1, - "change_within_5000m": 15, - "move:node/9677061284": "improve_accuracy", - "move:node/9705812213": "improve_accuracy" - }, - "id": 120399310 - } - }, - { - "id": 120399138, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0320273, - 48.500312 - ], - [ - 9.0512069, - 48.500312 - ], - [ - 9.0512069, - 48.5066186 - ], - [ - 9.0320273, - 48.5066186 - ], - [ - 9.0320273, - 48.500312 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-30T20:36:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.000120958065360046, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 6, - "locale": "de", - "imagery": "osm" - }, - "id": 120399138 - } - }, - { - "id": 120398990, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2327853, - -39.8450743 - ], - [ - -73.2327853, - -39.8450743 - ], - [ - -73.2327853, - -39.8450743 - ], - [ - -73.2327853, - -39.8450743 - ], - [ - -73.2327853, - -39.8450743 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-30T20:31:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osm", - "add-image": 1 - }, - "id": 120398990 - } - }, - { - "id": 120398268, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7464049, - 50.8339484 - ], - [ - 4.7464049, - 50.8339484 - ], - [ - 4.7464049, - 50.8339484 - ], - [ - 4.7464049, - 50.8339484 - ], - [ - 4.7464049, - 50.8339484 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "toeklk", - "uid": "219908", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-30T20:04:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "import": 1, - "locale": "nl", - "imagery": "osm", - "import:node/9705865439": "source: https://osm.org/note/3090132" - }, - "id": 120398268 - } - }, - { - "id": 120397785, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2333302, - 50.7383987 - ], - [ - 4.2333302, - 50.7383987 - ], - [ - 4.2333302, - 50.7383987 - ], - [ - 4.2333302, - 50.7383987 - ], - [ - 4.2333302, - 50.7383987 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #postboxes", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-30T19:43:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/postboxes.html", - "theme": "postboxes", - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 120397785 - } - }, - { - "id": 120396455, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6966718, - 50.8510167 - ], - [ - 4.7154658, - 50.8510167 - ], - [ - 4.7154658, - 50.8838936 - ], - [ - 4.6966718, - 50.8838936 - ], - [ - 4.6966718, - 50.8510167 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cimm", - "uid": "3921", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-30T18:55:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 78, - "delete": 0, - "area": 0.000617888458599954, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 113, - "locale": "nl", - "imagery": "osm" - }, - "id": 120396455 - } - }, - { - "id": 120396401, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7391439, - 51.1725831 - ], - [ - 4.7475054, - 51.1725831 - ], - [ - 4.7475054, - 51.1774043 - ], - [ - 4.7391439, - 51.1774043 - ], - [ - 4.7391439, - 51.1725831 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-30T18:53:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 502, - "modify": 50, - "delete": 3, - "area": 0.0000403124638000148, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 41, - "theme": "grb", - "delete": 3, - "import": 53, - "locale": "nl", - "imagery": "osm", - "conflation": 18 - }, - "id": 120396401 - } - }, - { - "id": 120396255, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.8565603, - 48.1074348 - ], - [ - 7.8565603, - 48.1074348 - ], - [ - 7.8565603, - 48.1074348 - ], - [ - 7.8565603, - 48.1074348 - ], - [ - 7.8565603, - 48.1074348 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "sneidoer", - "uid": "15782267", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-30T18:48:07Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 3, - "create": 1, - "locale": "de", - "imagery": "Mapbox" - }, - "id": 120396255 - } - }, - { - "id": 120395804, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7386571, - 51.1726844 - ], - [ - 4.7428277, - 51.1726844 - ], - [ - 4.7428277, - 51.1744161 - ], - [ - 4.7386571, - 51.1744161 - ], - [ - 4.7386571, - 51.1726844 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-30T18:31:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 273, - "modify": 91, - "delete": 0, - "area": 0.00000722222802000256, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 74, - "theme": "grb", - "import": 31, - "locale": "nl", - "imagery": "osm", - "conflation": 34 - }, - "id": 120395804 - } - }, - { - "id": 120394790, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7394681, - 51.1730635 - ], - [ - 4.7487216, - 51.1730635 - ], - [ - 4.7487216, - 51.1772826 - ], - [ - 4.7394681, - 51.1772826 - ], - [ - 4.7394681, - 51.1730635 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - }, - { - "id": 531, - "name": "Mapbox: Overlapping features" - } - ], - "tags": [], - "features": [ - { - "url": "way-1056277234", - "osm_id": 1056277234, - "reasons": [ - 531 - ], - "version": 1 - }, - { - "url": "way-1056277525", - "osm_id": 1056277525, - "reasons": [ - 531 - ], - "version": 1 - }, - { - "url": "way-1056277302", - "osm_id": 1056277302, - "reasons": [ - 531 - ], - "version": 1 - } - ], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-30T18:01:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1435, - "modify": 422, - "delete": 2, - "area": 0.0000390414418500015, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 359, - "theme": "grb", - "delete": 2, - "import": 187, - "locale": "nl", - "imagery": "osm", - "conflation": 130 - }, - "id": 120394790 - } - }, - { - "id": 120394688, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7222135, - 51.0532036 - ], - [ - 3.7263697, - 51.0532036 - ], - [ - 3.7263697, - 51.0566991 - ], - [ - 3.7222135, - 51.0566991 - ], - [ - 3.7222135, - 51.0532036 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-30T17:57:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.0000145279970999976, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 2, - "change_within_25m": 2, - "change_within_500m": 1 - }, - "id": 120394688 - } - }, - { - "id": 120394541, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0137803, - 50.7709559 - ], - [ - 3.6195344, - 50.7709559 - ], - [ - 3.6195344, - 50.9773679 - ], - [ - 3.0137803, - 50.9773679 - ], - [ - 3.0137803, - 50.7709559 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-30T17:53:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 16, - "modify": 0, - "delete": 0, - "area": 0.1250349152892, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 1, - "import": 15, - "locale": "nl", - "imagery": "AGIV", - "import:node/9705693346": "source: https://osm.org/note/3156316", - "import:node/9705693365": "source: https://osm.org/note/3156535", - "import:node/9705693366": "source: https://osm.org/note/3156538", - "import:node/9705693673": "source: https://osm.org/note/3156454", - "import:node/9705702007": "source: https://osm.org/note/3156330", - "import:node/9705703274": "source: https://osm.org/note/3156456", - "import:node/9705713129": "source: https://osm.org/note/3156588", - "import:node/9705722354": "source: https://osm.org/note/3156522", - "import:node/9705742551": "source: https://osm.org/note/3156553", - "import:node/9705742552": "source: https://osm.org/note/3156251", - "import:node/9705744996": "source: https://osm.org/note/3156322", - "import:node/9705744997": "source: https://osm.org/note/3156544", - "import:node/9705744998": "source: https://osm.org/note/3156391", - "import:node/9705762101": "source: https://osm.org/note/3099188", - "import:node/9705764047": "source: https://osm.org/note/3156517" - }, - "id": 120394541 - } - }, - { - "id": 120394538, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7264761, - 51.0576823 - ], - [ - 3.7264761, - 51.0576823 - ], - [ - 3.7264761, - 51.0576823 - ], - [ - 3.7264761, - 51.0576823 - ], - [ - 3.7264761, - 51.0576823 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-30T17:53:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 120394538 - } - }, - { - "id": 120392891, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7224951, - 51.0557129 - ], - [ - 3.7224951, - 51.0557129 - ], - [ - 3.7224951, - 51.0557129 - ], - [ - 3.7224951, - 51.0557129 - ], - [ - 3.7224951, - 51.0557129 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-30T16:56:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/shops.html", - "theme": "shops", - "answer": 4, - "locale": "nl", - "imagery": "osm", - "change_within_500m": 4 - }, - "id": 120392891 - } - }, - { - "id": 120392621, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3895547, - 50.8556532 - ], - [ - 4.3895547, - 50.8556532 - ], - [ - 4.3895547, - 50.8556532 - ], - [ - 4.3895547, - 50.8556532 - ], - [ - 4.3895547, - 50.8556532 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-30T16:49:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 120392621 - } - }, - { - "id": 120392452, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.8199535, - 55.3213495 - ], - [ - 12.5566509, - 55.3213495 - ], - [ - 12.5566509, - 55.7735667 - ], - [ - 8.8199535, - 55.7735667 - ], - [ - 8.8199535, - 55.3213495 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Niels Elgaard Larsen", - "uid": "1288", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-30T16:44:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 6, - "delete": 0, - "area": 1.68979883547531, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "answer": 7, - "locale": "en", - "imagery": "osm" - }, - "id": 120392452 - } - }, - { - "id": 120392398, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2432576, - -39.8455509 - ], - [ - -73.2411974, - -39.8455509 - ], - [ - -73.2411974, - -39.8440972 - ], - [ - -73.2432576, - -39.8440972 - ], - [ - -73.2432576, - -39.8455509 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-30T16:42:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 11, - "delete": 0, - "area": 0.00000299491274000159, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 6, - "create": 4, - "locale": "es", - "imagery": "Mapbox", - "add-image": 7, - "change_over_5000m": 3, - "change_within_25m": 9, - "change_within_500m": 1 - }, - "id": 120392398 - } - }, - { - "id": 120392156, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.7078355, - 55.3547277 - ], - [ - 8.7746255, - 55.3547277 - ], - [ - 8.7746255, - 55.4610372 - ], - [ - 8.7078355, - 55.4610372 - ], - [ - 8.7078355, - 55.3547277 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Niels Elgaard Larsen", - "uid": "1288", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-30T16:37:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 7, - "delete": 0, - "area": 0.00710041150500023, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "answer": 7, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120392156 - } - }, - { - "id": 120392071, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7411807, - 51.1736549 - ], - [ - 4.7488425, - 51.1736549 - ], - [ - 4.7488425, - 51.1755151 - ], - [ - 4.7411807, - 51.1755151 - ], - [ - 4.7411807, - 51.1736549 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-30T16:35:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 466, - "modify": 154, - "delete": 0, - "area": 0.0000142524803599687, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 129, - "theme": "grb", - "import": 56, - "locale": "nl", - "imagery": "osm", - "conflation": 54 - }, - "id": 120392071 - } - }, - { - "id": 120392066, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-30T16:34:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 120392066 - } - }, - { - "id": 120390495, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2367627, - -39.845014 - ], - [ - -73.2367627, - -39.845014 - ], - [ - -73.2367627, - -39.845014 - ], - [ - -73.2367627, - -39.845014 - ], - [ - -73.2367627, - -39.845014 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-30T15:50:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "HDM_HOT", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 120390495 - } - }, - { - "id": 120390114, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7274309, - 51.0475331 - ], - [ - 3.7274309, - 51.0475331 - ], - [ - 3.7274309, - 51.0475331 - ], - [ - 3.7274309, - 51.0475331 - ], - [ - 3.7274309, - 51.0475331 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-30T15:38:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "locale": "en", - "imagery": "osm", - "add-image": 2 - }, - "id": 120390114 - } - }, - { - "id": 120388913, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7419512, - 50.924552 - ], - [ - 5.4482154, - 50.924552 - ], - [ - 5.4482154, - 51.1750418 - ], - [ - 4.7419512, - 51.1750418 - ], - [ - 4.7419512, - 50.924552 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-30T15:09:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1261, - "modify": 572, - "delete": 5, - "area": 0.176911978205163, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 488, - "theme": "grb", - "delete": 5, - "import": 137, - "locale": "nl", - "imagery": "osm", - "conflation": 168 - }, - "id": 120388913 - } - }, - { - "id": 120384042, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8172066, - 50.7831854 - ], - [ - 3.1737285, - 50.7831854 - ], - [ - 3.1737285, - 51.0643974 - ], - [ - 2.8172066, - 51.0643974 - ], - [ - 2.8172066, - 50.7831854 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-30T12:52:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 0.100258236542799, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "import": 2, - "locale": "nl", - "imagery": "AGIV", - "import:node/9705089111": "source: https://osm.org/note/3156493", - "import:node/9705160168": "source: https://osm.org/note/3156480" - }, - "id": 120384042 - } - }, - { - "id": 120379913, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9902848, - 48.4983452 - ], - [ - 8.9920034, - 48.4983452 - ], - [ - 8.9920034, - 48.4984939 - ], - [ - 8.9902848, - 48.4984939 - ], - [ - 8.9902848, - 48.4983452 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-30T10:59:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 2.55555819994695e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 5, - "locale": "de", - "imagery": "osm", - "change_within_25m": 4, - "change_within_50m": 1 - }, - "id": 120379913 - } - }, - { - "id": 120379466, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9904583, - 48.4979853 - ], - [ - 8.9905921, - 48.4979853 - ], - [ - 8.9905921, - 48.4982191 - ], - [ - 8.9904583, - 48.4982191 - ], - [ - 8.9904583, - 48.4979853 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-30T10:44:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 3.12824399996426e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 3, - "locale": "de", - "imagery": "osm", - "add-image": 2, - "change_within_25m": 5 - }, - "id": 120379466 - } - }, - { - "id": 120379440, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2174503, - 49.8073122 - ], - [ - 5.2174503, - 49.8073122 - ], - [ - 5.2174503, - 49.8073122 - ], - [ - 5.2174503, - 49.8073122 - ], - [ - 5.2174503, - 49.8073122 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Driesvr", - "uid": "4757701", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 2, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-30T10:43:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/nature.html", - "theme": "nature", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 120379440 - } - }, - { - "id": 120379056, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9904214, - 48.4972016 - ], - [ - 8.9919615, - 48.4972016 - ], - [ - 8.9919615, - 48.4985387 - ], - [ - 8.9904214, - 48.4985387 - ], - [ - 8.9904214, - 48.4972016 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-30T10:32:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000205926771000061, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "locale": "de", - "imagery": "osm", - "add-image": 3, - "change_within_25m": 2, - "change_within_50m": 1 - }, - "id": 120379056 - } - }, - { - "id": 120379014, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7034453, - 51.05174 - ], - [ - 3.7034681, - 51.05174 - ], - [ - 3.7034681, - 51.051783 - ], - [ - 3.7034453, - 51.051783 - ], - [ - 3.7034453, - 51.05174 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #facadegardens", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-30T10:30:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 4, - "delete": 0, - "area": 9.80399999954332e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/facadegardens.html", - "theme": "facadegardens", - "answer": 6, - "create": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 2, - "change_within_25m": 7 - }, - "id": 120379014 - } - }, - { - "id": 120378778, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9913481, - 48.4987423 - ], - [ - 8.9913493, - 48.4987423 - ], - [ - 8.9913493, - 48.4987678 - ], - [ - 8.9913481, - 48.4987678 - ], - [ - 8.9913481, - 48.4987423 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-30T10:24:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 3.05999999946988e-11, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/nature.html", - "theme": "nature", - "answer": 2, - "locale": "de", - "imagery": "osm", - "change_within_25m": 2 - }, - "id": 120378778 - } - }, - { - "id": 120378587, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9903969, - 48.4980299 - ], - [ - 8.9914248, - 48.4980299 - ], - [ - 8.9914248, - 48.4986756 - ], - [ - 8.9903969, - 48.4986756 - ], - [ - 8.9903969, - 48.4980299 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-30T10:18:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 6.6371503000001e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "locale": "de", - "imagery": "osm", - "add-image": 2, - "change_within_50m": 2 - }, - "id": 120378587 - } - }, - { - "id": 120377943, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9904262, - 48.4979179 - ], - [ - 8.9929502, - 48.4979179 - ], - [ - 8.9929502, - 48.5000749 - ], - [ - 8.9904262, - 48.5000749 - ], - [ - 8.9904262, - 48.4979179 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-30T09:55:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 36, - "delete": 0, - "area": 0.0000054442680000085, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "move": 1, - "theme": "trees", - "answer": 58, - "create": 4, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 4, - "change_within_25m": 41, - "change_within_50m": 12, - "change_within_100m": 6, - "move:node/9704904037": "improve_accuracy" - }, - "id": 120377943 - } - }, - { - "id": 120377903, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7036753, - 51.0489713 - ], - [ - 3.7286967, - 51.0489713 - ], - [ - 3.7286967, - 51.0527377 - ], - [ - 3.7036753, - 51.0527377 - ], - [ - 3.7036753, - 51.0489713 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-30T09:54:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 8, - "delete": 0, - "area": 0.0000942406009600875, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", - "theme": "cyclofix", - "answer": 9, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 4, - "change_within_50m": 3, - "change_within_100m": 5, - "change_within_500m": 4, - "change_within_5000m": 1 - }, - "id": 120377903 - } - }, - { - "id": 120377432, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.253825, - 51.0431958 - ], - [ - 3.7162827, - 51.0431958 - ], - [ - 3.7162827, - 51.2358986 - ], - [ - 3.253825, - 51.2358986 - ], - [ - 3.253825, - 51.0431958 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-30T09:38:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.0891168936715596, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/pets.html", - "theme": "pets", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_500m": 1, - "change_within_5000m": 1 - }, - "id": 120377432 - } - }, - { - "id": 120377097, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5635829, - 51.0952383 - ], - [ - 3.5635829, - 51.0952383 - ], - [ - 3.5635829, - 51.0952383 - ], - [ - 3.5635829, - 51.0952383 - ], - [ - 3.5635829, - 51.0952383 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "paul taildeman", - "uid": "15770618", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-30T09:26:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 120377097 - } - }, - { - "id": 120376939, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2557681, - 50.7130243 - ], - [ - 4.2687988, - 50.7130243 - ], - [ - 4.2687988, - 50.7278217 - ], - [ - 4.2557681, - 50.7278217 - ], - [ - 4.2557681, - 50.7130243 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-30T09:22:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.000192820480179986, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 120376939 - } - }, - { - "id": 120374917, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1286634, - 50.8943555 - ], - [ - 3.3460497, - 50.8943555 - ], - [ - 3.3460497, - 50.9457302 - ], - [ - 3.1286634, - 50.9457302 - ], - [ - 3.1286634, - 50.8943555 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-30T07:59:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 0, - "delete": 0, - "area": 0.0111681559466093, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "import": 3, - "locale": "nl", - "imagery": "AGIV", - "import:node/9704729883": "source: https://osm.org/note/3156283", - "import:node/9704757597": "source: https://osm.org/note/3156545", - "import:node/9704768060": "source: https://osm.org/note/3156415" - }, - "id": 120374917 - } - }, - { - "id": 120374390, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1913973, - 50.8631001 - ], - [ - 5.2006824, - 50.8631001 - ], - [ - 5.2006824, - 50.8704355 - ], - [ - 5.1913973, - 50.8704355 - ], - [ - 5.1913973, - 50.8631001 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-30T07:36:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 960, - "modify": 705, - "delete": 4, - "area": 0.0000681099225400187, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 597, - "theme": "grb", - "answer": 3, - "delete": 4, - "import": 90, - "locale": "nl", - "imagery": "osm", - "conflation": 210 - }, - "id": 120374390 - } - }, - { - "id": 120372631, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0044315, - 51.2455364 - ], - [ - 3.3567665, - 51.2455364 - ], - [ - 3.3567665, - 51.3415574 - ], - [ - 3.0044315, - 51.3415574 - ], - [ - 3.0044315, - 51.2455364 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-30T06:19:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 7, - "modify": 0, - "delete": 0, - "area": 0.0338315590350001, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "import": 7, - "locale": "nl", - "imagery": "AGIV10cm", - "import:node/9704566926": "source: https://osm.org/note/3156388", - "import:node/9704570589": "source: https://osm.org/note/3156265", - "import:node/9704625186": "source: https://osm.org/note/3156297", - "import:node/9704635666": "source: https://osm.org/note/3156432", - "import:node/9704661419": "source: https://osm.org/note/3156580", - "import:node/9704667496": "source: https://osm.org/note/3156361", - "import:node/9704669954": "source: https://osm.org/note/3156403" - }, - "id": 120372631 - } - }, - { - "id": 120372165, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1863906, - 50.9148896 - ], - [ - 3.1900667, - 50.9148896 - ], - [ - 3.1900667, - 50.9168361 - ], - [ - 3.1863906, - 50.9168361 - ], - [ - 3.1863906, - 50.9148896 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Tim Couwelier", - "uid": "7246683", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-30T05:50:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 331, - "modify": 72, - "delete": 0, - "area": 0.00000715552864998283, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 59, - "theme": "grb", - "import": 42, - "locale": "nl", - "imagery": "osm", - "conflation": 26 - }, - "id": 120372165 - } - }, - { - "id": 120371966, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1883005, - 50.8605881 - ], - [ - 5.2418551, - 50.8605881 - ], - [ - 5.2418551, - 50.8986694 - ], - [ - 5.1883005, - 50.8986694 - ], - [ - 5.1883005, - 50.8605881 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-30T05:37:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2986, - "modify": 711, - "delete": 3, - "area": 0.00203942878898009, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 646, - "theme": "grb", - "answer": 4, - "delete": 3, - "import": 375, - "locale": "nl", - "imagery": "osm", - "conflation": 152, - "change_over_5000m": 139 - }, - "id": 120371966 - } - }, - { - "id": 120371769, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.666702, - -33.4410578 - ], - [ - -70.6653068, - -33.4410578 - ], - [ - -70.6653068, - -33.4401605 - ], - [ - -70.666702, - -33.4401605 - ], - [ - -70.666702, - -33.4410578 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-30T05:21:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 29, - "delete": 0, - "area": 0.0000012519129600117, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 13, - "locale": "es", - "imagery": "HDM_HOT", - "add-image": 17 - }, - "id": 120371769 - } - }, - { - "id": 120369153, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2324848, - -39.8421043 - ], - [ - -73.2324069, - -39.8421043 - ], - [ - -73.2324069, - -39.8418759 - ], - [ - -73.2324848, - -39.8418759 - ], - [ - -73.2324848, - -39.8421043 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-30T01:13:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 1.77923599989277e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "HDM_HOT", - "add-image": 4 - }, - "id": 120369153 - } - }, - { - "id": 120367932, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2328388, - -39.840476 - ], - [ - -73.2328388, - -39.840476 - ], - [ - -73.2328388, - -39.840476 - ], - [ - -73.2328388, - -39.840476 - ], - [ - -73.2328388, - -39.840476 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-29T23:34:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "create": 1, - "locale": "es", - "imagery": "HDM_HOT", - "add-image": 1 - }, - "id": 120367932 - } - }, - { - "id": 120367870, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.238302, - 50.7358458 - ], - [ - 4.238302, - 50.7358458 - ], - [ - 4.238302, - 50.7358458 - ], - [ - 4.238302, - 50.7358458 - ], - [ - 4.238302, - 50.7358458 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #postboxes", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-29T23:30:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/postboxes.html", - "theme": "postboxes", - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 120367870 - } - }, - { - "id": 120366505, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2348095, - -39.8397957 - ], - [ - -73.2348095, - -39.8397957 - ], - [ - -73.2348095, - -39.8397957 - ], - [ - -73.2348095, - -39.8397957 - ], - [ - -73.2348095, - -39.8397957 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-29T22:10:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "HDM_HOT", - "add-image": 1 - }, - "id": 120366505 - } - }, - { - "id": 120365046, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9995462, - 48.4997254 - ], - [ - 9.0006684, - 48.4997254 - ], - [ - 9.0006684, - 48.5012634 - ], - [ - 8.9995462, - 48.5012634 - ], - [ - 8.9995462, - 48.4997254 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-29T21:07:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 22, - "delete": 0, - "area": 0.00000172594359999771, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 32, - "locale": "de", - "imagery": "osm" - }, - "id": 120365046 - } - }, - { - "id": 120364465, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9068538, - 51.0911055 - ], - [ - 4.907967, - 51.0911055 - ], - [ - 4.907967, - 51.0920025 - ], - [ - 4.9068538, - 51.0920025 - ], - [ - 4.9068538, - 51.0911055 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Frans_Napaters", - "uid": "3574538", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-29T20:46:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 9.98540400001975e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "locale": "en", - "imagery": "osm", - "add-image": 5, - "change_within_5000m": 5 - }, - "id": 120364465 - } - }, - { - "id": 120364359, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9096264, - 51.1073958 - ], - [ - 4.9096264, - 51.1073958 - ], - [ - 4.9096264, - 51.1073958 - ], - [ - 4.9096264, - 51.1073958 - ], - [ - 4.9096264, - 51.1073958 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Frans_Napaters", - "uid": "3574538", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-29T20:42:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_within_1000m": 1 - }, - "id": 120364359 - } - }, - { - "id": 120363858, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2346527, - -39.8422102 - ], - [ - -73.2324386, - -39.8422102 - ], - [ - -73.2324386, - -39.8402137 - ], - [ - -73.2346527, - -39.8402137 - ], - [ - -73.2346527, - -39.8422102 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-29T20:27:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 14, - "delete": 0, - "area": 0.00000442045065000016, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "HDM_HOT", - "add-image": 14, - "change_within_25m": 3, - "change_within_500m": 2 - }, - "id": 120363858 - } - }, - { - "id": 120362003, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9044765, - 48.468765 - ], - [ - 8.980525, - 48.468765 - ], - [ - 8.980525, - 48.5262919 - ], - [ - 8.9044765, - 48.5262919 - ], - [ - 8.9044765, - 48.468765 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-29T19:30:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 101, - "delete": 0, - "area": 0.00437483445464997, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 145, - "locale": "de", - "imagery": "osm" - }, - "id": 120362003 - } - }, - { - "id": 120359646, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.276713, - 55.5092658 - ], - [ - 11.276713, - 55.5092658 - ], - [ - 11.276713, - 55.5092658 - ], - [ - 11.276713, - 55.5092658 - ], - [ - 11.276713, - 55.5092658 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Niels Elgaard Larsen", - "uid": "1288", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #dog", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-29T18:09:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "dog", - "answer": 1, - "locale": "da", - "imagery": "osm" - }, - "id": 120359646 - } - }, - { - "id": 120358624, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.251159, - -39.8277397 - ], - [ - -73.2498673, - -39.8277397 - ], - [ - -73.2498673, - -39.8274431 - ], - [ - -73.251159, - -39.8274431 - ], - [ - -73.251159, - -39.8277397 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-29T17:41:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 3.83118219997037e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "create": 1, - "locale": "en", - "imagery": "EsriWorldImagery", - "add-image": 2 - }, - "id": 120358624 - } - }, - { - "id": 120355930, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7285087, - 51.0486068 - ], - [ - 3.7290877, - 51.0486068 - ], - [ - 3.7290877, - 51.049483 - ], - [ - 3.7285087, - 51.049483 - ], - [ - 3.7285087, - 51.0486068 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-29T16:26:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 5.07319800000347e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/entrances.html", - "theme": "entrances", - "answer": 2, - "create": 2, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 5 - }, - "id": 120355930 - } - }, - { - "id": 120355179, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6950896, - 50.8560385 - ], - [ - 4.7010642, - 50.8560385 - ], - [ - 4.7010642, - 50.8662777 - ], - [ - 4.6950896, - 50.8662777 - ], - [ - 4.6950896, - 50.8560385 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cimm", - "uid": "3921", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-29T16:07:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 28, - "delete": 0, - "area": 0.0000611751243200059, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 35, - "locale": "nl", - "imagery": "osm" - }, - "id": 120355179 - } - }, - { - "id": 120354482, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.519889, - 44.866215 - ], - [ - -0.514541, - 44.866215 - ], - [ - -0.514541, - 44.8677669 - ], - [ - -0.519889, - 44.8677669 - ], - [ - -0.519889, - 44.866215 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-29T15:48:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 6, - "delete": 0, - "area": 0.00000829956120001396, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 6, - "create": 4, - "locale": "fr", - "imagery": "osm", - "add-image": 3, - "change_within_25m": 5, - "change_within_50m": 4, - "change_within_100m": 4 - }, - "id": 120354482 - } - }, - { - "id": 120352890, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2130498, - 51.2047361 - ], - [ - 3.2130498, - 51.2047361 - ], - [ - 3.2130498, - 51.2047361 - ], - [ - 3.2130498, - 51.2047361 - ], - [ - 3.2130498, - 51.2047361 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-29T15:08:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_1000m": 1 - }, - "id": 120352890 - } - }, - { - "id": 120351020, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4471157, - 50.9234633 - ], - [ - 5.4536135, - 50.9234633 - ], - [ - 5.4536135, - 50.926139 - ], - [ - 5.4471157, - 50.926139 - ], - [ - 5.4471157, - 50.9234633 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-29T14:23:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 27, - "modify": 167, - "delete": 6, - "area": 0.0000173861634599838, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 147, - "theme": "grb", - "delete": 6, - "import": 5, - "locale": "nl", - "imagery": "osm", - "conflation": 48 - }, - "id": 120351020 - } - }, - { - "id": 120350164, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7283606, - 51.0489748 - ], - [ - 3.7284411, - 51.0489748 - ], - [ - 3.7284411, - 51.0490869 - ], - [ - 3.7283606, - 51.0490869 - ], - [ - 3.7283606, - 51.0489748 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-29T14:04:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 6, - "delete": 0, - "area": 9.02404999965515e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 7, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 8 - }, - "id": 120350164 - } - }, - { - "id": 120348008, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4447661, - 50.9234665 - ], - [ - 5.4486741, - 50.9234665 - ], - [ - 5.4486741, - 50.9262928 - ], - [ - 5.4447661, - 50.9262928 - ], - [ - 5.4447661, - 50.9234665 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-29T13:04:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 79, - "modify": 557, - "delete": 12, - "area": 0.0000110451803999816, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 494, - "theme": "grb", - "delete": 12, - "import": 19, - "locale": "nl", - "imagery": "osm", - "conflation": 142 - }, - "id": 120348008 - } - }, - { - "id": 120346477, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4439204, - 50.9207664 - ], - [ - 5.4503216, - 50.9207664 - ], - [ - 5.4503216, - 50.924494 - ], - [ - 5.4439204, - 50.924494 - ], - [ - 5.4439204, - 50.9207664 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-29T12:22:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 145, - "modify": 957, - "delete": 14, - "area": 0.0000238611131200309, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 860, - "theme": "grb", - "delete": 14, - "import": 31, - "locale": "nl", - "imagery": "osm", - "conflation": 250 - }, - "id": 120346477 - } - }, - { - "id": 120345807, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.994632, - 48.5012839 - ], - [ - 8.9975211, - 48.5012839 - ], - [ - 8.9975211, - 48.5013374 - ], - [ - 8.994632, - 48.5013374 - ], - [ - 8.994632, - 48.5012839 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-29T12:03:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 1.5456684999984e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 11, - "locale": "de", - "imagery": "osm", - "change_within_25m": 11 - }, - "id": 120345807 - } - }, - { - "id": 120345669, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9979481, - 48.5014694 - ], - [ - 8.9979481, - 48.5014694 - ], - [ - 8.9979481, - 48.5014694 - ], - [ - 8.9979481, - 48.5014694 - ], - [ - 8.9979481, - 48.5014694 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-29T11:59:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 1, - "locale": "de", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 120345669 - } - }, - { - "id": 120341721, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3383529, - 50.9268755 - ], - [ - 5.3421981, - 50.9268755 - ], - [ - 5.3421981, - 50.9275984 - ], - [ - 5.3383529, - 50.9275984 - ], - [ - 5.3383529, - 50.9268755 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-29T10:19:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 30, - "modify": 32, - "delete": 0, - "area": 0.00000277969507999801, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 29, - "theme": "grb", - "import": 4, - "locale": "nl", - "imagery": "osm", - "conflation": 10 - }, - "id": 120341721 - } - }, - { - "id": 120340015, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7283606, - 51.048999 - ], - [ - 3.7283606, - 51.048999 - ], - [ - 3.7283606, - 51.048999 - ], - [ - 3.7283606, - 51.048999 - ], - [ - 3.7283606, - 51.048999 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-29T09:33:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 5, - "locale": "nl", - "imagery": "AGIV", - "add-image": 1, - "change_within_25m": 6 - }, - "id": 120340015 - } - }, - { - "id": 120339118, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.442324, - 52.478745 - ], - [ - 13.442324, - 52.478745 - ], - [ - 13.442324, - 52.478745 - ], - [ - 13.442324, - 52.478745 - ], - [ - 13.442324, - 52.478745 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "tordans", - "uid": "11881", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #berlin_emergency_water_pumps", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-29T09:10:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "berlin_emergency_water_pumps", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 120339118 - } - }, - { - "id": 120338160, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4418486, - 50.921075 - ], - [ - 5.4455207, - 50.921075 - ], - [ - 5.4455207, - 50.9225077 - ], - [ - 5.4418486, - 50.9225077 - ], - [ - 5.4418486, - 50.921075 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-29T08:45:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 91, - "modify": 215, - "delete": 10, - "area": 0.00000526101766998255, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 194, - "theme": "grb", - "delete": 10, - "import": 14, - "locale": "nl", - "imagery": "osm", - "conflation": 42 - }, - "id": 120338160 - } - }, - { - "id": 120337448, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.334383, - 50.9325825 - ], - [ - 5.3344888, - 50.9325825 - ], - [ - 5.3344888, - 50.9325868 - ], - [ - 5.334383, - 50.9325868 - ], - [ - 5.334383, - 50.9325825 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-29T08:27:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 4.54940000054386e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 2, - "import": 1, - "locale": "nl", - "imagery": "AGIV", - "move:node/9702388959": "improve_accuracy", - "import:node/9702388959": "source: https://osm.org/note/3044134" - }, - "id": 120337448 - } - }, - { - "id": 120335108, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.531136, - 53.2213008 - ], - [ - 6.5895385, - 53.2213008 - ], - [ - 6.5895385, - 53.2337883 - ], - [ - 6.531136, - 53.2337883 - ], - [ - 6.531136, - 53.2213008 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "martiensch", - "uid": "319572", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-29T07:23:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00072930121874993, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 6, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 120335108 - } - }, - { - "id": 120334916, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.53721, - 53.2181639 - ], - [ - 6.546886, - 53.2181639 - ], - [ - 6.546886, - 53.2257492 - ], - [ - 6.53721, - 53.2257492 - ], - [ - 6.53721, - 53.2181639 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "martiensch", - "uid": "319572", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-29T07:17:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 5, - "delete": 0, - "area": 0.0000733953628000212, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 8, - "create": 3, - "locale": "nl", - "imagery": "osm" - }, - "id": 120334916 - } - }, - { - "id": 120332456, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1589584, - 40.4616134 - ], - [ - 0.3542295, - 40.4616134 - ], - [ - 0.3542295, - 40.6182505 - ], - [ - 0.1589584, - 40.6182505 - ], - [ - 0.1589584, - 40.4616134 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Cleta14", - "uid": "13856772", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-29T06:06:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 2, - "delete": 0, - "area": 0.0305866988178109, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 4, - "create": 4, - "locale": "ca", - "imagery": "CartoDB.Voyager" - }, - "id": 120332456 - } - }, - { - "id": 120331766, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2300796, - -39.8441085 - ], - [ - -73.2300796, - -39.8441085 - ], - [ - -73.2300796, - -39.8441085 - ], - [ - -73.2300796, - -39.8441085 - ], - [ - -73.2300796, - -39.8441085 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-29T05:45:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 120331766 - } - }, - { - "id": 120329675, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2558997, - -39.8102926 - ], - [ - -73.2465914, - -39.8102926 - ], - [ - -73.2465914, - -39.8057535 - ], - [ - -73.2558997, - -39.8057535 - ], - [ - -73.2558997, - -39.8102926 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-29T04:13:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 9, - "delete": 0, - "area": 0.000042251304529959, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 3, - "locale": "es", - "imagery": "Mapbox", - "add-image": 7 - }, - "id": 120329675 - } - }, - { - "id": 120327530, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2531191, - -39.8065294 - ], - [ - -73.2468344, - -39.8065294 - ], - [ - -73.2468344, - -39.8049543 - ], - [ - -73.2531191, - -39.8049543 - ], - [ - -73.2531191, - -39.8065294 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-29T01:32:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 8, - "delete": 0, - "area": 0.00000989903097003756, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 2, - "locale": "es", - "imagery": "osmfr", - "add-image": 6 - }, - "id": 120327530 - } - }, - { - "id": 120326170, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2141254, - -39.8097407 - ], - [ - -73.2141254, - -39.8097407 - ], - [ - -73.2141254, - -39.8097407 - ], - [ - -73.2141254, - -39.8097407 - ], - [ - -73.2141254, - -39.8097407 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-28T23:53:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osmfr", - "add-image": 1 - }, - "id": 120326170 - } - }, - { - "id": 120324556, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7351029, - 50.9033232 - ], - [ - 4.7414597, - 50.9033232 - ], - [ - 4.7414597, - 50.9062445 - ], - [ - 4.7351029, - 50.9062445 - ], - [ - 4.7351029, - 50.9033232 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-28T22:18:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 402, - "modify": 177, - "delete": 0, - "area": 0.0000185701198399805, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 150, - "theme": "grb", - "answer": 1, - "import": 36, - "locale": "nl", - "imagery": "osm", - "conflation": 52 - }, - "id": 120324556 - } - }, - { - "id": 120322768, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2397259, - -39.8331128 - ], - [ - -73.2397259, - -39.8331128 - ], - [ - -73.2397259, - -39.8331128 - ], - [ - -73.2397259, - -39.8331128 - ], - [ - -73.2397259, - -39.8331128 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-28T20:57:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osmfr", - "add-image": 1 - }, - "id": 120322768 - } - }, - { - "id": 120322668, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7547044, - 50.8389844 - ], - [ - 3.4074052, - 50.8389844 - ], - [ - 3.4074052, - 51.2051122 - ], - [ - 2.7547044, - 51.2051122 - ], - [ - 2.7547044, - 50.8389844 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-28T20:53:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 13, - "modify": 0, - "delete": 0, - "area": 0.238971907962241, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 2, - "import": 11, - "locale": "nl", - "imagery": "AGIV", - "import:node/9701542104": "source: https://osm.org/note/3156562", - "import:node/9701561270": "source: https://osm.org/note/3156411", - "import:node/9701570812": "source: https://osm.org/note/3156570", - "import:node/9701571209": "source: https://osm.org/note/3156271", - "import:node/9701584703": "source: https://osm.org/note/3156255", - "import:node/9701587608": "source: https://osm.org/note/3156539", - "import:node/9701587609": "source: https://osm.org/note/3156307", - "import:node/9701598030": "source: https://osm.org/note/3156305", - "import:node/9701671177": "source: https://osm.org/note/3156382", - "import:node/9701687965": "source: https://osm.org/note/3156581", - "import:node/9701710280": "source: https://osm.org/note/3156559" - }, - "id": 120322668 - } - }, - { - "id": 120322230, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3886565, - 50.9812992 - ], - [ - 4.3886565, - 50.9812992 - ], - [ - 4.3886565, - 50.9812992 - ], - [ - 4.3886565, - 50.9812992 - ], - [ - 4.3886565, - 50.9812992 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Janimatie", - "uid": "15735226", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-28T20:37:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 4, - "locale": "nl", - "imagery": "osm" - }, - "id": 120322230 - } - }, - { - "id": 120319093, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.0219993, - 52.2934042 - ], - [ - 8.0219993, - 52.2934042 - ], - [ - 8.0219993, - 52.2934042 - ], - [ - 8.0219993, - 52.2934042 - ], - [ - 8.0219993, - 52.2934042 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "wanderruderer", - "uid": "352135", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #ghostbikes", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-28T18:48:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/ghostbikes", - "theme": "ghostbikes", - "answer": 3, - "locale": "de", - "imagery": "CartoDB.Positron", - "change_over_5000m": 3 - }, - "id": 120319093 - } - }, - { - "id": 120316691, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7036397, - 50.8805314 - ], - [ - 4.7039947, - 50.8805314 - ], - [ - 4.7039947, - 50.8805475 - ], - [ - 4.7036397, - 50.8805475 - ], - [ - 4.7036397, - 50.8805314 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Janimatie", - "uid": "15735226", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-28T17:41:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 5.71549999868449e-9, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "move:node/7835232730": "improve_accuracy" - }, - "id": 120316691 - } - }, - { - "id": 120316661, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8911088, - 50.7934721 - ], - [ - 3.2911181, - 50.7934721 - ], - [ - 3.2911181, - 50.946004 - ], - [ - 2.8911088, - 50.946004 - ], - [ - 2.8911088, - 50.7934721 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-28T17:40:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 7, - "modify": 0, - "delete": 0, - "area": 0.0610141785466698, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 1, - "import": 6, - "locale": "nl", - "imagery": "AGIV", - "import:node/9701180924": "source: https://osm.org/note/3156253", - "import:node/9701180925": "source: https://osm.org/note/3156292", - "import:node/9701215172": "source: https://osm.org/note/3156327", - "import:node/9701228251": "source: https://osm.org/note/3156428", - "import:node/9701237371": "source: https://osm.org/note/3156506", - "import:node/9701296154": "source: https://osm.org/note/3156414" - }, - "id": 120316661 - } - }, - { - "id": 120315154, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-28T17:00:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 1, - "locale": "fr", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 2 - }, - "id": 120315154 - } - }, - { - "id": 120315050, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.643786, - 44.7767245 - ], - [ - -0.6423973, - 44.7767245 - ], - [ - -0.6423973, - 44.7777805 - ], - [ - -0.643786, - 44.7777805 - ], - [ - -0.643786, - 44.7767245 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-28T16:58:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 3, - "delete": 0, - "area": 0.00000146646719999779, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 4, - "create": 4, - "locale": "fr", - "imagery": "osm", - "change_over_5000m": 8 - }, - "id": 120315050 - } - }, - { - "id": 120314964, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.7609605, - 50.858289 - ], - [ - 12.7613552, - 50.858289 - ], - [ - 12.7613552, - 50.8585943 - ], - [ - 12.7609605, - 50.8585943 - ], - [ - 12.7609605, - 50.858289 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "TS-R", - "uid": "8070841", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-28T16:56:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.20501910000662e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 120314964 - } - }, - { - "id": 120314173, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7013633, - 50.8304518 - ], - [ - 3.2332977, - 50.8304518 - ], - [ - 3.2332977, - 51.2757217 - ], - [ - 2.7013633, - 51.2757217 - ], - [ - 2.7013633, - 50.8304518 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-28T16:36:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 12, - "modify": 0, - "delete": 0, - "area": 0.23685437709456, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 1, - "import": 11, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "change_over_5000m": 1, - "import:node/9701058313": "source: https://osm.org/note/3156486", - "import:node/9701073381": "source: https://osm.org/note/3156491", - "import:node/9701076723": "source: https://osm.org/note/3156467", - "import:node/9701091891": "source: https://osm.org/note/3156290", - "import:node/9701097634": "source: https://osm.org/note/3156291", - "import:node/9701136016": "source: https://osm.org/note/3156326", - "import:node/9701148510": "source: https://osm.org/note/3156277", - "import:node/9701176442": "source: https://osm.org/note/3156280", - "import:node/9701180827": "source: https://osm.org/note/3156362", - "import:node/9701183780": "source: https://osm.org/note/3156380", - "import:node/9701186418": "source: https://osm.org/note/3156353" - }, - "id": 120314173 - } - }, - { - "id": 120312891, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6353165, - 50.7721722 - ], - [ - 4.7288914, - 50.7721722 - ], - [ - 4.7288914, - 50.8372338 - ], - [ - 4.6353165, - 50.8372338 - ], - [ - 4.6353165, - 50.7721722 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "jeromeSAR", - "uid": "15749666", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-28T15:57:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 8, - "modify": 11, - "delete": 0, - "area": 0.00608813271384, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "move": 3, - "theme": "toerisme_vlaanderen", - "answer": 22, - "create": 8, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "move:node/9700999305": "improve_accuracy", - "move:node/9701006765": "improve_accuracy", - "move:node/9701092181": "improve_accuracy" - }, - "id": 120312891 - } - }, - { - "id": 120310177, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2720791, - 51.2072598 - ], - [ - 3.2720791, - 51.2072598 - ], - [ - 3.2720791, - 51.2072598 - ], - [ - 3.2720791, - 51.2072598 - ], - [ - 3.2720791, - 51.2072598 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-28T14:57:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/waste.html", - "theme": "waste", - "import": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "import:node/9700863480": "source: https://osm.org/note/3130938" - }, - "id": 120310177 - } - }, - { - "id": 120307502, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.7128895, - 41.2183525 - ], - [ - 1.7129298, - 41.2183525 - ], - [ - 1.7129298, - 41.2184252 - ], - [ - 1.7128895, - 41.2184252 - ], - [ - 1.7128895, - 41.2183525 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "yopaseopor", - "uid": "500572", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-28T13:47:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 5, - "delete": 0, - "area": 2.9298099998757e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", - "answer": 8, - "create": 4, - "locale": "es", - "imagery": "Mapbox" - }, - "id": 120307502 - } - }, - { - "id": 120306979, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.5523952, - 52.4674428 - ], - [ - 10.5751271, - 52.4674428 - ], - [ - 10.5751271, - 52.4791091 - ], - [ - 10.5523952, - 52.4791091 - ], - [ - 10.5523952, - 52.4674428 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ibanez", - "uid": "30137", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-28T13:37:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 23, - "delete": 0, - "area": 0.00026519716497004, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 25, - "locale": "de", - "imagery": "osm" - }, - "id": 120306979 - } - }, - { - "id": 120306076, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2441478, - 50.7358077 - ], - [ - 4.2443401, - 50.7358077 - ], - [ - 4.2443401, - 50.7359231 - ], - [ - 4.2441478, - 50.7359231 - ], - [ - 4.2441478, - 50.7358077 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #fritures", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-28T13:18:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 2.21914199996343e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/fritures.html", - "theme": "fritures", - "answer": 4, - "locale": "nl", - "imagery": "osm", - "change_within_5000m": 4 - }, - "id": 120306076 - } - }, - { - "id": 120303736, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2162452, - 51.215144 - ], - [ - 3.2202656, - 51.215144 - ], - [ - 3.2202656, - 51.2183341 - ], - [ - 3.2162452, - 51.2183341 - ], - [ - 3.2162452, - 51.215144 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-28T12:25:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 9, - "delete": 0, - "area": 0.0000128254780399903, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 20, - "locale": "nl", - "imagery": "osm" - }, - "id": 120303736 - } - }, - { - "id": 120302732, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.6868303, - 50.7815248 - ], - [ - -0.6865394, - 50.7815248 - ], - [ - -0.6865394, - 50.7817476 - ], - [ - -0.6868303, - 50.7817476 - ], - [ - -0.6868303, - 50.7815248 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Hasnep", - "uid": "7657368", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-28T12:01:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 6.4812520000891e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120302732 - } - }, - { - "id": 120301131, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2115821, - 51.2114453 - ], - [ - 3.2127246, - 51.2114453 - ], - [ - 3.2127246, - 51.2118374 - ], - [ - 3.2115821, - 51.2118374 - ], - [ - 3.2115821, - 51.2114453 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-28T11:25:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 4.47974249998924e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 6, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_1000m": 6 - }, - "id": 120301131 - } - }, - { - "id": 120300189, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3411788, - 50.8052703 - ], - [ - 3.3441447, - 50.8052703 - ], - [ - 3.3441447, - 50.8140091 - ], - [ - 3.3411788, - 50.8140091 - ], - [ - 3.3411788, - 50.8052703 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "GertjanReynaert", - "uid": "15664631", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-28T11:03:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 0.0000259184069200133, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix", - "theme": "cyclofix", - "create": 2, - "locale": "en", - "imagery": "AGIV" - }, - "id": 120300189 - } - }, - { - "id": 120292066, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.6423973, - 44.6064666 - ], - [ - -0.5539217, - 44.6064666 - ], - [ - -0.5539217, - 44.7769144 - ], - [ - -0.6423973, - 44.7769144 - ], - [ - -0.6423973, - 44.6064666 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-28T08:03:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 9, - "delete": 0, - "area": 0.0150804713736805, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 8, - "create": 4, - "locale": "fr", - "imagery": "osm", - "add-image": 2, - "change_within_25m": 9, - "change_within_100m": 3 - }, - "id": 120292066 - } - }, - { - "id": 120289145, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1794021, - 41.3912499 - ], - [ - 2.1794021, - 41.3912499 - ], - [ - 2.1794021, - 41.3912499 - ], - [ - 2.1794021, - 41.3912499 - ], - [ - 2.1794021, - 41.3912499 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "UnGeograf", - "uid": "601515", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-28T06:54:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 2, - "create": 1, - "locale": "ca", - "imagery": "PNOA-Spain-TMS", - "add-image": 1 - }, - "id": 120289145 - } - }, - { - "id": 120288908, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1812797, - 41.3923747 - ], - [ - 2.1812797, - 41.3923747 - ], - [ - 2.1812797, - 41.3923747 - ], - [ - 2.1812797, - 41.3923747 - ], - [ - 2.1812797, - 41.3923747 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "UnGeograf", - "uid": "601515", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-28T06:48:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 4, - "create": 1, - "locale": "ca", - "imagery": "PNOA-Spain-TMS" - }, - "id": 120288908 - } - }, - { - "id": 120287347, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5319926, - 44.8382183 - ], - [ - -0.5303936, - 44.8382183 - ], - [ - -0.5303936, - 44.8392447 - ], - [ - -0.5319926, - 44.8392447 - ], - [ - -0.5319926, - 44.8382183 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-28T06:07:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 9, - "delete": 0, - "area": 0.00000164121360000106, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 10, - "create": 5, - "locale": "fr", - "imagery": "osm", - "add-image": 5, - "change_over_5000m": 1, - "change_within_25m": 19 - }, - "id": 120287347 - } - }, - { - "id": 120287059, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9939917, - 48.4988276 - ], - [ - 9.0038216, - 48.4988276 - ], - [ - 9.0038216, - 48.5023499 - ], - [ - 8.9939917, - 48.5023499 - ], - [ - 8.9939917, - 48.4988276 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-28T05:59:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 48, - "delete": 0, - "area": 0.000034623856770001, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 74, - "locale": "de", - "imagery": "osm", - "change_within_25m": 20, - "change_within_50m": 21, - "change_within_100m": 9, - "change_within_500m": 24 - }, - "id": 120287059 - } - }, - { - "id": 120278278, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2496647, - -39.8098563 - ], - [ - -70.6659334, - -39.8098563 - ], - [ - -70.6659334, - -33.4410098 - ], - [ - -73.2496647, - -33.4410098 - ], - [ - -73.2496647, - -39.8098563 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-27T21:45:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 16.4553880469454, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 2, - "locale": "es", - "imagery": "HDM_HOT", - "add-image": 2 - }, - "id": 120278278 - } - }, - { - "id": 120275844, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3926468, - 50.9757445 - ], - [ - 4.3928009, - 50.9757445 - ], - [ - 4.3928009, - 50.975898 - ], - [ - 4.3926468, - 50.975898 - ], - [ - 4.3926468, - 50.9757445 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Janimatie", - "uid": "15735226", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-27T20:13:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 11, - "delete": 0, - "area": 2.36543500005758e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 3, - "theme": "toerisme_vlaanderen", - "answer": 13, - "create": 2, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_500m": 16, - "move:node/9698398536": "improve_accuracy", - "move:node/9698479416": "improve_accuracy", - "move:node/9699008125": "improve_accuracy" - }, - "id": 120275844 - } - }, - { - "id": 120275459, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3847083, - 50.862308 - ], - [ - 4.3849686, - 50.862308 - ], - [ - 4.3849686, - 50.8624739 - ], - [ - 4.3847083, - 50.8624739 - ], - [ - 4.3847083, - 50.862308 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-27T20:01:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 4.31837699997047e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "locale": "en", - "imagery": "osm", - "add-image": 3, - "change_within_5000m": 3 - }, - "id": 120275459 - } - }, - { - "id": 120275236, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3849516, - 50.8622407 - ], - [ - 4.3849516, - 50.8622407 - ], - [ - 4.3849516, - 50.8622407 - ], - [ - 4.3849516, - 50.8622407 - ], - [ - 4.3849516, - 50.8622407 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-27T19:53:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_within_5000m": 3 - }, - "id": 120275236 - } - }, - { - "id": 120274592, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9996652, - 48.5015076 - ], - [ - 9.0048033, - 48.5015076 - ], - [ - 9.0048033, - 48.5023499 - ], - [ - 8.9996652, - 48.5023499 - ], - [ - 8.9996652, - 48.5015076 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-27T19:33:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 24, - "delete": 0, - "area": 0.00000432782163001115, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 80, - "create": 3, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 3, - "change_within_25m": 64, - "change_within_50m": 16 - }, - "id": 120274592 - } - }, - { - "id": 120273966, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.4311352, - 44.4106035 - ], - [ - 6.4311352, - 44.4106035 - ], - [ - 6.4311352, - 44.4106035 - ], - [ - 6.4311352, - 44.4106035 - ], - [ - 6.4311352, - 44.4106035 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Brec10", - "uid": "13615286", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-27T19:14:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 5, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/climbing.html", - "theme": "climbing", - "answer": 9, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 10 - }, - "id": 120273966 - } - }, - { - "id": 120273645, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.5580058, - 52.4728631 - ], - [ - 10.5759154, - 52.4728631 - ], - [ - 10.5759154, - 52.4829719 - ], - [ - 10.5580058, - 52.4829719 - ], - [ - 10.5580058, - 52.4728631 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ibanez", - "uid": "30137", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-27T19:03:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 49, - "delete": 0, - "area": 0.000181044564480078, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 60, - "locale": "de", - "imagery": "osm" - }, - "id": 120273645 - } - }, - { - "id": 120271984, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3919547, - 50.9757445 - ], - [ - 4.3928009, - 50.9757445 - ], - [ - 4.3928009, - 50.9820632 - ], - [ - 4.3919547, - 50.9820632 - ], - [ - 4.3919547, - 50.9757445 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Janimatie", - "uid": "15735226", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-27T18:14:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 5, - "delete": 0, - "area": 0.00000534688393999985, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 8, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 4, - "change_within_50m": 1, - "change_within_1000m": 3 - }, - "id": 120271984 - } - }, - { - "id": 120271082, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.8145332, - 50.9245338 - ], - [ - 7.0936242, - 50.9245338 - ], - [ - 7.0936242, - 51.0429538 - ], - [ - 6.8145332, - 51.0429538 - ], - [ - 6.8145332, - 50.9245338 - ] - ] - ] - }, - "properties": { - "check_user": "exarkun", - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "kjon", - "uid": "44217", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-27T17:49:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1153, - "delete": 0, - "area": 0.0330499562200001, - "is_suspect": true, - "harmful": true, - "checked": true, - "check_date": "2022-04-28T07:04:33.617501Z", - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 1584, - "locale": "de", - "imagery": "osm" - }, - "id": 120271082 - } - }, - { - "id": 120269379, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3927563, - 50.9758061 - ], - [ - 4.3927563, - 50.9758061 - ], - [ - 4.3927563, - 50.9758061 - ], - [ - 4.3927563, - 50.9758061 - ], - [ - 4.3927563, - 50.9758061 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Janimatie", - "uid": "15735226", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-27T17:05:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_500m": 4 - }, - "id": 120269379 - } - }, - { - "id": 120264044, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5590334, - 44.841086 - ], - [ - -0.5504843, - 44.841086 - ], - [ - -0.5504843, - 44.8429435 - ], - [ - -0.5590334, - 44.8429435 - ], - [ - -0.5590334, - 44.841086 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-27T14:58:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 5, - "delete": 0, - "area": 0.0000158799532499986, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 11, - "create": 3, - "locale": "fr", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 8, - "change_within_5000m": 6 - }, - "id": 120264044 - } - }, - { - "id": 120262559, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-27T14:23:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 120262559 - } - }, - { - "id": 120262558, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-27T14:23:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 120262558 - } - }, - { - "id": 120262231, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4388758, - 50.9223772 - ], - [ - 5.4492955, - 50.9223772 - ], - [ - 5.4492955, - 50.9326226 - ], - [ - 5.4388758, - 50.9326226 - ], - [ - 5.4388758, - 50.9223772 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-27T14:16:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 943, - "modify": 1243, - "delete": 6, - "area": 0.000106753994380023, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 1087, - "theme": "grb", - "delete": 6, - "import": 133, - "locale": "nl", - "imagery": "osm", - "conflation": 316 - }, - "id": 120262231 - } - }, - { - "id": 120262024, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4425273, - 50.9285437 - ], - [ - 5.4449969, - 50.9285437 - ], - [ - 5.4449969, - 50.9307454 - ], - [ - 5.4425273, - 50.9307454 - ], - [ - 5.4425273, - 50.9285437 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-27T14:10:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 308, - "modify": 75, - "delete": 4, - "area": 0.00000543731832000024, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 65, - "theme": "grb", - "delete": 4, - "import": 42, - "locale": "nl", - "imagery": "osm", - "conflation": 20 - }, - "id": 120262024 - } - }, - { - "id": 120261724, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3276124, - 50.9308768 - ], - [ - 5.3564325, - 50.9308768 - ], - [ - 5.3564325, - 50.9353526 - ], - [ - 5.3276124, - 50.9353526 - ], - [ - 5.3276124, - 50.9308768 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-27T14:03:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 8, - "modify": 8, - "delete": 0, - "area": 0.000128993003580049, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 7, - "create": 6, - "import": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 6, - "change_over_5000m": 8, - "change_within_25m": 13, - "import:node/9697869265": "source: https://osm.org/note/3022956", - "import:node/9697901804": "source: https://osm.org/note/3044123" - }, - "id": 120261724 - } - }, - { - "id": 120261638, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4066514, - 50.9597592 - ], - [ - 5.4115236, - 50.9597592 - ], - [ - 5.4115236, - 50.964387 - ], - [ - 5.4066514, - 50.964387 - ], - [ - 5.4066514, - 50.9597592 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-27T14:01:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000225475671600048, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 4, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 5 - }, - "id": 120261638 - } - }, - { - "id": 120259986, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4096885, - 50.9640934 - ], - [ - 5.4096885, - 50.9640934 - ], - [ - 5.4096885, - 50.9640934 - ], - [ - 5.4096885, - 50.9640934 - ], - [ - 5.4096885, - 50.9640934 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-27T13:23:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "move": 1, - "theme": "artwork", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 4, - "move:node/9697781830": "improve_accuracy" - }, - "id": 120259986 - } - }, - { - "id": 120258160, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-27T12:39:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 120258160 - } - }, - { - "id": 120253381, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4437326, - 50.9248717 - ], - [ - 5.4536818, - 50.9248717 - ], - [ - 5.4536818, - 50.9286236 - ], - [ - 5.4437326, - 50.9286236 - ], - [ - 5.4437326, - 50.9248717 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-27T10:54:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 17, - "modify": 132, - "delete": 0, - "area": 0.0000373284034800468, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 115, - "theme": "grb", - "import": 2, - "locale": "nl", - "imagery": "osm", - "conflation": 34 - }, - "id": 120253381 - } - }, - { - "id": 120252971, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4514661, - 50.9255006 - ], - [ - 5.4569341, - 50.9255006 - ], - [ - 5.4569341, - 50.9290919 - ], - [ - 5.4514661, - 50.9290919 - ], - [ - 5.4514661, - 50.9255006 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-27T10:44:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 35, - "modify": 508, - "delete": 8, - "area": 0.0000196372284000183, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 451, - "theme": "grb", - "delete": 8, - "import": 9, - "locale": "nl", - "imagery": "osm", - "conflation": 122 - }, - "id": 120252971 - } - }, - { - "id": 120251819, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.449723, - 50.9263156 - ], - [ - 5.4561734, - 50.9263156 - ], - [ - 5.4561734, - 50.9297073 - ], - [ - 5.449723, - 50.9297073 - ], - [ - 5.449723, - 50.9263156 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-27T10:17:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 165, - "modify": 961, - "delete": 55, - "area": 0.0000218778216799659, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 839, - "theme": "grb", - "delete": 55, - "import": 29, - "locale": "nl", - "imagery": "osm", - "conflation": 252 - }, - "id": 120251819 - } - }, - { - "id": 120251357, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4497945, - 50.9266987 - ], - [ - 5.4535776, - 50.9266987 - ], - [ - 5.4535776, - 50.9279123 - ], - [ - 5.4497945, - 50.9279123 - ], - [ - 5.4497945, - 50.9266987 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-27T10:07:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 25, - "modify": 297, - "delete": 9, - "area": 0.00000459117015999894, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 259, - "theme": "grb", - "delete": 9, - "import": 4, - "locale": "nl", - "imagery": "osm", - "conflation": 84 - }, - "id": 120251357 - } - }, - { - "id": 120251334, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2241441, - 51.2100561 - ], - [ - 3.2241441, - 51.2100561 - ], - [ - 3.2241441, - 51.2100561 - ], - [ - 3.2241441, - 51.2100561 - ], - [ - 3.2241441, - 51.2100561 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-27T10:06:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "locale": "en", - "imagery": "osm", - "add-image": 2, - "change_within_25m": 2 - }, - "id": 120251334 - } - }, - { - "id": 120250606, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4185221, - 46.9274587 - ], - [ - 7.4185221, - 46.9274587 - ], - [ - 7.4185221, - 46.9274587 - ], - [ - 7.4185221, - 46.9274587 - ], - [ - 7.4185221, - 46.9274587 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "habi", - "uid": "15671", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-27T09:51:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 120250606 - } - }, - { - "id": 120248389, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3398385, - 50.9275422 - ], - [ - 5.3409647, - 50.9275422 - ], - [ - 5.3409647, - 50.9278388 - ], - [ - 5.3398385, - 50.9278388 - ], - [ - 5.3398385, - 50.9275422 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-27T09:01:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 1, - "delete": 0, - "area": 3.34030920006436e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 6, - "create": 2, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 2, - "change_within_25m": 6 - }, - "id": 120248389 - } - }, - { - "id": 120248044, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3330195, - 50.9276346 - ], - [ - 5.3471524, - 50.9276346 - ], - [ - 5.3471524, - 50.9324509 - ], - [ - 5.3330195, - 50.9324509 - ], - [ - 5.3330195, - 50.9276346 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-27T08:53:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 4, - "delete": 0, - "area": 0.000068068286270023, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 9, - "create": 3, - "import": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 5, - "change_over_5000m": 4, - "change_within_25m": 14, - "import:node/9697095024": "source: https://osm.org/note/3044547" - }, - "id": 120248044 - } - }, - { - "id": 120244590, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3748418, - 50.9496914 - ], - [ - 5.4104335, - 50.9496914 - ], - [ - 5.4104335, - 50.968158 - ], - [ - 5.3748418, - 50.968158 - ], - [ - 5.3748418, - 50.9496914 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-27T07:30:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6, - "modify": 40, - "delete": 0, - "area": 0.000657257687220133, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 59, - "create": 6, - "locale": "nl", - "imagery": "osm", - "add-image": 13, - "change_over_5000m": 6, - "change_within_25m": 67, - "change_within_50m": 5 - }, - "id": 120244590 - } - }, - { - "id": 120244482, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3955156, - 50.9653478 - ], - [ - 5.3955156, - 50.9653478 - ], - [ - 5.3955156, - 50.9653478 - ], - [ - 5.3955156, - 50.9653478 - ], - [ - 5.3955156, - 50.9653478 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-27T07:27:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 5 - }, - "id": 120244482 - } - }, - { - "id": 120242221, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9947416, - 48.500913 - ], - [ - 8.9963973, - 48.500913 - ], - [ - 8.9963973, - 48.5013838 - ], - [ - 8.9947416, - 48.5013838 - ], - [ - 8.9947416, - 48.500913 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-27T06:37:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 7.79503560003945e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 6, - "locale": "de", - "imagery": "osm", - "change_within_25m": 4, - "change_within_50m": 2 - }, - "id": 120242221 - } - }, - { - "id": 120239556, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.373508, - 50.9490024 - ], - [ - 5.3764986, - 50.9490024 - ], - [ - 5.3764986, - 50.9517814 - ], - [ - 5.373508, - 50.9517814 - ], - [ - 5.373508, - 50.9490024 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-27T05:17:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 27, - "modify": 37, - "delete": 0, - "area": 0.00000831087740001019, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 32, - "theme": "grb", - "answer": 2, - "import": 1, - "locale": "nl", - "imagery": "AGIV", - "conflation": 6 - }, - "id": 120239556 - } - }, - { - "id": 120234753, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5635077, - 51.2541828 - ], - [ - 4.56759, - 51.2541828 - ], - [ - 4.56759, - 51.2632023 - ], - [ - 4.5635077, - 51.2632023 - ], - [ - 4.5635077, - 51.2541828 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "pi11", - "uid": "12066190", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-27T00:41:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.0000368203048500063, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 3, - "locale": "nl", - "imagery": "osm" - }, - "id": 120234753 - } - }, - { - "id": 120232481, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7404303, - 50.9040704 - ], - [ - 4.7450336, - 50.9040704 - ], - [ - 4.7450336, - 50.9057489 - ], - [ - 4.7404303, - 50.9057489 - ], - [ - 4.7404303, - 50.9040704 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-26T22:16:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 395, - "modify": 72, - "delete": 0, - "area": 0.00000772663904998685, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 61, - "theme": "grb", - "answer": 1, - "import": 47, - "locale": "nl", - "imagery": "AGIV", - "conflation": 20 - }, - "id": 120232481 - } - }, - { - "id": 120231894, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1321597, - 50.945512 - ], - [ - 3.1321597, - 50.945512 - ], - [ - 3.1321597, - 50.945512 - ], - [ - 3.1321597, - 50.945512 - ], - [ - 3.1321597, - 50.945512 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "gptm", - "uid": "2873411", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-26T21:49:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_within_5000m": 1 - }, - "id": 120231894 - } - }, - { - "id": 120227439, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5745276, - 44.8516137 - ], - [ - -0.5745276, - 44.8516137 - ], - [ - -0.5745276, - 44.8516137 - ], - [ - -0.5745276, - 44.8516137 - ], - [ - -0.5745276, - 44.8516137 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-26T19:25:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 1, - "locale": "fr", - "imagery": "osm", - "add-image": 1, - "change_within_50m": 2 - }, - "id": 120227439 - } - }, - { - "id": 120225439, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 34.7938312, - 50.9039554 - ], - [ - 34.8002064, - 50.9039554 - ], - [ - 34.8002064, - 50.906146 - ], - [ - 34.7938312, - 50.906146 - ], - [ - 34.7938312, - 50.9039554 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mike140", - "uid": "2471547", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-26T18:30:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000139655131199935, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 2, - "locale": "ru", - "imagery": "osm" - }, - "id": 120225439 - } - }, - { - "id": 120223902, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3714535, - 50.8460928 - ], - [ - 4.3714535, - 50.8460928 - ], - [ - 4.3714535, - 50.8460928 - ], - [ - 4.3714535, - 50.8460928 - ], - [ - 4.3714535, - 50.8460928 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-26T17:54:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "create": 1, - "locale": "en", - "imagery": "AGIV", - "add-image": 1 - }, - "id": 120223902 - } - }, - { - "id": 120223551, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.570827, - 44.849881 - ], - [ - -0.570285, - 44.849881 - ], - [ - -0.570285, - 44.85007 - ], - [ - -0.570827, - 44.85007 - ], - [ - -0.570827, - 44.849881 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-26T17:47:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 1.02437999999382e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 3, - "create": 2, - "locale": "fr", - "imagery": "osm", - "add-image": 1, - "change_within_50m": 6 - }, - "id": 120223551 - } - }, - { - "id": 120223210, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3715139, - 50.8461728 - ], - [ - 4.3715139, - 50.8461728 - ], - [ - 4.3715139, - 50.8461728 - ], - [ - 4.3715139, - 50.8461728 - ], - [ - 4.3715139, - 50.8461728 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-26T17:40:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "UrbISOrtho2019", - "add-image": 1 - }, - "id": 120223210 - } - }, - { - "id": 120222092, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.8278402, - 50.8812077 - ], - [ - 7.0141001, - 50.8812077 - ], - [ - 7.0141001, - 51.0535663 - ], - [ - 6.8278402, - 51.0535663 - ], - [ - 6.8278402, - 50.8812077 - ] - ] - ] - }, - "properties": { - "check_user": "exarkun", - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "kjon", - "uid": "44217", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-26T17:18:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1507, - "delete": 0, - "area": 0.0321034956001406, - "is_suspect": true, - "harmful": true, - "checked": true, - "check_date": "2022-04-26T20:42:46.095881Z", - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 2043, - "locale": "de", - "imagery": "osm" - }, - "id": 120222092 - } - }, - { - "id": 120219950, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1662108, - 50.4593106 - ], - [ - 4.1695145, - 50.4593106 - ], - [ - 4.1695145, - 50.4630277 - ], - [ - 4.1662108, - 50.4630277 - ], - [ - 4.1662108, - 50.4593106 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Jakka", - "uid": "2403313", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-26T16:20:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 316, - "modify": 22, - "delete": 0, - "area": 0.0000122801832699862, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 16, - "theme": "grb", - "answer": 11, - "import": 60, - "locale": "nl", - "imagery": "osm", - "conflation": 8 - }, - "id": 120219950 - } - }, - { - "id": 120219343, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9960516, - 48.5015802 - ], - [ - 8.996525, - 48.5015802 - ], - [ - 8.996525, - 48.5017357 - ], - [ - 8.9960516, - 48.5017357 - ], - [ - 8.9960516, - 48.5015802 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-26T16:02:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 7.36136999992442e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 4, - "locale": "de", - "imagery": "osm", - "change_within_25m": 1, - "change_within_50m": 3 - }, - "id": 120219343 - } - }, - { - "id": 120219110, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9964405, - 48.5019446 - ], - [ - 8.997406, - 48.5019446 - ], - [ - 8.997406, - 48.5033908 - ], - [ - 8.9964405, - 48.5033908 - ], - [ - 8.9964405, - 48.5019446 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-26T15:56:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 35, - "delete": 0, - "area": 0.00000139630609999603, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 47, - "locale": "de", - "imagery": "osm", - "change_within_25m": 21, - "change_within_50m": 26 - }, - "id": 120219110 - } - }, - { - "id": 120216757, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4474662, - 50.9263933 - ], - [ - 5.4532841, - 50.9263933 - ], - [ - 5.4532841, - 50.9284687 - ], - [ - 5.4474662, - 50.9284687 - ], - [ - 5.4474662, - 50.9263933 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-26T14:52:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 23, - "modify": 143, - "delete": 0, - "area": 0.0000120744696600151, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 127, - "theme": "grb", - "import": 4, - "locale": "nl", - "imagery": "osm", - "conflation": 36 - }, - "id": 120216757 - } - }, - { - "id": 120216323, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1824725, - 50.7409776 - ], - [ - 5.4532943, - 50.7409776 - ], - [ - 5.4532943, - 50.9266826 - ], - [ - 5.1824725, - 50.9266826 - ], - [ - 5.1824725, - 50.7409776 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-26T14:42:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 81, - "modify": 278, - "delete": 11, - "area": 0.0502929623689995, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 244, - "theme": "grb", - "delete": 11, - "import": 12, - "locale": "nl", - "imagery": "osm", - "conflation": 68 - }, - "id": 120216323 - } - }, - { - "id": 120207342, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4738925, - 51.1585866 - ], - [ - 4.4873759, - 51.1585866 - ], - [ - 4.4873759, - 51.1681231 - ], - [ - 4.4738925, - 51.1681231 - ], - [ - 4.4738925, - 51.1585866 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "maubu", - "uid": "15716055", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-26T11:18:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 10, - "modify": 14, - "delete": 0, - "area": 0.000128584444100041, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 3, - "theme": "toerisme_vlaanderen", - "answer": 25, - "create": 10, - "locale": "nl", - "imagery": "osm", - "move:node/9695002953": "improve_accuracy", - "move:node/9695011074": "improve_accuracy" - }, - "id": 120207342 - } - }, - { - "id": 120207177, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4777924, - 51.1677805 - ], - [ - 4.4814491, - 51.1677805 - ], - [ - 4.4814491, - 51.1704701 - ], - [ - 4.4777924, - 51.1704701 - ], - [ - 4.4777924, - 51.1677805 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "maubu", - "uid": "15716055", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-26T11:14:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 1, - "delete": 0, - "area": 0.00000983506032001223, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 6, - "create": 3, - "locale": "nl", - "imagery": "osm" - }, - "id": 120207177 - } - }, - { - "id": 120206971, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9994342, - 48.5014179 - ], - [ - 8.9998915, - 48.5014179 - ], - [ - 8.9998915, - 48.5016334 - ], - [ - 8.9994342, - 48.5016334 - ], - [ - 8.9994342, - 48.5014179 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-26T11:10:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 4, - "delete": 0, - "area": 9.8548150001553e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 9, - "create": 2, - "locale": "de", - "imagery": "Mapbox", - "add-image": 1, - "change_over_5000m": 2, - "change_within_25m": 10 - }, - "id": 120206971 - } - }, - { - "id": 120206348, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9986825, - 48.5010869 - ], - [ - 8.9986825, - 48.5010869 - ], - [ - 8.9986825, - 48.5010869 - ], - [ - 8.9986825, - 48.5010869 - ], - [ - 8.9986825, - 48.5010869 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-26T10:55:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "answer": 1, - "create": 1, - "locale": "de", - "imagery": "HDM_HOT", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 120206348 - } - }, - { - "id": 120206275, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9978656, - 48.5004222 - ], - [ - 8.9993589, - 48.5004222 - ], - [ - 8.9993589, - 48.5016207 - ], - [ - 8.9978656, - 48.5016207 - ], - [ - 8.9978656, - 48.5004222 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-26T10:53:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 6, - "delete": 0, - "area": 0.00000178972004999077, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 24, - "create": 2, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 17, - "change_within_50m": 7 - }, - "id": 120206275 - } - }, - { - "id": 120206062, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.4146899, - 52.4925382 - ], - [ - 13.5047906, - 52.4925382 - ], - [ - 13.5047906, - 55.6880602 - ], - [ - 12.4146899, - 55.6880602 - ], - [ - 12.4146899, - 52.4925382 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Niels Elgaard Larsen", - "uid": "1288", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #dog", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-26T10:49:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 8, - "delete": 0, - "area": 3.4834407690654, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "dog", - "answer": 8, - "locale": "da", - "imagery": "osm" - }, - "id": 120206062 - } - }, - { - "id": 120195444, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.181427, - 51.2186785 - ], - [ - 5.181885, - 51.2186785 - ], - [ - 5.181885, - 51.2186886 - ], - [ - 5.181427, - 51.2186886 - ], - [ - 5.181427, - 51.2186785 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "toerisme Mol", - "uid": "8297519", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-26T06:36:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 4.62579999873539e-9, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "move:node/9694357881": "improve_accuracy" - }, - "id": 120195444 - } - }, - { - "id": 120195385, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5937885, - 50.9449326 - ], - [ - 4.6790566, - 50.9449326 - ], - [ - 4.6790566, - 50.9805494 - ], - [ - 4.5937885, - 50.9805494 - ], - [ - 4.5937885, - 50.9449326 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "MDGISHaacht***", - "uid": "12746326", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-26T06:34:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 14, - "modify": 10, - "delete": 1, - "area": 0.00303697686407999, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 21, - "create": 14, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "deletion": 1, - "deletion:node/9016776554": "testing point" - }, - "id": 120195385 - } - }, - { - "id": 120187584, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.5783778, - 55.7031117 - ], - [ - 12.5883898, - 55.7031117 - ], - [ - 12.5883898, - 55.7080512 - ], - [ - 12.5783778, - 55.7080512 - ], - [ - 12.5783778, - 55.7031117 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Niels Elgaard Larsen", - "uid": "1288", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-26T00:16:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 23, - "delete": 0, - "area": 0.0000494542739999883, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 27, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 120187584 - } - }, - { - "id": 120187025, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4894975, - 55.0959313 - ], - [ - 12.5743897, - 55.0959313 - ], - [ - 12.5743897, - 55.7138495 - ], - [ - 8.4894975, - 55.7138495 - ], - [ - 8.4894975, - 55.0959313 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Niels Elgaard Larsen", - "uid": "1288", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #dog", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-25T23:36:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 11, - "delete": 0, - "area": 2.52412923541806, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "dog", - "answer": 15, - "locale": "da", - "imagery": "osm" - }, - "id": 120187025 - } - }, - { - "id": 120186161, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.9038395, - 50.8976594 - ], - [ - 6.9806282, - 50.8976594 - ], - [ - 6.9806282, - 50.9661808 - ], - [ - 6.9038395, - 50.9661808 - ], - [ - 6.9038395, - 50.8976594 - ] - ] - ] - }, - "properties": { - "check_user": "exarkun", - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "kjon", - "uid": "44217", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-25T22:40:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 268, - "delete": 0, - "area": 0.00526166922817957, - "is_suspect": true, - "harmful": true, - "checked": true, - "check_date": "2022-04-26T20:42:28.793217Z", - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 349, - "locale": "de", - "imagery": "osm" - }, - "id": 120186161 - } - }, - { - "id": 120185489, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9693125, - 48.4961818 - ], - [ - 9.0013771, - 48.4961818 - ], - [ - 9.0013771, - 48.5055486 - ], - [ - 8.9693125, - 48.5055486 - ], - [ - 8.9693125, - 48.4961818 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-25T22:06:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 16, - "delete": 0, - "area": 0.000300342695279844, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 21, - "locale": "en", - "imagery": "osm" - }, - "id": 120185489 - } - }, - { - "id": 120183066, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2497451, - -39.8279219 - ], - [ - -73.2497373, - -39.8279219 - ], - [ - -73.2497373, - -39.8278168 - ], - [ - -73.2497451, - -39.8278168 - ], - [ - -73.2497451, - -39.8279219 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-25T20:35:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 8.19779999117068e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "osmfr", - "add-image": 3 - }, - "id": 120183066 - } - }, - { - "id": 120183047, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2497741, - -39.8278462 - ], - [ - -73.2497741, - -39.8278462 - ], - [ - -73.2497741, - -39.8278462 - ], - [ - -73.2497741, - -39.8278462 - ], - [ - -73.2497741, - -39.8278462 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-25T20:34:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "osmfr", - "add-image": 1 - }, - "id": 120183047 - } - }, - { - "id": 120181343, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.4037145, - 37.796486 - ], - [ - -122.403714, - 37.796486 - ], - [ - -122.403714, - 37.796486 - ], - [ - -122.4037145, - 37.796486 - ], - [ - -122.4037145, - 37.796486 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "user4816003805", - "uid": "4186070", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-25T19:43:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 2, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 2 - }, - "id": 120181343 - } - }, - { - "id": 120176790, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.022781, - 58.166119 - ], - [ - 8.0420166, - 58.166119 - ], - [ - 8.0420166, - 58.178694 - ], - [ - 8.022781, - 58.178694 - ], - [ - 8.022781, - 58.166119 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Trygve03", - "uid": "13780862", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-25T17:35:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.000241887669999966, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 120176790 - } - }, - { - "id": 120170937, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1377902, - 51.1505411 - ], - [ - 4.1657281, - 51.1505411 - ], - [ - 4.1657281, - 51.1714126 - ], - [ - 4.1377902, - 51.1714126 - ], - [ - 4.1377902, - 51.1505411 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "vott", - "uid": "15407842", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-25T15:08:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6, - "modify": 5, - "delete": 0, - "area": 0.000583105879849945, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 18, - "create": 6, - "locale": "nl", - "imagery": "osm" - }, - "id": 120170937 - } - }, - { - "id": 120170214, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.178747, - 50.7405825 - ], - [ - 5.1894177, - 50.7405825 - ], - [ - 5.1894177, - 50.7453643 - ], - [ - 5.178747, - 50.7453643 - ], - [ - 5.178747, - 50.7405825 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-25T14:51:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 75, - "modify": 143, - "delete": 0, - "area": 0.000051025153259959, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 130, - "theme": "grb", - "import": 15, - "locale": "nl", - "imagery": "osm", - "conflation": 26 - }, - "id": 120170214 - } - }, - { - "id": 120170210, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-25T14:51:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 120170210 - } - }, - { - "id": 120169944, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0038112, - 51.1438948 - ], - [ - 4.06712, - 51.1438948 - ], - [ - 4.06712, - 51.1654434 - ], - [ - 4.0038112, - 51.1654434 - ], - [ - 4.0038112, - 51.1438948 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "WimBau", - "uid": "15313167", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-25T14:45:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 30, - "delete": 0, - "area": 0.00136421600768016, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 39, - "create": 4, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 10 - }, - "id": 120169944 - } - }, - { - "id": 120169450, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1740001, - 50.741684 - ], - [ - 5.1883351, - 50.741684 - ], - [ - 5.1883351, - 50.7454081 - ], - [ - 5.1740001, - 50.7454081 - ], - [ - 5.1740001, - 50.741684 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-25T14:32:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1130, - "modify": 24, - "delete": 0, - "area": 0.0000533849734999921, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 22, - "theme": "grb", - "import": 144, - "locale": "nl", - "imagery": "osm", - "conflation": 4 - }, - "id": 120169450 - } - }, - { - "id": 120169448, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1752228, - 50.7443831 - ], - [ - 5.1754037, - 50.7443831 - ], - [ - 5.1754037, - 50.7444769 - ], - [ - 5.1752228, - 50.7444769 - ], - [ - 5.1752228, - 50.7443831 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-25T14:31:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 15, - "modify": 0, - "delete": 0, - "area": 1.69684200003615e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 120169448 - } - }, - { - "id": 120168895, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2182755, - 51.1283752 - ], - [ - 4.2273739, - 51.1283752 - ], - [ - 4.2273739, - 51.128833 - ], - [ - 4.2182755, - 51.128833 - ], - [ - 4.2182755, - 51.1283752 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Lore Baeck", - "uid": "15137714", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-25T14:15:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 9, - "delete": 0, - "area": 0.00000416524751999556, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 12, - "create": 2, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 120168895 - } - }, - { - "id": 120168366, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.249474, - -39.8098227 - ], - [ - -73.249474, - -39.8098227 - ], - [ - -73.249474, - -39.8098227 - ], - [ - -73.249474, - -39.8098227 - ], - [ - -73.249474, - -39.8098227 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-25T14:03:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "osmfr", - "add-image": 2 - }, - "id": 120168366 - } - }, - { - "id": 120167551, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1723853, - 51.1837683 - ], - [ - 4.1869444, - 51.1837683 - ], - [ - 4.1869444, - 51.1961223 - ], - [ - 4.1723853, - 51.1961223 - ], - [ - 4.1723853, - 51.1837683 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "vott", - "uid": "15407842", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-25T13:41:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 8, - "modify": 5, - "delete": 0, - "area": 0.000179863121400024, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 17, - "create": 8, - "locale": "nl", - "imagery": "osm" - }, - "id": 120167551 - } - }, - { - "id": 120167480, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1732651, - 51.110355 - ], - [ - 4.2626381, - 51.110355 - ], - [ - 4.2626381, - 51.1611977 - ], - [ - 4.1732651, - 51.1611977 - ], - [ - 4.1732651, - 51.110355 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Lore Baeck", - "uid": "15137714", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-25T13:39:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 5, - "modify": 11, - "delete": 0, - "area": 0.00454396462710037, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 22, - "create": 5, - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 120167480 - } - }, - { - "id": 120166110, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5349641, - 44.8552743 - ], - [ - -0.5349641, - 44.8552743 - ], - [ - -0.5349641, - 44.8552743 - ], - [ - -0.5349641, - 44.8552743 - ], - [ - -0.5349641, - 44.8552743 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-25T13:10:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "locale": "fr", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 120166110 - } - }, - { - "id": 120165592, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3070007, - 51.0908074 - ], - [ - 4.3289492, - 51.0908074 - ], - [ - 4.3289492, - 51.106593 - ], - [ - 4.3070007, - 51.106593 - ], - [ - 4.3070007, - 51.0908074 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "GeneralGman", - "uid": "7125513", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-25T12:57:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 5, - "delete": 0, - "area": 0.000346470241599874, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 2, - "theme": "toerisme_vlaanderen", - "answer": 8, - "import": 2, - "locale": "nl", - "imagery": "AGIV", - "move:node/9692144604": "improve_accuracy", - "move:node/9692188037": "improve_accuracy", - "import:node/9692144604": "source: https://osm.org/note/3143447", - "import:node/9692188037": "source: https://osm.org/note/3143431" - }, - "id": 120165592 - } - }, - { - "id": 120165474, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1741493, - 50.7190371 - ], - [ - 5.3795284, - 50.7190371 - ], - [ - 5.3795284, - 50.7628459 - ], - [ - 5.1741493, - 50.7628459 - ], - [ - 5.1741493, - 50.7190371 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-25T12:55:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2774, - "modify": 911, - "delete": 56, - "area": 0.00899741191608016, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 797, - "theme": "grb", - "delete": 56, - "import": 384, - "locale": "nl", - "imagery": "osm", - "conflation": 240 - }, - "id": 120165474 - } - }, - { - "id": 120164101, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9714812, - 51.0019248 - ], - [ - 3.9764942, - 51.0019248 - ], - [ - 3.9764942, - 51.0090059 - ], - [ - 3.9714812, - 51.0090059 - ], - [ - 3.9714812, - 51.0019248 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Do Wim", - "uid": "708153", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-25T12:21:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 6, - "delete": 0, - "area": 0.0000354975543000026, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "move": 2, - "theme": "toerisme_vlaanderen", - "answer": 18, - "create": 3, - "locale": "nl", - "imagery": "AGIV", - "move:node/9692130729": "improve_accuracy", - "move:node/9692133204": "improve_accuracy" - }, - "id": 120164101 - } - }, - { - "id": 120162833, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9780915, - 50.9582274 - ], - [ - 3.9787473, - 50.9582274 - ], - [ - 3.9787473, - 50.9673007 - ], - [ - 3.9780915, - 50.9673007 - ], - [ - 3.9780915, - 50.9582274 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Do Wim", - "uid": "708153", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-25T11:53:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 11, - "delete": 0, - "area": 0.00000595027014000367, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 16, - "create": 3, - "locale": "nl", - "imagery": "AGIV", - "change_over_5000m": 20, - "move:node/9692058225": "improve_accuracy" - }, - "id": 120162833 - } - }, - { - "id": 120162015, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9262899, - 51.2262933 - ], - [ - 4.9262899, - 51.2262933 - ], - [ - 4.9262899, - 51.2262933 - ], - [ - 4.9262899, - 51.2262933 - ], - [ - 4.9262899, - 51.2262933 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bistro Lichtaartse Kwezel", - "uid": "15702264", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-25T11:34:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 7, - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 120162015 - } - }, - { - "id": 120161969, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2310185, - 50.883426 - ], - [ - 3.8754326, - 50.883426 - ], - [ - 3.8754326, - 51.0073958 - ], - [ - 3.2310185, - 51.0073958 - ], - [ - 3.2310185, - 50.883426 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Erin76", - "uid": "8982454", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-25T11:33:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 13, - "delete": 0, - "area": 0.0798878870941784, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 21, - "locale": "nl", - "imagery": "osm" - }, - "id": 120161969 - } - }, - { - "id": 120160725, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9688167, - 51.1656562 - ], - [ - 4.9727713, - 51.1656562 - ], - [ - 4.9727713, - 51.1676953 - ], - [ - 4.9688167, - 51.1676953 - ], - [ - 4.9688167, - 51.1656562 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-25T11:03:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 51, - "modify": 102, - "delete": 4, - "area": 0.00000806382485999047, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 89, - "theme": "grb", - "delete": 4, - "import": 6, - "locale": "nl", - "imagery": "osm", - "conflation": 26 - }, - "id": 120160725 - } - }, - { - "id": 120160668, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9715144, - 51.1672788 - ], - [ - 4.9717714, - 51.1672788 - ], - [ - 4.9717714, - 51.1674514 - ], - [ - 4.9715144, - 51.1674514 - ], - [ - 4.9715144, - 51.1672788 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-25T11:02:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 7, - "delete": 0, - "area": 4.43581999996783e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 6, - "theme": "grb", - "locale": "nl", - "imagery": "osm", - "conflation": 2 - }, - "id": 120160668 - } - }, - { - "id": 120160529, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9272649, - 51.1057295 - ], - [ - 4.9275371, - 51.1057295 - ], - [ - 4.9275371, - 51.1058747 - ], - [ - 4.9272649, - 51.1058747 - ], - [ - 4.9272649, - 51.1057295 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Frans_Napaters", - "uid": "3574538", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-25T10:58:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 4, - "delete": 0, - "area": 3.9523439999682e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "move": 1, - "theme": "benches", - "answer": 6, - "create": 2, - "locale": "en", - "imagery": "AGIV", - "change_over_5000m": 2, - "change_within_1000m": 7, - "move:node/9678653779": "improve_accuracy" - }, - "id": 120160529 - } - }, - { - "id": 120160440, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9268854, - 51.1062234 - ], - [ - 4.9268854, - 51.1062234 - ], - [ - 4.9268854, - 51.1062234 - ], - [ - 4.9268854, - 51.1062234 - ], - [ - 4.9268854, - 51.1062234 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Frans_Napaters", - "uid": "3574538", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-25T10:55:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 7, - "create": 1, - "locale": "en", - "imagery": "AGIV", - "add-image": 1, - "change_over_5000m": 1, - "change_within_1000m": 8 - }, - "id": 120160440 - } - }, - { - "id": 120160364, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2212426, - 51.2154766 - ], - [ - 3.2212426, - 51.2154766 - ], - [ - 3.2212426, - 51.2154766 - ], - [ - 3.2212426, - 51.2154766 - ], - [ - 3.2212426, - 51.2154766 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-25T10:53:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/shops.html", - "theme": "shops", - "answer": 4, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 5 - }, - "id": 120160364 - } - }, - { - "id": 120160331, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-25T10:52:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/shops.html", - "theme": "shops", - "answer": 2, - "locale": "en", - "imagery": "osm", - "change_within_25m": 2 - }, - "id": 120160331 - } - }, - { - "id": 120159544, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9696896, - 48.501467 - ], - [ - 8.9698584, - 48.501467 - ], - [ - 8.9698584, - 48.5015719 - ], - [ - 8.9696896, - 48.5015719 - ], - [ - 8.9696896, - 48.501467 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-25T10:32:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.77071200005346e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "answer": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 120159544 - } - }, - { - "id": 120159432, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9685055, - 51.1669452 - ], - [ - 4.9879915, - 51.1669452 - ], - [ - 4.9879915, - 51.172447 - ], - [ - 4.9685055, - 51.172447 - ], - [ - 4.9685055, - 51.1669452 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-25T10:29:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 94, - "modify": 305, - "delete": 13, - "area": 0.000107208074799951, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 271, - "theme": "grb", - "delete": 13, - "import": 16, - "locale": "nl", - "imagery": "osm", - "conflation": 72 - }, - "id": 120159432 - } - }, - { - "id": 120158880, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.9819431, - 43.2351672 - ], - [ - -3.9531952, - 43.2351672 - ], - [ - -3.9531952, - 43.2365312 - ], - [ - -3.9819431, - 43.2365312 - ], - [ - -3.9819431, - 43.2351672 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Ninopiña10", - "uid": "11138282", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-25T10:14:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 3, - "delete": 0, - "area": 0.0000392121356000679, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 3, - "create": 2, - "locale": "en", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 2, - "change_within_25m": 5 - }, - "id": 120158880 - } - }, - { - "id": 120158150, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1598368, - 51.2137736 - ], - [ - 5.1598368, - 51.2137736 - ], - [ - 5.1598368, - 51.2137736 - ], - [ - 5.1598368, - 51.2137736 - ], - [ - 5.1598368, - 51.2137736 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Loekie 96", - "uid": "15699422", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-25T09:57:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "import": 1, - "locale": "nl", - "imagery": "osm", - "import:node/9691796726": "source: https://osm.org/note/3143493" - }, - "id": 120158150 - } - }, - { - "id": 120157938, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3379113, - 44.498018 - ], - [ - 11.3379113, - 44.498018 - ], - [ - 11.3379113, - 44.498018 - ], - [ - 11.3379113, - 44.498018 - ], - [ - 11.3379113, - 44.498018 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "WinstonSmith", - "uid": "36030", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-25T09:52:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix", - "theme": "cyclofix", - "answer": 1, - "locale": "it", - "imagery": "CartoDB.Voyager", - "change_within_25m": 1 - }, - "id": 120157938 - } - }, - { - "id": 120156539, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.7682581, - 49.4355528 - ], - [ - 7.769821, - 49.4355528 - ], - [ - 7.769821, - 49.4359468 - ], - [ - 7.7682581, - 49.4359468 - ], - [ - 7.7682581, - 49.4355528 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Justine Dam", - "uid": "12308921", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-25T09:18:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 6.15782600000241e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/entrances.html", - "theme": "entrances", - "create": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 120156539 - } - }, - { - "id": 120154534, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7352121, - 51.0451377 - ], - [ - 3.7352121, - 51.0451377 - ], - [ - 3.7352121, - 51.0451377 - ], - [ - 3.7352121, - 51.0451377 - ], - [ - 3.7352121, - 51.0451377 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ruben Van de Velde", - "uid": "2676725", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-25T08:31:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant", - "theme": "hailhydrant", - "locale": "en", - "imagery": "HDM_HOT", - "add-image": 1 - }, - "id": 120154534 - } - }, - { - "id": 120154517, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.983842, - 51.1686792 - ], - [ - 4.9873995, - 51.1686792 - ], - [ - 4.9873995, - 51.1720586 - ], - [ - 4.983842, - 51.1720586 - ], - [ - 4.983842, - 51.1686792 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-25T08:31:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 197, - "modify": 742, - "delete": 30, - "area": 0.0000120222155000012, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 665, - "theme": "grb", - "answer": 5, - "delete": 30, - "import": 20, - "locale": "nl", - "imagery": "AGIV", - "conflation": 194 - }, - "id": 120154517 - } - }, - { - "id": 120153499, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.532808, - 44.8374679 - ], - [ - -0.532808, - 44.8374679 - ], - [ - -0.532808, - 44.8374679 - ], - [ - -0.532808, - 44.8374679 - ], - [ - -0.532808, - 44.8374679 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-25T08:05:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "locale": "fr", - "imagery": "osm", - "add-image": 1, - "change_within_50m": 1 - }, - "id": 120153499 - } - }, - { - "id": 120152802, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1737211, - 51.1905938 - ], - [ - 4.1769907, - 51.1905938 - ], - [ - 4.1769907, - 51.1911267 - ], - [ - 4.1737211, - 51.1911267 - ], - [ - 4.1737211, - 51.1905938 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "vott", - "uid": "15407842", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-25T07:46:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 2, - "delete": 0, - "area": 0.00000174236983998729, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 5, - "create": 3, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 8 - }, - "id": 120152802 - } - }, - { - "id": 120152790, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "vott", - "uid": "15407842", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-25T07:46:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1 - }, - "id": 120152790 - } - }, - { - "id": 120152789, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 77.0172933, - 8.7199517 - ], - [ - 77.744054, - 8.7199517 - ], - [ - 77.744054, - 10.648478 - ], - [ - 77.0172933, - 10.648478 - ], - [ - 77.0172933, - 8.7199517 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-25T07:46:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 1.40157712375641, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 5, - "locale": "en", - "imagery": "osm" - }, - "id": 120152789 - } - }, - { - "id": 120152781, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "vott", - "uid": "15407842", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-25T07:46:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1 - }, - "id": 120152781 - } - }, - { - "id": 120152075, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.174456, - 51.1906711 - ], - [ - 4.176473, - 51.1906711 - ], - [ - 4.176473, - 51.1926547 - ], - [ - 4.174456, - 51.1926547 - ], - [ - 4.174456, - 51.1906711 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "vott", - "uid": "15407842", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-25T07:30:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 10, - "modify": 8, - "delete": 1, - "area": 0.00000400092119998998, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 24, - "create": 10, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "deletion": 1, - "change_over_5000m": 36, - "move:node/9691514458": "improve_accuracy", - "deletion:node/9691514458": "testing point" - }, - "id": 120152075 - } - }, - { - "id": 120148743, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9945506, - 48.4996889 - ], - [ - 8.9956248, - 48.4996889 - ], - [ - 8.9956248, - 48.500619 - ], - [ - 8.9945506, - 48.500619 - ], - [ - 8.9945506, - 48.4996889 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-25T06:13:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6, - "modify": 3, - "delete": 0, - "area": 9.99113419997496e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "move": 2, - "theme": "trees", - "answer": 7, - "create": 6, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 6, - "change_within_25m": 4, - "change_within_50m": 5, - "move:node/9691362038": "improve_accuracy", - "move:node/9691362039": "improve_accuracy" - }, - "id": 120148743 - } - }, - { - "id": 120148584, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 79.1252519, - 12.7853259 - ], - [ - 80.2041448, - 12.7853259 - ], - [ - 80.2041448, - 13.0584818 - ], - [ - 79.1252519, - 13.0584818 - ], - [ - 79.1252519, - 12.7853259 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-25T06:09:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 28, - "delete": 0, - "area": 0.294705961103109, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 36, - "locale": "en", - "imagery": "osm" - }, - "id": 120148584 - } - }, - { - "id": 120145421, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.516853, - 44.8996624 - ], - [ - -0.5114825, - 44.8996624 - ], - [ - -0.5114825, - 44.9037389 - ], - [ - -0.516853, - 44.9037389 - ], - [ - -0.516853, - 44.8996624 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-25T04:19:07Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.0000218928432500195, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 8, - "locale": "fr", - "imagery": "osm" - }, - "id": 120145421 - } - }, - { - "id": 120139641, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.5729138, - 55.6980772 - ], - [ - 12.5768017, - 55.6980772 - ], - [ - 12.5768017, - 55.7050842 - ], - [ - 12.5729138, - 55.7050842 - ], - [ - 12.5729138, - 55.6980772 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Niels Elgaard Larsen", - "uid": "1288", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #dog", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-24T21:32:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000272425153000095, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "dog", - "answer": 2, - "locale": "da", - "imagery": "osm" - }, - "id": 120139641 - } - }, - { - "id": 120138392, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.136644, - 57.1285621 - ], - [ - -2.0972007, - 57.1285621 - ], - [ - -2.0972007, - 57.1691266 - ], - [ - -2.136644, - 57.1691266 - ], - [ - -2.136644, - 57.1285621 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "FlawOfAverages", - "uid": "4988361", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-24T20:36:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.0015999977428498, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 120138392 - } - }, - { - "id": 120135054, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1048011, - 51.1397728 - ], - [ - 3.1048011, - 51.1397728 - ], - [ - 3.1048011, - 51.1397728 - ], - [ - 3.1048011, - 51.1397728 - ], - [ - 3.1048011, - 51.1397728 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-24T18:33:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "add-image": 1 - }, - "id": 120135054 - } - }, - { - "id": 120126389, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -123.6870359, - 48.7849366 - ], - [ - -123.687035, - 48.7849366 - ], - [ - -123.687035, - 48.7849366 - ], - [ - -123.6870359, - 48.7849366 - ], - [ - -123.6870359, - 48.7849366 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "bmitch", - "uid": "3529163", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-24T14:22:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120126389 - } - }, - { - "id": 120126293, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -123.6896799, - 48.7818764 - ], - [ - -123.6888509, - 48.7818764 - ], - [ - -123.6888509, - 48.7821159 - ], - [ - -123.6896799, - 48.7821159 - ], - [ - -123.6896799, - 48.7818764 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "bmitch", - "uid": "3529163", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-24T14:19:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 1.9854549999844e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "answer": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 120126293 - } - }, - { - "id": 120126057, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -123.6715772, - 48.7821781 - ], - [ - -123.659553, - 48.7821781 - ], - [ - -123.659553, - 48.7883177 - ], - [ - -123.6715772, - 48.7883177 - ], - [ - -123.6715772, - 48.7821781 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "bmitch", - "uid": "3529163", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-24T14:13:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000738237783199624, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "theme": "waste_basket", - "answer": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 120126057 - } - }, - { - "id": 120125051, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.392097, - 51.9219038 - ], - [ - 14.4177425, - 51.9219038 - ], - [ - 14.4177425, - 51.9292871 - ], - [ - 14.392097, - 51.9292871 - ], - [ - 14.392097, - 51.9219038 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Stephan112", - "uid": "15691045", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-24T13:45:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 2, - "delete": 0, - "area": 0.000189348420150016, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "www.waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 120125051 - } - }, - { - "id": 120119826, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9857068, - 48.4969753 - ], - [ - 9.0153184, - 48.4969753 - ], - [ - 9.0153184, - 48.5075197 - ], - [ - 8.9857068, - 48.5075197 - ], - [ - 8.9857068, - 48.4969753 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-24T11:06:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 23, - "delete": 0, - "area": 0.000312236555040007, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 23, - "locale": "en", - "imagery": "osm" - }, - "id": 120119826 - } - }, - { - "id": 120119676, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1802583, - 51.197229 - ], - [ - 3.1803935, - 51.197229 - ], - [ - 3.1803935, - 51.1972781 - ], - [ - 3.1802583, - 51.1972781 - ], - [ - 3.1802583, - 51.197229 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Hopperpop", - "uid": "3664604", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #fritures", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-24T11:01:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 6.63831999975774e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/fritures.html", - "theme": "fritures", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120119676 - } - }, - { - "id": 120119331, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -76.6157562, - 39.324763 - ], - [ - -76.6157556, - 39.324763 - ], - [ - -76.6157556, - 39.3247682 - ], - [ - -76.6157562, - 39.3247682 - ], - [ - -76.6157562, - 39.324763 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "pkoby", - "uid": "999995", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-24T10:49:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 3.1200000388152e-12, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees", - "move": 1, - "theme": "trees", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "US_Forest_Service_roads", - "change_over_5000m": 1, - "change_within_25m": 3, - "move:node/9689489188": "improve_accuracy" - }, - "id": 120119331 - } - }, - { - "id": 120115431, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5127848, - 44.9031148 - ], - [ - -0.5114825, - 44.9031148 - ], - [ - -0.5114825, - 44.9037389 - ], - [ - -0.5127848, - 44.9037389 - ], - [ - -0.5127848, - 44.9031148 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-24T08:46:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 2, - "delete": 0, - "area": 8.12765430004125e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 7, - "create": 2, - "locale": "fr", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 2, - "change_within_25m": 9 - }, - "id": 120115431 - } - }, - { - "id": 120112928, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0822203, - 51.1509259 - ], - [ - 3.122729, - 51.1509259 - ], - [ - 3.122729, - 51.171152 - ], - [ - 3.0822203, - 51.171152 - ], - [ - 3.0822203, - 51.1509259 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-24T07:15:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 7, - "delete": 0, - "area": 0.00081933301707009, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 8, - "create": 3, - "locale": "nl", - "imagery": "AGIV", - "add-image": 1 - }, - "id": 120112928 - } - }, - { - "id": 120112740, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2496808, - -39.810087 - ], - [ - -73.2496808, - -39.810087 - ], - [ - -73.2496808, - -39.810087 - ], - [ - -73.2496808, - -39.810087 - ], - [ - -73.2496808, - -39.810087 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-24T07:06:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osmfr", - "add-image": 2 - }, - "id": 120112740 - } - }, - { - "id": 120112710, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2496808, - -39.810087 - ], - [ - -73.2496808, - -39.810087 - ], - [ - -73.2496808, - -39.810087 - ], - [ - -73.2496808, - -39.810087 - ], - [ - -73.2496808, - -39.810087 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-24T07:05:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osmfr", - "add-image": 1 - }, - "id": 120112710 - } - }, - { - "id": 120111678, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.391168, - 50.8573535 - ], - [ - 5.3958006, - 50.8573535 - ], - [ - 5.3958006, - 50.8593436 - ], - [ - 5.391168, - 50.8593436 - ], - [ - 5.391168, - 50.8573535 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-24T06:05:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0.00000921933726000179, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 2, - "theme": "toerisme_vlaanderen", - "answer": 2, - "import": 1, - "locale": "nl", - "imagery": "AGIV10cm", - "move:node/5189225237": "improve_accuracy", - "move:node/9689116779": "improve_accuracy", - "import:node/9689116779": "source: https://osm.org/note/3044020" - }, - "id": 120111678 - } - }, - { - "id": 120108327, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -91.638389, - 44.053642 - ], - [ - -91.638389, - 44.053642 - ], - [ - -91.638389, - 44.053642 - ], - [ - -91.638389, - 44.053642 - ], - [ - -91.638389, - 44.053642 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "imnichol", - "uid": "522254", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-24T00:47:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 3, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 120108327 - } - }, - { - "id": 120107996, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 120.6280589, - 14.5620957 - ], - [ - 121.0940109, - 14.5620957 - ], - [ - 121.0940109, - 14.9645337 - ], - [ - 120.6280589, - 14.9645337 - ], - [ - 120.6280589, - 14.5620957 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "GOwin", - "uid": "1041828", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #MAPinkMurals", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-24T00:16:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 12, - "delete": 0, - "area": 0.187516790976001, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "MAPinkMurals", - "answer": 17, - "create": 3, - "locale": "en", - "imagery": "cyclosm" - }, - "id": 120107996 - } - }, - { - "id": 120107578, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2355944, - -39.8385786 - ], - [ - -73.2355944, - -39.8385786 - ], - [ - -73.2355944, - -39.8385786 - ], - [ - -73.2355944, - -39.8385786 - ], - [ - -73.2355944, - -39.8385786 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-23T23:38:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osmfr", - "add-image": 2 - }, - "id": 120107578 - } - }, - { - "id": 120107458, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5695766, - 50.4491717 - ], - [ - 5.5710044, - 50.4491717 - ], - [ - 5.5710044, - 50.4502963 - ], - [ - 5.5695766, - 50.4502963 - ], - [ - 5.5695766, - 50.4491717 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-23T23:27:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.00000160570387999503, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/climbing.html", - "theme": "climbing", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 120107458 - } - }, - { - "id": 120107429, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2494513, - -39.8385645 - ], - [ - -73.2355996, - -39.8385645 - ], - [ - -73.2355996, - -39.809661 - ], - [ - -73.2494513, - -39.809661 - ], - [ - -73.2494513, - -39.8385645 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-23T23:25:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.000400362610950081, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "es", - "imagery": "osmfr", - "add-image": 4 - }, - "id": 120107429 - } - }, - { - "id": 120106841, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4239344, - 50.8866536 - ], - [ - 3.4314821, - 50.8866536 - ], - [ - 3.4314821, - 50.8911054 - ], - [ - 3.4239344, - 50.8911054 - ], - [ - 3.4239344, - 50.8866536 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "GertjanReynaert", - "uid": "15664631", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-23T22:44:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0.0000336008508599883, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix", - "theme": "cyclofix", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "AGIV" - }, - "id": 120106841 - } - }, - { - "id": 120106311, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9377638, - 48.4845403 - ], - [ - 8.9377638, - 48.4845403 - ], - [ - 8.9377638, - 48.4845403 - ], - [ - 8.9377638, - 48.4845403 - ], - [ - 8.9377638, - 48.4845403 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-23T22:10:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 120106311 - } - }, - { - "id": 120106277, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -76.6153505, - 39.3246199 - ], - [ - -76.6144896, - 39.3246199 - ], - [ - -76.6144896, - 39.324651 - ], - [ - -76.6153505, - 39.324651 - ], - [ - -76.6153505, - 39.3246199 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "pkoby", - "uid": "999995", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-23T22:09:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 1, - "delete": 0, - "area": 2.67739900011117e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees", - "theme": "trees", - "answer": 6, - "create": 3, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 3, - "change_within_25m": 6 - }, - "id": 120106277 - } - }, - { - "id": 120106269, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -76.6144037, - 39.3246531 - ], - [ - -76.6142696, - 39.3246531 - ], - [ - -76.6142696, - 39.3246567 - ], - [ - -76.6144037, - 39.3246567 - ], - [ - -76.6144037, - 39.3246531 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "pkoby", - "uid": "999995", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-23T22:08:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 4.82759999913056e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees", - "theme": "trees", - "answer": 2, - "create": 2, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 2 - }, - "id": 120106269 - } - }, - { - "id": 120106118, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1164973, - 51.1495293 - ], - [ - 3.1165743, - 51.1495293 - ], - [ - 3.1165743, - 51.1496024 - ], - [ - 3.1164973, - 51.1496024 - ], - [ - 3.1164973, - 51.1495293 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-23T21:59:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 5.62870000013105e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", - "answer": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 120106118 - } - }, - { - "id": 120105314, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1364592, - 51.1467511 - ], - [ - 3.1388471, - 51.1467511 - ], - [ - 3.1388471, - 51.1546245 - ], - [ - 3.1364592, - 51.1546245 - ], - [ - 3.1364592, - 51.1467511 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-23T21:18:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0.0000188008918599857, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 120105314 - } - }, - { - "id": 120105230, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1909729, - 51.1557131 - ], - [ - 3.1909729, - 51.1557131 - ], - [ - 3.1909729, - 51.1557131 - ], - [ - 3.1909729, - 51.1557131 - ], - [ - 3.1909729, - 51.1557131 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Hopperpop", - "uid": "3664604", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-23T21:14:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 120105230 - } - }, - { - "id": 120105174, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1891021, - 51.1936769 - ], - [ - 3.193787, - 51.1936769 - ], - [ - 3.193787, - 51.1988902 - ], - [ - 3.1891021, - 51.1988902 - ], - [ - 3.1891021, - 51.1936769 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Hopperpop", - "uid": "3664604", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #sidewalks", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-23T21:11:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.0000244237891700056, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sidewalks.html", - "theme": "sidewalks", - "answer": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 120105174 - } - }, - { - "id": 120104656, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.1358329, - 57.144125 - ], - [ - -2.0955425, - 57.144125 - ], - [ - -2.0955425, - 57.1746623 - ], - [ - -2.1358329, - 57.1746623 - ], - [ - -2.1358329, - 57.144125 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "FlawOfAverages", - "uid": "4988361", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-23T20:48:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 39, - "delete": 0, - "area": 0.00123036003191995, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 44, - "locale": "en", - "imagery": "osm" - }, - "id": 120104656 - } - }, - { - "id": 120104017, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1909176, - 51.1990723 - ], - [ - 3.1909176, - 51.1990723 - ], - [ - 3.1909176, - 51.1990723 - ], - [ - 3.1909176, - 51.1990723 - ], - [ - 3.1909176, - 51.1990723 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-23T20:20:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/shops.html", - "theme": "shops", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_50m": 1 - }, - "id": 120104017 - } - }, - { - "id": 120103998, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2208126, - 50.9831783 - ], - [ - 4.2267753, - 50.9831783 - ], - [ - 4.2267753, - 50.9851835 - ], - [ - 4.2208126, - 50.9851835 - ], - [ - 4.2208126, - 50.9831783 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Jakka", - "uid": "2403313", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-23T20:19:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 827, - "modify": 0, - "delete": 0, - "area": 0.0000119564060399947, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 115, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "change_over_5000m": 113 - }, - "id": 120103998 - } - }, - { - "id": 120100650, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -76.6157033, - 39.3249404 - ], - [ - -76.6157033, - 39.3249404 - ], - [ - -76.6157033, - 39.3249404 - ], - [ - -76.6157033, - 39.3249404 - ], - [ - -76.6157033, - 39.3249404 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "pkoby", - "uid": "999995", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-23T18:11:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 3, - "locale": "en", - "imagery": "osm", - "change_within_500m": 2 - }, - "id": 120100650 - } - }, - { - "id": 120100215, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0684829, - 51.1381481 - ], - [ - 3.1477559, - 51.1381481 - ], - [ - 3.1477559, - 51.1759869 - ], - [ - 3.0684829, - 51.1759869 - ], - [ - 3.0684829, - 51.1381481 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-23T17:57:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 67, - "delete": 0, - "area": 0.00299959519239968, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "answer": 71, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 71 - }, - "id": 120100215 - } - }, - { - "id": 120100200, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2497444, - -39.8102913 - ], - [ - -73.2491059, - -39.8102913 - ], - [ - -73.2491059, - -39.8097116 - ], - [ - -73.2497444, - -39.8097116 - ], - [ - -73.2497444, - -39.8102913 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-23T17:56:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 6, - "delete": 0, - "area": 3.70138449998277e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osmfr", - "add-image": 6 - }, - "id": 120100200 - } - }, - { - "id": 120100059, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2493381, - -39.843547 - ], - [ - -73.2313904, - -39.843547 - ], - [ - -73.2313904, - -39.8101576 - ], - [ - -73.2493381, - -39.8101576 - ], - [ - -73.2493381, - -39.843547 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-23T17:51:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.000599262934380334, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osmfr", - "add-image": 3 - }, - "id": 120100059 - } - }, - { - "id": 120097575, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3034313, - 50.81816 - ], - [ - 4.3034313, - 50.81816 - ], - [ - 4.3034313, - 50.81816 - ], - [ - 4.3034313, - 50.81816 - ], - [ - 4.3034313, - 50.81816 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-23T16:35:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 120097575 - } - }, - { - "id": 120095810, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1116576, - 51.2168309 - ], - [ - 4.1192781, - 51.2168309 - ], - [ - 4.1192781, - 51.2191714 - ], - [ - 4.1116576, - 51.2191714 - ], - [ - 4.1116576, - 51.2168309 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-23T15:49:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 889, - "modify": 0, - "delete": 0, - "area": 0.0000178357802500188, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 131, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 131 - }, - "id": 120095810 - } - }, - { - "id": 120095762, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2075116, - 50.9024581 - ], - [ - 4.2075116, - 50.9024581 - ], - [ - 4.2075116, - 50.9024581 - ], - [ - 4.2075116, - 50.9024581 - ], - [ - 4.2075116, - 50.9024581 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-23T15:48:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "change_over_5000m": 1, - "change_within_25m": 6 - }, - "id": 120095762 - } - }, - { - "id": 120094637, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1129664, - 51.2130233 - ], - [ - 4.1376261, - 51.2130233 - ], - [ - 4.1376261, - 51.2239798 - ], - [ - 4.1129664, - 51.2239798 - ], - [ - 4.1129664, - 51.2130233 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-23T15:14:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 9402, - "modify": 0, - "delete": 0, - "area": 0.000270184003049973, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 1339, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 990 - }, - "id": 120094637 - } - }, - { - "id": 120093955, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2252303, - 51.2163693 - ], - [ - 3.2252303, - 51.2163693 - ], - [ - 3.2252303, - 51.2163693 - ], - [ - 3.2252303, - 51.2163693 - ], - [ - 3.2252303, - 51.2163693 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-23T14:58:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/aed.html", - "theme": "aed", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 120093955 - } - }, - { - "id": 120093218, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1447064, - 51.1854243 - ], - [ - 4.4088663, - 51.1854243 - ], - [ - 4.4088663, - 51.2129982 - ], - [ - 3.1447064, - 51.2129982 - ], - [ - 3.1447064, - 51.1854243 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Hopperpop", - "uid": "3664604", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-23T14:40:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0348578186666102, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 120093218 - } - }, - { - "id": 120092228, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2309923, - 51.2193639 - ], - [ - 3.2311982, - 51.2193639 - ], - [ - 3.2311982, - 51.2195622 - ], - [ - 3.2309923, - 51.2195622 - ], - [ - 3.2309923, - 51.2193639 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-23T14:12:07Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 4, - "delete": 0, - "area": 4.08299700002208e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 8, - "create": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 2, - "change_within_25m": 5, - "change_within_50m": 4 - }, - "id": 120092228 - } - }, - { - "id": 120092144, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2257161, - 51.2161746 - ], - [ - 3.2313082, - 51.2161746 - ], - [ - 3.2313082, - 51.2192094 - ], - [ - 3.2257161, - 51.2192094 - ], - [ - 3.2257161, - 51.2161746 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-23T14:09:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 3, - "delete": 0, - "area": 0.0000169709050799699, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/artwork.html", - "theme": "artwork", - "answer": 2, - "create": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 3, - "change_over_5000m": 2, - "change_within_25m": 5 - }, - "id": 120092144 - } - }, - { - "id": 120091368, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2283514, - 51.2175126 - ], - [ - 3.2311338, - 51.2175126 - ], - [ - 3.2311338, - 51.21895 - ], - [ - 3.2283514, - 51.21895 - ], - [ - 3.2283514, - 51.2175126 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-23T13:46:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 5, - "delete": 0, - "area": 0.00000399942176000049, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/trees.html", - "theme": "trees", - "answer": 3, - "create": 3, - "locale": "nl", - "imagery": "AGIV", - "add-image": 3, - "change_over_5000m": 3, - "change_within_25m": 6 - }, - "id": 120091368 - } - }, - { - "id": 120091151, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2252303, - 51.2163693 - ], - [ - 3.2252303, - 51.2163693 - ], - [ - 3.2252303, - 51.2163693 - ], - [ - 3.2252303, - 51.2163693 - ], - [ - 3.2252303, - 51.2163693 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-23T13:39:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/aed.html", - "theme": "aed", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_100m": 3 - }, - "id": 120091151 - } - }, - { - "id": 120083940, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5378883, - 44.8593317 - ], - [ - -0.5378883, - 44.8593317 - ], - [ - -0.5378883, - 44.8593317 - ], - [ - -0.5378883, - 44.8593317 - ], - [ - -0.5378883, - 44.8593317 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-23T10:05:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 3, - "create": 1, - "locale": "fr", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 4 - }, - "id": 120083940 - } - }, - { - "id": 120083739, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Niels Elgaard Larsen", - "uid": "1288", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #dog", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-23T09:59:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "dog", - "answer": 1, - "locale": "da", - "imagery": "osm" - }, - "id": 120083739 - } - }, - { - "id": 120082829, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2289386, - 50.7432108 - ], - [ - 4.2289386, - 50.7432108 - ], - [ - 4.2289386, - 50.7432108 - ], - [ - 4.2289386, - 50.7432108 - ], - [ - 4.2289386, - 50.7432108 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-23T09:33:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 5, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 6 - }, - "id": 120082829 - } - }, - { - "id": 120078949, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.494237, - 44.8689263 - ], - [ - -0.4929441, - 44.8689263 - ], - [ - -0.4929441, - 44.8703406 - ], - [ - -0.494237, - 44.8703406 - ], - [ - -0.494237, - 44.8689263 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-23T07:13:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0.00000182854847000053, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 8, - "create": 3, - "locale": "fr", - "imagery": "osm", - "change_within_25m": 2, - "change_within_50m": 8 - }, - "id": 120078949 - } - }, - { - "id": 120078637, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2374517, - 50.7374414 - ], - [ - 4.2374517, - 50.7374414 - ], - [ - 4.2374517, - 50.7374414 - ], - [ - 4.2374517, - 50.7374414 - ], - [ - 4.2374517, - 50.7374414 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-23T06:58:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 4, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 4 - }, - "id": 120078637 - } - }, - { - "id": 120076634, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0212541, - 51.1203518 - ], - [ - 5.0828019, - 51.1203518 - ], - [ - 5.0828019, - 51.1335398 - ], - [ - 5.0212541, - 51.1335398 - ], - [ - 5.0212541, - 51.1203518 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-23T05:24:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 436, - "modify": 1089, - "delete": 17, - "area": 0.000811692386399966, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 949, - "theme": "grb", - "answer": 14, - "delete": 17, - "import": 39, - "locale": "nl", - "imagery": "AGIV", - "conflation": 286, - "change_within_5000m": 7 - }, - "id": 120076634 - } - }, - { - "id": 120075111, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 120.954245, - 14.6710034 - ], - [ - 120.954245, - 14.6710034 - ], - [ - 120.954245, - 14.6710034 - ], - [ - 120.954245, - 14.6710034 - ], - [ - 120.954245, - 14.6710034 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "GOwin", - "uid": "1041828", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #MAPinkMurals", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-23T03:29:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "MAPinkMurals", - "answer": 5, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120075111 - } - }, - { - "id": 120073902, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2431303, - 51.2060932 - ], - [ - 3.2431303, - 51.2060932 - ], - [ - 3.2431303, - 51.2060932 - ], - [ - 3.2431303, - 51.2060932 - ], - [ - 3.2431303, - 51.2060932 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-23T01:38:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "http://127.0.0.1:1234/theme.html", - "theme": "climbing", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 120073902 - } - }, - { - "id": 120073669, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0489994, - 14.5838934 - ], - [ - 121.0842202, - 14.5838934 - ], - [ - 121.0842202, - 14.6382531 - ], - [ - 121.0489994, - 14.6382531 - ], - [ - 121.0489994, - 14.5838934 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "GOwin", - "uid": "1041828", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #MAPinkMurals", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-23T01:19:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 6, - "delete": 0, - "area": 0.00191459212176029, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "MAPinkMurals", - "answer": 9, - "create": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 120073669 - } - }, - { - "id": 120072188, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.8342367, - 55.9025268 - ], - [ - 8.8347325, - 55.9025268 - ], - [ - 8.8347325, - 55.9037664 - ], - [ - 8.8342367, - 55.9037664 - ], - [ - 8.8342367, - 55.9025268 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Niels Elgaard Larsen", - "uid": "1288", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #dog", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-22T23:16:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 6.1459368000196e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "dog", - "create": 2, - "locale": "da", - "imagery": "osm" - }, - "id": 120072188 - } - }, - { - "id": 120068654, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4159668, - 50.8302492 - ], - [ - 4.4166104, - 50.8302492 - ], - [ - 4.4166104, - 50.8308515 - ], - [ - 4.4159668, - 50.8308515 - ], - [ - 4.4159668, - 50.8302492 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-22T20:18:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 3.87640280002726e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "locale": "en", - "imagery": "osm", - "add-image": 2 - }, - "id": 120068654 - } - }, - { - "id": 120068640, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0678868, - 48.5316213 - ], - [ - 9.0679008, - 48.5316213 - ], - [ - 9.0679008, - 48.5318789 - ], - [ - 9.0678868, - 48.5318789 - ], - [ - 9.0678868, - 48.5316213 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-22T20:18:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 3.60640000011291e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 5, - "locale": "en", - "imagery": "osm" - }, - "id": 120068640 - } - }, - { - "id": 120068331, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.40481, - 50.8191588 - ], - [ - 4.40481, - 50.8191588 - ], - [ - 4.40481, - 50.8191588 - ], - [ - 4.40481, - 50.8191588 - ], - [ - 4.40481, - 50.8191588 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-22T20:06:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 120068331 - } - }, - { - "id": 120060793, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2135581, - 51.2100717 - ], - [ - 3.2135581, - 51.2100717 - ], - [ - 3.2135581, - 51.2100717 - ], - [ - 3.2135581, - 51.2100717 - ], - [ - 3.2135581, - 51.2100717 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-22T16:51:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/trees.html", - "theme": "trees", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_within_25m": 2 - }, - "id": 120060793 - } - }, - { - "id": 120060471, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -49.2670604, - -16.6045561 - ], - [ - -49.2670604, - -16.6045561 - ], - [ - -49.2670604, - -16.6045561 - ], - [ - -49.2670604, - -16.6045561 - ], - [ - -49.2670604, - -16.6045561 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Túllio", - "uid": "1206082", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-22T16:43:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 120060471 - } - }, - { - "id": 120060039, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.3561954, - 48.884813 - ], - [ - 2.3680841, - 48.884813 - ], - [ - 2.3680841, - 48.8899056 - ], - [ - 2.3561954, - 48.8899056 - ], - [ - 2.3561954, - 48.884813 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "retiolus", - "uid": "11291363", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-22T16:32:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 8, - "modify": 15, - "delete": 0, - "area": 0.0000605443936199714, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 31, - "create": 9, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 7, - "change_within_25m": 27, - "change_within_50m": 3, - "change_within_100m": 3 - }, - "id": 120060039 - } - }, - { - "id": 120058503, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7134875, - 51.0263971 - ], - [ - 3.7137128, - 51.0263971 - ], - [ - 3.7137128, - 51.0264477 - ], - [ - 3.7134875, - 51.0264477 - ], - [ - 3.7134875, - 51.0263971 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-22T15:55:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 3, - "delete": 0, - "area": 1.14001800003689e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/sport_pitches.html", - "theme": "sport_pitches", - "answer": 4, - "create": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 2, - "change_within_25m": 6 - }, - "id": 120058503 - } - }, - { - "id": 120057067, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1456491, - 51.1118193 - ], - [ - 4.1456491, - 51.1118193 - ], - [ - 4.1456491, - 51.1118193 - ], - [ - 4.1456491, - 51.1118193 - ], - [ - 4.1456491, - 51.1118193 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-22T15:21:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/waste", - "theme": "waste", - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1 - }, - "id": 120057067 - } - }, - { - "id": 120056133, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4236799, - 50.8913454 - ], - [ - 3.4240847, - 50.8913454 - ], - [ - 3.4240847, - 50.8919728 - ], - [ - 3.4236799, - 50.8919728 - ], - [ - 3.4236799, - 50.8913454 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "GertjanReynaert", - "uid": "15664631", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-22T15:01:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 2.53971519999398e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix", - "theme": "cyclofix", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 120056133 - } - }, - { - "id": 120053710, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3752695, - 50.7603255 - ], - [ - 5.3783561, - 50.7603255 - ], - [ - 5.3783561, - 50.7623421 - ], - [ - 5.3752695, - 50.7623421 - ], - [ - 5.3752695, - 50.7603255 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-22T14:13:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6, - "modify": 68, - "delete": 6, - "area": 0.00000622443755999322, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 59, - "theme": "grb", - "delete": 6, - "import": 1, - "locale": "nl", - "imagery": "osm", - "conflation": 18 - }, - "id": 120053710 - } - }, - { - "id": 120051820, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5357379, - 44.8558567 - ], - [ - -0.5351315, - 44.8558567 - ], - [ - -0.5351315, - 44.8562607 - ], - [ - -0.5357379, - 44.8562607 - ], - [ - -0.5357379, - 44.8558567 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-22T13:36:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 2.44985600001931e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 4, - "create": 2, - "locale": "fr", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 7 - }, - "id": 120051820 - } - }, - { - "id": 120051790, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.9573323, - 45.7992809 - ], - [ - 15.9577583, - 45.7992809 - ], - [ - 15.9577583, - 45.8008284 - ], - [ - 15.9573323, - 45.8008284 - ], - [ - 15.9573323, - 45.7992809 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Janjko", - "uid": "244754", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-22T13:35:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 6.59235000001826e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 4, - "locale": "en", - "imagery": "osm", - "change_within_25m": 4 - }, - "id": 120051790 - } - }, - { - "id": 120050570, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6807709, - 51.0489011 - ], - [ - 3.681615, - 51.0489011 - ], - [ - 3.681615, - 51.0500726 - ], - [ - 3.6807709, - 51.0500726 - ], - [ - 3.6807709, - 51.0489011 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-22T13:08:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 9.88863149998027e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/climbing.html", - "theme": "climbing", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_5000m": 1 - }, - "id": 120050570 - } - }, - { - "id": 120049007, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3463936, - 50.8499268 - ], - [ - 4.3463936, - 50.8499268 - ], - [ - 4.3463936, - 50.8499268 - ], - [ - 4.3463936, - 50.8499268 - ], - [ - 4.3463936, - 50.8499268 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-22T12:29:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix", - "theme": "cyclofix", - "answer": 6, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 6 - }, - "id": 120049007 - } - }, - { - "id": 120047986, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0581433, - 51.1380284 - ], - [ - 4.1726214, - 51.1380284 - ], - [ - 4.1726214, - 51.1871946 - ], - [ - 4.0581433, - 51.1871946 - ], - [ - 4.0581433, - 51.1380284 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "vott", - "uid": "15407842", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-22T12:08:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 12, - "modify": 4, - "delete": 2, - "area": 0.00562845316021938, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 22, - "create": 12, - "locale": "nl", - "imagery": "osm", - "deletion": 2, - "change_over_5000m": 1, - "change_within_5000m": 1, - "deletion:node/5866281648": "disused", - "deletion:node/9685560450": "testing point" - }, - "id": 120047986 - } - }, - { - "id": 120046660, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7197948, - 51.0466304 - ], - [ - 3.7197948, - 51.0466304 - ], - [ - 3.7197948, - 51.0466304 - ], - [ - 3.7197948, - 51.0466304 - ], - [ - 3.7197948, - 51.0466304 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-22T11:42:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", - "theme": "cyclofix", - "answer": 3, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_within_1000m": 3 - }, - "id": 120046660 - } - }, - { - "id": 120044361, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5103487, - 44.8444802 - ], - [ - -0.5103487, - 44.8444802 - ], - [ - -0.5103487, - 44.8444802 - ], - [ - -0.5103487, - 44.8444802 - ], - [ - -0.5103487, - 44.8444802 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-22T10:58:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 4, - "create": 1, - "locale": "fr", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_5000m": 4 - }, - "id": 120044361 - } - }, - { - "id": 120044087, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5324564, - 53.2406062 - ], - [ - 6.5324564, - 53.2406062 - ], - [ - 6.5324564, - 53.2406062 - ], - [ - 6.5324564, - 53.2406062 - ], - [ - 6.5324564, - 53.2406062 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-22T10:52:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 120044087 - } - }, - { - "id": 120032273, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.4542156, - 54.8367673 - ], - [ - 83.1169842, - 54.8367673 - ], - [ - 83.1169842, - 56.8322521 - ], - [ - 37.4542156, - 56.8322521 - ], - [ - 37.4542156, - 54.8367673 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Miroff", - "uid": "217899", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-22T06:58:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 28, - "delete": 0, - "area": 91.1193606672173, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "answer": 55, - "locale": "ru", - "imagery": "osm" - }, - "id": 120032273 - } - }, - { - "id": 120030212, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9942808, - 48.4992368 - ], - [ - 8.9951484, - 48.4992368 - ], - [ - 8.9951484, - 48.4999785 - ], - [ - 8.9942808, - 48.4999785 - ], - [ - 8.9942808, - 48.4992368 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-22T06:05:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 6, - "delete": 0, - "area": 6.4349891999866e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 10, - "locale": "en", - "imagery": "osm", - "change_within_25m": 10 - }, - "id": 120030212 - } - }, - { - "id": 120030193, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9956869, - 48.499415 - ], - [ - 8.9956869, - 48.499415 - ], - [ - 8.9956869, - 48.499415 - ], - [ - 8.9956869, - 48.499415 - ], - [ - 8.9956869, - 48.499415 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-22T06:04:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 3, - "locale": "en", - "imagery": "osm", - "change_within_50m": 3 - }, - "id": 120030193 - } - }, - { - "id": 120029463, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.998806, - 50.9227151 - ], - [ - 4.0017169, - 50.9227151 - ], - [ - 4.0017169, - 50.9253763 - ], - [ - 3.998806, - 50.9253763 - ], - [ - 3.998806, - 50.9227151 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ivan Lievens", - "uid": "63737", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-22T05:43:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 10, - "modify": 0, - "delete": 0, - "area": 0.00000774648708001611, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 2, - "locale": "nl", - "imagery": "AGIVFlandersGRB" - }, - "id": 120029463 - } - }, - { - "id": 120023587, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2128476, - 51.2097787 - ], - [ - 3.2135581, - 51.2097787 - ], - [ - 3.2135581, - 51.2100717 - ], - [ - 3.2128476, - 51.2100717 - ], - [ - 3.2128476, - 51.2097787 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-21T23:43:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 2.08176499999521e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "http://127.0.0.1:1234/theme.html", - "theme": "trees", - "answer": 3, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 120023587 - } - }, - { - "id": 120022331, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1456491, - 51.1118024 - ], - [ - 4.1456732, - 51.1118024 - ], - [ - 4.1456732, - 51.1118193 - ], - [ - 4.1456491, - 51.1118193 - ], - [ - 4.1456491, - 51.1118024 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-21T22:26:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 4.07289999966281e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/waste.html", - "move": 1, - "theme": "waste", - "locale": "nl", - "imagery": "osm", - "move:node/9682930704": "improve_accuracy" - }, - "id": 120022331 - } - }, - { - "id": 120020765, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.2152085, - 47.1324262 - ], - [ - 7.216091, - 47.1324262 - ], - [ - 7.216091, - 47.1325649 - ], - [ - 7.2152085, - 47.1325649 - ], - [ - 7.2152085, - 47.1324262 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "strukturart", - "uid": "8622394", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-21T21:35:07Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.22402750000652e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/climbing", - "theme": "climbing", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_5000m": 1 - }, - "id": 120020765 - } - }, - { - "id": 120019006, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7049567, - 50.8081946 - ], - [ - 4.7057399, - 50.8081946 - ], - [ - 4.7057399, - 50.8082128 - ], - [ - 4.7049567, - 50.8082128 - ], - [ - 4.7049567, - 50.8081946 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "toeklk", - "uid": "219908", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-21T20:43:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.4254239999625e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "move:node/1497900820": "improve_accuracy" - }, - "id": 120019006 - } - }, - { - "id": 120018211, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.141282, - 51.1123098 - ], - [ - 4.1423749, - 51.1123098 - ], - [ - 4.1423749, - 51.1126008 - ], - [ - 4.141282, - 51.1126008 - ], - [ - 4.141282, - 51.1123098 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-21T20:20:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 15, - "modify": 27, - "delete": 0, - "area": 3.18033900004577e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 23, - "theme": "grb", - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "conflation": 8 - }, - "id": 120018211 - } - }, - { - "id": 120018165, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.3951841, - -39.874165 - ], - [ - -73.3951525, - -39.874165 - ], - [ - -73.3951525, - -39.873966 - ], - [ - -73.3951841, - -39.873966 - ], - [ - -73.3951841, - -39.874165 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-21T20:18:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 9, - "delete": 0, - "area": 6.28839999980041e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 6, - "create": 2, - "locale": "en", - "imagery": "osm", - "add-image": 6 - }, - "id": 120018165 - } - }, - { - "id": 120015280, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1398698, - 51.1117836 - ], - [ - 4.1415073, - 51.1117836 - ], - [ - 4.1415073, - 51.1132768 - ], - [ - 4.1398698, - 51.1132768 - ], - [ - 4.1398698, - 51.1117836 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 494, - "name": "Mapbox: Fictional mapping" - } - ], - "tags": [], - "features": [ - { - "url": "way-375409532", - "osm_id": 375409532, - "reasons": [ - 494 - ], - "version": 2 - } - ], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-21T18:51:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 141, - "modify": 128, - "delete": 0, - "area": 0.00000244511499999822, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 112, - "theme": "grb", - "import": 5, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "conflation": 56, - "change_over_5000m": 5 - }, - "id": 120015280 - } - }, - { - "id": 120014920, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.2635967, - 44.4812198 - ], - [ - 11.2635967, - 44.4812198 - ], - [ - 11.2635967, - 44.4812198 - ], - [ - 11.2635967, - 44.4812198 - ], - [ - 11.2635967, - 44.4812198 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "WinstonSmith", - "uid": "36030", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-21T18:40:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix", - "theme": "cyclofix", - "answer": 5, - "create": 1, - "locale": "it", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_25m": 5 - }, - "id": 120014920 - } - }, - { - "id": 120014760, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1233726, - 51.1125166 - ], - [ - 4.1408802, - 51.1125166 - ], - [ - 4.1408802, - 51.2192014 - ], - [ - 4.1233726, - 51.2192014 - ], - [ - 4.1233726, - 51.1125166 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-21T18:36:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1164, - "modify": 5, - "delete": 0, - "area": 0.00186779480448007, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 4, - "theme": "grb", - "import": 146, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "conflation": 2, - "change_within_500m": 16, - "change_within_1000m": 128 - }, - "id": 120014760 - } - }, - { - "id": 120011065, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.725076, - 50.8725726 - ], - [ - 4.725076, - 50.8725726 - ], - [ - 4.725076, - 50.8725726 - ], - [ - 4.725076, - 50.8725726 - ], - [ - 4.725076, - 50.8725726 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "toeklk", - "uid": "219908", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-21T17:15:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "import": 1, - "locale": "nl", - "imagery": "osm", - "import:node/9683307129": "source: https://osm.org/note/3090200" - }, - "id": 120011065 - } - }, - { - "id": 120007895, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9945106, - 48.5007788 - ], - [ - 8.9947941, - 48.5007788 - ], - [ - 8.9947941, - 48.5010643 - ], - [ - 8.9945106, - 48.5010643 - ], - [ - 8.9945106, - 48.5007788 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-21T16:00:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 8.09392500011451e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/entrances.html", - "theme": "entrances", - "answer": 5, - "locale": "en", - "imagery": "osm", - "change_within_25m": 5 - }, - "id": 120007895 - } - }, - { - "id": 120007792, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9958027, - 48.5010436 - ], - [ - 8.9958027, - 48.5010436 - ], - [ - 8.9958027, - 48.5010436 - ], - [ - 8.9958027, - 48.5010436 - ], - [ - 8.9958027, - 48.5010436 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-21T15:58:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 120007792 - } - }, - { - "id": 120007728, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9958065, - 48.5010345 - ], - [ - 8.9961988, - 48.5010345 - ], - [ - 8.9961988, - 48.5012885 - ], - [ - 8.9958065, - 48.5012885 - ], - [ - 8.9958065, - 48.5010345 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-21T15:56:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 9.96441999992124e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 4, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 120007728 - } - }, - { - "id": 120007669, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1408037, - 51.1628468 - ], - [ - 4.1408037, - 51.1628468 - ], - [ - 4.1408037, - 51.1628468 - ], - [ - 4.1408037, - 51.1628468 - ], - [ - 4.1408037, - 51.1628468 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-21T15:55:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/toilets.html", - "theme": "toilets", - "answer": 5, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 6 - }, - "id": 120007669 - } - }, - { - "id": 120007656, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9965305, - 48.5015504 - ], - [ - 8.9965305, - 48.5015504 - ], - [ - 8.9965305, - 48.5015504 - ], - [ - 8.9965305, - 48.5015504 - ], - [ - 8.9965305, - 48.5015504 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-21T15:54:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 120007656 - } - }, - { - "id": 120007129, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9961427, - 48.5011745 - ], - [ - 8.9961427, - 48.5011745 - ], - [ - 8.9961427, - 48.5011745 - ], - [ - 8.9961427, - 48.5011745 - ], - [ - 8.9961427, - 48.5011745 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-21T15:42:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 5, - "locale": "en", - "imagery": "osm", - "change_within_25m": 5 - }, - "id": 120007129 - } - }, - { - "id": 120006470, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2327042, - 50.7686504 - ], - [ - 3.2375982, - 50.7686504 - ], - [ - 3.2375982, - 50.7719406 - ], - [ - 3.2327042, - 50.7719406 - ], - [ - 3.2327042, - 50.7686504 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "Jakka", - "uid": "2403313", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-21T15:27:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1371, - "modify": 0, - "delete": 0, - "area": 0.0000161022388000095, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 172, - "locale": "nl", - "imagery": "AGIVFlandersGRB" - }, - "id": 120006470 - } - }, - { - "id": 120006416, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.242176, - 50.7390479 - ], - [ - 4.242176, - 50.7390479 - ], - [ - 4.242176, - 50.7390479 - ], - [ - 4.242176, - 50.7390479 - ], - [ - 4.242176, - 50.7390479 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-21T15:25:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 7 - }, - "id": 120006416 - } - }, - { - "id": 120005564, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5102529, - 44.844722 - ], - [ - -0.5098237, - 44.844722 - ], - [ - -0.5098237, - 44.8461884 - ], - [ - -0.5102529, - 44.8461884 - ], - [ - -0.5102529, - 44.844722 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-21T15:06:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 7, - "modify": 17, - "delete": 0, - "area": 6.29378880002305e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 31, - "create": 7, - "locale": "fr", - "imagery": "osm", - "add-image": 3, - "change_over_5000m": 7, - "change_within_25m": 21, - "change_within_50m": 13 - }, - "id": 120005564 - } - }, - { - "id": 120004867, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1409786, - 51.1118024 - ], - [ - 4.1456732, - 51.1118024 - ], - [ - 4.1456732, - 51.1622941 - ], - [ - 4.1409786, - 51.1622941 - ], - [ - 4.1409786, - 51.1118024 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-21T14:51:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0.000237038334819959, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/waste.html", - "theme": "waste", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 3, - "change_within_50m": 2 - }, - "id": 120004867 - } - }, - { - "id": 120003135, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4537115, - 51.1329705 - ], - [ - 5.4537115, - 51.1329705 - ], - [ - 5.4537115, - 51.1329705 - ], - [ - 5.4537115, - 51.1329705 - ], - [ - 5.4537115, - 51.1329705 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "StadPeer", - "uid": "15586828", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-21T14:06:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 1, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "locale": "nl", - "imagery": "osm", - "deletion": 1, - "deletion:node/9667627881": "testing point" - }, - "id": 120003135 - } - }, - { - "id": 120002521, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1348309, - 51.1603225 - ], - [ - 4.1420532, - 51.1603225 - ], - [ - 4.1420532, - 51.1919171 - ], - [ - 4.1348309, - 51.1919171 - ], - [ - 4.1348309, - 51.1603225 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "Gpoilvet", - "uid": "9574710", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-21T13:52:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1170, - "modify": 0, - "delete": 0, - "area": 0.000228185679580002, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 172, - "locale": "nl", - "imagery": "osm" - }, - "id": 120002521 - } - }, - { - "id": 120002215, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1336045, - 51.1118013 - ], - [ - 4.1407511, - 51.1118013 - ], - [ - 4.1407511, - 51.1156917 - ], - [ - 4.1336045, - 51.1156917 - ], - [ - 4.1336045, - 51.1118013 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-21T13:44:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1969, - "modify": 70, - "delete": 0, - "area": 0.0000278031326399729, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 64, - "theme": "grb", - "import": 263, - "locale": "nl", - "imagery": "osm", - "conflation": 32, - "change_over_5000m": 263 - }, - "id": 120002215 - } - }, - { - "id": 119994676, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9956615, - 48.5015756 - ], - [ - 8.9956615, - 48.5015756 - ], - [ - 8.9956615, - 48.5015756 - ], - [ - 8.9956615, - 48.5015756 - ], - [ - 8.9956615, - 48.5015756 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-21T10:49:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 4, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 5 - }, - "id": 119994676 - } - }, - { - "id": 119994524, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.996752, - 48.5016811 - ], - [ - 8.9976277, - 48.5016811 - ], - [ - 8.9976277, - 48.5017187 - ], - [ - 8.996752, - 48.5017187 - ], - [ - 8.996752, - 48.5016811 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-21T10:45:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 3.29263199989995e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 8, - "locale": "en", - "imagery": "osm", - "change_within_25m": 4, - "change_within_50m": 4 - }, - "id": 119994524 - } - }, - { - "id": 119994441, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1201099, - 51.1123963 - ], - [ - 4.1247241, - 51.1123963 - ], - [ - 4.1247241, - 51.1146726 - ], - [ - 4.1201099, - 51.1146726 - ], - [ - 4.1201099, - 51.1123963 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-21T10:42:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 332, - "modify": 13, - "delete": 1, - "area": 0.0000105033034599919, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 12, - "theme": "grb", - "delete": 1, - "import": 39, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "conflation": 2 - }, - "id": 119994441 - } - }, - { - "id": 119994356, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9945224, - 48.5008265 - ], - [ - 8.996525, - 48.5008265 - ], - [ - 8.996525, - 48.5017605 - ], - [ - 8.9945224, - 48.5017605 - ], - [ - 8.9945224, - 48.5008265 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-21T10:40:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6, - "modify": 12, - "delete": 0, - "area": 0.00000187042840000256, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 18, - "create": 6, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 6, - "change_within_25m": 17, - "change_within_50m": 1 - }, - "id": 119994356 - } - }, - { - "id": 119994215, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4388668, - 51.2019393 - ], - [ - 4.4388668, - 51.2019393 - ], - [ - 4.4388668, - 51.2019393 - ], - [ - 4.4388668, - 51.2019393 - ], - [ - 4.4388668, - 51.2019393 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-21T10:36:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "http://127.0.0.1:1234/theme.html", - "theme": "toerisme_vlaanderen", - "import": 1, - "locale": "en", - "imagery": "AGIV", - "import:node/9682398772": "source: https://osm.org/note/3143535" - }, - "id": 119994215 - } - }, - { - "id": 119982087, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9941526, - 48.4987427 - ], - [ - 8.9957401, - 48.4987427 - ], - [ - 8.9957401, - 48.5003022 - ], - [ - 8.9941526, - 48.5003022 - ], - [ - 8.9941526, - 48.4987427 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-21T05:51:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 9, - "delete": 0, - "area": 0.00000247570625000034, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/personal.html", - "theme": "personal", - "answer": 17, - "locale": "en", - "imagery": "osm", - "change_within_25m": 12, - "change_within_50m": 5 - }, - "id": 119982087 - } - }, - { - "id": 119976803, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.1196636, - 14.6458542 - ], - [ - 121.1196636, - 14.6458542 - ], - [ - 121.1196636, - 14.6458542 - ], - [ - 121.1196636, - 14.6458542 - ], - [ - 121.1196636, - 14.6458542 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "GOwin", - "uid": "1041828", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #MAPinkMurals", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-21T00:51:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "MAPinkMurals", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 119976803 - } - }, - { - "id": 119976550, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-21T00:32:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 119976550 - } - }, - { - "id": 119975889, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0933102, - 14.6228874 - ], - [ - 121.1212254, - 14.6228874 - ], - [ - 121.1212254, - 14.6467807 - ], - [ - 121.0933102, - 14.6467807 - ], - [ - 121.0933102, - 14.6228874 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ᴎivvOG", - "uid": "6591426", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #MAPinkMurals", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-20T23:39:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 16, - "delete": 0, - "area": 0.000666986248159917, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "MAPinkMurals", - "answer": 33, - "locale": "en", - "imagery": "osm" - }, - "id": 119975889 - } - }, - { - "id": 119972575, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2332023, - 48.7340566 - ], - [ - 2.3247937, - 48.7340566 - ], - [ - 2.3247937, - 48.953824 - ], - [ - 2.2332023, - 48.953824 - ], - [ - 2.2332023, - 48.7340566 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Sukkoria", - "uid": "3083013", - "editor": "MapComplete 0.2.2a", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-20T21:00:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 22, - "delete": 0, - "area": 0.0201288038403595, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "climbing", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 119972575 - } - }, - { - "id": 119971839, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.2766682, - -32.9888989 - ], - [ - -71.2766682, - -32.9888989 - ], - [ - -71.2766682, - -32.9888989 - ], - [ - -71.2766682, - -32.9888989 - ], - [ - -71.2766682, - -32.9888989 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-20T20:37:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "osmfr", - "add-image": 1 - }, - "id": 119971839 - } - }, - { - "id": 119971493, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3781585, - 50.8624288 - ], - [ - 4.3781585, - 50.8624288 - ], - [ - 4.3781585, - 50.8624288 - ], - [ - 4.3781585, - 50.8624288 - ], - [ - 4.3781585, - 50.8624288 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-20T20:23:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 119971493 - } - }, - { - "id": 119971055, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3753386, - 50.8708371 - ], - [ - 4.3753386, - 50.8708371 - ], - [ - 4.3753386, - 50.8708371 - ], - [ - 4.3753386, - 50.8708371 - ], - [ - 4.3753386, - 50.8708371 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-20T20:07:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 119971055 - } - }, - { - "id": 119968866, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2044063, - 50.9261431 - ], - [ - 3.2044063, - 50.9261431 - ], - [ - 3.2044063, - 50.9261431 - ], - [ - 3.2044063, - 50.9261431 - ], - [ - 3.2044063, - 50.9261431 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-20T19:01:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 7, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 9, - "create": 1, - "locale": "en", - "imagery": "AGIV", - "add-image": 1, - "change_over_5000m": 11 - }, - "id": 119968866 - } - }, - { - "id": 119968671, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4011492, - 51.0387728 - ], - [ - 3.4011492, - 51.0387728 - ], - [ - 3.4011492, - 51.0387728 - ], - [ - 3.4011492, - 51.0387728 - ], - [ - 3.4011492, - 51.0387728 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-20T18:56:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "answer": 2, - "locale": "en", - "imagery": "HDM_HOT", - "change_within_500m": 2 - }, - "id": 119968671 - } - }, - { - "id": 119968588, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3867991, - 51.065187 - ], - [ - 3.3868098, - 51.065187 - ], - [ - 3.3868098, - 51.0652134 - ], - [ - 3.3867991, - 51.0652134 - ], - [ - 3.3867991, - 51.065187 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-20T18:54:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 2.82479999950787e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "locale": "en", - "imagery": "osm", - "add-image": 2, - "change_within_5000m": 2 - }, - "id": 119968588 - } - }, - { - "id": 119966771, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9035417, - 51.1680875 - ], - [ - 4.9035417, - 51.1680875 - ], - [ - 4.9035417, - 51.1680875 - ], - [ - 4.9035417, - 51.1680875 - ], - [ - 4.9035417, - 51.1680875 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-20T18:11:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 4, - "locale": "nl", - "imagery": "osm" - }, - "id": 119966771 - } - }, - { - "id": 119965684, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.8280242, - 48.5778598 - ], - [ - -3.8280242, - 48.5778598 - ], - [ - -3.8280242, - 48.5778598 - ], - [ - -3.8280242, - 48.5778598 - ], - [ - -3.8280242, - 48.5778598 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Plumf", - "uid": "3304272", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-20T17:50:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 3, - "locale": "fr", - "imagery": "osm" - }, - "id": 119965684 - } - }, - { - "id": 119965584, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3704423, - 50.7593695 - ], - [ - 5.3764322, - 50.7593695 - ], - [ - 5.3764322, - 50.7615361 - ], - [ - 5.3704423, - 50.7615361 - ], - [ - 5.3704423, - 50.7593695 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-20T17:49:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 41, - "modify": 58, - "delete": 0, - "area": 0.0000129777173400154, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 51, - "theme": "grb", - "import": 7, - "locale": "nl", - "imagery": "osm", - "conflation": 18 - }, - "id": 119965584 - } - }, - { - "id": 119965512, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.5881147, - 48.5113662 - ], - [ - -3.5868298, - 48.5113662 - ], - [ - -3.5868298, - 48.5119037 - ], - [ - -3.5881147, - 48.5119037 - ], - [ - -3.5881147, - 48.5113662 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Plumf", - "uid": "3304272", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-20T17:47:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 6.90633750000299e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "answer": 1, - "locale": "fr", - "imagery": "HDM_HOT" - }, - "id": 119965512 - } - }, - { - "id": 119965281, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.8569758, - 50.8906476 - ], - [ - 7.0293807, - 50.8906476 - ], - [ - 7.0293807, - 51.0188195 - ], - [ - 6.8569758, - 51.0188195 - ], - [ - 6.8569758, - 50.8906476 - ] - ] - ] - }, - "properties": { - "check_user": "exarkun", - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "kjon", - "uid": "44217", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-20T17:44:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3266, - "delete": 0, - "area": 0.0220974636023097, - "is_suspect": true, - "harmful": true, - "checked": true, - "check_date": "2022-04-26T20:42:09.479067Z", - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 4429, - "locale": "de", - "imagery": "osm" - }, - "id": 119965281 - } - }, - { - "id": 119964559, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.141827, - 50.6870545 - ], - [ - 3.143675, - 50.6870545 - ], - [ - 3.143675, - 50.6877138 - ], - [ - 3.141827, - 50.6877138 - ], - [ - 3.141827, - 50.6870545 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "eiryelio", - "uid": "831652", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-20T17:29:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 6, - "delete": 0, - "area": 0.00000121838639999113, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 10, - "create": 2, - "locale": "fr", - "imagery": "osm" - }, - "id": 119964559 - } - }, - { - "id": 119963401, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1251972, - 51.2193539 - ], - [ - 4.1251972, - 51.2193539 - ], - [ - 4.1251972, - 51.2193539 - ], - [ - 4.1251972, - 51.2193539 - ], - [ - 4.1251972, - 51.2193539 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-20T16:57:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/food.html", - "theme": "food", - "answer": 7, - "locale": "en", - "imagery": "AGIVFlandersGRB", - "change_within_25m": 7 - }, - "id": 119963401 - } - }, - { - "id": 119963383, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3571871, - 52.1407746 - ], - [ - 13.3707637, - 52.1407746 - ], - [ - 13.3707637, - 52.1464401 - ], - [ - 13.3571871, - 52.1464401 - ], - [ - 13.3571871, - 52.1407746 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Firefigthererich", - "uid": "15639798", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-20T16:57:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 12, - "modify": 7, - "delete": 0, - "area": 0.0000769182272999814, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "www.waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 119963383 - } - }, - { - "id": 119962401, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5218346, - 44.8597743 - ], - [ - -0.5218346, - 44.8597743 - ], - [ - -0.5218346, - 44.8597743 - ], - [ - -0.5218346, - 44.8597743 - ], - [ - -0.5218346, - 44.8597743 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-20T16:32:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 4, - "create": 1, - "locale": "fr", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 5 - }, - "id": 119962401 - } - }, - { - "id": 119961739, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1217126, - 51.2245346 - ], - [ - 4.129128, - 51.2245346 - ], - [ - 4.129128, - 51.2265965 - ], - [ - 4.1217126, - 51.2265965 - ], - [ - 4.1217126, - 51.2245346 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-20T16:13:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 4, - "delete": 0, - "area": 0.0000152898132600064, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 11, - "create": 3, - "locale": "en", - "imagery": "osm", - "add-image": 4, - "change_over_5000m": 3, - "change_within_25m": 15 - }, - "id": 119961739 - } - }, - { - "id": 119961021, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1317248, - 51.2234084 - ], - [ - 4.1317248, - 51.2234084 - ], - [ - 4.1317248, - 51.2234084 - ], - [ - 4.1317248, - 51.2234084 - ], - [ - 4.1317248, - 51.2234084 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-20T15:56:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/hailhydrant.html", - "theme": "hailhydrant", - "answer": 1, - "locale": "en", - "imagery": "HDM_HOT", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 119961021 - } - }, - { - "id": 119960126, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1265759, - 51.2176201 - ], - [ - 4.1282254, - 51.2176201 - ], - [ - 4.1282254, - 51.218198 - ], - [ - 4.1265759, - 51.218198 - ], - [ - 4.1265759, - 51.2176201 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9680423650", - "name": "Pittoors", - "osm_id": 9680423650, - "reasons": [ - 43 - ], - "version": 2, - "primary_tags": { - "shop": "funeral_directions" - } - } - ], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-20T15:30:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 3, - "delete": 0, - "area": 9.53246050005391e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/shops.html", - "theme": "shops", - "answer": 8, - "create": 3, - "locale": "en", - "imagery": "AGIVFlandersGRB", - "add-image": 1, - "change_over_5000m": 3, - "change_within_25m": 9 - }, - "id": 119960126 - } - }, - { - "id": 119960025, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.2882772, - 48.1376928 - ], - [ - 16.310061, - 48.1376928 - ], - [ - 16.310061, - 48.1589434 - ], - [ - 16.2882772, - 48.1589434 - ], - [ - 16.2882772, - 48.1376928 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "znrgl", - "uid": "9486229", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-20T15:28:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 55, - "delete": 0, - "area": 0.000462918820279918, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 79, - "locale": "de", - "imagery": "osm", - "change_within_5000m": 79 - }, - "id": 119960025 - } - }, - { - "id": 119960012, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1251972, - 51.2176117 - ], - [ - 4.1294941, - 51.2176117 - ], - [ - 4.1294941, - 51.2193539 - ], - [ - 4.1251972, - 51.2193539 - ], - [ - 4.1251972, - 51.2176117 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-20T15:28:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 3, - "delete": 0, - "area": 0.0000074860591800105, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/food.html", - "theme": "food", - "answer": 4, - "create": 2, - "locale": "en", - "imagery": "AGIVFlandersGRB", - "change_over_5000m": 2, - "change_within_25m": 3, - "change_within_50m": 1 - }, - "id": 119960012 - } - }, - { - "id": 119959191, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1009073, - 41.3709937 - ], - [ - 2.1009073, - 41.3709937 - ], - [ - 2.1009073, - 41.3709937 - ], - [ - 2.1009073, - 41.3709937 - ], - [ - 2.1009073, - 41.3709937 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "UnGeograf", - "uid": "601515", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-20T15:06:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 1, - "create": 1, - "locale": "ca", - "imagery": "PNOA-Spain-TMS", - "change_over_5000m": 1, - "change_within_100m": 1 - }, - "id": 119959191 - } - }, - { - "id": 119958582, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1219892, - 51.2173875 - ], - [ - 4.1281966, - 51.2173875 - ], - [ - 4.1281966, - 51.2243145 - ], - [ - 4.1219892, - 51.2243145 - ], - [ - 4.1219892, - 51.2173875 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-20T14:50:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2047, - "modify": 10, - "delete": 0, - "area": 0.0000429986597999848, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 9, - "theme": "grb", - "import": 244, - "locale": "en", - "imagery": "AGIVFlandersGRB", - "conflation": 2, - "change_within_25m": 30, - "change_within_50m": 12, - "change_within_100m": 15, - "change_within_500m": 95, - "change_within_1000m": 90 - }, - "id": 119958582 - } - }, - { - "id": 119957830, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.9844945, - 51.9534262 - ], - [ - 7.9844945, - 51.9534262 - ], - [ - 7.9844945, - 51.9534262 - ], - [ - 7.9844945, - 51.9534262 - ], - [ - 7.9844945, - 51.9534262 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Aschenknoedel", - "uid": "10527911", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-20T14:31:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 5, - "locale": "de", - "imagery": "osm" - }, - "id": 119957830 - } - }, - { - "id": 119954954, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4537115, - 51.1329705 - ], - [ - 5.4537115, - 51.1329705 - ], - [ - 5.4537115, - 51.1329705 - ], - [ - 5.4537115, - 51.1329705 - ], - [ - 5.4537115, - 51.1329705 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "StadPeer", - "uid": "15586828", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-20T13:28:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119954954 - } - }, - { - "id": 119954605, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3322155, - 50.7599365 - ], - [ - 5.37596, - 50.7599365 - ], - [ - 5.37596, - 50.7821231 - ], - [ - 5.3322155, - 50.7821231 - ], - [ - 5.3322155, - 50.7599365 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "way-463220600", - "name": "Pastorie", - "osm_id": 463220600, - "reasons": [ - 43 - ], - "version": 3, - "primary_tags": { - "building": "presbytery" - } - } - ], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-20T13:20:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 560, - "modify": 785, - "delete": 28, - "area": 0.000970541723699897, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 702, - "theme": "grb", - "delete": 28, - "import": 85, - "locale": "nl", - "imagery": "osm", - "conflation": 174 - }, - "id": 119954605 - } - }, - { - "id": 119954365, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0416444, - 51.2063108 - ], - [ - 4.0417939, - 51.2063108 - ], - [ - 4.0417939, - 51.206362 - ], - [ - 4.0416444, - 51.206362 - ], - [ - 4.0416444, - 51.2063108 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-20T13:15:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 6, - "delete": 0, - "area": 7.65440000022137e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 6, - "create": 2, - "locale": "en", - "imagery": "osm", - "add-image": 3, - "change_over_5000m": 2, - "change_within_25m": 9 - }, - "id": 119954365 - } - }, - { - "id": 119952954, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.4596751, - -34.6259612 - ], - [ - -58.4596751, - -34.6259612 - ], - [ - -58.4596751, - -34.6259612 - ], - [ - -58.4596751, - -34.6259612 - ], - [ - -58.4596751, - -34.6259612 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AgusQui", - "uid": "331218", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-20T12:44:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 119952954 - } - }, - { - "id": 119952697, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2886606, - 50.7785292 - ], - [ - 5.3435553, - 50.7785292 - ], - [ - 5.3435553, - 50.8049384 - ], - [ - 5.2886606, - 50.8049384 - ], - [ - 5.2886606, - 50.7785292 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-20T12:38:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 604, - "modify": 1331, - "delete": 54, - "area": 0.0014497251112398, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 1197, - "theme": "grb", - "delete": 52, - "import": 112, - "locale": "nl", - "imagery": "osm", - "conflation": 284 - }, - "id": 119952697 - } - }, - { - "id": 119952631, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.162562, - 51.3103646 - ], - [ - 5.162562, - 51.3103646 - ], - [ - 5.162562, - 51.3103646 - ], - [ - 5.162562, - 51.3103646 - ], - [ - 5.162562, - 51.3103646 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "toerisme Mol", - "uid": "8297519", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-20T12:36:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119952631 - } - }, - { - "id": 119952272, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2829544, - 50.7781935 - ], - [ - 5.3136251, - 50.7781935 - ], - [ - 5.3136251, - 50.8730323 - ], - [ - 5.2829544, - 50.8730323 - ], - [ - 5.2829544, - 50.7781935 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-20T12:28:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 145, - "modify": 274, - "delete": 12, - "area": 0.00290877238315993, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 248, - "theme": "grb", - "delete": 12, - "import": 26, - "locale": "nl", - "imagery": "osm", - "conflation": 58 - }, - "id": 119952272 - } - }, - { - "id": 119951539, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0584826, - 51.1900861 - ], - [ - 4.0584826, - 51.1900861 - ], - [ - 4.0584826, - 51.1900861 - ], - [ - 4.0584826, - 51.1900861 - ], - [ - 4.0584826, - 51.1900861 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-20T12:14:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/waste.html", - "theme": "waste", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 119951539 - } - }, - { - "id": 119947074, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1475719, - 51.161091 - ], - [ - 4.1479198, - 51.161091 - ], - [ - 4.1479198, - 51.1613088 - ], - [ - 4.1475719, - 51.1613088 - ], - [ - 4.1475719, - 51.161091 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-20T10:39:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 7.57726200006053e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "en", - "imagery": "osm", - "add-image": 2, - "change_within_25m": 4 - }, - "id": 119947074 - } - }, - { - "id": 119943988, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0150899, - 14.738268 - ], - [ - 121.0198363, - 14.738268 - ], - [ - 121.0198363, - 14.7497575 - ], - [ - 121.0150899, - 14.7497575 - ], - [ - 121.0150899, - 14.738268 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Legitimater", - "uid": "15335201", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 2, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-20T09:31:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 1, - "delete": 0, - "area": 0.0000545337627998575, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees", - "theme": "trees", - "answer": 3, - "create": 4, - "locale": "en", - "imagery": "EsriWorldImagery" - }, - "id": 119943988 - } - }, - { - "id": 119943699, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4619963, - 52.1137514 - ], - [ - 13.4619963, - 52.1137514 - ], - [ - 13.4619963, - 52.1137514 - ], - [ - 13.4619963, - 52.1137514 - ], - [ - 13.4619963, - 52.1137514 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ebihardy", - "uid": "263464", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-20T09:25:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "www.waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 119943699 - } - }, - { - "id": 119940989, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3794103, - 50.8604762 - ], - [ - 4.3796754, - 50.8604762 - ], - [ - 4.3796754, - 50.8607398 - ], - [ - 4.3794103, - 50.8607398 - ], - [ - 4.3794103, - 50.8604762 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-20T08:27:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 3, - "delete": 0, - "area": 6.98803599991299e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 8, - "create": 2, - "locale": "en", - "imagery": "UrbISOrtho", - "add-image": 3, - "change_over_5000m": 2, - "change_within_1000m": 11 - }, - "id": 119940989 - } - }, - { - "id": 119934894, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9957975, - 48.4982175 - ], - [ - 8.9965251, - 48.4982175 - ], - [ - 8.9965251, - 48.4997165 - ], - [ - 8.9957975, - 48.4997165 - ], - [ - 8.9957975, - 48.4982175 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-20T06:10:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 15, - "delete": 0, - "area": 0.00000109067239999579, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/personal.html", - "theme": "personal", - "answer": 27, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 10, - "change_within_50m": 10, - "change_within_100m": 7 - }, - "id": 119934894 - } - }, - { - "id": 119932850, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 77.5680024, - 8.6898719 - ], - [ - 77.5680423, - 8.6898719 - ], - [ - 77.5680423, - 8.6924471 - ], - [ - 77.5680024, - 8.6924471 - ], - [ - 77.5680024, - 8.6898719 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-20T05:00:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.0275048001142e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 119932850 - } - }, - { - "id": 119931544, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.244138, - -39.8147227 - ], - [ - -73.244079, - -39.8147227 - ], - [ - -73.244079, - -39.814529 - ], - [ - -73.244138, - -39.814529 - ], - [ - -73.244138, - -39.8147227 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-20T03:57:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 1.14283000012464e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "osm", - "add-image": 3 - }, - "id": 119931544 - } - }, - { - "id": 119927986, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0926826, - 14.622576 - ], - [ - 121.1191803, - 14.622576 - ], - [ - 121.1191803, - 14.6467807 - ], - [ - 121.0926826, - 14.6467807 - ], - [ - 121.0926826, - 14.622576 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "GOwin", - "uid": "1041828", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #MAPinkMurals", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-19T23:26:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 21, - "delete": 0, - "area": 0.00064136887918984, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "MAPinkMurals", - "answer": 28, - "locale": "en", - "imagery": "osm" - }, - "id": 119927986 - } - }, - { - "id": 119924489, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9924217, - 48.5016714 - ], - [ - 8.9929054, - 48.5016714 - ], - [ - 8.9929054, - 48.5023649 - ], - [ - 8.9924217, - 48.5023649 - ], - [ - 8.9924217, - 48.5016714 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-19T20:29:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 3.35445950002131e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 14, - "locale": "en", - "imagery": "osm" - }, - "id": 119924489 - } - }, - { - "id": 119924338, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9952896, - 51.1587557 - ], - [ - 4.9956378, - 51.1587557 - ], - [ - 4.9956378, - 51.1589777 - ], - [ - 4.9952896, - 51.1589777 - ], - [ - 4.9952896, - 51.1587557 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-19T20:23:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 15, - "delete": 0, - "area": 7.73004000001713e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 14, - "theme": "grb", - "locale": "nl", - "imagery": "osm", - "conflation": 2 - }, - "id": 119924338 - } - }, - { - "id": 119923468, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9916499, - 51.1587696 - ], - [ - 4.9987684, - 51.1587696 - ], - [ - 4.9987684, - 51.1611468 - ], - [ - 4.9916499, - 51.1611468 - ], - [ - 4.9916499, - 51.1587696 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-19T19:54:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 73, - "modify": 232, - "delete": 15, - "area": 0.0000169220981999872, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 219, - "theme": "grb", - "answer": 2, - "delete": 15, - "import": 8, - "locale": "nl", - "imagery": "osm", - "conflation": 26 - }, - "id": 119923468 - } - }, - { - "id": 119921051, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.2469395, - 52.3722777 - ], - [ - -1.2400973, - 52.3722777 - ], - [ - -1.2400973, - 52.3749107 - ], - [ - -1.2469395, - 52.3749107 - ], - [ - -1.2469395, - 52.3722777 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "gnesss", - "uid": "6274199", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #uk_addresses", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-19T18:47:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 34, - "modify": 44, - "delete": 0, - "area": 0.0000180155126000208, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/uk_addresses.html", - "theme": "uk_addresses", - "answer": 71, - "import": 35, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 35, - "change_within_25m": 71 - }, - "id": 119921051 - } - }, - { - "id": 119920983, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.2400313, - 52.3720062 - ], - [ - -1.2396532, - 52.3720062 - ], - [ - -1.2396532, - 52.3722371 - ], - [ - -1.2400313, - 52.3722371 - ], - [ - -1.2400313, - 52.3720062 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "gnesss", - "uid": "6274199", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #uk_addresses", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-19T18:45:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 5, - "modify": 2, - "delete": 0, - "area": 8.73032899993522e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/uk_addresses.html", - "theme": "uk_addresses", - "answer": 7, - "import": 5, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 5, - "change_within_25m": 7 - }, - "id": 119920983 - } - }, - { - "id": 119920891, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.0204134, - 50.7247103 - ], - [ - 6.2247422, - 50.7247103 - ], - [ - 6.2247422, - 50.8510045 - ], - [ - 6.0204134, - 50.8510045 - ], - [ - 6.0204134, - 50.7247103 - ] - ] - ] - }, - "properties": { - "check_user": "exarkun", - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "kjon", - "uid": "44217", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-19T18:42:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 577, - "delete": 0, - "area": 0.0258055423329608, - "is_suspect": true, - "harmful": true, - "checked": true, - "check_date": "2022-04-26T20:41:52.588581Z", - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 761, - "locale": "de", - "imagery": "osm" - }, - "id": 119920891 - } - }, - { - "id": 119917448, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2134105, - 50.7179616 - ], - [ - 4.2140716, - 50.7179616 - ], - [ - 4.2140716, - 50.7187262 - ], - [ - 4.2134105, - 50.7187262 - ], - [ - 4.2134105, - 50.7179616 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-19T17:20:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 5.0547705999728e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 6, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_within_5000m": 8 - }, - "id": 119917448 - } - }, - { - "id": 119917410, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2255346, - 50.7245471 - ], - [ - 4.2255346, - 50.7245471 - ], - [ - 4.2255346, - 50.7245471 - ], - [ - 4.2255346, - 50.7245471 - ], - [ - 4.2255346, - 50.7245471 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-19T17:19:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_5000m": 2 - }, - "id": 119917410 - } - }, - { - "id": 119914664, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2481042, - 51.2178797 - ], - [ - 3.2481042, - 51.2178797 - ], - [ - 3.2481042, - 51.2178797 - ], - [ - 3.2481042, - 51.2178797 - ], - [ - 3.2481042, - 51.2178797 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #fitness_station", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-19T16:07:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "fitness_station", - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 119914664 - } - }, - { - "id": 119914306, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2482463, - 51.2144237 - ], - [ - 3.2537636, - 51.2144237 - ], - [ - 3.2537636, - 51.2178192 - ], - [ - 3.2482463, - 51.2178192 - ], - [ - 3.2482463, - 51.2144237 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-19T15:57:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6, - "modify": 11, - "delete": 0, - "area": 0.0000187339921500195, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 19, - "create": 6, - "locale": "nl", - "imagery": "osm", - "add-image": 6, - "change_over_5000m": 6, - "change_within_25m": 25 - }, - "id": 119914306 - } - }, - { - "id": 119914267, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2466247, - 51.2145069 - ], - [ - 3.2519746, - 51.2145069 - ], - [ - 3.2519746, - 51.2190179 - ], - [ - 3.2466247, - 51.2190179 - ], - [ - 3.2466247, - 51.2145069 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-19T15:56:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 5, - "delete": 0, - "area": 0.000024133398899967, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/waste.html", - "theme": "waste", - "answer": 5, - "import": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 3, - "change_over_5000m": 2, - "change_within_25m": 8, - "import:node/9677659806": "source: https://osm.org/note/3130943", - "import:node/9677671677": "source: https://osm.org/note/3130940" - }, - "id": 119914267 - } - }, - { - "id": 119913964, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2200496, - 51.2083697 - ], - [ - 3.2484944, - 51.2083697 - ], - [ - 3.2484944, - 51.2157955 - ], - [ - 3.2200496, - 51.2157955 - ], - [ - 3.2200496, - 51.2083697 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #facadegardens", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-19T15:49:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 11, - "delete": 0, - "area": 0.000211225395840001, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/facadegardens.html", - "theme": "facadegardens", - "answer": 13, - "create": 4, - "locale": "nl", - "imagery": "osm", - "add-image": 5, - "change_over_5000m": 4, - "change_within_25m": 18 - }, - "id": 119913964 - } - }, - { - "id": 119910945, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3140772, - 50.8715769 - ], - [ - 5.3212963, - 50.8715769 - ], - [ - 5.3212963, - 50.874553 - ], - [ - 5.3140772, - 50.874553 - ], - [ - 5.3140772, - 50.8715769 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-19T14:38:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 304, - "modify": 668, - "delete": 13, - "area": 0.0000214847635099861, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 595, - "theme": "grb", - "delete": 13, - "import": 48, - "locale": "nl", - "imagery": "osm", - "conflation": 146 - }, - "id": 119910945 - } - }, - { - "id": 119910456, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.6536423, - 54.9225886 - ], - [ - -1.5437996, - 54.9225886 - ], - [ - -1.5437996, - 54.9671227 - ], - [ - -1.6536423, - 54.9671227 - ], - [ - -1.6536423, - 54.9225886 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "confusedbuffalo", - "uid": "242345", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-19T14:26:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 119, - "delete": 0, - "area": 0.00489174578606999, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "answer": 159, - "locale": "en", - "imagery": "osm" - }, - "id": 119910456 - } - }, - { - "id": 119908983, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9347796, - 50.4780661 - ], - [ - 4.9424022, - 50.4780661 - ], - [ - 4.9424022, - 50.4811579 - ], - [ - 4.9347796, - 50.4811579 - ], - [ - 4.9347796, - 50.4780661 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-19T13:50:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.000023567554680001, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/climbing", - "theme": "climbing", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119908983 - } - }, - { - "id": 119908187, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.1158947, - 14.6407708 - ], - [ - 121.1158947, - 14.6407708 - ], - [ - 121.1158947, - 14.6407708 - ], - [ - 121.1158947, - 14.6407708 - ], - [ - 121.1158947, - 14.6407708 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ᴎivvOG", - "uid": "6591426", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/govvin/2b351d27694499eec029b9bc3f8fe8c0/raw/4ba854a8bfe9caebf5c622e55d8f28546dc47d4c/mc-MAPinkMurals-v1-1.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-19T13:35:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/theme.html", - "theme": "https://gist.githubusercontent.com/govvin/2b351d27694499eec029b9bc3f8fe8c0/raw/4ba854a8bfe9caebf5c622e55d8f28546dc47d4c/mc-MAPinkMurals-v1-1.json", - "answer": 3, - "locale": "en", - "imagery": "CartoDB.Positron" - }, - "id": 119908187 - } - }, - { - "id": 119907793, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3199145, - 50.8672696 - ], - [ - 5.3329006, - 50.8672696 - ], - [ - 5.3329006, - 50.8743215 - ], - [ - 5.3199145, - 50.8743215 - ], - [ - 5.3199145, - 50.8672696 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-19T13:26:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 872, - "modify": 923, - "delete": 1, - "area": 0.0000915766785900058, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 827, - "theme": "grb", - "delete": 1, - "import": 130, - "locale": "nl", - "imagery": "osm", - "conflation": 196 - }, - "id": 119907793 - } - }, - { - "id": 119907752, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.1168338, - 14.6396083 - ], - [ - 121.1207322, - 14.6396083 - ], - [ - 121.1207322, - 14.6401362 - ], - [ - 121.1168338, - 14.6401362 - ], - [ - 121.1168338, - 14.6396083 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ᴎivvOG", - "uid": "6591426", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #MAPinkMurals", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-19T13:25:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000020579653600052, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "MAPinkMurals", - "answer": 6, - "locale": "en", - "imagery": "CartoDB.Positron" - }, - "id": 119907752 - } - }, - { - "id": 119907369, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.1212254, - 14.6369355 - ], - [ - 121.1212254, - 14.6369355 - ], - [ - 121.1212254, - 14.6369355 - ], - [ - 121.1212254, - 14.6369355 - ], - [ - 121.1212254, - 14.6369355 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ᴎivvOG", - "uid": "6591426", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/govvin/50944c3155a0f714e642ac43a9e3ec1a/raw/20bc65fb1f10f2c692d75facf55a00b79f3a9904/mc-MAPinkMurals-v1.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-19T13:16:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/theme.html", - "theme": "https://gist.githubusercontent.com/govvin/50944c3155a0f714e642ac43a9e3ec1a/raw/20bc65fb1f10f2c692d75facf55a00b79f3a9904/mc-MAPinkMurals-v1.json", - "answer": 8, - "locale": "en", - "imagery": "CartoDB.Positron" - }, - "id": 119907369 - } - }, - { - "id": 119907349, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2023434, - 51.2120166 - ], - [ - 3.2045276, - 51.2120166 - ], - [ - 3.2045276, - 51.2148103 - ], - [ - 3.2023434, - 51.2148103 - ], - [ - 3.2023434, - 51.2120166 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-19T13:15:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000610199954001078, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_within_5000m": 2 - }, - "id": 119907349 - } - }, - { - "id": 119907266, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ᴎivvOG", - "uid": "6591426", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/govvin/50944c3155a0f714e642ac43a9e3ec1a/raw/20bc65fb1f10f2c692d75facf55a00b79f3a9904/mc-MAPinkMurals-v1.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-19T13:13:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/theme.html", - "theme": "https://gist.githubusercontent.com/govvin/50944c3155a0f714e642ac43a9e3ec1a/raw/20bc65fb1f10f2c692d75facf55a00b79f3a9904/mc-MAPinkMurals-v1.json", - "answer": 3, - "locale": "en", - "imagery": "CartoDB.Positron" - }, - "id": 119907266 - } - }, - { - "id": 119905791, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3972636, - 51.2165607 - ], - [ - 4.3972636, - 51.2165607 - ], - [ - 4.3972636, - 51.2165607 - ], - [ - 4.3972636, - 51.2165607 - ], - [ - 4.3972636, - 51.2165607 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-19T12:42:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork", - "theme": "artwork", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1 - }, - "id": 119905791 - } - }, - { - "id": 119901866, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.924883, - 46.3990632 - ], - [ - 6.924883, - 46.3990632 - ], - [ - 6.924883, - 46.3990632 - ], - [ - 6.924883, - 46.3990632 - ], - [ - 6.924883, - 46.3990632 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "habi", - "uid": "15671", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-19T11:16:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 2, - "change_within_100m": 1 - }, - "id": 119901866 - } - }, - { - "id": 119899589, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2055447, - 51.0874251 - ], - [ - 3.2396192, - 51.0874251 - ], - [ - 3.2396192, - 51.1516449 - ], - [ - 3.2055447, - 51.1516449 - ], - [ - 3.2055447, - 51.0874251 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #cyclestreets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-19T10:27:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 6, - "delete": 0, - "area": 0.00218825757510012, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclestreets.html", - "split": 2, - "theme": "cyclestreets", - "answer": 4, - "locale": "en", - "imagery": "osm", - "relation-fix": 2, - "change_over_5000m": 6 - }, - "id": 119899589 - } - }, - { - "id": 119897476, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2531936, - 50.9140098 - ], - [ - 3.2559677, - 50.9140098 - ], - [ - 3.2559677, - 50.9242287 - ], - [ - 3.2531936, - 50.9242287 - ], - [ - 3.2531936, - 50.9140098 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "reginaldc", - "uid": "510576", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-19T09:42:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 4, - "delete": 0, - "area": 0.0000283482504899937, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 2, - "create": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 119897476 - } - }, - { - "id": 119896897, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9042847, - 51.2163872 - ], - [ - 2.9229921, - 51.2163872 - ], - [ - 2.9229921, - 51.2336876 - ], - [ - 2.9042847, - 51.2336876 - ], - [ - 2.9042847, - 51.2163872 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-19T09:30:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 9816, - "modify": 0, - "delete": 0, - "area": 0.000323645502960069, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 1310, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 779 - }, - "id": 119896897 - } - }, - { - "id": 119896793, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9167159, - 51.2337868 - ], - [ - 2.9167159, - 51.2337868 - ], - [ - 2.9167159, - 51.2337868 - ], - [ - 2.9167159, - 51.2337868 - ], - [ - 2.9167159, - 51.2337868 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-19T09:27:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets", - "theme": "toilets", - "answer": 7, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 8 - }, - "id": 119896793 - } - }, - { - "id": 119896511, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5455721, - 44.8413034 - ], - [ - -0.5437162, - 44.8413034 - ], - [ - -0.5437162, - 44.8430267 - ], - [ - -0.5455721, - 44.8430267 - ], - [ - -0.5455721, - 44.8413034 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-19T09:21:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 9, - "delete": 0, - "area": 0.00000319827247000351, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 17, - "create": 6, - "locale": "fr", - "imagery": "osm", - "add-image": 4, - "change_over_5000m": 3, - "change_within_25m": 4, - "change_within_50m": 9, - "change_within_100m": 5, - "change_within_500m": 5 - }, - "id": 119896511 - } - }, - { - "id": 119894921, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5456096, - 44.8463346 - ], - [ - -0.5455815, - 44.8463346 - ], - [ - -0.5455815, - 44.8464373 - ], - [ - -0.5456096, - 44.8464373 - ], - [ - -0.5456096, - 44.8463346 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-19T08:45:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 2, - "delete": 0, - "area": 2.88586999997906e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 12, - "create": 3, - "locale": "fr", - "imagery": "osm", - "change_over_5000m": 3, - "change_within_25m": 12 - }, - "id": 119894921 - } - }, - { - "id": 119890378, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0940972, - 14.6558069 - ], - [ - 121.0940972, - 14.6558069 - ], - [ - 121.0940972, - 14.6558069 - ], - [ - 121.0940972, - 14.6558069 - ], - [ - 121.0940972, - 14.6558069 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ᴎivvOG", - "uid": "6591426", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/govvin/50944c3155a0f714e642ac43a9e3ec1a/raw/20bc65fb1f10f2c692d75facf55a00b79f3a9904/mc-MAPinkMurals-v1.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-19T07:00:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/theme.html", - "theme": "https://gist.githubusercontent.com/govvin/50944c3155a0f714e642ac43a9e3ec1a/raw/20bc65fb1f10f2c692d75facf55a00b79f3a9904/mc-MAPinkMurals-v1.json", - "answer": 3, - "locale": "en", - "imagery": "CartoDB.Positron" - }, - "id": 119890378 - } - }, - { - "id": 119887261, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1093171, - 50.7854646 - ], - [ - 4.1093613, - 50.7854646 - ], - [ - 4.1093613, - 50.7855562 - ], - [ - 4.1093171, - 50.7855562 - ], - [ - 4.1093171, - 50.7854646 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-19T05:37:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 5, - "delete": 0, - "area": 4.04872000016863e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 11, - "create": 2, - "locale": "nl", - "imagery": "AGIV", - "add-image": 3 - }, - "id": 119887261 - } - }, - { - "id": 119884733, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2450132, - -39.8154511 - ], - [ - -73.24341, - -39.8154511 - ], - [ - -73.24341, - -39.8149123 - ], - [ - -73.2450132, - -39.8149123 - ], - [ - -73.2450132, - -39.8154511 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-19T03:55:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 8.63804159993135e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "osm", - "add-image": 3 - }, - "id": 119884733 - } - }, - { - "id": 119882635, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0959868, - 14.6291667 - ], - [ - 121.0997269, - 14.6291667 - ], - [ - 121.0997269, - 14.642468 - ], - [ - 121.0959868, - 14.642468 - ], - [ - 121.0959868, - 14.6291667 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ᴎivvOG", - "uid": "6591426", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #MAPinkMurals", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-19T00:59:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.0000497481921298275, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "MAPinkMurals", - "answer": 8, - "locale": "en", - "imagery": "osm" - }, - "id": 119882635 - } - }, - { - "id": 119882409, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0959868, - 14.6231727 - ], - [ - 121.0974533, - 14.6231727 - ], - [ - 121.0974533, - 14.6291667 - ], - [ - 121.0959868, - 14.6291667 - ], - [ - 121.0959868, - 14.6231727 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ᴎivvOG", - "uid": "6591426", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/govvin/50944c3155a0f714e642ac43a9e3ec1a/raw/20bc65fb1f10f2c692d75facf55a00b79f3a9904/mc-MAPinkMurals-v1.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-19T00:42:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00000879020099995535, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/theme.html", - "theme": "https://gist.githubusercontent.com/govvin/50944c3155a0f714e642ac43a9e3ec1a/raw/20bc65fb1f10f2c692d75facf55a00b79f3a9904/mc-MAPinkMurals-v1.json", - "answer": 6, - "locale": "en", - "imagery": "CartoDB.Positron" - }, - "id": 119882409 - } - }, - { - "id": 119882048, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2312357, - 51.1800375 - ], - [ - 3.2328999, - 51.1800375 - ], - [ - 3.2328999, - 51.1826049 - ], - [ - 3.2312357, - 51.1826049 - ], - [ - 3.2312357, - 51.1800375 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-19T00:14:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 74, - "modify": 48, - "delete": 0, - "area": 0.00000427266708000629, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 42, - "theme": "grb", - "import": 4, - "locale": "en", - "imagery": "AGIVFlandersGRB", - "conflation": 16 - }, - "id": 119882048 - } - }, - { - "id": 119881317, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3317912, - 51.2106007 - ], - [ - 4.3387859, - 51.2106007 - ], - [ - 4.3387859, - 51.2146054 - ], - [ - 4.3317912, - 51.2146054 - ], - [ - 4.3317912, - 51.2106007 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-18T23:25:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 10, - "delete": 0, - "area": 0.000028011675090024, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "answer": 11, - "locale": "en", - "imagery": "osm" - }, - "id": 119881317 - } - }, - { - "id": 119880375, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1783155, - 51.1966943 - ], - [ - 3.1783155, - 51.1966943 - ], - [ - 3.1783155, - 51.1966943 - ], - [ - 3.1783155, - 51.1966943 - ], - [ - 3.1783155, - 51.1966943 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #fritures", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-18T22:28:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "http://127.0.0.1:1234/theme.html", - "theme": "fritures", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 119880375 - } - }, - { - "id": 119879730, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.2657911, - 52.483391 - ], - [ - 13.2944576, - 52.483391 - ], - [ - 13.2944576, - 52.4940023 - ], - [ - 13.2657911, - 52.4940023 - ], - [ - 13.2657911, - 52.483391 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "alexrk", - "uid": "18595", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-18T21:57:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 19, - "delete": 0, - "area": 0.000304188831450021, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 23, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_500m": 16, - "change_within_1000m": 5, - "change_within_5000m": 2 - }, - "id": 119879730 - } - }, - { - "id": 119878916, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7031603, - 51.0547063 - ], - [ - 3.7036098, - 51.0547063 - ], - [ - 3.7036098, - 51.0550979 - ], - [ - 3.7031603, - 51.0550979 - ], - [ - 3.7031603, - 51.0547063 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #dog", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-18T21:24:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.76024200000255e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "http://127.0.0.1:1234/theme.html", - "theme": "dog", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 119878916 - } - }, - { - "id": 119877292, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5349641, - 44.8543503 - ], - [ - -0.53315, - 44.8543503 - ], - [ - -0.53315, - 44.8552743 - ], - [ - -0.5349641, - 44.8552743 - ], - [ - -0.5349641, - 44.8543503 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-18T20:31:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00000167622839999587, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 6, - "locale": "fr", - "imagery": "osm" - }, - "id": 119877292 - } - }, - { - "id": 119876244, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.8582775, - 46.3864024 - ], - [ - 6.8612708, - 46.3864024 - ], - [ - 6.8612708, - 46.3887965 - ], - [ - 6.8582775, - 46.3887965 - ], - [ - 6.8582775, - 46.3864024 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "habi", - "uid": "15671", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-18T19:56:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.00000716625952998951, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/campersite.html", - "theme": "campersite", - "answer": 2, - "locale": "en", - "imagery": "osm", - "change_within_500m": 2 - }, - "id": 119876244 - } - }, - { - "id": 119875787, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1550034, - 48.885341 - ], - [ - 2.1550034, - 48.885341 - ], - [ - 2.1550034, - 48.885341 - ], - [ - 2.1550034, - 48.885341 - ], - [ - 2.1550034, - 48.885341 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ltrlg", - "uid": "5035134", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-18T19:41:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/index.html", - "theme": "bookcases", - "answer": 1, - "locale": "fr" - }, - "id": 119875787 - } - }, - { - "id": 119873702, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9760445, - 51.2034153 - ], - [ - 4.9764399, - 51.2034153 - ], - [ - 4.9764399, - 51.2043977 - ], - [ - 4.9760445, - 51.2043977 - ], - [ - 4.9760445, - 51.2034153 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-18T18:39:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 12, - "delete": 0, - "area": 3.88440959998729e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 10, - "theme": "grb", - "locale": "nl", - "imagery": "AGIV", - "conflation": 4 - }, - "id": 119873702 - } - }, - { - "id": 119873561, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9762003, - 51.2005938 - ], - [ - 4.9817783, - 51.2005938 - ], - [ - 4.9817783, - 51.2027211 - ], - [ - 4.9762003, - 51.2027211 - ], - [ - 4.9762003, - 51.2005938 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-18T18:36:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 27, - "modify": 97, - "delete": 2, - "area": 0.0000118660793999882, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 89, - "theme": "grb", - "delete": 2, - "import": 4, - "locale": "nl", - "imagery": "AGIV", - "conflation": 16 - }, - "id": 119873561 - } - }, - { - "id": 119872058, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3983922, - 50.9963267 - ], - [ - 5.3984683, - 50.9963267 - ], - [ - 5.3984683, - 50.9963359 - ], - [ - 5.3983922, - 50.9963359 - ], - [ - 5.3983922, - 50.9963267 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Huainantzu", - "uid": "15614111", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-18T18:01:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 6, - "delete": 0, - "area": 7.00120000073083e-10, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "move": 1, - "theme": "bookcases", - "answer": 4, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "move:node/9674101953": "improve_accuracy" - }, - "id": 119872058 - } - }, - { - "id": 119870723, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3962611, - 50.9991119 - ], - [ - 5.4598021, - 50.9991119 - ], - [ - 5.4598021, - 51.0146536 - ], - [ - 5.3962611, - 51.0146536 - ], - [ - 5.3962611, - 50.9991119 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Huainantzu", - "uid": "15614111", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-18T17:31:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6, - "modify": 57, - "delete": 1, - "area": 0.000987535159699997, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "move": 6, - "theme": "benches", - "answer": 67, - "create": 4, - "import": 2, - "locale": "nl", - "imagery": "AGIV", - "deletion": 1, - "add-image": 22, - "move:node/2719776037": "improve_accuracy", - "move:node/5032535886": "improve_accuracy", - "move:node/5045034310": "improve_accuracy", - "move:node/5045034311": "improve_accuracy", - "move:node/6034784736": "improve_accuracy", - "move:node/9675030792": "improve_accuracy", - "import:node/9674966792": "source: https://osm.org/note/3044566", - "import:node/9675005357": "source: https://osm.org/note/3044599", - "deletion:node/5032535884": "Geen picknicktafel" - }, - "id": 119870723 - } - }, - { - "id": 119870707, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.168645, - 44.662399 - ], - [ - -1.168424, - 44.662399 - ], - [ - -1.168424, - 44.6632318 - ], - [ - -1.168645, - 44.6632318 - ], - [ - -1.168645, - 44.662399 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-18T17:31:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 1.84048799999524e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 3, - "locale": "fr", - "imagery": "osm", - "add-image": 2, - "change_within_25m": 4, - "change_within_50m": 1 - }, - "id": 119870707 - } - }, - { - "id": 119868347, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.168645, - 44.662399 - ], - [ - -1.1636176, - 44.662399 - ], - [ - -1.1636176, - 44.6639223 - ], - [ - -1.168645, - 44.6639223 - ], - [ - -1.168645, - 44.662399 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-18T16:38:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 3, - "delete": 0, - "area": 0.0000076582384200116, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 8, - "create": 4, - "locale": "fr", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 3, - "change_within_25m": 9 - }, - "id": 119868347 - } - }, - { - "id": 119864083, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.2882014, - 40.2457658 - ], - [ - -0.2880714, - 40.2457658 - ], - [ - -0.2880714, - 40.2458188 - ], - [ - -0.2882014, - 40.2458188 - ], - [ - -0.2882014, - 40.2457658 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "HomoGradiens", - "uid": "1946832", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-18T15:07:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 6.89000000015583e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 5, - "locale": "en", - "imagery": "osm" - }, - "id": 119864083 - } - }, - { - "id": 119864028, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1550034, - 48.885341 - ], - [ - 2.1550034, - 48.885341 - ], - [ - 2.1550034, - 48.885341 - ], - [ - 2.1550034, - 48.885341 - ], - [ - 2.1550034, - 48.885341 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ltrlg", - "uid": "5035134", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-18T15:06:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 1, - "locale": "fr", - "imagery": "osm" - }, - "id": 119864028 - } - }, - { - "id": 119860436, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2558732, - 51.1557279 - ], - [ - 3.2558732, - 51.1557279 - ], - [ - 3.2558732, - 51.1557279 - ], - [ - 3.2558732, - 51.1557279 - ], - [ - 3.2558732, - 51.1557279 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-18T13:49:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/nature.html", - "theme": "nature", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 1, - "change_within_25m": 8 - }, - "id": 119860436 - } - }, - { - "id": 119859410, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2558654, - 51.1588243 - ], - [ - 3.2582509, - 51.1588243 - ], - [ - 3.2582509, - 51.1609023 - ], - [ - 3.2558654, - 51.1609023 - ], - [ - 3.2558654, - 51.1588243 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-18T13:26:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0.00000495706899999448, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 8, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 6, - "change_within_50m": 3 - }, - "id": 119859410 - } - }, - { - "id": 119856289, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.744903, - 50.9046375 - ], - [ - 4.7594896, - 50.9046375 - ], - [ - 4.7594896, - 50.9087522 - ], - [ - 4.744903, - 50.9087522 - ], - [ - 4.744903, - 50.9046375 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-18T12:24:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1288, - "modify": 41, - "delete": 0, - "area": 0.0000600194830200358, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 36, - "theme": "grb", - "import": 93, - "locale": "nl", - "imagery": "AGIV", - "conflation": 14 - }, - "id": 119856289 - } - }, - { - "id": 119855468, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2739994, - 51.1868575 - ], - [ - 3.2739994, - 51.1868575 - ], - [ - 3.2739994, - 51.1868575 - ], - [ - 3.2739994, - 51.1868575 - ], - [ - 3.2739994, - 51.1868575 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-18T12:09:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 119855468 - } - }, - { - "id": 119854597, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.0497738, - 38.603769 - ], - [ - -0.0497738, - 38.603769 - ], - [ - -0.0497738, - 38.603769 - ], - [ - -0.0497738, - 38.603769 - ], - [ - -0.0497738, - 38.603769 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-18T11:52:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/campersite", - "theme": "campersite", - "answer": 2, - "locale": "ca", - "imagery": "osm", - "change_over_5000m": 2 - }, - "id": 119854597 - } - }, - { - "id": 119853484, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3984683, - 50.9963267 - ], - [ - 5.3984683, - 50.9963267 - ], - [ - 5.3984683, - 50.9963267 - ], - [ - 5.3984683, - 50.9963267 - ], - [ - 5.3984683, - 50.9963267 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Huainantzu", - "uid": "15614111", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-18T11:28:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119853484 - } - }, - { - "id": 119853076, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.342752, - 48.8562512 - ], - [ - 2.342752, - 48.8562512 - ], - [ - 2.342752, - 48.8562512 - ], - [ - 2.342752, - 48.8562512 - ], - [ - 2.342752, - 48.8562512 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "retiolus", - "uid": "11291363", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-18T11:20:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 119853076 - } - }, - { - "id": 119852939, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.0224886, - 50.3524875 - ], - [ - 7.6025916, - 50.3524875 - ], - [ - 7.6025916, - 50.824031 - ], - [ - 6.0224886, - 50.824031 - ], - [ - 6.0224886, - 50.3524875 - ] - ] - ] - }, - "properties": { - "check_user": "exarkun", - "reasons": [ - { - "id": 4, - "name": "mass modification" - }, - { - "id": 91, - "name": "Motorway/trunk geometry modified" - } - ], - "tags": [], - "features": [ - { - "url": "way-222577615", - "name": "Kohlscheider Straße", - "osm_id": 222577615, - "reasons": [ - 91 - ], - "version": 6, - "primary_tags": { - "highway": "trunk" - } - }, - { - "url": "way-438407249", - "name": "Kohlscheider Straße", - "osm_id": 438407249, - "reasons": [ - 91 - ], - "version": 3, - "primary_tags": { - "highway": "trunk" - } - } - ], - "user": "kjon", - "uid": "44217", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-18T11:17:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1348, - "delete": 0, - "area": 0.745087298980493, - "is_suspect": true, - "harmful": true, - "checked": true, - "check_date": "2022-04-26T20:41:19.507743Z", - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 1828, - "locale": "de", - "imagery": "osm" - }, - "id": 119852939 - } - }, - { - "id": 119852903, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.3426762, - 48.8562376 - ], - [ - 2.3429813, - 48.8562376 - ], - [ - 2.3429813, - 48.8565865 - ], - [ - 2.3426762, - 48.8565865 - ], - [ - 2.3426762, - 48.8562376 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "retiolus", - "uid": "11291363", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-18T11:16:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 5, - "modify": 0, - "delete": 0, - "area": 1.06449389999566e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 11, - "create": 5, - "locale": "en", - "imagery": "osm" - }, - "id": 119852903 - } - }, - { - "id": 119852114, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.341887, - 48.8511347 - ], - [ - 2.3445589, - 48.8511347 - ], - [ - 2.3445589, - 48.8515201 - ], - [ - 2.341887, - 48.8515201 - ], - [ - 2.341887, - 48.8511347 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "retiolus", - "uid": "11291363", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-18T11:00:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 7, - "delete": 0, - "area": 0.00000102975025999734, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "move": 1, - "theme": "waste", - "answer": 7, - "create": 4, - "locale": "en", - "imagery": "osm", - "move:node/2190793962": "improve_accuracy" - }, - "id": 119852114 - } - }, - { - "id": 119851785, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.3778097, - 50.3365281 - ], - [ - 7.5360692, - 50.3365281 - ], - [ - 7.5360692, - 50.3729199 - ], - [ - 7.3778097, - 50.3729199 - ], - [ - 7.3778097, - 50.3365281 - ] - ] - ] - }, - "properties": { - "check_user": "exarkun", - "reasons": [], - "tags": [], - "features": [], - "user": "kjon", - "uid": "44217", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-18T10:54:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 126, - "delete": 0, - "area": 0.00575934807209951, - "is_suspect": false, - "harmful": true, - "checked": true, - "check_date": "2022-04-26T20:40:58.579319Z", - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 186, - "locale": "de", - "imagery": "osm" - }, - "id": 119851785 - } - }, - { - "id": 119850576, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-18T10:27:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 119850576 - } - }, - { - "id": 119850450, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-18T10:25:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 4, - "locale": "nl", - "imagery": "AGIV", - "change_within_25m": 4 - }, - "id": 119850450 - } - }, - { - "id": 119850427, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-18T10:25:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 119850427 - } - }, - { - "id": 119847348, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3961084, - 51.2163632 - ], - [ - 4.3975714, - 51.2163632 - ], - [ - 4.3975714, - 51.2167339 - ], - [ - 4.3961084, - 51.2167339 - ], - [ - 4.3961084, - 51.2163632 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-18T09:17:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 5.42334099996752e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/artwork.html", - "theme": "artwork", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 119847348 - } - }, - { - "id": 119845401, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.092442, - 50.7854307 - ], - [ - 4.1097366, - 50.7854307 - ], - [ - 4.1097366, - 50.7879573 - ], - [ - 4.092442, - 50.7879573 - ], - [ - 4.092442, - 50.7854307 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-18T08:31:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 7, - "modify": 11, - "delete": 1, - "area": 0.0000436965363600516, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 20, - "create": 7, - "locale": "nl", - "imagery": "AGIV", - "deletion": 1, - "add-image": 6, - "change_over_5000m": 7, - "change_within_25m": 13, - "change_within_50m": 6, - "change_within_500m": 6, - "change_within_1000m": 2, - "deletion:node/9673820171": "testing point" - }, - "id": 119845401 - } - }, - { - "id": 119842585, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7328382, - 51.0428471 - ], - [ - 3.7328382, - 51.0428471 - ], - [ - 3.7328382, - 51.0428471 - ], - [ - 3.7328382, - 51.0428471 - ], - [ - 3.7328382, - 51.0428471 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "lebeno", - "uid": "1710114", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-18T07:23:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "EsriWorldImagery", - "add-image": 1 - }, - "id": 119842585 - } - }, - { - "id": 119841649, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.577262, - 50.8677603 - ], - [ - 5.8404082, - 50.8677603 - ], - [ - 5.8404082, - 51.1263944 - ], - [ - 5.577262, - 51.1263944 - ], - [ - 5.577262, - 50.8677603 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Huainantzu", - "uid": "15614111", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-18T06:59:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 8, - "delete": 0, - "area": 0.0680585806054204, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 9, - "create": 2, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "add-image": 4 - }, - "id": 119841649 - } - }, - { - "id": 119840909, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3853956, - 50.9921787 - ], - [ - 5.3854814, - 50.9921787 - ], - [ - 5.3854814, - 50.9922007 - ], - [ - 5.3853956, - 50.9922007 - ], - [ - 5.3853956, - 50.9921787 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Huainantzu", - "uid": "15614111", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-18T06:40:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 1.88760000010954e-9, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "move": 2, - "theme": "trees", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "add-image": 1, - "move:node/9673558799": "improve_accuracy" - }, - "id": 119840909 - } - }, - { - "id": 119836088, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0589491, - 14.6138632 - ], - [ - 121.0589491, - 14.6138632 - ], - [ - 121.0589491, - 14.6138632 - ], - [ - 121.0589491, - 14.6138632 - ], - [ - 121.0589491, - 14.6138632 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "GOwin", - "uid": "1041828", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #mapinkmurals", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-18T03:07:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "mapinkmurals", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 119836088 - } - }, - { - "id": 119835382, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ᴎivvOG", - "uid": "6591426", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/govvin/50944c3155a0f714e642ac43a9e3ec1a/raw/20bc65fb1f10f2c692d75facf55a00b79f3a9904/mc-MAPinkMurals-v1.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-18T01:56:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/theme.html", - "theme": "https://gist.githubusercontent.com/govvin/50944c3155a0f714e642ac43a9e3ec1a/raw/20bc65fb1f10f2c692d75facf55a00b79f3a9904/mc-MAPinkMurals-v1.json", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 119835382 - } - }, - { - "id": 119835222, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0933102, - 14.6228874 - ], - [ - 121.0933102, - 14.6228874 - ], - [ - 121.0933102, - 14.6228874 - ], - [ - 121.0933102, - 14.6228874 - ], - [ - 121.0933102, - 14.6228874 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ᴎivvOG", - "uid": "6591426", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #mapinkmurals", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-18T01:41:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "mapinkmurals", - "answer": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 119835222 - } - }, - { - "id": 119835110, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0926826, - 14.622576 - ], - [ - 121.0926826, - 14.622576 - ], - [ - 121.0926826, - 14.622576 - ], - [ - 121.0926826, - 14.622576 - ], - [ - 121.0926826, - 14.622576 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "GOwin", - "uid": "1041828", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #mapinkmurals", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-18T01:31:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "mapinkmurals", - "answer": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 119835110 - } - }, - { - "id": 119835074, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0926826, - 14.622576 - ], - [ - 121.0926826, - 14.622576 - ], - [ - 121.0926826, - 14.622576 - ], - [ - 121.0926826, - 14.622576 - ], - [ - 121.0926826, - 14.622576 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "GOwin", - "uid": "1041828", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/govvin/392393ddd18277a9c54c8002375136de/raw/b512e261ec92540228fc2c8c2822149ceb6dda80/phl-mc-mapinkmurals.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-18T01:29:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/theme.html", - "theme": "https://gist.githubusercontent.com/govvin/392393ddd18277a9c54c8002375136de/raw/b512e261ec92540228fc2c8c2822149ceb6dda80/phl-mc-mapinkmurals.json", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 119835074 - } - }, - { - "id": 119834847, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.3418964, - 48.8511347 - ], - [ - 2.3445589, - 48.8511347 - ], - [ - 2.3445589, - 48.8515078 - ], - [ - 2.3418964, - 48.8515078 - ], - [ - 2.3418964, - 48.8511347 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "retiolus", - "uid": "11291363", - "editor": "MapComplete 0.18.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-18T01:00:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 9.9337874999295e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 119834847 - } - }, - { - "id": 119833656, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5421422, - 51.2337532 - ], - [ - 4.5716293, - 51.2337532 - ], - [ - 4.5716293, - 51.2577951 - ], - [ - 4.5421422, - 51.2577951 - ], - [ - 4.5421422, - 51.2337532 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "pi11", - "uid": "12066190", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-17T23:13:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 35, - "delete": 0, - "area": 0.000708925909490005, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 55, - "locale": "nl", - "imagery": "osm" - }, - "id": 119833656 - } - }, - { - "id": 119833211, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.2326977, - 38.5038669 - ], - [ - -0.2326977, - 38.5038669 - ], - [ - -0.2326977, - 38.5038669 - ], - [ - -0.2326977, - 38.5038669 - ], - [ - -0.2326977, - 38.5038669 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-17T22:40:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 1, - "create": 1, - "locale": "ca", - "imagery": "PNOA-Spain-TMS", - "change_over_5000m": 2 - }, - "id": 119833211 - } - }, - { - "id": 119833026, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2203011, - 51.197737 - ], - [ - 4.2278117, - 51.197737 - ], - [ - 4.2278117, - 51.2004304 - ], - [ - 4.2203011, - 51.2004304 - ], - [ - 4.2203011, - 51.197737 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-17T22:26:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 722, - "modify": 0, - "delete": 0, - "area": 0.00002022905004004, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 53, - "locale": "nl", - "imagery": "AGIVFlandersGRB" - }, - "id": 119833026 - } - }, - { - "id": 119832393, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2085216, - 41.5400129 - ], - [ - 2.2085216, - 41.5400129 - ], - [ - 2.2085216, - 41.5400129 - ], - [ - 2.2085216, - 41.5400129 - ], - [ - 2.2085216, - 41.5400129 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Moisès", - "uid": "12884230", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-17T21:46:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "cycle_infra", - "answer": 11, - "locale": "en", - "imagery": "osm" - }, - "id": 119832393 - } - }, - { - "id": 119831119, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -112.0675225, - 33.4653195 - ], - [ - -112.066415, - 33.4653195 - ], - [ - -112.066415, - 33.4732571 - ], - [ - -112.0675225, - 33.4732571 - ], - [ - -112.0675225, - 33.4653195 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mycota", - "uid": "7541348", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-17T20:45:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0.00000879089199991197, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/nature.html", - "theme": "nature", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 1, - "change_within_25m": 5 - }, - "id": 119831119 - } - }, - { - "id": 119830754, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.5486021, - 50.2945506 - ], - [ - 7.6610123, - 50.2945506 - ], - [ - 7.6610123, - 50.3948247 - ], - [ - 7.5486021, - 50.3948247 - ], - [ - 7.5486021, - 50.2945506 - ] - ] - ] - }, - "properties": { - "check_user": "exarkun", - "reasons": [ - { - "id": 4, - "name": "mass modification" - }, - { - "id": 87, - "name": "Irrelevant tags on highway" - } - ], - "tags": [], - "features": [ - { - "url": "way-24786068", - "name": "Sophie-von-La-Roche-Straße", - "osm_id": 24786068, - "reasons": [ - 87 - ], - "version": 13, - "primary_tags": { - "highway": "residential" - } - } - ], - "user": "kjon", - "uid": "44217", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-17T20:29:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 410, - "delete": 0, - "area": 0.01127183163582, - "is_suspect": true, - "harmful": true, - "checked": true, - "check_date": "2022-04-26T20:40:46.579590Z", - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 555, - "locale": "de", - "imagery": "osm" - }, - "id": 119830754 - } - }, - { - "id": 119830156, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4102221, - 52.1795749 - ], - [ - 13.4254834, - 52.1795749 - ], - [ - 13.4254834, - 52.1899161 - ], - [ - 13.4102221, - 52.1899161 - ], - [ - 13.4102221, - 52.1795749 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Oscar112", - "uid": "15318660", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-17T20:04:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 17, - "modify": 2, - "delete": 0, - "area": 0.000157820155559975, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 119830156 - } - }, - { - "id": 119829571, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.058148, - 49.6093657 - ], - [ - 6.058148, - 49.6093657 - ], - [ - 6.058148, - 49.6093657 - ], - [ - 6.058148, - 49.6093657 - ], - [ - 6.058148, - 49.6093657 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "gloda", - "uid": "646144", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-17T19:39:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 119829571 - } - }, - { - "id": 119829162, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9167805, - 51.2336607 - ], - [ - 2.9167805, - 51.2336607 - ], - [ - 2.9167805, - 51.2336607 - ], - [ - 2.9167805, - 51.2336607 - ], - [ - 2.9167805, - 51.2336607 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-17T19:24:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/food.html", - "theme": "food", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 119829162 - } - }, - { - "id": 119827351, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1337857, - 51.1550196 - ], - [ - 4.1337857, - 51.1550196 - ], - [ - 4.1337857, - 51.1550196 - ], - [ - 4.1337857, - 51.1550196 - ], - [ - 4.1337857, - 51.1550196 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-17T18:22:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 1, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 119827351 - } - }, - { - "id": 119820804, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.8582775, - 46.3864024 - ], - [ - 6.8612708, - 46.3864024 - ], - [ - 6.8612708, - 46.3887965 - ], - [ - 6.8582775, - 46.3887965 - ], - [ - 6.8582775, - 46.3864024 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "habi", - "uid": "15671", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-17T15:18:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.00000716625952998951, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/campersite.html", - "theme": "campersite", - "answer": 3, - "locale": "en", - "imagery": "osm", - "change_within_100m": 1, - "change_within_500m": 2 - }, - "id": 119820804 - } - }, - { - "id": 119815081, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4796166, - 50.3366404 - ], - [ - 7.6036575, - 50.3366404 - ], - [ - 7.6036575, - 50.3924909 - ], - [ - 7.4796166, - 50.3924909 - ], - [ - 7.4796166, - 50.3366404 - ] - ] - ] - }, - "properties": { - "check_user": "exarkun", - "reasons": [ - { - "id": 87, - "name": "Irrelevant tags on highway" - } - ], - "tags": [], - "features": [ - { - "url": "way-824962552", - "name": "Bassenheimer Straße", - "osm_id": 824962552, - "reasons": [ - 87 - ], - "version": 2, - "primary_tags": { - "highway": "tertiary" - } - }, - { - "url": "way-28215051", - "name": "Bassenheimer Straße", - "osm_id": 28215051, - "reasons": [ - 87 - ], - "version": 33, - "primary_tags": { - "highway": "tertiary" - } - } - ], - "user": "kjon", - "uid": "44217", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-17T12:34:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 123, - "delete": 0, - "area": 0.00692774628544977, - "is_suspect": false, - "harmful": true, - "checked": true, - "check_date": "2022-04-26T20:43:11.352466Z", - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 184, - "locale": "de", - "imagery": "osm" - }, - "id": 119815081 - } - }, - { - "id": 119814739, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9440883, - 50.4273801 - ], - [ - 2.9444092, - 50.4273801 - ], - [ - 2.9444092, - 50.4276165 - ], - [ - 2.9440883, - 50.4276165 - ], - [ - 2.9440883, - 50.4273801 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "whatismoss", - "uid": "8427311", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-17T12:23:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 3, - "delete": 0, - "area": 7.58607599994824e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 4, - "create": 4, - "locale": "en", - "imagery": "fr.ign.bdortho" - }, - "id": 119814739 - } - }, - { - "id": 119814338, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.8404389, - 48.8528738 - ], - [ - 8.8696493, - 48.8528738 - ], - [ - 8.8696493, - 48.8665727 - ], - [ - 8.8404389, - 48.8665727 - ], - [ - 8.8404389, - 48.8528738 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-17T12:11:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 26, - "delete": 0, - "area": 0.000400150348560044, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 36, - "locale": "en", - "imagery": "osm" - }, - "id": 119814338 - } - }, - { - "id": 119814295, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.8533423, - 48.8599016 - ], - [ - 8.8533423, - 48.8599016 - ], - [ - 8.8533423, - 48.8599016 - ], - [ - 8.8533423, - 48.8599016 - ], - [ - 8.8533423, - 48.8599016 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-17T12:10:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 119814295 - } - }, - { - "id": 119813133, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.8529298, - 48.8597874 - ], - [ - 8.8549516, - 48.8597874 - ], - [ - 8.8549516, - 48.860226 - ], - [ - 8.8529298, - 48.860226 - ], - [ - 8.8529298, - 48.8597874 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-17T11:33:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 10, - "delete": 0, - "area": 8.86761479990545e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 20, - "locale": "en", - "imagery": "osm", - "change_within_25m": 4, - "change_within_50m": 4, - "change_within_100m": 12 - }, - "id": 119813133 - } - }, - { - "id": 119811801, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3227506, - 51.1188775 - ], - [ - 3.3227506, - 51.1188775 - ], - [ - 3.3227506, - 51.1188775 - ], - [ - 3.3227506, - 51.1188775 - ], - [ - 3.3227506, - 51.1188775 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Hopperpop", - "uid": "3664604", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-17T10:46:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 119811801 - } - }, - { - "id": 119811691, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.3086867, - 47.0443317 - ], - [ - 8.3086867, - 47.0443317 - ], - [ - 8.3086867, - 47.0443317 - ], - [ - 8.3086867, - 47.0443317 - ], - [ - 8.3086867, - 47.0443317 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mottiger", - "uid": "7504544", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-17T10:43:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 119811691 - } - }, - { - "id": 119811667, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3593883, - 50.8915087 - ], - [ - 4.3593883, - 50.8915087 - ], - [ - 4.3593883, - 50.8915087 - ], - [ - 4.3593883, - 50.8915087 - ], - [ - 4.3593883, - 50.8915087 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-17T10:42:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_within_5000m": 1 - }, - "id": 119811667 - } - }, - { - "id": 119810393, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1513313, - 51.1086863 - ], - [ - 4.2468832, - 51.1086863 - ], - [ - 4.2468832, - 51.1229779 - ], - [ - 4.1513313, - 51.1229779 - ], - [ - 4.1513313, - 51.1086863 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-17T10:03:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 8, - "modify": 9, - "delete": 0, - "area": 0.00136558953404, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 20, - "create": 8, - "locale": "nl", - "imagery": "osm", - "add-image": 9, - "change_over_5000m": 8, - "change_within_25m": 29 - }, - "id": 119810393 - } - }, - { - "id": 119809473, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2327887, - 51.1610453 - ], - [ - 4.2327887, - 51.1610453 - ], - [ - 4.2327887, - 51.1610453 - ], - [ - 4.2327887, - 51.1610453 - ], - [ - 4.2327887, - 51.1610453 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #openwindpowermap", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-17T09:34:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/openwindpowermap.html", - "theme": "openwindpowermap", - "create": 1, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "add-image": 1, - "change_over_5000m": 1, - "change_within_500m": 1 - }, - "id": 119809473 - } - }, - { - "id": 119808437, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3889316, - 50.8122059 - ], - [ - 5.4067362, - 50.8122059 - ], - [ - 5.4067362, - 50.8145123 - ], - [ - 5.3889316, - 50.8145123 - ], - [ - 5.3889316, - 50.8122059 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Salambre", - "uid": "15272429", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-17T08:58:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 0.0000410645294399075, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 4, - "create": 2, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 3, - "change_within_500m": 1 - }, - "id": 119808437 - } - }, - { - "id": 119807384, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9826881, - 51.1810636 - ], - [ - 4.9865401, - 51.1810636 - ], - [ - 4.9865401, - 51.1852138 - ], - [ - 4.9826881, - 51.1852138 - ], - [ - 4.9826881, - 51.1810636 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-17T08:19:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 104, - "modify": 136, - "delete": 5, - "area": 0.0000159865703999931, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 125, - "theme": "grb", - "answer": 1, - "delete": 5, - "import": 12, - "locale": "nl", - "imagery": "osm", - "conflation": 26 - }, - "id": 119807384 - } - }, - { - "id": 119807254, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5929823, - 50.8130765 - ], - [ - 3.5929823, - 50.8130765 - ], - [ - 3.5929823, - 50.8130765 - ], - [ - 3.5929823, - 50.8130765 - ], - [ - 3.5929823, - 50.8130765 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-17T08:16:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 119807254 - } - }, - { - "id": 119806510, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8660851, - 50.9765484 - ], - [ - 4.0389924, - 50.9765484 - ], - [ - 4.0389924, - 51.0250888 - ], - [ - 3.8660851, - 51.0250888 - ], - [ - 3.8660851, - 50.9765484 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "WimBau", - "uid": "15313167", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-17T07:48:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 10, - "modify": 62, - "delete": 0, - "area": 0.00839298950492004, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 81, - "create": 10, - "locale": "nl", - "imagery": "osm", - "add-image": 15 - }, - "id": 119806510 - } - }, - { - "id": 119801027, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 120.9994224, - 14.5725605 - ], - [ - 121.0288574, - 14.5725605 - ], - [ - 121.0288574, - 14.5973051 - ], - [ - 120.9994224, - 14.5973051 - ], - [ - 120.9994224, - 14.5725605 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "GOwin", - "uid": "1041828", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/govvin/392393ddd18277a9c54c8002375136de/raw/b512e261ec92540228fc2c8c2822149ceb6dda80/phl-mc-mapinkmurals.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-16T23:20:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.000728357301000162, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/theme.html", - "theme": "https://gist.githubusercontent.com/govvin/392393ddd18277a9c54c8002375136de/raw/b512e261ec92540228fc2c8c2822149ceb6dda80/phl-mc-mapinkmurals.json", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 119801027 - } - }, - { - "id": 119800489, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4152634, - 50.8188558 - ], - [ - 4.6198033, - 50.8188558 - ], - [ - 4.6198033, - 51.1697258 - ], - [ - 4.4152634, - 51.1697258 - ], - [ - 4.4152634, - 50.8188558 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Hopperpop", - "uid": "3664604", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-16T22:37:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 5, - "delete": 0, - "area": 0.0717669147130002, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", - "answer": 9, - "create": 2, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 119800489 - } - }, - { - "id": 119799968, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9079618, - 51.0569507 - ], - [ - 4.9361608, - 51.0569507 - ], - [ - 4.9361608, - 51.0598504 - ], - [ - 4.9079618, - 51.0598504 - ], - [ - 4.9079618, - 51.0569507 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-16T22:02:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 123, - "modify": 118, - "delete": 2, - "area": 0.0000817686403000107, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 99, - "theme": "grb", - "delete": 2, - "import": 11, - "locale": "nl", - "imagery": "AGIV", - "conflation": 38 - }, - "id": 119799968 - } - }, - { - "id": 119797011, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.5360692, - 50.330316 - ], - [ - 7.641621, - 50.330316 - ], - [ - 7.641621, - 50.4008752 - ], - [ - 7.5360692, - 50.4008752 - ], - [ - 7.5360692, - 50.330316 - ] - ] - ] - }, - "properties": { - "check_user": "exarkun", - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "kjon", - "uid": "44217", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-16T19:53:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 373, - "delete": 0, - "area": 0.00744765056655979, - "is_suspect": true, - "harmful": true, - "checked": true, - "check_date": "2022-04-26T20:43:27.635646Z", - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 517, - "locale": "de", - "imagery": "osm" - }, - "id": 119797011 - } - }, - { - "id": 119792302, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -111.9842272, - 33.4718561 - ], - [ - -111.978405, - 33.4718561 - ], - [ - -111.978405, - 33.4754066 - ], - [ - -111.9842272, - 33.4754066 - ], - [ - -111.9842272, - 33.4718561 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mycota", - "uid": "7541348", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-16T17:22:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000206717211000575, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_1000m": 2 - }, - "id": 119792302 - } - }, - { - "id": 119790785, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1039536, - 51.1535472 - ], - [ - 3.1040235, - 51.1535472 - ], - [ - 3.1040235, - 51.1535888 - ], - [ - 3.1039536, - 51.1535888 - ], - [ - 3.1039536, - 51.1535472 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Hopperpop", - "uid": "3664604", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-16T16:34:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 2.90784000019672e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 3, - "locale": "nl", - "imagery": "osm" - }, - "id": 119790785 - } - }, - { - "id": 119789167, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.3150139, - 48.1711711 - ], - [ - 16.3173731, - 48.1711711 - ], - [ - 16.3173731, - 48.1713027 - ], - [ - 16.3150139, - 48.1713027 - ], - [ - 16.3150139, - 48.1711711 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "znrgl", - "uid": "9486229", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-16T15:44:07Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 3.10470719990696e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 3, - "locale": "de", - "imagery": "osm" - }, - "id": 119789167 - } - }, - { - "id": 119788902, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2321639, - 51.2086396 - ], - [ - 4.3621516, - 51.2086396 - ], - [ - 4.3621516, - 51.2250503 - ], - [ - 4.2321639, - 51.2250503 - ], - [ - 4.2321639, - 51.2086396 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-16T15:38:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 3, - "delete": 0, - "area": 0.0021331891483902, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 6, - "create": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 3, - "change_over_5000m": 2, - "change_within_25m": 7, - "change_within_100m": 2 - }, - "id": 119788902 - } - }, - { - "id": 119787548, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.190612, - 51.1553439 - ], - [ - 3.2287119, - 51.1553439 - ], - [ - 3.2287119, - 51.2243715 - ], - [ - 3.190612, - 51.2243715 - ], - [ - 3.190612, - 51.1553439 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Hopperpop", - "uid": "3664604", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-16T15:01:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00262994465723995, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", - "answer": 5, - "locale": "en", - "imagery": "osm" - }, - "id": 119787548 - } - }, - { - "id": 119785251, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4032457, - 51.215893 - ], - [ - 4.4032457, - 51.215893 - ], - [ - 4.4032457, - 51.215893 - ], - [ - 4.4032457, - 51.215893 - ], - [ - 4.4032457, - 51.215893 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-16T13:49:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/waste.html", - "theme": "waste", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 119785251 - } - }, - { - "id": 119785048, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.228221, - 51.2240246 - ], - [ - 3.2287119, - 51.2240246 - ], - [ - 3.2287119, - 51.2243715 - ], - [ - 3.228221, - 51.2243715 - ], - [ - 3.228221, - 51.2240246 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Hopperpop", - "uid": "3664604", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-16T13:42:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.7029320999837e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 119785048 - } - }, - { - "id": 119784681, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3962282, - 51.2184834 - ], - [ - 4.3966513, - 51.2184834 - ], - [ - 4.3966513, - 51.2186729 - ], - [ - 4.3962282, - 51.2186729 - ], - [ - 4.3962282, - 51.2184834 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-16T13:30:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 8.0177450001981e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 2 - }, - "id": 119784681 - } - }, - { - "id": 119784638, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3204622, - 50.8743472 - ], - [ - 5.3375961, - 50.8743472 - ], - [ - 5.3375961, - 50.8828358 - ], - [ - 5.3204622, - 50.8828358 - ], - [ - 5.3204622, - 50.8743472 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-16T13:30:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 783, - "modify": 934, - "delete": 28, - "area": 0.000145442823539997, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 838, - "theme": "grb", - "delete": 28, - "import": 116, - "locale": "nl", - "imagery": "osm", - "conflation": 208 - }, - "id": 119784638 - } - }, - { - "id": 119784618, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3965562, - 51.2184773 - ], - [ - 4.3965562, - 51.2184773 - ], - [ - 4.3965562, - 51.2184773 - ], - [ - 4.3965562, - 51.2184773 - ], - [ - 4.3965562, - 51.2184773 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-16T13:29:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water", - "theme": "drinking_water", - "answer": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_50m": 2 - }, - "id": 119784618 - } - }, - { - "id": 119784254, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3963285, - 51.2165435 - ], - [ - 4.3966275, - 51.2165435 - ], - [ - 4.3966275, - 51.2172717 - ], - [ - 4.3963285, - 51.2172717 - ], - [ - 4.3963285, - 51.2165435 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-16T13:20:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 2.17731799999293e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/etymology.html", - "theme": "etymology", - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_within_25m": 2 - }, - "id": 119784254 - } - }, - { - "id": 119784224, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3964893, - 51.216476 - ], - [ - 4.4003463, - 51.216476 - ], - [ - 4.4003463, - 51.2187524 - ], - [ - 4.3964893, - 51.2187524 - ], - [ - 4.3964893, - 51.216476 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-16T13:19:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6, - "modify": 9, - "delete": 0, - "area": 0.00000878007479999812, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/openwindpowermap.html", - "theme": "artwork", - "answer": 8, - "create": 6, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 9, - "change_over_5000m": 6, - "change_within_25m": 12, - "change_within_50m": 5 - }, - "id": 119784224 - } - }, - { - "id": 119783430, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.4634101, - 47.2556162 - ], - [ - -1.4634101, - 47.2556162 - ], - [ - -1.4634101, - 47.2556162 - ], - [ - -1.4634101, - 47.2556162 - ], - [ - -1.4634101, - 47.2556162 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Koreller", - "uid": "12419855", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #postboxes", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-16T12:57:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/postboxes.html", - "theme": "postboxes", - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 2 - }, - "id": 119783430 - } - }, - { - "id": 119783353, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3956551, - 51.2144834 - ], - [ - 4.3961165, - 51.2144834 - ], - [ - 4.3961165, - 51.2148946 - ], - [ - 4.3956551, - 51.2148946 - ], - [ - 4.3956551, - 51.2144834 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "way-498307015", - "osm_id": 498307015, - "reasons": [ - 43 - ], - "version": 8, - "primary_tags": { - "building": "civil" - } - } - ], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-16T12:54:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 1.8972768000088e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/aed.html", - "theme": "aed", - "answer": 2, - "create": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 5 - }, - "id": 119783353 - } - }, - { - "id": 119783005, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3950114, - 51.213366 - ], - [ - 4.3990266, - 51.213366 - ], - [ - 4.3990266, - 51.2168112 - ], - [ - 4.3950114, - 51.2168112 - ], - [ - 4.3950114, - 51.213366 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-16T12:42:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 11, - "modify": 25, - "delete": 0, - "area": 0.0000138331670400079, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/artwork.html", - "theme": "artwork", - "answer": 15, - "create": 11, - "locale": "nl", - "imagery": "osm", - "add-image": 17, - "change_over_5000m": 11, - "change_within_25m": 25, - "change_within_50m": 7 - }, - "id": 119783005 - } - }, - { - "id": 119782703, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3974464, - 51.2149076 - ], - [ - 4.4002108, - 51.2149076 - ], - [ - 4.4002108, - 51.2175521 - ], - [ - 4.3974464, - 51.2175521 - ], - [ - 4.3974464, - 51.2149076 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-16T12:33:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 5, - "modify": 5, - "delete": 0, - "area": 0.00000731045580000717, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 13, - "create": 5, - "locale": "nl", - "imagery": "osm", - "add-image": 3, - "change_over_5000m": 5, - "change_within_25m": 16 - }, - "id": 119782703 - } - }, - { - "id": 119782437, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4009645, - 51.2141372 - ], - [ - 4.4009645, - 51.2141372 - ], - [ - 4.4009645, - 51.2141372 - ], - [ - 4.4009645, - 51.2141372 - ], - [ - 4.4009645, - 51.2141372 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #facadegardens", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-16T12:26:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/facadegardens.html", - "theme": "facadegardens", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 119782437 - } - }, - { - "id": 119782117, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1820032, - 51.1520255 - ], - [ - 5.1820032, - 51.1520255 - ], - [ - 5.1820032, - 51.1520255 - ], - [ - 5.1820032, - 51.1520255 - ], - [ - 5.1820032, - 51.1520255 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Salambre", - "uid": "15272429", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-16T12:17:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_50m": 4 - }, - "id": 119782117 - } - }, - { - "id": 119780036, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9861646, - 51.1748279 - ], - [ - 4.9869061, - 51.1748279 - ], - [ - 4.9869061, - 51.1782123 - ], - [ - 4.9861646, - 51.1782123 - ], - [ - 4.9861646, - 51.1748279 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-16T11:14:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0.00000250953259999878, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_5000m": 4 - }, - "id": 119780036 - } - }, - { - "id": 119779753, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1816724, - 51.140351 - ], - [ - 5.1816724, - 51.140351 - ], - [ - 5.1816724, - 51.140351 - ], - [ - 5.1816724, - 51.140351 - ], - [ - 5.1816724, - 51.140351 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Salambre", - "uid": "15272429", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-16T11:04:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 119779753 - } - }, - { - "id": 119779737, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3979041, - 51.2126386 - ], - [ - 4.4074687, - 51.2126386 - ], - [ - 4.4074687, - 51.2148631 - ], - [ - 4.3979041, - 51.2148631 - ], - [ - 4.3979041, - 51.2126386 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-16T11:04:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 9, - "modify": 16, - "delete": 0, - "area": 0.000021276452700039, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/personal.html", - "theme": "personal", - "answer": 15, - "create": 9, - "locale": "nl", - "imagery": "osm", - "add-image": 14, - "change_over_5000m": 9, - "change_within_25m": 29 - }, - "id": 119779737 - } - }, - { - "id": 119779644, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4054586, - 51.2133618 - ], - [ - 4.4054586, - 51.2133618 - ], - [ - 4.4054586, - 51.2133618 - ], - [ - 4.4054586, - 51.2133618 - ], - [ - 4.4054586, - 51.2133618 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-16T11:01:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/artwork.html", - "theme": "artwork", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 119779644 - } - }, - { - "id": 119778483, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.8823056, - 49.4839093 - ], - [ - 7.9263339, - 49.4839093 - ], - [ - 7.9263339, - 49.4952243 - ], - [ - 7.8823056, - 49.4952243 - ], - [ - 7.8823056, - 49.4839093 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "N969", - "uid": "13086756", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-16T10:26:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 10, - "delete": 0, - "area": 0.000498180214499841, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "answer": 14, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 14 - }, - "id": 119778483 - } - }, - { - "id": 119777511, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3208212, - 51.2134298 - ], - [ - 4.3283729, - 51.2134298 - ], - [ - 4.3283729, - 51.2140964 - ], - [ - 4.3208212, - 51.2140964 - ], - [ - 4.3208212, - 51.2134298 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #cyclestreets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-16T09:56:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.00000503396322001789, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cyclestreets.html", - "theme": "cyclestreets", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_500m": 1 - }, - "id": 119777511 - } - }, - { - "id": 119776638, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.3037081, - 48.1672755 - ], - [ - 16.3124569, - 48.1672755 - ], - [ - 16.3124569, - 48.1727989 - ], - [ - 16.3037081, - 48.1727989 - ], - [ - 16.3037081, - 48.1672755 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "znrgl", - "uid": "9486229", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-16T09:31:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 10, - "delete": 0, - "area": 0.0000483231219199454, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 11, - "locale": "de", - "imagery": "osm", - "change_within_500m": 9, - "change_within_1000m": 2 - }, - "id": 119776638 - } - }, - { - "id": 119776558, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2586452, - 51.207937 - ], - [ - 4.4055136, - 51.207937 - ], - [ - 4.4055136, - 51.2135122 - ], - [ - 4.2586452, - 51.2135122 - ], - [ - 4.2586452, - 51.207937 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-16T09:28:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 7, - "modify": 5, - "delete": 1, - "area": 0.000818820703679347, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 9, - "create": 7, - "locale": "nl", - "imagery": "osm", - "deletion": 1, - "add-image": 2, - "change_over_5000m": 7, - "change_within_25m": 12, - "deletion:node/9669927624": "testing point" - }, - "id": 119776558 - } - }, - { - "id": 119774566, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.3059891, - 48.1629981 - ], - [ - 16.3095993, - 48.1629981 - ], - [ - 16.3095993, - 48.1671306 - ], - [ - 16.3059891, - 48.1671306 - ], - [ - 16.3059891, - 48.1629981 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "znrgl", - "uid": "9486229", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-16T08:12:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.000014919151499978, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 1, - "locale": "de", - "imagery": "osm", - "change_within_500m": 1 - }, - "id": 119774566 - } - }, - { - "id": 119773239, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.547778, - 52.4625154 - ], - [ - 10.5646937, - 52.4625154 - ], - [ - 10.5646937, - 52.474231 - ], - [ - 10.547778, - 52.474231 - ], - [ - 10.547778, - 52.4625154 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ibanez", - "uid": "30137", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-16T07:08:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 79, - "delete": 0, - "area": 0.000198177574920041, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 96, - "locale": "de", - "imagery": "osm" - }, - "id": 119773239 - } - }, - { - "id": 119772579, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1797358, - 51.1386553 - ], - [ - 3.2049394, - 51.1386553 - ], - [ - 3.2049394, - 51.1571923 - ], - [ - 3.1797358, - 51.1571923 - ], - [ - 3.1797358, - 51.1386553 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-16T06:37:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0.000467199133199876, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119772579 - } - }, - { - "id": 119768307, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7076975, - 51.1640892 - ], - [ - 4.7249788, - 51.1640892 - ], - [ - 4.7249788, - 51.1674666 - ], - [ - 4.7076975, - 51.1674666 - ], - [ - 4.7076975, - 51.1640892 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-15T23:29:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 71, - "modify": 35, - "delete": 0, - "area": 0.0000583658626199637, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 32, - "theme": "grb", - "import": 6, - "locale": "nl", - "imagery": "osm", - "conflation": 6 - }, - "id": 119768307 - } - }, - { - "id": 119767559, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7198373, - 51.1656654 - ], - [ - 4.7502163, - 51.1656654 - ], - [ - 4.7502163, - 51.1729279 - ], - [ - 4.7198373, - 51.1729279 - ], - [ - 4.7198373, - 51.1656654 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 42, - "name": "Invalid tag modification" - } - ], - "tags": [], - "features": [ - { - "url": "way-143045733", - "osm_id": 143045733, - "reasons": [ - 42 - ], - "version": 3, - "primary_tags": { - "building": "school" - } - } - ], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-15T22:36:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 556, - "modify": 399, - "delete": 2, - "area": 0.000220627487499877, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 337, - "theme": "grb", - "answer": 1, - "delete": 2, - "import": 42, - "locale": "nl", - "imagery": "osm", - "conflation": 102, - "change_over_5000m": 5 - }, - "id": 119767559 - } - }, - { - "id": 119767277, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 17.6419213, - 49.0263376 - ], - [ - 17.6419213, - 49.0263376 - ], - [ - 17.6419213, - 49.0263376 - ], - [ - 17.6419213, - 49.0263376 - ], - [ - 17.6419213, - 49.0263376 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Jakub Trojan", - "uid": "273212", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-15T22:19:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 119767277 - } - }, - { - "id": 119766859, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1985483, - 51.158377 - ], - [ - 3.1986221, - 51.158377 - ], - [ - 3.1986221, - 51.1584216 - ], - [ - 3.1985483, - 51.1584216 - ], - [ - 3.1985483, - 51.158377 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-15T21:56:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 2, - "delete": 0, - "area": 3.29147999966096e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 6, - "create": 3, - "locale": "nl", - "imagery": "AGIV", - "move:node/9669073980": "improve_accuracy" - }, - "id": 119766859 - } - }, - { - "id": 119766359, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2485626, - -39.8417513 - ], - [ - -73.2296259, - -39.8417513 - ], - [ - -73.2296259, - -39.8052499 - ], - [ - -73.2485626, - -39.8052499 - ], - [ - -73.2485626, - -39.8417513 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-15T21:31:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.000691216061379889, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "osm", - "add-image": 4 - }, - "id": 119766359 - } - }, - { - "id": 119765657, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.7805196, - 55.5209906 - ], - [ - 12.188682, - 55.5209906 - ], - [ - 12.188682, - 55.6436729 - ], - [ - 9.7805196, - 55.6436729 - ], - [ - 9.7805196, - 55.5209906 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Niels Elgaard Larsen", - "uid": "1288", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #dog", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-15T21:02:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.295438902005522, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "dog", - "answer": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 119765657 - } - }, - { - "id": 119765173, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1221492, - 51.110116 - ], - [ - 4.1586235, - 51.110116 - ], - [ - 4.1586235, - 51.137672 - ], - [ - 4.1221492, - 51.137672 - ], - [ - 4.1221492, - 51.110116 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-15T20:40:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 9034, - "modify": 12, - "delete": 0, - "area": 0.00100508581080015, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/themes/improvements/grb.html", - "move": 10, - "theme": "grb", - "import": 875, - "locale": "nl", - "imagery": "osm", - "conflation": 4, - "change_over_5000m": 799 - }, - "id": 119765173 - } - }, - { - "id": 119764245, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.0579059, - 42.3609712 - ], - [ - -71.0579059, - 42.3609712 - ], - [ - -71.0579059, - 42.3609712 - ], - [ - -71.0579059, - 42.3609712 - ], - [ - -71.0579059, - 42.3609712 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "user_15591655", - "uid": "15591655", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-15T20:04:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance", - "theme": "surveillance", - "answer": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 119764245 - } - }, - { - "id": 119759553, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2242365, - 51.1986208 - ], - [ - 4.2242365, - 51.1986208 - ], - [ - 4.2242365, - 51.1986208 - ], - [ - 4.2242365, - 51.1986208 - ], - [ - 4.2242365, - 51.1986208 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-15T17:23:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 119759553 - } - }, - { - "id": 119758587, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.5798803, - 55.7062199 - ], - [ - 12.5798803, - 55.7062199 - ], - [ - 12.5798803, - 55.7062199 - ], - [ - 12.5798803, - 55.7062199 - ], - [ - 12.5798803, - 55.7062199 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Niels Elgaard Larsen", - "uid": "1288", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-15T16:52:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 119758587 - } - }, - { - "id": 119758052, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.5148936, - 52.495316 - ], - [ - 10.5439925, - 52.495316 - ], - [ - 10.5439925, - 52.4982627 - ], - [ - 10.5148936, - 52.4982627 - ], - [ - 10.5148936, - 52.495316 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ibanez", - "uid": "30137", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-15T16:37:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.0000857457286298645, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 5, - "locale": "de", - "imagery": "osm" - }, - "id": 119758052 - } - }, - { - "id": 119756854, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1278812, - 51.1111797 - ], - [ - 4.2245519, - 51.1111797 - ], - [ - 4.2245519, - 51.1984078 - ], - [ - 4.1278812, - 51.1984078 - ], - [ - 4.1278812, - 51.1111797 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-15T16:00:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1099, - "modify": 9, - "delete": 0, - "area": 0.00843240148666972, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 8, - "theme": "grb", - "import": 126, - "locale": "nl", - "imagery": "osm", - "conflation": 2, - "change_over_5000m": 126 - }, - "id": 119756854 - } - }, - { - "id": 119756629, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.223468, - 51.1984435 - ], - [ - 4.223468, - 51.1984435 - ], - [ - 4.223468, - 51.1984435 - ], - [ - 4.223468, - 51.1984435 - ], - [ - 4.223468, - 51.1984435 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-15T15:51:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/sport_pitches.html", - "theme": "sport_pitches", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 119756629 - } - }, - { - "id": 119756111, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.519889, - 44.866215 - ], - [ - -0.514541, - 44.866215 - ], - [ - -0.514541, - 44.8677669 - ], - [ - -0.519889, - 44.8677669 - ], - [ - -0.519889, - 44.866215 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-15T15:35:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 5, - "modify": 12, - "delete": 0, - "area": 0.00000829956120001396, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 14, - "create": 10, - "locale": "fr", - "imagery": "osm", - "change_within_100m": 18, - "change_within_500m": 6 - }, - "id": 119756111 - } - }, - { - "id": 119754197, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.320909, - 50.8785212 - ], - [ - 5.329244, - 50.8785212 - ], - [ - 5.329244, - 50.8829639 - ], - [ - 5.320909, - 50.8829639 - ], - [ - 5.320909, - 50.8785212 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-15T14:41:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 319, - "modify": 677, - "delete": 12, - "area": 0.0000370299044999862, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 610, - "theme": "grb", - "delete": 12, - "import": 49, - "locale": "nl", - "imagery": "osm", - "conflation": 148 - }, - "id": 119754197 - } - }, - { - "id": 119754070, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1615036, - 51.1985939 - ], - [ - 4.2242365, - 51.1985939 - ], - [ - 4.2242365, - 51.230222 - ], - [ - 4.1615036, - 51.230222 - ], - [ - 4.1615036, - 51.1985939 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-15T14:37:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 7, - "modify": 7, - "delete": 0, - "area": 0.00198412243448994, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 28, - "create": 7, - "locale": "nl", - "imagery": "osm", - "add-image": 4, - "change_over_5000m": 7, - "change_within_25m": 15, - "change_within_50m": 12, - "change_within_500m": 6, - "move:node/9668331034": "improve_accuracy" - }, - "id": 119754070 - } - }, - { - "id": 119753828, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.8744183, - 50.4704806 - ], - [ - 10.8757394, - 50.4704806 - ], - [ - 10.8757394, - 50.4719517 - ], - [ - 10.8744183, - 50.4719517 - ], - [ - 10.8744183, - 50.4704806 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ebihardy", - "uid": "263464", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-15T14:30:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 3, - "delete": 0, - "area": 0.00000194347020999536, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "www.waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 119753828 - } - }, - { - "id": 119752319, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1307745, - 51.1120431 - ], - [ - 4.1339825, - 51.1120431 - ], - [ - 4.1339825, - 51.115701 - ], - [ - 4.1307745, - 51.115701 - ], - [ - 4.1307745, - 51.1120431 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-15T13:50:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 979, - "modify": 0, - "delete": 0, - "area": 0.0000117345432000006, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 114, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 114 - }, - "id": 119752319 - } - }, - { - "id": 119750711, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5316703, - 44.8372515 - ], - [ - -0.5316703, - 44.8372515 - ], - [ - -0.5316703, - 44.8372515 - ], - [ - -0.5316703, - 44.8372515 - ], - [ - -0.5316703, - 44.8372515 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-15T13:03:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 3, - "create": 1, - "locale": "fr", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_50m": 4 - }, - "id": 119750711 - } - }, - { - "id": 119750706, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 18.9041905, - 50.168696 - ], - [ - 18.9041905, - 50.168696 - ], - [ - 18.9041905, - 50.168696 - ], - [ - 18.9041905, - 50.168696 - ], - [ - 18.9041905, - 50.168696 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "orlPL", - "uid": "15180064", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-15T13:02:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 6, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 9, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_50m": 9 - }, - "id": 119750706 - } - }, - { - "id": 119748620, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.5138288, - 50.313042 - ], - [ - 7.6016278, - 50.313042 - ], - [ - 7.6016278, - 50.3758444 - ], - [ - 7.5138288, - 50.3758444 - ], - [ - 7.5138288, - 50.313042 - ] - ] - ] - }, - "properties": { - "check_user": "exarkun", - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "kjon", - "uid": "44217", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 2, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-15T12:02:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 428, - "delete": 0, - "area": 0.00551398791759962, - "is_suspect": true, - "harmful": true, - "checked": true, - "check_date": "2022-04-26T20:43:45.341225Z", - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 606, - "locale": "de", - "imagery": "osm" - }, - "id": 119748620 - } - }, - { - "id": 119748440, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.122735, - 51.1985746 - ], - [ - 4.122735, - 51.1985746 - ], - [ - 4.122735, - 51.1985746 - ], - [ - 4.122735, - 51.1985746 - ], - [ - 4.122735, - 51.1985746 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-15T11:57:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 119748440 - } - }, - { - "id": 119747468, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1439123, - 51.1712705 - ], - [ - 4.1439123, - 51.1712705 - ], - [ - 4.1439123, - 51.1712705 - ], - [ - 4.1439123, - 51.1712705 - ], - [ - 4.1439123, - 51.1712705 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9667957033", - "name": "Op Wielekes Sint-Niklaas", - "osm_id": 9667957033, - "reasons": [ - 43 - ], - "version": 8, - "primary_tags": { - "amenity": "bicycle_library" - } - } - ], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-15T11:31:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 7, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", - "theme": "cyclofix", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 7 - }, - "id": 119747468 - } - }, - { - "id": 119746884, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1319488, - 51.1146636 - ], - [ - 4.1352916, - 51.1146636 - ], - [ - 4.1352916, - 51.1180071 - ], - [ - 4.1319488, - 51.1180071 - ], - [ - 4.1319488, - 51.1146636 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-15T11:12:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 790, - "modify": 21, - "delete": 0, - "area": 0.0000111766518000005, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 16, - "theme": "grb", - "answer": 1, - "import": 116, - "locale": "nl", - "imagery": "osm", - "conflation": 8 - }, - "id": 119746884 - } - }, - { - "id": 119746849, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1330121, - 51.1153374 - ], - [ - 4.1334316, - 51.1153374 - ], - [ - 4.1334316, - 51.1156349 - ], - [ - 4.1330121, - 51.1156349 - ], - [ - 4.1330121, - 51.1153374 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-15T11:11:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 10, - "modify": 10, - "delete": 0, - "area": 1.24801250000737e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 4, - "theme": "grb", - "locale": "nl", - "imagery": "osm", - "conflation": 2 - }, - "id": 119746849 - } - }, - { - "id": 119746405, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-15T10:57:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra", - "theme": "cycle_infra", - "answer": 7, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 119746405 - } - }, - { - "id": 119746404, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #bicycle_rental", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-15T10:57:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra", - "theme": "bicycle_rental", - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 119746404 - } - }, - { - "id": 119746403, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-15T10:57:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra", - "theme": "artwork", - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 119746403 - } - }, - { - "id": 119746402, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-15T10:57:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra", - "theme": "cyclofix", - "answer": 21, - "create": 5, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 7, - "change_over_5000m": 1 - }, - "id": 119746402 - } - }, - { - "id": 119746148, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1809669, - 50.7787365 - ], - [ - 3.1827166, - 50.7787365 - ], - [ - 3.1827166, - 50.7797555 - ], - [ - 3.1809669, - 50.7797555 - ], - [ - 3.1809669, - 50.7787365 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Jakka", - "uid": "2403313", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-15T10:50:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000178294429999898, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra", - "theme": "cycle_infra", - "answer": 6, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "change_within_500m": 5, - "change_within_1000m": 1 - }, - "id": 119746148 - } - }, - { - "id": 119744321, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4010892, - 51.0944163 - ], - [ - 5.5140987, - 51.0944163 - ], - [ - 5.5140987, - 51.1740445 - ], - [ - 5.4010892, - 51.1740445 - ], - [ - 5.4010892, - 51.0944163 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "StadPeer", - "uid": "15586828", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-15T09:59:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 5, - "delete": 0, - "area": 0.00899874306790018, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 7, - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119744321 - } - }, - { - "id": 119742174, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.1460955, - 48.5316256 - ], - [ - 12.1521692, - 48.5316256 - ], - [ - 12.1521692, - 48.5388961 - ], - [ - 12.1460955, - 48.5388961 - ], - [ - 12.1460955, - 48.5316256 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "schoka", - "uid": "818053", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-15T09:02:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0.0000441588358500251, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 5, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 119742174 - } - }, - { - "id": 119740781, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4010892, - 51.0862557 - ], - [ - 5.5099949, - 51.0862557 - ], - [ - 5.5099949, - 51.1740445 - ], - [ - 5.4010892, - 51.1740445 - ], - [ - 5.4010892, - 51.0862557 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "StadPeer", - "uid": "15586828", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-15T08:23:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 21, - "modify": 21, - "delete": 0, - "area": 0.00956070071615977, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 3, - "theme": "toerisme_vlaanderen", - "answer": 19, - "create": 21, - "locale": "nl", - "imagery": "osm", - "add-image": 8, - "move:node/-15": "improve_accuracy", - "move:node/6426672573": "improve_accuracy", - "move:node/9667759813": "improve_accuracy" - }, - "id": 119740781 - } - }, - { - "id": 119740653, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9878598, - 48.4983848 - ], - [ - 8.9926444, - 48.4983848 - ], - [ - 8.9926444, - 48.5036577 - ], - [ - 8.9878598, - 48.5036577 - ], - [ - 8.9878598, - 48.4983848 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-15T08:20:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6, - "modify": 10, - "delete": 0, - "area": 0.0000252287173400008, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 25, - "create": 6, - "locale": "en", - "imagery": "Mapbox", - "change_over_5000m": 6, - "change_within_25m": 14, - "change_within_50m": 6, - "change_within_100m": 5 - }, - "id": 119740653 - } - }, - { - "id": 119740127, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.6217662, - 54.8657705 - ], - [ - -1.6155304, - 54.8657705 - ], - [ - -1.6155304, - 54.8674023 - ], - [ - -1.6217662, - 54.8674023 - ], - [ - -1.6217662, - 54.8657705 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "confusedbuffalo", - "uid": "242345", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-15T08:02:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 14, - "delete": 0, - "area": 0.0000101755784399901, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "answer": 17, - "locale": "en", - "imagery": "osm" - }, - "id": 119740127 - } - }, - { - "id": 119739832, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9903854, - 48.4984013 - ], - [ - 8.9942808, - 48.4984013 - ], - [ - 8.9942808, - 48.5037445 - ], - [ - 8.9903854, - 48.5037445 - ], - [ - 8.9903854, - 48.4984013 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-15T07:53:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 29, - "delete": 0, - "area": 0.0000208139012800284, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "split": 3, - "theme": "street_lighting", - "answer": 64, - "locale": "en", - "imagery": "osm", - "change_within_25m": 34, - "change_within_50m": 29, - "change_within_100m": 4 - }, - "id": 119739832 - } - }, - { - "id": 119739647, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3058397, - 51.3464839 - ], - [ - 3.3247375, - 51.3464839 - ], - [ - 3.3247375, - 51.3589931 - ], - [ - 3.3058397, - 51.3589931 - ], - [ - 3.3058397, - 51.3464839 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-15T07:47:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2708, - "modify": 27, - "delete": 4, - "area": 0.000236396359759937, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 24, - "theme": "grb", - "delete": 4, - "import": 215, - "locale": "nl", - "imagery": "AGIV", - "conflation": 6 - }, - "id": 119739647 - } - }, - { - "id": 119735877, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.5005351, - 52.4893702 - ], - [ - 10.5393854, - 52.4893702 - ], - [ - 10.5393854, - 52.5024273 - ], - [ - 10.5005351, - 52.5024273 - ], - [ - 10.5005351, - 52.4893702 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ibanez", - "uid": "30137", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-15T05:08:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 74, - "delete": 0, - "area": 0.000507272252129903, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 102, - "locale": "de", - "imagery": "osm" - }, - "id": 119735877 - } - }, - { - "id": 119733370, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9943884, - 48.5005536 - ], - [ - 8.9947352, - 48.5005536 - ], - [ - 8.9947352, - 48.5009583 - ], - [ - 8.9943884, - 48.5009583 - ], - [ - 8.9943884, - 48.5005536 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-15T01:24:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 1.40349959998644e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 8, - "locale": "en", - "imagery": "osm", - "change_within_25m": 3, - "change_within_50m": 1, - "change_within_100m": 4 - }, - "id": 119733370 - } - }, - { - "id": 119731640, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2326154, - -39.8436585 - ], - [ - -73.2326154, - -39.8436585 - ], - [ - -73.2326154, - -39.8436585 - ], - [ - -73.2326154, - -39.8436585 - ], - [ - -73.2326154, - -39.8436585 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-14T22:44:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 119731640 - } - }, - { - "id": 119727677, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3638029, - 51.353132 - ], - [ - 3.3639186, - 51.353132 - ], - [ - 3.3639186, - 51.353348 - ], - [ - 3.3638029, - 51.353348 - ], - [ - 3.3638029, - 51.353132 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-14T20:01:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 7, - "delete": 0, - "area": 2.4991199999346e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 7, - "locale": "nl", - "imagery": "osm" - }, - "id": 119727677 - } - }, - { - "id": 119725862, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3043203, - 50.8718504 - ], - [ - 5.32114, - 50.8718504 - ], - [ - 5.32114, - 50.8806261 - ], - [ - 5.3043203, - 50.8806261 - ], - [ - 5.3043203, - 50.8718504 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-14T19:03:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 188, - "modify": 238, - "delete": 0, - "area": 0.000147604641290019, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 219, - "theme": "grb", - "import": 15, - "locale": "nl", - "imagery": "osm", - "conflation": 46 - }, - "id": 119725862 - } - }, - { - "id": 119723200, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3521372, - 50.8441952 - ], - [ - 4.3521372, - 50.8441952 - ], - [ - 4.3521372, - 50.8441952 - ], - [ - 4.3521372, - 50.8441952 - ], - [ - 4.3521372, - 50.8441952 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-14T17:43:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 5 - }, - "id": 119723200 - } - }, - { - "id": 119716905, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3034838, - 50.8671789 - ], - [ - 5.3108369, - 50.8671789 - ], - [ - 5.3108369, - 50.8735699 - ], - [ - 5.3034838, - 50.8735699 - ], - [ - 5.3034838, - 50.8671789 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-14T14:50:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 306, - "modify": 1405, - "delete": 33, - "area": 0.0000469936621000023, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 1249, - "theme": "grb", - "delete": 33, - "import": 54, - "locale": "nl", - "imagery": "osm", - "conflation": 318 - }, - "id": 119716905 - } - }, - { - "id": 119716458, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4356097, - 52.1095051 - ], - [ - 13.4356097, - 52.1095051 - ], - [ - 13.4356097, - 52.1095051 - ], - [ - 13.4356097, - 52.1095051 - ], - [ - 13.4356097, - 52.1095051 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ebihardy", - "uid": "263464", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-14T14:39:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 119716458 - } - }, - { - "id": 119713449, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2992639, - 50.8644386 - ], - [ - 5.3102231, - 50.8644386 - ], - [ - 5.3102231, - 50.8686799 - ], - [ - 5.2992639, - 50.8686799 - ], - [ - 5.2992639, - 50.8644386 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-14T13:21:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 359, - "modify": 891, - "delete": 5, - "area": 0.0000464812549599659, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 799, - "theme": "grb", - "delete": 5, - "import": 62, - "locale": "nl", - "imagery": "osm", - "conflation": 198 - }, - "id": 119713449 - } - }, - { - "id": 119713077, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4510266, - 51.1225074 - ], - [ - 5.4963183, - 51.1225074 - ], - [ - 5.4963183, - 51.1728791 - ], - [ - 5.4510266, - 51.1728791 - ], - [ - 5.4510266, - 51.1225074 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "veerle_aerts", - "uid": "15579266", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-14T13:11:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 2, - "delete": 0, - "area": 0.00228141992489002, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 10, - "create": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 119713077 - } - }, - { - "id": 119713035, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3063056, - 50.8634199 - ], - [ - 5.3124519, - 50.8634199 - ], - [ - 5.3124519, - 50.8661889 - ], - [ - 5.3063056, - 50.8661889 - ], - [ - 5.3063056, - 50.8634199 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-14T13:10:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 214, - "modify": 260, - "delete": 7, - "area": 0.0000170191047000047, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 231, - "theme": "grb", - "delete": 7, - "import": 34, - "locale": "nl", - "imagery": "osm", - "conflation": 66 - }, - "id": 119713035 - } - }, - { - "id": 119712744, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3059634, - 50.8618247 - ], - [ - 5.3119513, - 50.8618247 - ], - [ - 5.3119513, - 50.8654983 - ], - [ - 5.3059634, - 50.8654983 - ], - [ - 5.3059634, - 50.8618247 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-14T13:02:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 172, - "modify": 312, - "delete": 7, - "area": 0.0000219971494399913, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 281, - "theme": "grb", - "delete": 7, - "import": 28, - "locale": "nl", - "imagery": "osm", - "conflation": 62 - }, - "id": 119712744 - } - }, - { - "id": 119710379, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6275247, - 51.0003281 - ], - [ - 3.6275247, - 51.0003281 - ], - [ - 3.6275247, - 51.0003281 - ], - [ - 3.6275247, - 51.0003281 - ], - [ - 3.6275247, - 51.0003281 - ] - ] - ] - }, - "properties": { - "check_user": "L'imaginaire", - "reasons": [], - "tags": [], - "features": [], - "user": "donarreiskoffer", - "uid": "67294", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-14T12:03:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": false, - "checked": true, - "check_date": "2022-04-16T06:43:00.544578Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 119710379 - } - }, - { - "id": 119701067, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2431303, - 51.2060932 - ], - [ - 3.2431303, - 51.2060932 - ], - [ - 3.2431303, - 51.2060932 - ], - [ - 3.2431303, - 51.2060932 - ], - [ - 3.2431303, - 51.2060932 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-14T08:35:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/climbing.html", - "theme": "climbing", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_5000m": 1 - }, - "id": 119701067 - } - }, - { - "id": 119701000, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2652655, - 53.2099246 - ], - [ - 6.2652655, - 53.2099246 - ], - [ - 6.2652655, - 53.2099246 - ], - [ - 6.2652655, - 53.2099246 - ], - [ - 6.2652655, - 53.2099246 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #transit", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-14T08:34:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/transit/transit.html", - "theme": "transit", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 119701000 - } - }, - { - "id": 119698240, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1397271, - 50.9792405 - ], - [ - 5.188693, - 50.9792405 - ], - [ - 5.188693, - 51.0572591 - ], - [ - 5.1397271, - 51.0572591 - ], - [ - 5.1397271, - 50.9792405 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-14T07:33:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 1, - "delete": 0, - "area": 0.00382025096573999, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 4, - "theme": "toerisme_vlaanderen", - "answer": 2, - "import": 4, - "locale": "nl", - "imagery": "AGIV10cm", - "move:node/9665195509": "improve_accuracy", - "move:node/9665224256": "improve_accuracy", - "move:node/9665248255": "improve_accuracy", - "move:node/9665251660": "improve_accuracy", - "import:node/9665195509": "source: https://osm.org/note/3044132", - "import:node/9665224256": "source: https://osm.org/note/3044686", - "import:node/9665248255": "source: https://osm.org/note/3044520", - "import:node/9665251660": "source: https://osm.org/note/3044542" - }, - "id": 119698240 - } - }, - { - "id": 119698098, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1585732, - 51.0556807 - ], - [ - 5.1614549, - 51.0556807 - ], - [ - 5.1614549, - 51.0564507 - ], - [ - 5.1585732, - 51.0564507 - ], - [ - 5.1585732, - 51.0556807 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-14T07:30:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 38, - "delete": 0, - "area": 0.0000022189089999874, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 31, - "theme": "grb", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "conflation": 14 - }, - "id": 119698098 - } - }, - { - "id": 119695852, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1571814, - 51.055433 - ], - [ - 5.165641, - 51.055433 - ], - [ - 5.165641, - 51.0588525 - ], - [ - 5.1571814, - 51.0588525 - ], - [ - 5.1571814, - 51.055433 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-14T06:28:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 2, - "delete": 0, - "area": 0.0000289276021999978, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 4, - "theme": "toerisme_vlaanderen", - "import": 4, - "locale": "nl", - "imagery": "AGIV", - "move:node/9665041837": "improve_accuracy", - "move:node/9665075703": "improve_accuracy", - "move:node/9665082494": "improve_accuracy", - "move:node/9665090024": "improve_accuracy", - "import:node/9665041837": "source: https://osm.org/note/3044480", - "import:node/9665075703": "source: https://osm.org/note/3044354", - "import:node/9665082494": "source: https://osm.org/note/3044514", - "import:node/9665090024": "source: https://osm.org/note/3044299" - }, - "id": 119695852 - } - }, - { - "id": 119692149, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2514375, - -39.8132225 - ], - [ - -73.2286578, - -39.8132225 - ], - [ - -73.2286578, - -39.8051653 - ], - [ - -73.2514375, - -39.8051653 - ], - [ - -73.2514375, - -39.8132225 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-14T03:51:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.000183540598840081, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "osm", - "add-image": 5 - }, - "id": 119692149 - } - }, - { - "id": 119689652, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2534518, - -39.8054808 - ], - [ - -73.2530185, - -39.8054808 - ], - [ - -73.2530185, - -39.8050852 - ], - [ - -73.2534518, - -39.8050852 - ], - [ - -73.2534518, - -39.8054808 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-14T00:31:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 7, - "delete": 0, - "area": 1.71413479997846e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "en", - "imagery": "HDM_HOT", - "add-image": 6, - "change_within_5000m": 2 - }, - "id": 119689652 - } - }, - { - "id": 119687669, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.9282134, - 42.4327794 - ], - [ - 1.9282134, - 42.4327794 - ], - [ - 1.9282134, - 42.4327794 - ], - [ - 1.9282134, - 42.4327794 - ], - [ - 1.9282134, - 42.4327794 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "hortacalaf", - "uid": "14495457", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-13T22:25:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 16, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", - "answer": 20, - "locale": "ca", - "imagery": "osm" - }, - "id": 119687669 - } - }, - { - "id": 119686715, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7188831, - 50.8878106 - ], - [ - 4.7222936, - 50.8878106 - ], - [ - 4.7222936, - 50.8898148 - ], - [ - 4.7188831, - 50.8898148 - ], - [ - 4.7188831, - 50.8878106 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-13T21:39:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 354, - "modify": 32, - "delete": 0, - "area": 0.00000683532410000651, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 24, - "theme": "grb", - "answer": 2, - "import": 58, - "locale": "nl", - "imagery": "osm", - "conflation": 12 - }, - "id": 119686715 - } - }, - { - "id": 119686659, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4493368, - 51.041663 - ], - [ - 3.4529807, - 51.041663 - ], - [ - 3.4529807, - 51.0421264 - ], - [ - 3.4493368, - 51.0421264 - ], - [ - 3.4493368, - 51.041663 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-13T21:36:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 9, - "delete": 0, - "area": 0.00000168858326000351, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 7, - "locale": "nl", - "imagery": "osm", - "add-image": 4 - }, - "id": 119686659 - } - }, - { - "id": 119685551, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2138617, - 51.1987922 - ], - [ - 3.2138617, - 51.1987922 - ], - [ - 3.2138617, - 51.1987922 - ], - [ - 3.2138617, - 51.1987922 - ], - [ - 3.2138617, - 51.1987922 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-13T20:50:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "answer": 1, - "locale": "nl", - "imagery": "AGIV10cm", - "change_within_5000m": 1 - }, - "id": 119685551 - } - }, - { - "id": 119684675, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4081112, - 52.5317671 - ], - [ - 13.4083671, - 52.5317671 - ], - [ - 13.4083671, - 52.5317846 - ], - [ - 13.4081112, - 52.5317846 - ], - [ - 13.4081112, - 52.5317671 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "kjon", - "uid": "44217", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-13T20:22:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 4.47824999958721e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 119684675 - } - }, - { - "id": 119682710, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2374124, - -39.8446026 - ], - [ - -73.2351373, - -39.8446026 - ], - [ - -73.2351373, - -39.8423576 - ], - [ - -73.2374124, - -39.8423576 - ], - [ - -73.2374124, - -39.8446026 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-13T19:22:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 12, - "delete": 0, - "area": 0.00000510759949998542, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "HDM_HOT", - "add-image": 12 - }, - "id": 119682710 - } - }, - { - "id": 119681275, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.213625, - 51.1982355 - ], - [ - 3.213625, - 51.1982355 - ], - [ - 3.213625, - 51.1982355 - ], - [ - 3.213625, - 51.1982355 - ], - [ - 3.213625, - 51.1982355 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-13T18:39:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 119681275 - } - }, - { - "id": 119681267, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-13T18:39:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "locale": "nl", - "imagery": "AGIV", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 119681267 - } - }, - { - "id": 119681252, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-13T18:38:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "AGIV", - "change_within_25m": 1 - }, - "id": 119681252 - } - }, - { - "id": 119681246, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-13T18:38:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "AGIV", - "change_within_25m": 1 - }, - "id": 119681246 - } - }, - { - "id": 119681157, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2137102, - 51.1983401 - ], - [ - 3.2140267, - 51.1983401 - ], - [ - 3.2140267, - 51.1991679 - ], - [ - 3.2137102, - 51.1991679 - ], - [ - 3.2137102, - 51.1983401 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-13T18:36:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 2, - "delete": 0, - "area": 2.61998699998644e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 6, - "create": 2, - "locale": "nl", - "imagery": "AGIV", - "add-image": 2, - "change_over_5000m": 2, - "change_within_25m": 8 - }, - "id": 119681157 - } - }, - { - "id": 119681100, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2138617, - 51.1987922 - ], - [ - 3.2139395, - 51.1987922 - ], - [ - 3.2139395, - 51.1989519 - ], - [ - 3.2138617, - 51.1989519 - ], - [ - 3.2138617, - 51.1987922 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-13T18:34:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 3, - "delete": 0, - "area": 1.24246599998292e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "answer": 7, - "create": 2, - "locale": "nl", - "imagery": "AGIV", - "add-image": 2, - "change_over_5000m": 2, - "change_within_25m": 7, - "change_within_50m": 2 - }, - "id": 119681100 - } - }, - { - "id": 119681029, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2131751, - 51.1989477 - ], - [ - 3.2131751, - 51.1989477 - ], - [ - 3.2131751, - 51.1989477 - ], - [ - 3.2131751, - 51.1989477 - ], - [ - 3.2131751, - 51.1989477 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #fitness_station", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-13T18:32:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "fitness_station", - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 119681029 - } - }, - { - "id": 119680703, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3044204, - 50.8639637 - ], - [ - 5.308018, - 50.8639637 - ], - [ - 5.308018, - 50.8651211 - ], - [ - 5.3044204, - 50.8651211 - ], - [ - 5.3044204, - 50.8639637 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-13T18:23:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6, - "modify": 29, - "delete": 0, - "area": 0.00000416386224001387, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 26, - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm", - "conflation": 6 - }, - "id": 119680703 - } - }, - { - "id": 119680635, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3046151, - 50.8650384 - ], - [ - 5.306463, - 50.8650384 - ], - [ - 5.306463, - 50.8655213 - ], - [ - 5.3046151, - 50.8655213 - ], - [ - 5.3046151, - 50.8650384 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-13T18:21:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 98, - "delete": 1, - "area": 8.92350909989447e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 87, - "theme": "grb", - "delete": 1, - "locale": "nl", - "imagery": "osm", - "conflation": 22 - }, - "id": 119680635 - } - }, - { - "id": 119680628, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3068613, - 50.8652597 - ], - [ - 5.3071175, - 50.8652597 - ], - [ - 5.3071175, - 50.8654331 - ], - [ - 5.3068613, - 50.8654331 - ], - [ - 5.3068613, - 50.8652597 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-13T18:21:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 7, - "delete": 0, - "area": 4.44250799986601e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 6, - "theme": "grb", - "locale": "nl", - "imagery": "osm", - "conflation": 2 - }, - "id": 119680628 - } - }, - { - "id": 119680626, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-13T18:21:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119680626 - } - }, - { - "id": 119680614, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3071611, - 50.8650228 - ], - [ - 5.3074475, - 50.8650228 - ], - [ - 5.3074475, - 50.8653079 - ], - [ - 5.3071611, - 50.8653079 - ], - [ - 5.3071611, - 50.8650228 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-13T18:20:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 5, - "modify": 9, - "delete": 0, - "area": 8.16526399998573e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 8, - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm", - "conflation": 2 - }, - "id": 119680614 - } - }, - { - "id": 119680611, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3069779, - 50.8648755 - ], - [ - 5.307284, - 50.8648755 - ], - [ - 5.307284, - 50.8650614 - ], - [ - 5.3069779, - 50.8650614 - ], - [ - 5.3069779, - 50.8648755 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-13T18:20:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 9, - "delete": 0, - "area": 5.69039900016974e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 8, - "theme": "grb", - "locale": "nl", - "imagery": "osm", - "conflation": 2 - }, - "id": 119680611 - } - }, - { - "id": 119680590, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3056357, - 50.8642664 - ], - [ - 5.3071654, - 50.8642664 - ], - [ - 5.3071654, - 50.8651317 - ], - [ - 5.3056357, - 50.8651317 - ], - [ - 5.3056357, - 50.8642664 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-13T18:19:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 17, - "modify": 48, - "delete": 0, - "area": 0.00000132364941000134, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 44, - "theme": "grb", - "import": 3, - "locale": "nl", - "imagery": "osm", - "conflation": 8 - }, - "id": 119680590 - } - }, - { - "id": 119680587, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-13T18:19:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 119680587 - } - }, - { - "id": 119680580, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-13T18:19:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 3, - "locale": "nl", - "imagery": "osm" - }, - "id": 119680580 - } - }, - { - "id": 119680546, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.304951, - 50.8640705 - ], - [ - 5.3077704, - 50.8640705 - ], - [ - 5.3077704, - 50.8649514 - ], - [ - 5.304951, - 50.8649514 - ], - [ - 5.304951, - 50.8640705 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-13T18:18:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 24, - "modify": 19, - "delete": 0, - "area": 0.00000248360946001578, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 16, - "theme": "grb", - "import": 4, - "locale": "nl", - "imagery": "osm", - "conflation": 6 - }, - "id": 119680546 - } - }, - { - "id": 119680423, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2128476, - 51.2097787 - ], - [ - 3.2128536, - 51.2097787 - ], - [ - 3.2128536, - 51.209847 - ], - [ - 3.2128476, - 51.209847 - ], - [ - 3.2128476, - 51.2097787 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-13T18:13:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 4.09800000010734e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/trees.html", - "theme": "trees", - "answer": 6, - "locale": "nl", - "imagery": "AGIV", - "add-image": 2, - "change_within_25m": 8 - }, - "id": 119680423 - } - }, - { - "id": 119680364, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3037759, - 50.8625789 - ], - [ - 5.3075007, - 50.8625789 - ], - [ - 5.3075007, - 50.8649189 - ], - [ - 5.3037759, - 50.8649189 - ], - [ - 5.3037759, - 50.8625789 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-13T18:12:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 56, - "modify": 331, - "delete": 0, - "area": 0.00000871603199998886, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 295, - "theme": "grb", - "import": 7, - "locale": "nl", - "imagery": "osm", - "conflation": 72 - }, - "id": 119680364 - } - }, - { - "id": 119672536, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.479868, - 44.907715 - ], - [ - -0.472055, - 44.907715 - ], - [ - -0.472055, - 44.9180105 - ], - [ - -0.479868, - 44.9180105 - ], - [ - -0.479868, - 44.907715 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-13T14:55:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6, - "modify": 16, - "delete": 0, - "area": 0.0000804387414999846, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 30, - "create": 12, - "locale": "fr", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 13, - "change_within_50m": 20, - "change_within_100m": 5 - }, - "id": 119672536 - } - }, - { - "id": 119670473, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4497523, - 51.0419544 - ], - [ - 3.4500179, - 51.0419544 - ], - [ - 3.4500179, - 51.0421264 - ], - [ - 3.4497523, - 51.0421264 - ], - [ - 3.4497523, - 51.0419544 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-13T14:12:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 4.56831999997954e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 2 - }, - "id": 119670473 - } - }, - { - "id": 119670301, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 103.8437628, - 1.304723 - ], - [ - 103.8620774, - 1.304723 - ], - [ - 103.8620774, - 1.3204058 - ], - [ - 103.8437628, - 1.3204058 - ], - [ - 103.8437628, - 1.304723 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "MapTheWalk", - "uid": "10499594", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-13T14:07:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.000287224208880168, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/climbing.html", - "theme": "climbing", - "answer": 7, - "locale": "en", - "imagery": "osm" - }, - "id": 119670301 - } - }, - { - "id": 119668956, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2961812, - 50.8551761 - ], - [ - 5.3060568, - 50.8551761 - ], - [ - 5.3060568, - 50.862735 - ], - [ - 5.2961812, - 50.862735 - ], - [ - 5.2961812, - 50.8551761 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-13T13:32:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 206, - "modify": 497, - "delete": 2, - "area": 0.0000746486728399936, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 442, - "theme": "grb", - "delete": 2, - "import": 38, - "locale": "nl", - "imagery": "osm", - "conflation": 114 - }, - "id": 119668956 - } - }, - { - "id": 119666785, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0722076, - 50.9754097 - ], - [ - 3.1258464, - 50.9754097 - ], - [ - 3.1258464, - 50.9974525 - ], - [ - 3.0722076, - 50.9974525 - ], - [ - 3.0722076, - 50.9754097 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Toerisme Hooglede", - "uid": "15568930", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-13T12:39:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 7, - "modify": 11, - "delete": 0, - "area": 0.00118234934064006, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 26, - "create": 7, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 119666785 - } - }, - { - "id": 119666496, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.081708, - 50.9784968 - ], - [ - 3.1264687, - 50.9784968 - ], - [ - 3.1264687, - 50.9974091 - ], - [ - 3.081708, - 50.9974091 - ], - [ - 3.081708, - 50.9784968 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Toerisme Hooglede", - "uid": "15568930", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-13T12:33:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 0, - "delete": 1, - "area": 0.000846527786609857, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 3, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "deletion": 1, - "deletion:node/9663219838": "testing point" - }, - "id": 119666496 - } - }, - { - "id": 119665390, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4488676, - 51.0398619 - ], - [ - 3.4488676, - 51.0398619 - ], - [ - 3.4488676, - 51.0398619 - ], - [ - 3.4488676, - 51.0398619 - ], - [ - 3.4488676, - 51.0398619 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-13T12:09:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/nature.html", - "theme": "nature", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 119665390 - } - }, - { - "id": 119664919, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3419266, - 49.9889193 - ], - [ - 4.3419266, - 49.9889193 - ], - [ - 4.3419266, - 49.9889193 - ], - [ - 4.3419266, - 49.9889193 - ], - [ - 4.3419266, - 49.9889193 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-13T11:57:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119664919 - } - }, - { - "id": 119657968, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5889171, - 53.2330257 - ], - [ - 6.6003098, - 53.2330257 - ], - [ - 6.6003098, - 53.2355562 - ], - [ - 6.5889171, - 53.2355562 - ], - [ - 6.5889171, - 53.2330257 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-13T09:23:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 17, - "delete": 0, - "area": 0.0000288292273499873, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 24, - "locale": "nl", - "imagery": "osm", - "change_within_5000m": 24 - }, - "id": 119657968 - } - }, - { - "id": 119657572, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.50992, - 44.856376 - ], - [ - -0.508942, - 44.856376 - ], - [ - -0.508942, - 44.856946 - ], - [ - -0.50992, - 44.856946 - ], - [ - -0.50992, - 44.856376 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-13T09:14:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 5.57460000003237e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 3, - "create": 2, - "locale": "fr", - "imagery": "osm", - "change_within_50m": 2, - "change_within_100m": 3 - }, - "id": 119657572 - } - }, - { - "id": 119657286, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.1768179, - 38.9686771 - ], - [ - -0.1759862, - 38.9686771 - ], - [ - -0.1759862, - 38.9690572 - ], - [ - -0.1768179, - 38.9690572 - ], - [ - -0.1768179, - 38.9686771 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-13T09:08:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 3.16129170000823e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/personal.html", - "theme": "personal", - "create": 2, - "locale": "ca", - "imagery": "osm", - "change_over_5000m": 2 - }, - "id": 119657286 - } - }, - { - "id": 119657105, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5295709, - 53.2306949 - ], - [ - 6.5720641, - 53.2306949 - ], - [ - 6.5720641, - 53.2458111 - ], - [ - 6.5295709, - 53.2458111 - ], - [ - 6.5295709, - 53.2306949 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-13T09:04:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 43, - "delete": 0, - "area": 0.000642335709839756, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 59, - "locale": "nl", - "imagery": "osm", - "change_within_50m": 3, - "change_within_100m": 1, - "change_within_500m": 8, - "change_within_1000m": 28, - "change_within_5000m": 19 - }, - "id": 119657105 - } - }, - { - "id": 119655084, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0420389, - 50.9380097 - ], - [ - 4.0420389, - 50.9380097 - ], - [ - 4.0420389, - 50.9380097 - ], - [ - 4.0420389, - 50.9380097 - ], - [ - 4.0420389, - 50.9380097 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Visit Leuven", - "uid": "15566671", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-13T08:20:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119655084 - } - }, - { - "id": 119652140, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.2343822, - 46.0637091 - ], - [ - 13.2355775, - 46.0637091 - ], - [ - 13.2355775, - 46.0649574 - ], - [ - 13.2343822, - 46.0649574 - ], - [ - 13.2343822, - 46.0637091 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Roccio", - "uid": "12443591", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-13T07:14:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.00000149209298999928, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 119652140 - } - }, - { - "id": 119651515, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0246982, - 51.0450219 - ], - [ - 5.0363418, - 51.0450219 - ], - [ - 5.0363418, - 51.0534375 - ], - [ - 5.0246982, - 51.0534375 - ], - [ - 5.0246982, - 51.0450219 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-13T06:59:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 25, - "modify": 65, - "delete": 8, - "area": 0.0000979878801599935, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 56, - "theme": "grb", - "answer": 2, - "delete": 8, - "import": 5, - "locale": "nl", - "imagery": "osm", - "conflation": 14 - }, - "id": 119651515 - } - }, - { - "id": 119650401, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9939917, - 48.4995029 - ], - [ - 8.9965179, - 48.4995029 - ], - [ - 8.9965179, - 48.5007234 - ], - [ - 8.9939917, - 48.5007234 - ], - [ - 8.9939917, - 48.4995029 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-13T06:33:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 22, - "delete": 0, - "area": 0.00000308322709998801, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 35, - "locale": "en", - "imagery": "osm", - "change_within_25m": 13, - "change_within_50m": 22 - }, - "id": 119650401 - } - }, - { - "id": 119649554, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0359392, - 51.0521605 - ], - [ - 5.0814248, - 51.0521605 - ], - [ - 5.0814248, - 51.0763955 - ], - [ - 5.0359392, - 51.0763955 - ], - [ - 5.0359392, - 51.0521605 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-13T06:08:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 3, - "delete": 0, - "area": 0.00110234351599988, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 3, - "theme": "toerisme_vlaanderen", - "import": 3, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 4, - "move:node/9662296771": "improve_accuracy", - "move:node/9662310336": "improve_accuracy", - "move:node/9662328457": "improve_accuracy", - "import:node/9662296771": "source: https://osm.org/note/3044361", - "import:node/9662310336": "source: https://osm.org/note/3044308", - "import:node/9662328457": "source: https://osm.org/note/3044422" - }, - "id": 119649554 - } - }, - { - "id": 119648939, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9972418, - 51.1258921 - ], - [ - 5.0030687, - 51.1258921 - ], - [ - 5.0030687, - 51.1287996 - ], - [ - 4.9972418, - 51.1287996 - ], - [ - 4.9972418, - 51.1258921 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-13T05:48:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 45, - "modify": 94, - "delete": 0, - "area": 0.0000169417117499945, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 83, - "theme": "grb", - "import": 3, - "locale": "nl", - "imagery": "osm", - "conflation": 22, - "change_within_500m": 3 - }, - "id": 119648939 - } - }, - { - "id": 119645881, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2373757, - -39.8445512 - ], - [ - -73.2327607, - -39.8445512 - ], - [ - -73.2327607, - -39.8431722 - ], - [ - -73.2373757, - -39.8431722 - ], - [ - -73.2373757, - -39.8445512 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-13T03:24:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000636408500000167, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "HDM_HOT", - "add-image": 3 - }, - "id": 119645881 - } - }, - { - "id": 119641675, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.23689, - -39.8441981 - ], - [ - -73.23689, - -39.8441981 - ], - [ - -73.23689, - -39.8441981 - ], - [ - -73.23689, - -39.8441981 - ], - [ - -73.23689, - -39.8441981 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-12T22:53:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "HDM_HOT", - "add-image": 1 - }, - "id": 119641675 - } - }, - { - "id": 119639476, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2418559, - 51.2063532 - ], - [ - 3.2419009, - 51.2063532 - ], - [ - 3.2419009, - 51.2064893 - ], - [ - 3.2418559, - 51.2064893 - ], - [ - 3.2418559, - 51.2063532 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #fitness_station", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-12T21:08:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 6.1244999999587e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "fitness_station", - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 119639476 - } - }, - { - "id": 119635939, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2949911, - 50.8580471 - ], - [ - 5.2973232, - 50.8580471 - ], - [ - 5.2973232, - 50.8604908 - ], - [ - 5.2949911, - 50.8604908 - ], - [ - 5.2949911, - 50.8580471 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-12T19:16:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 109, - "modify": 168, - "delete": 0, - "area": 0.0000056989527700021, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 150, - "theme": "grb", - "import": 16, - "locale": "nl", - "imagery": "osm", - "conflation": 36 - }, - "id": 119635939 - } - }, - { - "id": 119632692, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1912963, - 51.180789 - ], - [ - 3.2099564, - 51.180789 - ], - [ - 3.2099564, - 51.188205 - ], - [ - 3.1912963, - 51.188205 - ], - [ - 3.1912963, - 51.180789 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-12T17:53:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 8, - "delete": 0, - "area": 0.000138383301600117, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 9, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "move:node/8191707622": "improve_accuracy" - }, - "id": 119632692 - } - }, - { - "id": 119632095, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.016935, - 38.8498119 - ], - [ - 0.0194242, - 38.8498119 - ], - [ - 0.0194242, - 38.8520633 - ], - [ - 0.016935, - 38.8520633 - ], - [ - 0.016935, - 38.8498119 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-12T17:38:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 4, - "delete": 0, - "area": 0.00000560418487999672, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 4, - "create": 4, - "locale": "en", - "imagery": "PNOA-Spain", - "add-image": 3, - "change_over_5000m": 4, - "change_within_25m": 7 - }, - "id": 119632095 - } - }, - { - "id": 119629379, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9949248, - 51.0863259 - ], - [ - 3.9949248, - 51.0863259 - ], - [ - 3.9949248, - 51.0863259 - ], - [ - 3.9949248, - 51.0863259 - ], - [ - 3.9949248, - 51.0863259 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Baloe$", - "uid": "15543890", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-12T16:27:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 5, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 5 - }, - "id": 119629379 - } - }, - { - "id": 119628266, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2438797, - 51.208647 - ], - [ - 3.2445878, - 51.208647 - ], - [ - 3.2445878, - 51.2086865 - ], - [ - 3.2438797, - 51.2086865 - ], - [ - 3.2438797, - 51.208647 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-12T15:59:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 4, - "delete": 0, - "area": 2.796994999983e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 7, - "create": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 2, - "change_within_25m": 9 - }, - "id": 119628266 - } - }, - { - "id": 119625581, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0214762, - 50.9421947 - ], - [ - 4.0214762, - 50.9421947 - ], - [ - 4.0214762, - 50.9421947 - ], - [ - 4.0214762, - 50.9421947 - ], - [ - 4.0214762, - 50.9421947 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-12T14:55:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix", - "theme": "cyclofix", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119625581 - } - }, - { - "id": 119623470, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2941177, - 50.8597953 - ], - [ - 5.2968394, - 50.8597953 - ], - [ - 5.2968394, - 50.8611058 - ], - [ - 5.2941177, - 50.8611058 - ], - [ - 5.2941177, - 50.8597953 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-12T13:58:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 95, - "modify": 75, - "delete": 1, - "area": 0.00000356678784998662, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 68, - "theme": "grb", - "delete": 1, - "import": 17, - "locale": "nl", - "imagery": "osm", - "conflation": 14 - }, - "id": 119623470 - } - }, - { - "id": 119622293, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.5846407, - 54.7770999 - ], - [ - -1.5841463, - 54.7770999 - ], - [ - -1.5841463, - 54.7775299 - ], - [ - -1.5846407, - 54.7775299 - ], - [ - -1.5846407, - 54.7770999 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "phodgkin", - "uid": "7666952", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-12T13:25:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 2.12591999997224e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/personal.html", - "theme": "personal", - "answer": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 119622293 - } - }, - { - "id": 119621045, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.1385235, - 48.1322796 - ], - [ - 15.1390062, - 48.1322796 - ], - [ - 15.1390062, - 48.1326004 - ], - [ - 15.1385235, - 48.1326004 - ], - [ - 15.1385235, - 48.1322796 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "alxGS", - "uid": "13367754", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-12T12:49:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 1.54850160002398e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 4, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 119621045 - } - }, - { - "id": 119619153, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.938048, - 51.2365149 - ], - [ - 4.9395643, - 51.2365149 - ], - [ - 4.9395643, - 51.2371177 - ], - [ - 4.938048, - 51.2371177 - ], - [ - 4.938048, - 51.2365149 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 42, - "name": "Invalid tag modification" - } - ], - "tags": [], - "features": [ - { - "url": "way-513645075", - "osm_id": 513645075, - "reasons": [ - 42 - ], - "version": 3, - "primary_tags": { - "building": "yes" - } - } - ], - "user": "Martijn Van Loon", - "uid": "6058806", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 1, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-12T12:04:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 9.14025639993373e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "soft-delete": 1, - "soft-delete:way/513645075": "disused" - }, - "id": 119619153 - } - }, - { - "id": 119617103, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9948695, - 48.5008547 - ], - [ - 8.9967567, - 48.5008547 - ], - [ - 8.9967567, - 48.5014061 - ], - [ - 8.9948695, - 48.5014061 - ], - [ - 8.9948695, - 48.5008547 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-12T11:14:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 9, - "delete": 0, - "area": 0.00000104060207999858, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 19, - "create": 3, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 3, - "change_within_25m": 17, - "change_within_50m": 2 - }, - "id": 119617103 - } - }, - { - "id": 119617024, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9965305, - 48.5015504 - ], - [ - 8.9965305, - 48.5015504 - ], - [ - 8.9965305, - 48.5015504 - ], - [ - 8.9965305, - 48.5015504 - ], - [ - 8.9965305, - 48.5015504 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-12T11:12:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 2, - "locale": "en", - "imagery": "osm", - "change_within_25m": 2 - }, - "id": 119617024 - } - }, - { - "id": 119616745, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9975176, - 48.5017081 - ], - [ - 8.9975733, - 48.5017081 - ], - [ - 8.9975733, - 48.5017125 - ], - [ - 8.9975176, - 48.5017125 - ], - [ - 8.9975176, - 48.5017081 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-12T11:06:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 2.45079999701234e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 2, - "locale": "en", - "imagery": "osm", - "change_within_25m": 2 - }, - "id": 119616745 - } - }, - { - "id": 119616397, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9944631, - 48.5005823 - ], - [ - 8.9962732, - 48.5005823 - ], - [ - 8.9962732, - 48.5017461 - ], - [ - 8.9944631, - 48.5017461 - ], - [ - 8.9944631, - 48.5005823 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-12T10:58:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 11, - "delete": 0, - "area": 0.000002106594379999, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "split": 2, - "theme": "street_lighting", - "answer": 20, - "locale": "en", - "imagery": "osm", - "change_within_25m": 21, - "change_within_50m": 1 - }, - "id": 119616397 - } - }, - { - "id": 119615302, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.4447126, - 52.382584 - ], - [ - 6.4447126, - 52.382584 - ], - [ - 6.4447126, - 52.382584 - ], - [ - 6.4447126, - 52.382584 - ], - [ - 6.4447126, - 52.382584 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Rembrandt De Vlaeminck", - "uid": "504998", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-12T10:33:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 119615302 - } - }, - { - "id": 119610049, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0041963, - 51.1238853 - ], - [ - 5.012899, - 51.1238853 - ], - [ - 5.012899, - 51.1279007 - ], - [ - 5.0041963, - 51.1279007 - ], - [ - 5.0041963, - 51.1238853 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-12T08:28:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 137, - "modify": 471, - "delete": 5, - "area": 0.0000349448215799999, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 420, - "theme": "grb", - "answer": 1, - "delete": 5, - "import": 20, - "locale": "nl", - "imagery": "AGIV", - "conflation": 106, - "change_within_500m": 20, - "change_within_1000m": 1 - }, - "id": 119610049 - } - }, - { - "id": 119606815, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4645879, - 50.9828049 - ], - [ - 4.4645879, - 50.9828049 - ], - [ - 4.4645879, - 50.9828049 - ], - [ - 4.4645879, - 50.9828049 - ], - [ - 4.4645879, - 50.9828049 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9660103709", - "name": "Op Wielekes Zemst", - "osm_id": 9660103709, - "reasons": [ - 43 - ], - "version": 6, - "primary_tags": { - "amenity": "bicycle_library" - } - } - ], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-12T06:58:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 5, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 119606815 - } - }, - { - "id": 119605449, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0962408, - 51.0145942 - ], - [ - 4.190102, - 51.0145942 - ], - [ - 4.190102, - 51.058891 - ], - [ - 4.0962408, - 51.058891 - ], - [ - 4.0962408, - 51.0145942 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "groenbeleid Dendermonde", - "uid": "15550372", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-12T06:21:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 16, - "modify": 9, - "delete": 0, - "area": 0.00415775080416048, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 28, - "create": 16, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 119605449 - } - }, - { - "id": 119603423, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 78.7290871, - 10.8275199 - ], - [ - 80.2664432, - 10.8275199 - ], - [ - 80.2664432, - 13.1173356 - ], - [ - 78.7290871, - 13.1173356 - ], - [ - 78.7290871, - 10.8275199 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-12T05:05:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 40, - "delete": 0, - "area": 3.52026213427076, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 45, - "locale": "en", - "imagery": "osm" - }, - "id": 119603423 - } - }, - { - "id": 119601559, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.9663542, - 40.5809208 - ], - [ - -73.9661186, - 40.5809208 - ], - [ - -73.9661186, - 40.5810496 - ], - [ - -73.9663542, - 40.5810496 - ], - [ - -73.9663542, - 40.5809208 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "MxxCon", - "uid": "384667", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-12T03:32:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 3.03452799992501e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_500m": 1 - }, - "id": 119601559 - } - }, - { - "id": 119598743, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8941363, - 50.22007 - ], - [ - 4.8947079, - 50.22007 - ], - [ - 4.8947079, - 50.2204804 - ], - [ - 4.8941363, - 50.2204804 - ], - [ - 4.8941363, - 50.22007 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-11T23:43:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 36, - "modify": 9, - "delete": 0, - "area": 2.34584639999803e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 8, - "theme": "grb", - "import": 3, - "locale": "nl", - "imagery": "osm", - "conflation": 2 - }, - "id": 119598743 - } - }, - { - "id": 119594536, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2926143, - 50.8612428 - ], - [ - 5.296003, - 50.8612428 - ], - [ - 5.296003, - 50.8638493 - ], - [ - 5.2926143, - 50.8638493 - ], - [ - 5.2926143, - 50.8612428 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-11T20:21:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 86, - "modify": 244, - "delete": 0, - "area": 0.0000088326465499947, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 217, - "theme": "grb", - "import": 13, - "locale": "nl", - "imagery": "osm", - "conflation": 62 - }, - "id": 119594536 - } - }, - { - "id": 119593806, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9240511, - 51.22586 - ], - [ - 2.9240511, - 51.22586 - ], - [ - 2.9240511, - 51.22586 - ], - [ - 2.9240511, - 51.22586 - ], - [ - 2.9240511, - 51.22586 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Hopperpop", - "uid": "3664604", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #fritures", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-11T19:56:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/fritures.html", - "theme": "fritures", - "answer": 3, - "create": 1, - "locale": "zh_Hans", - "imagery": "AGIVFlandersGRB" - }, - "id": 119593806 - } - }, - { - "id": 119593122, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.385181, - 51.1657828 - ], - [ - 4.385181, - 51.1657828 - ], - [ - 4.385181, - 51.1657828 - ], - [ - 4.385181, - 51.1657828 - ], - [ - 4.385181, - 51.1657828 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Hopperpop", - "uid": "3664604", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-11T19:33:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", - "answer": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 119593122 - } - }, - { - "id": 119591686, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3808729, - 50.8777221 - ], - [ - 4.3808729, - 50.8777221 - ], - [ - 4.3808729, - 50.8777221 - ], - [ - 4.3808729, - 50.8777221 - ], - [ - 4.3808729, - 50.8777221 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-11T18:44:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 119591686 - } - }, - { - "id": 119591205, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.284521, - 50.8652303 - ], - [ - 5.2921397, - 50.8652303 - ], - [ - 5.2921397, - 50.8714168 - ], - [ - 5.284521, - 50.8714168 - ], - [ - 5.284521, - 50.8652303 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-11T18:28:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 27, - "modify": 5, - "delete": 0, - "area": 0.0000471330875499877, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 4, - "theme": "grb", - "import": 5, - "locale": "nl", - "imagery": "osm", - "conflation": 2 - }, - "id": 119591205 - } - }, - { - "id": 119590906, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7456643, - 51.0366997 - ], - [ - 3.7456643, - 51.0366997 - ], - [ - 3.7456643, - 51.0366997 - ], - [ - 3.7456643, - 51.0366997 - ], - [ - 3.7456643, - 51.0366997 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "lebeno", - "uid": "1710114", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-11T18:19:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119590906 - } - }, - { - "id": 119588669, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7113601, - 51.1296495 - ], - [ - 4.7584182, - 51.1296495 - ], - [ - 4.7584182, - 51.1366606 - ], - [ - 4.7113601, - 51.1366606 - ], - [ - 4.7113601, - 51.1296495 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Salambre", - "uid": "15272429", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-11T17:14:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 0, - "delete": 0, - "area": 0.000329929044909987, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 5, - "create": 5, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 5, - "change_within_25m": 2, - "change_within_1000m": 2, - "change_within_5000m": 1 - }, - "id": 119588669 - } - }, - { - "id": 119586056, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1138699, - 38.83279 - ], - [ - 0.1162782, - 38.83279 - ], - [ - 0.1162782, - 38.8344342 - ], - [ - 0.1138699, - 38.8344342 - ], - [ - 0.1138699, - 38.83279 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-11T16:00:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 33, - "delete": 0, - "area": 0.0000039597268599858, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 48, - "locale": "ca", - "imagery": "osm", - "change_within_100m": 12, - "change_within_500m": 36 - }, - "id": 119586056 - } - }, - { - "id": 119585053, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8959118, - 50.2220354 - ], - [ - 4.8959118, - 50.2220354 - ], - [ - 4.8959118, - 50.2220354 - ], - [ - 4.8959118, - 50.2220354 - ], - [ - 4.8959118, - 50.2220354 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #fritures", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-11T15:37:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/fritures.html", - "theme": "fritures", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 119585053 - } - }, - { - "id": 119582922, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2823657, - 50.86748 - ], - [ - 5.2896913, - 50.86748 - ], - [ - 5.2896913, - 50.8707253 - ], - [ - 5.2823657, - 50.8707253 - ], - [ - 5.2823657, - 50.86748 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-11T14:49:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 16, - "modify": 28, - "delete": 4, - "area": 0.0000237737696799735, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 25, - "theme": "grb", - "delete": 4, - "import": 2, - "locale": "nl", - "imagery": "osm", - "conflation": 6 - }, - "id": 119582922 - } - }, - { - "id": 119582888, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2827986, - 50.8674684 - ], - [ - 5.2844204, - 50.8674684 - ], - [ - 5.2844204, - 50.869507 - ], - [ - 5.2827986, - 50.869507 - ], - [ - 5.2827986, - 50.8674684 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-11T14:48:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 12, - "modify": 9, - "delete": 0, - "area": 0.00000330620147999917, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 8, - "theme": "grb", - "import": 2, - "locale": "nl", - "imagery": "osm", - "conflation": 2 - }, - "id": 119582888 - } - }, - { - "id": 119582223, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2844537, - 50.86474 - ], - [ - 5.2940396, - 50.86474 - ], - [ - 5.2940396, - 50.871554 - ], - [ - 5.2844537, - 50.871554 - ], - [ - 5.2844537, - 50.86474 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-11T14:31:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 237, - "modify": 603, - "delete": 1, - "area": 0.0000653183226000499, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 542, - "theme": "grb", - "delete": 1, - "import": 33, - "locale": "nl", - "imagery": "osm", - "conflation": 140 - }, - "id": 119582223 - } - }, - { - "id": 119581578, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4136128, - 50.9597779 - ], - [ - 4.4912772, - 50.9597779 - ], - [ - 4.4912772, - 50.9918627 - ], - [ - 4.4136128, - 50.9918627 - ], - [ - 4.4136128, - 50.9597779 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "OWZemst", - "uid": "1768434", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-11T14:14:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 11, - "modify": 10, - "delete": 0, - "area": 0.00249184674111998, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 24, - "create": 5, - "import": 6, - "locale": "nl", - "imagery": "osm", - "import:node/-10": "source: https://osm.org/note/3090113", - "import:node/-11": "source: https://osm.org/note/3084033", - "import:node/9658663649": "source: https://osm.org/note/3090241", - "import:node/9658665418": "source: https://osm.org/note/3090210", - "import:node/9658665419": "source: https://osm.org/note/3090323", - "import:node/9658665420": "source: https://osm.org/note/3090221" - }, - "id": 119581578 - } - }, - { - "id": 119581369, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9280025, - 43.6816227 - ], - [ - 3.9332874, - 43.6816227 - ], - [ - 3.9332874, - 43.6829818 - ], - [ - 3.9280025, - 43.6829818 - ], - [ - 3.9280025, - 43.6816227 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "zaizone", - "uid": "1122708", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-11T14:08:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000718270759001078, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 119581369 - } - }, - { - "id": 119581284, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.1202371, - 38.8393697 - ], - [ - -0.1202371, - 38.8393697 - ], - [ - -0.1202371, - 38.8393697 - ], - [ - -0.1202371, - 38.8393697 - ], - [ - -0.1202371, - 38.8393697 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-11T14:06:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 2, - "create": 1, - "locale": "ca", - "imagery": "PNOA-Spain-TMS", - "change_over_5000m": 1, - "change_within_50m": 2 - }, - "id": 119581284 - } - }, - { - "id": 119581246, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0695253, - 51.0152877 - ], - [ - 4.1176522, - 51.0152877 - ], - [ - 4.1176522, - 51.03612 - ], - [ - 4.0695253, - 51.03612 - ], - [ - 4.0695253, - 51.0152877 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "groenbeleid Dendermonde", - "uid": "15550372", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-11T14:05:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 14, - "modify": 15, - "delete": 0, - "area": 0.00100259401886977, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 28, - "create": 14, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 119581246 - } - }, - { - "id": 119581226, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.1201149, - 38.8398445 - ], - [ - -0.1201149, - 38.8398445 - ], - [ - -0.1201149, - 38.8398445 - ], - [ - -0.1201149, - 38.8398445 - ], - [ - -0.1201149, - 38.8398445 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-11T14:05:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 4, - "create": 1, - "locale": "ca", - "imagery": "PNOA-Spain-TMS", - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 119581226 - } - }, - { - "id": 119579065, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9934658, - 49.6469392 - ], - [ - 5.9934658, - 49.6469392 - ], - [ - 5.9934658, - 49.6469392 - ], - [ - 5.9934658, - 49.6469392 - ], - [ - 5.9934658, - 49.6469392 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "ClarissaWAM", - "uid": "13745921", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-11T13:10:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases", - "theme": "bookcases", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 119579065 - } - }, - { - "id": 119578751, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.1197951, - 38.8398554 - ], - [ - -0.1193853, - 38.8398554 - ], - [ - -0.1193853, - 38.8404206 - ], - [ - -0.1197951, - 38.8404206 - ], - [ - -0.1197951, - 38.8398554 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-11T13:02:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 1, - "delete": 0, - "area": 2.31618960001657e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 2, - "create": 2, - "locale": "ca", - "imagery": "PNOA-Spain-TMS", - "change_over_5000m": 2, - "change_within_25m": 2 - }, - "id": 119578751 - } - }, - { - "id": 119576853, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2148413, - 50.9210164 - ], - [ - 3.2148647, - 50.9210164 - ], - [ - 3.2148647, - 50.9210409 - ], - [ - 3.2148413, - 50.9210409 - ], - [ - 3.2148413, - 50.9210164 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RubOSM", - "uid": "2096650", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-11T12:19:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 9, - "delete": 0, - "area": 5.73300000057285e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 13, - "create": 2, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 13 - }, - "id": 119576853 - } - }, - { - "id": 119576397, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7337606, - 51.0365016 - ], - [ - 3.7337606, - 51.0365016 - ], - [ - 3.7337606, - 51.0365016 - ], - [ - 3.7337606, - 51.0365016 - ], - [ - 3.7337606, - 51.0365016 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "lebeno", - "uid": "1710114", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-11T12:10:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119576397 - } - }, - { - "id": 119574885, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7704845, - 50.8100128 - ], - [ - 2.7704845, - 50.8100128 - ], - [ - 2.7704845, - 50.8100128 - ], - [ - 2.7704845, - 50.8100128 - ], - [ - 2.7704845, - 50.8100128 - ] - ] - ] - }, - "properties": { - "check_user": "L'imaginaire", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Vakantiehuis Velogies", - "uid": "15380005", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-11T11:36:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-04-16T06:40:42.740637Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "add-image": 1 - }, - "id": 119574885 - } - }, - { - "id": 119573280, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7336699, - 51.0349601 - ], - [ - 3.7337687, - 51.0349601 - ], - [ - 3.7337687, - 51.0365016 - ], - [ - 3.7336699, - 51.0365016 - ], - [ - 3.7336699, - 51.0349601 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "lebeno", - "uid": "1710114", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-11T10:59:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 8, - "delete": 0, - "area": 1.52300200000114e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 18, - "create": 4, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 4, - "change_within_25m": 18 - }, - "id": 119573280 - } - }, - { - "id": 119573026, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8959118, - 50.2220354 - ], - [ - 4.8959118, - 50.2220354 - ], - [ - 4.8959118, - 50.2220354 - ], - [ - 4.8959118, - 50.2220354 - ], - [ - 4.8959118, - 50.2220354 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #fritures", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-11T10:53:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/fritures.html", - "theme": "fritures", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_50m": 1 - }, - "id": 119573026 - } - }, - { - "id": 119568453, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7363124, - 49.8773645 - ], - [ - 4.7363124, - 49.8773645 - ], - [ - 4.7363124, - 49.8773645 - ], - [ - 4.7363124, - 49.8773645 - ], - [ - 4.7363124, - 49.8773645 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-11T09:12:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 119568453 - } - }, - { - "id": 119567813, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8936555, - 50.2186741 - ], - [ - 4.8942912, - 50.2186741 - ], - [ - 4.8942912, - 50.2197605 - ], - [ - 4.8936555, - 50.2197605 - ], - [ - 4.8936555, - 50.2186741 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-11T08:58:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 4, - "delete": 0, - "area": 6.90624479998143e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/nature.html", - "theme": "nature", - "create": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 4, - "change_over_5000m": 2, - "change_within_25m": 4 - }, - "id": 119567813 - } - }, - { - "id": 119567736, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8942449, - 50.2201569 - ], - [ - 4.8942449, - 50.2201569 - ], - [ - 4.8942449, - 50.2201569 - ], - [ - 4.8942449, - 50.2201569 - ], - [ - 4.8942449, - 50.2201569 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-11T08:56:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 119567736 - } - }, - { - "id": 119567260, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8941041, - 50.2201419 - ], - [ - 4.8941041, - 50.2201419 - ], - [ - 4.8941041, - 50.2201419 - ], - [ - 4.8941041, - 50.2201419 - ], - [ - 4.8941041, - 50.2201419 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-11T08:46:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 4, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 5 - }, - "id": 119567260 - } - }, - { - "id": 119567207, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8945433, - 50.2198583 - ], - [ - 4.8945433, - 50.2198583 - ], - [ - 4.8945433, - 50.2198583 - ], - [ - 4.8945433, - 50.2198583 - ], - [ - 4.8945433, - 50.2198583 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-11T08:45:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/artwork.html", - "theme": "artwork", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 119567207 - } - }, - { - "id": 119567148, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0828595, - 38.8327044 - ], - [ - 0.0840697, - 38.8327044 - ], - [ - 0.0840697, - 38.8334336 - ], - [ - 0.0828595, - 38.8334336 - ], - [ - 0.0828595, - 38.8327044 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-11T08:43:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 8.82477840002531e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 2, - "locale": "en", - "imagery": "osm", - "change_within_5000m": 2 - }, - "id": 119567148 - } - }, - { - "id": 119566702, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1144462, - 38.8320974 - ], - [ - 0.1156352, - 38.8320974 - ], - [ - 0.1156352, - 38.8332359 - ], - [ - 0.1144462, - 38.8332359 - ], - [ - 0.1144462, - 38.8320974 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-11T08:32:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000135367649999543, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 3, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_50m": 1, - "change_within_100m": 1, - "change_within_500m": 1 - }, - "id": 119566702 - } - }, - { - "id": 119565968, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0952385, - 38.8367029 - ], - [ - 0.1120003, - 38.8367029 - ], - [ - 0.1120003, - 38.8494225 - ], - [ - 0.0952385, - 38.8494225 - ], - [ - 0.0952385, - 38.8367029 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-11T08:14:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.000213203391280068, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 12, - "locale": "en", - "imagery": "osm", - "change_within_1000m": 7, - "change_within_5000m": 5 - }, - "id": 119565968 - } - }, - { - "id": 119563361, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 77.0266165, - 8.1735644 - ], - [ - 80.2547224, - 8.1735644 - ], - [ - 80.2547224, - 13.0283431 - ], - [ - 77.0266165, - 13.0283431 - ], - [ - 77.0266165, - 8.1735644 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-11T07:13:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 25, - "delete": 0, - "area": 15.6717397646643, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 25, - "locale": "en", - "imagery": "osm" - }, - "id": 119563361 - } - }, - { - "id": 119563315, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.8823775, - 45.2346261 - ], - [ - 5.8823775, - 45.2346261 - ], - [ - 5.8823775, - 45.2346261 - ], - [ - 5.8823775, - 45.2346261 - ], - [ - 5.8823775, - 45.2346261 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "raspbeguy", - "uid": "3398417", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-11T07:12:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "fr", - "imagery": "CartoDB.Voyager" - }, - "id": 119563315 - } - }, - { - "id": 119560743, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.170223, - 50.2323077 - ], - [ - 12.170223, - 50.2323077 - ], - [ - 12.170223, - 50.2323077 - ], - [ - 12.170223, - 50.2323077 - ], - [ - 12.170223, - 50.2323077 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wajrou", - "uid": "407828", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-11T06:11:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "EsriWorldImagery" - }, - "id": 119560743 - } - }, - { - "id": 119560603, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.2047377, - 50.2310895 - ], - [ - 12.2047377, - 50.2310895 - ], - [ - 12.2047377, - 50.2310895 - ], - [ - 12.2047377, - 50.2310895 - ], - [ - 12.2047377, - 50.2310895 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wajrou", - "uid": "407828", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-11T06:07:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/campersite.html", - "theme": "campersite", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 119560603 - } - }, - { - "id": 119560167, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.1865308, - 50.2201861 - ], - [ - 12.1982722, - 50.2201861 - ], - [ - 12.1982722, - 50.225503 - ], - [ - 12.1865308, - 50.225503 - ], - [ - 12.1865308, - 50.2201861 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wajrou", - "uid": "407828", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-11T05:54:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 38, - "delete": 0, - "area": 0.0000624278496600465, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 39, - "locale": "en", - "imagery": "osm" - }, - "id": 119560167 - } - }, - { - "id": 119553807, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2573914, - -39.8011021 - ], - [ - -73.2573914, - -39.8011021 - ], - [ - -73.2573914, - -39.8011021 - ], - [ - -73.2573914, - -39.8011021 - ], - [ - -73.2573914, - -39.8011021 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T23:29:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "HDM_HOT", - "add-image": 1 - }, - "id": 119553807 - } - }, - { - "id": 119553226, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1029555, - 38.8332524 - ], - [ - 0.115443, - 38.8332524 - ], - [ - 0.115443, - 38.8386116 - ], - [ - 0.1029555, - 38.8386116 - ], - [ - 0.1029555, - 38.8332524 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T22:47:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000669230100000112, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "answer": 3, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 3 - }, - "id": 119553226 - } - }, - { - "id": 119553204, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1078821, - 38.8383008 - ], - [ - 0.1112901, - 38.8383008 - ], - [ - 0.1112901, - 38.8401204 - ], - [ - 0.1078821, - 38.8401204 - ], - [ - 0.1078821, - 38.8383008 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T22:46:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.00000620119680001564, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 119553204 - } - }, - { - "id": 119553169, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.1111137, - 38.8434571 - ], - [ - -0.1109426, - 38.8434571 - ], - [ - -0.1109426, - 38.8440073 - ], - [ - -0.1111137, - 38.8440073 - ], - [ - -0.1111137, - 38.8434571 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T22:44:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 9.41392199998731e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/campersite.html", - "theme": "campersite", - "answer": 8, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 8 - }, - "id": 119553169 - } - }, - { - "id": 119552883, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0633022, - 38.826029 - ], - [ - 0.1153903, - 38.826029 - ], - [ - 0.1153903, - 38.8333565 - ], - [ - 0.0633022, - 38.8333565 - ], - [ - 0.0633022, - 38.826029 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T22:32:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 8, - "delete": 0, - "area": 0.000381675552750124, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 11, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 11 - }, - "id": 119552883 - } - }, - { - "id": 119552780, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0987596, - 38.8377582 - ], - [ - 0.1117505, - 38.8377582 - ], - [ - 0.1117505, - 38.8412364 - ], - [ - 0.0987596, - 38.8412364 - ], - [ - 0.0987596, - 38.8377582 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T22:26:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 10, - "delete": 0, - "area": 0.0000451849483799537, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 10, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 10 - }, - "id": 119552780 - } - }, - { - "id": 119552767, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1131737, - 38.8416599 - ], - [ - 0.1131737, - 38.8416599 - ], - [ - 0.1131737, - 38.8416599 - ], - [ - 0.1131737, - 38.8416599 - ], - [ - 0.1131737, - 38.8416599 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T22:25:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 2, - "locale": "ca", - "imagery": "osm", - "change_over_5000m": 2 - }, - "id": 119552767 - } - }, - { - "id": 119550714, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2576474, - -39.8013712 - ], - [ - -73.2573906, - -39.8013712 - ], - [ - -73.2573906, - -39.8007937 - ], - [ - -73.2576474, - -39.8007937 - ], - [ - -73.2576474, - -39.8013712 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T20:46:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 1.48302000001075e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "create": 1, - "locale": "en", - "imagery": "Mapbox", - "add-image": 3, - "change_over_5000m": 1, - "change_within_25m": 1, - "change_within_50m": 2 - }, - "id": 119550714 - } - }, - { - "id": 119550404, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6977556, - 50.8801027 - ], - [ - 4.6977556, - 50.8801027 - ], - [ - 4.6977556, - 50.8801027 - ], - [ - 4.6977556, - 50.8801027 - ], - [ - 4.6977556, - 50.8801027 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Hopperpop", - "uid": "3664604", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-10T20:35:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 119550404 - } - }, - { - "id": 119547147, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.0534073, - 52.4003074 - ], - [ - 13.0645654, - 52.4003074 - ], - [ - 13.0645654, - 52.4066252 - ], - [ - 13.0534073, - 52.4066252 - ], - [ - 13.0534073, - 52.4003074 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "daniel46", - "uid": "9677", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-10T18:41:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000704946441799731, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 6, - "locale": "de", - "imagery": "osm" - }, - "id": 119547147 - } - }, - { - "id": 119545232, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9584013, - 50.4820555 - ], - [ - 4.9584469, - 50.4820555 - ], - [ - 4.9584469, - 50.4820755 - ], - [ - 4.9584013, - 50.4820755 - ], - [ - 4.9584013, - 50.4820555 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T17:43:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 9.11999999965054e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/climbing.html", - "move": 3, - "theme": "climbing", - "locale": "nl", - "imagery": "osm", - "change_within_5000m": 3, - "move:node/9656156846": "improve_accuracy" - }, - "id": 119545232 - } - }, - { - "id": 119544175, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9332728, - 50.4955426 - ], - [ - 4.9334784, - 50.4955426 - ], - [ - 4.9334784, - 50.495671 - ], - [ - 4.9332728, - 50.495671 - ], - [ - 4.9332728, - 50.4955426 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T17:11:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 2.63990400002748e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/food.html", - "theme": "food", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "change_within_50m": 3 - }, - "id": 119544175 - } - }, - { - "id": 119542603, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.0134509, - 51.4659123 - ], - [ - -0.0117585, - 51.4659123 - ], - [ - -0.0117585, - 51.4668718 - ], - [ - -0.0134509, - 51.4668718 - ], - [ - -0.0134509, - 51.4659123 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "w_morland", - "uid": "402620", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T16:25:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00000162385780000076, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 4, - "locale": "en", - "imagery": "osm", - "change_within_500m": 4 - }, - "id": 119542603 - } - }, - { - "id": 119539594, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7695202, - 51.1572893 - ], - [ - 4.7695202, - 51.1572893 - ], - [ - 4.7695202, - 51.1572893 - ], - [ - 4.7695202, - 51.1572893 - ], - [ - 4.7695202, - 51.1572893 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Salambre", - "uid": "15272429", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T15:07:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 119539594 - } - }, - { - "id": 119539545, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7527531, - 50.8496424 - ], - [ - 3.752806, - 50.8496424 - ], - [ - 3.752806, - 50.8496618 - ], - [ - 3.7527531, - 50.8496618 - ], - [ - 3.7527531, - 50.8496424 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "ikgeloofnooitdatdezeallemaalingebruikzijn", - "uid": "11581604", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-10T15:05:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.02625999996534e-9, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "move": 2, - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "move:node/9654477465": "improve_accuracy" - }, - "id": 119539545 - } - }, - { - "id": 119538826, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9580996, - 50.482047 - ], - [ - 4.95865, - 50.482047 - ], - [ - 4.95865, - 50.4823128 - ], - [ - 4.9580996, - 50.4823128 - ], - [ - 4.9580996, - 50.482047 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T14:47:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 10, - "delete": 0, - "area": 1.46296320000559e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/climbing.html", - "theme": "climbing", - "answer": 7, - "create": 4, - "locale": "nl", - "imagery": "osm", - "add-image": 6, - "change_over_5000m": 4, - "change_within_25m": 6, - "change_within_50m": 7 - }, - "id": 119538826 - } - }, - { - "id": 119537094, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3491699, - 50.8476217 - ], - [ - 4.3491699, - 50.8476217 - ], - [ - 4.3491699, - 50.8476217 - ], - [ - 4.3491699, - 50.8476217 - ], - [ - 4.3491699, - 50.8476217 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Hopperpop", - "uid": "3664604", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-10T14:03:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/assets/themes/OpenAsianMap/OpenAsianMap.json", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 119537094 - } - }, - { - "id": 119536803, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4298688, - 52.1086174 - ], - [ - 13.4321943, - 52.1086174 - ], - [ - 13.4321943, - 52.1108561 - ], - [ - 13.4298688, - 52.1108561 - ], - [ - 13.4298688, - 52.1086174 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ebihardy", - "uid": "263464", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T13:54:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 0.00000520609685000174, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 119536803 - } - }, - { - "id": 119536461, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7659139, - 51.1493635 - ], - [ - 4.7666309, - 51.1493635 - ], - [ - 4.7666309, - 51.1513073 - ], - [ - 4.7659139, - 51.1513073 - ], - [ - 4.7659139, - 51.1493635 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Salambre", - "uid": "15272429", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T13:43:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 0, - "delete": 0, - "area": 0.00000139370459999928, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 4, - "create": 4, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 4, - "change_within_25m": 4 - }, - "id": 119536461 - } - }, - { - "id": 119535790, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9994084, - 51.1216351 - ], - [ - 5.0021829, - 51.1216351 - ], - [ - 5.0021829, - 51.1347163 - ], - [ - 4.9994084, - 51.1347163 - ], - [ - 4.9994084, - 51.1216351 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T13:25:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 10, - "delete": 0, - "area": 0.0000362937894000072, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 17, - "create": 3, - "locale": "nl", - "imagery": "osm", - "add-image": 3, - "change_over_5000m": 3, - "change_within_25m": 20 - }, - "id": 119535790 - } - }, - { - "id": 119535021, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.8524612, - 48.8600775 - ], - [ - 8.8536313, - 48.8600775 - ], - [ - 8.8536313, - 48.8603342 - ], - [ - 8.8524612, - 48.8603342 - ], - [ - 8.8524612, - 48.8600775 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T13:04:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 1, - "delete": 0, - "area": 3.00364669993117e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 4, - "create": 2, - "locale": "en", - "imagery": "Mapbox", - "change_over_5000m": 2, - "change_within_25m": 4 - }, - "id": 119535021 - } - }, - { - "id": 119534937, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.8511422, - 48.8604445 - ], - [ - 8.852073, - 48.8604445 - ], - [ - 8.852073, - 48.8608627 - ], - [ - 8.8511422, - 48.8608627 - ], - [ - 8.8511422, - 48.8604445 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T13:02:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 0, - "delete": 0, - "area": 3.89260559999018e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "create": 3, - "locale": "en", - "imagery": "Mapbox", - "change_over_5000m": 3 - }, - "id": 119534937 - } - }, - { - "id": 119534886, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.8507484, - 48.8611351 - ], - [ - 8.8507484, - 48.8611351 - ], - [ - 8.8507484, - 48.8611351 - ], - [ - 8.8507484, - 48.8611351 - ], - [ - 8.8507484, - 48.8611351 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T13:01:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 2, - "locale": "en", - "imagery": "osm", - "change_within_100m": 2 - }, - "id": 119534886 - } - }, - { - "id": 119534861, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8531687, - 50.8788978 - ], - [ - 4.9339536, - 50.8788978 - ], - [ - 4.9339536, - 50.9067491 - ], - [ - 4.8531687, - 50.9067491 - ], - [ - 4.8531687, - 50.8788978 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Hilde OSM", - "uid": "15275790", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T13:00:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 3, - "delete": 0, - "area": 0.00224996448537013, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 6, - "create": 2, - "import": 1, - "locale": "nl", - "imagery": "AGIV", - "change_over_5000m": 4, - "change_within_25m": 5, - "import:node/9655911460": "source: https://osm.org/note/3090159" - }, - "id": 119534861 - } - }, - { - "id": 119534412, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.8453872, - 48.8630763 - ], - [ - 8.8455959, - 48.8630763 - ], - [ - 8.8455959, - 48.8634051 - ], - [ - 8.8453872, - 48.8634051 - ], - [ - 8.8453872, - 48.8630763 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T12:48:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 6.862055999964e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/nature.html", - "theme": "nature", - "answer": 6, - "locale": "en", - "imagery": "osm", - "change_within_50m": 1, - "change_within_100m": 5 - }, - "id": 119534412 - } - }, - { - "id": 119534255, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "totera", - "uid": "123412", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-10T12:42:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 119534255 - } - }, - { - "id": 119534077, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.5253497, - 43.6158687 - ], - [ - 13.5253497, - 43.6158687 - ], - [ - 13.5253497, - 43.6158687 - ], - [ - 13.5253497, - 43.6158687 - ], - [ - 13.5253497, - 43.6158687 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "totera", - "uid": "123412", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-10T12:37:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 2, - "locale": "it", - "imagery": "osm" - }, - "id": 119534077 - } - }, - { - "id": 119533945, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.5285429, - 43.6157189 - ], - [ - 13.5285429, - 43.6157189 - ], - [ - 13.5285429, - 43.6157189 - ], - [ - 13.5285429, - 43.6157189 - ], - [ - 13.5285429, - 43.6157189 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "totera", - "uid": "123412", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-10T12:32:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 119533945 - } - }, - { - "id": 119533781, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3419266, - 49.9889193 - ], - [ - 4.3419266, - 49.9889193 - ], - [ - 4.3419266, - 49.9889193 - ], - [ - 4.3419266, - 49.9889193 - ], - [ - 4.3419266, - 49.9889193 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T12:27:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 7 - }, - "id": 119533781 - } - }, - { - "id": 119533625, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9585006, - 50.4821285 - ], - [ - 4.9585006, - 50.4821285 - ], - [ - 4.9585006, - 50.4821285 - ], - [ - 4.9585006, - 50.4821285 - ], - [ - 4.9585006, - 50.4821285 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T12:21:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/climbing.html", - "theme": "climbing", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119533625 - } - }, - { - "id": 119530600, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9582592, - 50.4820858 - ], - [ - 4.9582592, - 50.4820858 - ], - [ - 4.9582592, - 50.4820858 - ], - [ - 4.9582592, - 50.4820858 - ], - [ - 4.9582592, - 50.4820858 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T10:44:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/climbing.html", - "theme": "climbing", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 6 - }, - "id": 119530600 - } - }, - { - "id": 119530192, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4484924, - 51.096333 - ], - [ - 3.4484924, - 51.096333 - ], - [ - 3.4484924, - 51.096333 - ], - [ - 3.4484924, - 51.096333 - ], - [ - 3.4484924, - 51.096333 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-10T10:30:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 119530192 - } - }, - { - "id": 119528768, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9594474, - 50.4822206 - ], - [ - 4.9594474, - 50.4822206 - ], - [ - 4.9594474, - 50.4822206 - ], - [ - 4.9594474, - 50.4822206 - ], - [ - 4.9594474, - 50.4822206 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T09:43:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/climbing.html", - "theme": "climbing", - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_50m": 1 - }, - "id": 119528768 - } - }, - { - "id": 119528759, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7101174, - 51.127954 - ], - [ - 4.7128116, - 51.127954 - ], - [ - 4.7128116, - 51.1293816 - ], - [ - 4.7101174, - 51.1293816 - ], - [ - 4.7101174, - 51.127954 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Salambre", - "uid": "15272429", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T09:42:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.0000038462399199995, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_100m": 1 - }, - "id": 119528759 - } - }, - { - "id": 119528731, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9597599, - 50.4819023 - ], - [ - 4.9597599, - 50.4819023 - ], - [ - 4.9597599, - 50.4819023 - ], - [ - 4.9597599, - 50.4819023 - ], - [ - 4.9597599, - 50.4819023 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T09:41:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/toilets.html", - "theme": "toilets", - "answer": 5, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 5 - }, - "id": 119528731 - } - }, - { - "id": 119526815, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6935282, - 51.1337233 - ], - [ - 4.6935282, - 51.1337233 - ], - [ - 4.6935282, - 51.1337233 - ], - [ - 4.6935282, - 51.1337233 - ], - [ - 4.6935282, - 51.1337233 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Salambre", - "uid": "15272429", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T08:40:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_50m": 3 - }, - "id": 119526815 - } - }, - { - "id": 119526616, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.737123, - 50.8971984 - ], - [ - 4.7524719, - 50.8971984 - ], - [ - 4.7524719, - 50.904368 - ], - [ - 4.737123, - 50.904368 - ], - [ - 4.737123, - 50.8971984 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T08:32:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1125, - "modify": 759, - "delete": 4, - "area": 0.000110045473439956, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 640, - "theme": "grb", - "answer": 3, - "delete": 4, - "import": 97, - "locale": "nl", - "imagery": "osm", - "conflation": 254 - }, - "id": 119526616 - } - }, - { - "id": 119526358, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7423999, - 51.0368176 - ], - [ - 3.7455823, - 51.0368176 - ], - [ - 3.7455823, - 51.0373388 - ], - [ - 3.7423999, - 51.0373388 - ], - [ - 3.7423999, - 51.0368176 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "lebeno", - "uid": "1710114", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-10T08:21:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000165866688000461, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 4, - "locale": "nl", - "imagery": "osm" - }, - "id": 119526358 - } - }, - { - "id": 119525875, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7406374, - 50.8943012 - ], - [ - 4.7535233, - 50.8943012 - ], - [ - 4.7535233, - 50.9010711 - ], - [ - 4.7406374, - 50.9010711 - ], - [ - 4.7406374, - 50.8943012 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T08:03:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 227, - "modify": 144, - "delete": 2, - "area": 0.0000872362544100281, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 120, - "theme": "grb", - "answer": 6, - "delete": 2, - "import": 24, - "locale": "nl", - "imagery": "AGIV", - "conflation": 40, - "change_over_5000m": 28 - }, - "id": 119525875 - } - }, - { - "id": 119524687, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7040596, - 51.0524486 - ], - [ - 3.7043345, - 51.0524486 - ], - [ - 3.7043345, - 51.0526256 - ], - [ - 3.7040596, - 51.0526256 - ], - [ - 3.7040596, - 51.0524486 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #facadegardens", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-10T07:04:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 5, - "delete": 0, - "area": 4.8657300000203e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/facadegardens.html", - "theme": "facadegardens", - "answer": 13, - "create": 4, - "locale": "nl", - "imagery": "osm", - "add-image": 4, - "change_over_5000m": 4, - "change_within_25m": 17 - }, - "id": 119524687 - } - }, - { - "id": 119522430, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7957815, - -34.6488714 - ], - [ - -58.7957517, - -34.6488714 - ], - [ - -58.7957517, - -34.6487946 - ], - [ - -58.7957815, - -34.6487946 - ], - [ - -58.7957815, - -34.6488714 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AgusQui", - "uid": "331218", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-10T03:56:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 2.2886399998602e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "answer": 6, - "locale": "en", - "imagery": "osm" - }, - "id": 119522430 - } - }, - { - "id": 119519266, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2946593, - 50.8329554 - ], - [ - 4.3419911, - 50.8329554 - ], - [ - 4.3419911, - 50.8670469 - ], - [ - 4.2946593, - 50.8670469 - ], - [ - 4.2946593, - 50.8329554 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-09T22:23:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00161361205969979, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 4 - }, - "id": 119519266 - } - }, - { - "id": 119516392, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 151.7025021, - -32.9324253 - ], - [ - 151.7850402, - -32.9324253 - ], - [ - 151.7850402, - -32.9089952 - ], - [ - 151.7025021, - -32.9089952 - ], - [ - 151.7025021, - -32.9324253 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Yourock17", - "uid": "3083720", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-09T19:59:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 36, - "delete": 0, - "area": 0.00193387593680975, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 50, - "locale": "en", - "imagery": "osm" - }, - "id": 119516392 - } - }, - { - "id": 119515531, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.752806, - 50.8496424 - ], - [ - 3.8115484, - 50.8496424 - ], - [ - 3.8115484, - 50.86958 - ], - [ - 3.752806, - 50.86958 - ], - [ - 3.752806, - 50.8496424 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "ikgeloofnooitdatdezeallemaalingebruikzijn", - "uid": "11581604", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-09T19:24:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 5, - "modify": 10, - "delete": 0, - "area": 0.00117118247423992, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "move": 3, - "theme": "toerisme_vlaanderen", - "answer": 17, - "create": 5, - "locale": "nl", - "imagery": "osm", - "move:node/9654526750": "improve_accuracy", - "move:node/9654557569": "improve_accuracy" - }, - "id": 119515531 - } - }, - { - "id": 119514590, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3598453, - 50.9338912 - ], - [ - 5.3599467, - 50.9338912 - ], - [ - 5.3599467, - 50.934022 - ], - [ - 5.3598453, - 50.934022 - ], - [ - 5.3598453, - 50.9338912 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-09T18:46:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.3263120000107e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119514590 - } - }, - { - "id": 119514113, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-09T18:29:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119514113 - } - }, - { - "id": 119512006, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 18.9058239, - 50.1712464 - ], - [ - 18.9058239, - 50.1712464 - ], - [ - 18.9058239, - 50.1712464 - ], - [ - 18.9058239, - 50.1712464 - ], - [ - 18.9058239, - 50.1712464 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "orlPL", - "uid": "15180064", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-09T17:19:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 5, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 119512006 - } - }, - { - "id": 119509417, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 151.7486115, - -32.9176103 - ], - [ - 151.7486115, - -32.9176103 - ], - [ - 151.7486115, - -32.9176103 - ], - [ - 151.7486115, - -32.9176103 - ], - [ - 151.7486115, - -32.9176103 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Yourock17", - "uid": "3083720", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-09T15:50:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 119509417 - } - }, - { - "id": 119508429, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-09T15:20:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 3, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 119508429 - } - }, - { - "id": 119508428, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-09T15:20:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "shops", - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 119508428 - } - }, - { - "id": 119508427, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-09T15:20:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cyclofix", - "answer": 10, - "create": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 5 - }, - "id": 119508427 - } - }, - { - "id": 119508248, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4069011, - 52.5397044 - ], - [ - 13.4069011, - 52.5397044 - ], - [ - 13.4069011, - 52.5397044 - ], - [ - 13.4069011, - 52.5397044 - ], - [ - 13.4069011, - 52.5397044 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "kjon", - "uid": "44217", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-09T15:15:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 1, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 119508248 - } - }, - { - "id": 119507324, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4398525, - 51.0800812 - ], - [ - 3.4398525, - 51.0800812 - ], - [ - 3.4398525, - 51.0800812 - ], - [ - 3.4398525, - 51.0800812 - ], - [ - 3.4398525, - 51.0800812 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-09T14:49:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 119507324 - } - }, - { - "id": 119506761, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.288089, - 50.8612421 - ], - [ - 5.2936153, - 50.8612421 - ], - [ - 5.2936153, - 50.8654851 - ], - [ - 5.288089, - 50.8654851 - ], - [ - 5.288089, - 50.8612421 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-09T14:36:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 332, - "modify": 601, - "delete": 12, - "area": 0.000023448090900012, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 539, - "theme": "grb", - "delete": 12, - "import": 49, - "locale": "nl", - "imagery": "osm", - "conflation": 138 - }, - "id": 119506761 - } - }, - { - "id": 119503350, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4056766, - 51.2266881 - ], - [ - 4.4189425, - 51.2266881 - ], - [ - 4.4189425, - 51.2282583 - ], - [ - 4.4056766, - 51.2282583 - ], - [ - 4.4056766, - 51.2266881 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "stijnh", - "uid": "14414954", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #fritures", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-09T13:00:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 10, - "delete": 0, - "area": 0.0000208301161800443, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/fritures.html", - "theme": "fritures", - "answer": 15, - "locale": "nl", - "imagery": "osm" - }, - "id": 119503350 - } - }, - { - "id": 119503191, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4379944, - 51.1931779 - ], - [ - 4.4379944, - 51.1931779 - ], - [ - 4.4379944, - 51.1931779 - ], - [ - 4.4379944, - 51.1931779 - ], - [ - 4.4379944, - 51.1931779 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "stijnh", - "uid": "14414954", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-09T12:56:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119503191 - } - }, - { - "id": 119502644, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4210523, - 51.1195174 - ], - [ - 4.8472854, - 51.1195174 - ], - [ - 4.8472854, - 51.2216243 - ], - [ - 4.4210523, - 51.2216243 - ], - [ - 4.4210523, - 51.1195174 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "stijnh", - "uid": "14414954", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 1, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-09T12:41:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 7, - "delete": 0, - "area": 0.043521340518391, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 15, - "create": 3, - "locale": "nl", - "imagery": "osm" - }, - "id": 119502644 - } - }, - { - "id": 119502333, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5365945, - 50.0332756 - ], - [ - 3.5368332, - 50.0332756 - ], - [ - 3.5368332, - 50.0342835 - ], - [ - 3.5365945, - 50.0342835 - ], - [ - 3.5365945, - 50.0332756 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-09T12:31:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 2, - "delete": 0, - "area": 2.40585729999132e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 5, - "create": 3, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 3, - "change_within_25m": 6 - }, - "id": 119502333 - } - }, - { - "id": 119501415, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7251733, - 51.0523044 - ], - [ - 3.7279858, - 51.0523044 - ], - [ - 3.7279858, - 51.0537177 - ], - [ - 3.7251733, - 51.0537177 - ], - [ - 3.7251733, - 51.0523044 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-09T12:01:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 20, - "delete": 0, - "area": 0.00000397490625000844, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 44, - "create": 2, - "locale": "nl", - "imagery": "AGIV", - "add-image": 2, - "change_over_5000m": 2, - "change_within_25m": 38, - "change_within_50m": 8 - }, - "id": 119501415 - } - }, - { - "id": 119496856, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2235835, - 50.7330473 - ], - [ - 4.2536719, - 50.7330473 - ], - [ - 4.2536719, - 50.748181 - ], - [ - 4.2235835, - 50.748181 - ], - [ - 4.2235835, - 50.7330473 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "queenLizzie", - "uid": "15349770", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-09T09:40:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 10, - "delete": 0, - "area": 0.000455348819079986, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 11, - "create": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 2, - "change_within_25m": 13 - }, - "id": 119496856 - } - }, - { - "id": 119494606, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2536719, - 50.748181 - ], - [ - 4.2536719, - 50.748181 - ], - [ - 4.2536719, - 50.748181 - ], - [ - 4.2536719, - 50.748181 - ], - [ - 4.2536719, - 50.748181 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "queenLizzie", - "uid": "15349770", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-09T08:28:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 1, - "change_within_25m": 5 - }, - "id": 119494606 - } - }, - { - "id": 119493187, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7464269, - 50.8933623 - ], - [ - 4.754451, - 50.8933623 - ], - [ - 4.754451, - 50.8999475 - ], - [ - 4.7464269, - 50.8999475 - ], - [ - 4.7464269, - 50.8933623 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-09T07:24:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 646, - "modify": 782, - "delete": 0, - "area": 0.0000528403033200288, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 652, - "theme": "grb", - "answer": 33, - "import": 50, - "locale": "nl", - "imagery": "osm", - "conflation": 222 - }, - "id": 119493187 - } - }, - { - "id": 119492991, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0590262, - 51.2834938 - ], - [ - 4.0590262, - 51.2834938 - ], - [ - 4.0590262, - 51.2834938 - ], - [ - 4.0590262, - 51.2834938 - ], - [ - 4.0590262, - 51.2834938 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "stijnh", - "uid": "14414954", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-09T07:16:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 4, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 119492991 - } - }, - { - "id": 119492600, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7776349, - 50.904708 - ], - [ - 4.7883593, - 50.904708 - ], - [ - 4.7883593, - 50.9112334 - ], - [ - 4.7776349, - 50.9112334 - ], - [ - 4.7776349, - 50.904708 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-09T06:54:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1189, - "modify": 31, - "delete": 0, - "area": 0.0000699809997600107, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 24, - "theme": "grb", - "answer": 2, - "import": 105, - "locale": "nl", - "imagery": "AGIV", - "conflation": 10 - }, - "id": 119492600 - } - }, - { - "id": 119492544, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7705968, - 50.9029125 - ], - [ - 4.7723291, - 50.9029125 - ], - [ - 4.7723291, - 50.9038831 - ], - [ - 4.7705968, - 50.9038831 - ], - [ - 4.7705968, - 50.9029125 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-09T06:51:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 45, - "modify": 27, - "delete": 0, - "area": 0.00000168137038000437, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 22, - "theme": "grb", - "import": 2, - "locale": "nl", - "imagery": "osm", - "conflation": 10 - }, - "id": 119492544 - } - }, - { - "id": 119492047, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7726687, - 50.9025659 - ], - [ - 4.781986, - 50.9025659 - ], - [ - 4.781986, - 50.9086424 - ], - [ - 4.7726687, - 50.9086424 - ], - [ - 4.7726687, - 50.9025659 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-09T06:20:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 567, - "modify": 358, - "delete": 0, - "area": 0.0000566165734499912, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 306, - "theme": "grb", - "answer": 1, - "import": 26, - "locale": "nl", - "imagery": "osm", - "conflation": 102 - }, - "id": 119492047 - } - }, - { - "id": 119491649, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7541332, - 50.8991685 - ], - [ - 4.7725766, - 50.8991685 - ], - [ - 4.7725766, - 50.9075852 - ], - [ - 4.7541332, - 50.9075852 - ], - [ - 4.7541332, - 50.8991685 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-09T05:50:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1175, - "modify": 218, - "delete": 0, - "area": 0.00015523256477996, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 180, - "theme": "grb", - "answer": 13, - "import": 153, - "locale": "nl", - "imagery": "osm", - "conflation": 54 - }, - "id": 119491649 - } - }, - { - "id": 119491576, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7541444, - 50.8986462 - ], - [ - 4.7582493, - 50.8986462 - ], - [ - 4.7582493, - 50.8999082 - ], - [ - 4.7541444, - 50.8999082 - ], - [ - 4.7541444, - 50.8986462 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-09T05:45:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 72, - "modify": 110, - "delete": 0, - "area": 0.00000518038379998731, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 94, - "theme": "grb", - "answer": 1, - "import": 6, - "locale": "nl", - "imagery": "osm", - "conflation": 30 - }, - "id": 119491576 - } - }, - { - "id": 119491456, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7576254, - 50.8991728 - ], - [ - 4.7612734, - 50.8991728 - ], - [ - 4.7612734, - 50.9021703 - ], - [ - 4.7576254, - 50.9021703 - ], - [ - 4.7576254, - 50.8991728 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-09T05:32:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 372, - "modify": 48, - "delete": 0, - "area": 0.0000109348799999978, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 38, - "theme": "grb", - "answer": 4, - "import": 43, - "locale": "nl", - "imagery": "osm", - "conflation": 18 - }, - "id": 119491456 - } - }, - { - "id": 119484313, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.3355315, - 48.820712 - ], - [ - 2.4118853, - 48.820712 - ], - [ - 2.4118853, - 48.8926843 - ], - [ - 2.3355315, - 48.8926843 - ], - [ - 2.3355315, - 48.820712 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paulrbr", - "uid": "12447319", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-08T20:22:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 7, - "modify": 10, - "delete": 0, - "area": 0.00549535859973988, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/climbing.html", - "theme": "climbing", - "answer": 25, - "create": 7, - "locale": "en", - "imagery": "fr.ign.bdortho" - }, - "id": 119484313 - } - }, - { - "id": 119483946, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.1461241, - 51.4821824 - ], - [ - -0.1461241, - 51.4821824 - ], - [ - -0.1461241, - 51.4821824 - ], - [ - -0.1461241, - 51.4821824 - ], - [ - -0.1461241, - 51.4821824 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "nicknz", - "uid": "4735682", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-08T20:07:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 119483946 - } - }, - { - "id": 119481914, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2831042, - 50.8602682 - ], - [ - 5.2887427, - 50.8602682 - ], - [ - 5.2887427, - 50.8629986 - ], - [ - 5.2831042, - 50.8629986 - ], - [ - 5.2831042, - 50.8602682 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-08T18:54:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 171, - "modify": 468, - "delete": 5, - "area": 0.0000153953603999841, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 417, - "theme": "grb", - "delete": 5, - "import": 28, - "locale": "nl", - "imagery": "osm", - "conflation": 114 - }, - "id": 119481914 - } - }, - { - "id": 119479657, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2935642, - 51.3545361 - ], - [ - 3.2935642, - 51.3545361 - ], - [ - 3.2935642, - 51.3545361 - ], - [ - 3.2935642, - 51.3545361 - ], - [ - 3.2935642, - 51.3545361 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-08T17:35:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 119479657 - } - }, - { - "id": 119475833, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1040428, - 38.8346599 - ], - [ - 0.1040428, - 38.8346599 - ], - [ - 0.1040428, - 38.8346599 - ], - [ - 0.1040428, - 38.8346599 - ], - [ - 0.1040428, - 38.8346599 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.18.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-08T15:35:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", - "answer": 14, - "locale": "ca", - "imagery": "osm", - "change_within_50m": 6 - }, - "id": 119475833 - } - }, - { - "id": 119473867, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2066573, - 51.2267317 - ], - [ - 3.2066573, - 51.2267317 - ], - [ - 3.2066573, - 51.2267317 - ], - [ - 3.2066573, - 51.2267317 - ], - [ - 3.2066573, - 51.2267317 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0-alpha-3", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-08T14:31:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/waste.html", - "theme": "waste", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_within_5000m": 1 - }, - "id": 119473867 - } - }, - { - "id": 119473535, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2798058, - 50.8545852 - ], - [ - 5.284799, - 50.8545852 - ], - [ - 5.284799, - 50.8626665 - ], - [ - 5.2798058, - 50.8626665 - ], - [ - 5.2798058, - 50.8545852 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-08T14:21:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 225, - "modify": 544, - "delete": 10, - "area": 0.0000403515471599989, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 489, - "theme": "grb", - "answer": 1, - "delete": 10, - "import": 32, - "locale": "nl", - "imagery": "osm", - "conflation": 116 - }, - "id": 119473535 - } - }, - { - "id": 119471869, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2708744, - 50.8573089 - ], - [ - 5.282522, - 50.8573089 - ], - [ - 5.282522, - 50.86379 - ], - [ - 5.2708744, - 50.86379 - ], - [ - 5.2708744, - 50.8573089 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-08T13:32:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 890, - "modify": 607, - "delete": 6, - "area": 0.0000754892603600226, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 543, - "theme": "grb", - "delete": 6, - "import": 124, - "locale": "nl", - "imagery": "osm", - "conflation": 140 - }, - "id": 119471869 - } - }, - { - "id": 119471853, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2616792, - 50.8498349 - ], - [ - 4.2616792, - 50.8498349 - ], - [ - 4.2616792, - 50.8498349 - ], - [ - 4.2616792, - 50.8498349 - ], - [ - 4.2616792, - 50.8498349 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-08T13:31:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 9, - "locale": "nl", - "imagery": "osm" - }, - "id": 119471853 - } - }, - { - "id": 119471653, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2066788, - 51.2267678 - ], - [ - 3.2067458, - 51.2267678 - ], - [ - 3.2067458, - 51.2267712 - ], - [ - 3.2066788, - 51.2267712 - ], - [ - 3.2066788, - 51.2267678 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0-alpha-3", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-08T13:25:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 2.27800000281908e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/aed.html", - "move": 1, - "theme": "aed", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 5, - "move:node/9651816644": "improve_accuracy" - }, - "id": 119471653 - } - }, - { - "id": 119471538, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7205216, - 51.0569778 - ], - [ - 3.7205216, - 51.0569778 - ], - [ - 3.7205216, - 51.0569778 - ], - [ - 3.7205216, - 51.0569778 - ], - [ - 3.7205216, - 51.0569778 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-08T13:22:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 7 - }, - "id": 119471538 - } - }, - { - "id": 119469101, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1625605, - 45.649321 - ], - [ - 0.1625605, - 45.649321 - ], - [ - 0.1625605, - 45.649321 - ], - [ - 0.1625605, - 45.649321 - ], - [ - 0.1625605, - 45.649321 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-08T12:18:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 4, - "create": 1, - "locale": "fr", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 119469101 - } - }, - { - "id": 119469051, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2534819, - 50.840133 - ], - [ - 5.2796029, - 50.840133 - ], - [ - 5.2796029, - 50.8633521 - ], - [ - 5.2534819, - 50.8633521 - ], - [ - 5.2534819, - 50.840133 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-08T12:17:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2076, - "modify": 2233, - "delete": 39, - "area": 0.00060650611109998, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 2010, - "theme": "grb", - "delete": 39, - "import": 312, - "locale": "nl", - "imagery": "osm", - "conflation": 466 - }, - "id": 119469051 - } - }, - { - "id": 119467704, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3735719, - 52.4683114 - ], - [ - 13.3735719, - 52.4683114 - ], - [ - 13.3735719, - 52.4683114 - ], - [ - 13.3735719, - 52.4683114 - ], - [ - 13.3735719, - 52.4683114 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ebihardy", - "uid": "263464", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-08T11:44:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 119467704 - } - }, - { - "id": 119463786, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2568963, - 50.8589306 - ], - [ - 5.2668719, - 50.8589306 - ], - [ - 5.2668719, - 50.8687482 - ], - [ - 5.2568963, - 50.8687482 - ], - [ - 5.2568963, - 50.8589306 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "way-1050237447", - "osm_id": 1050237447, - "reasons": [ - 43 - ], - "version": 1, - "primary_tags": { - "building": "nutspaal type windturbine" - } - }, - { - "url": "way-1050237446", - "osm_id": 1050237446, - "reasons": [ - 43 - ], - "version": 1, - "primary_tags": { - "building": "nutspaal type windturbine" - } - } - ], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-08T10:05:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 491, - "modify": 392, - "delete": 1, - "area": 0.0000979364505599785, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 353, - "theme": "grb", - "delete": 1, - "import": 62, - "locale": "nl", - "imagery": "osm", - "conflation": 88 - }, - "id": 119463786 - } - }, - { - "id": 119461562, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9136991, - 51.8263286 - ], - [ - 3.9136991, - 51.8263286 - ], - [ - 3.9136991, - 51.8263286 - ], - [ - 3.9136991, - 51.8263286 - ], - [ - 3.9136991, - 51.8263286 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-08T09:28:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 119461562 - } - }, - { - "id": 119458775, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2080829, - 51.0356836 - ], - [ - 3.2278984, - 51.0356836 - ], - [ - 3.2278984, - 51.0510968 - ], - [ - 3.2080829, - 51.0510968 - ], - [ - 3.2080829, - 51.0356836 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Stijndebuck", - "uid": "15353406", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 3, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-08T08:27:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 5, - "modify": 5, - "delete": 0, - "area": 0.000305420264600092, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed", - "theme": "aed", - "answer": 17, - "create": 5, - "locale": "en", - "imagery": "osm" - }, - "id": 119458775 - } - }, - { - "id": 119455492, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3338219, - 50.9985129 - ], - [ - 3.3441179, - 50.9985129 - ], - [ - 3.3441179, - 50.9986848 - ], - [ - 3.3338219, - 50.9986848 - ], - [ - 3.3338219, - 50.9985129 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-08T07:00:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000017698823999795, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 3, - "locale": "en", - "imagery": "osm", - "soft-delete": 1, - "soft-delete:way/399875080": "duplicate" - }, - "id": 119455492 - } - }, - { - "id": 119447375, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6085963, - 51.0929291 - ], - [ - 3.6088263, - 51.0929291 - ], - [ - 3.6088263, - 51.09512 - ], - [ - 3.6085963, - 51.09512 - ], - [ - 3.6085963, - 51.0929291 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-08T00:15:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 7, - "modify": 1, - "delete": 0, - "area": 5.03907000000892e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/theme.html", - "theme": "grb", - "answer": 1, - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119447375 - } - }, - { - "id": 119447300, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6076746, - 51.0945016 - ], - [ - 3.6112506, - 51.0945016 - ], - [ - 3.6112506, - 51.096695 - ], - [ - 3.6076746, - 51.096695 - ], - [ - 3.6076746, - 51.0945016 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-08T00:10:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 457, - "modify": 0, - "delete": 0, - "area": 0.00000784359839998492, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/theme.html", - "theme": "grb", - "import": 57, - "locale": "nl", - "imagery": "AGIVFlandersGRB" - }, - "id": 119447300 - } - }, - { - "id": 119446246, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2199436, - 51.1821307 - ], - [ - 3.235192, - 51.1821307 - ], - [ - 3.235192, - 51.2195 - ], - [ - 3.2199436, - 51.2195 - ], - [ - 3.2199436, - 51.1821307 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Arx - 83", - "uid": "9282195", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-07T22:45:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.000569822034119916, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste", - "theme": "waste", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 119446246 - } - }, - { - "id": 119443981, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2355769, - -39.8450748 - ], - [ - -73.2311757, - -39.8450748 - ], - [ - -73.2311757, - -39.8439782 - ], - [ - -73.2355769, - -39.8439782 - ], - [ - -73.2355769, - -39.8450748 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-07T20:54:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 16, - "delete": 0, - "area": 0.00000482635591998998, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "cyclosm", - "add-image": 16, - "change_within_25m": 9 - }, - "id": 119443981 - } - }, - { - "id": 119441307, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2635077, - 50.8655093 - ], - [ - 5.2801483, - 50.8655093 - ], - [ - 5.2801483, - 50.8767464 - ], - [ - 5.2635077, - 50.8767464 - ], - [ - 5.2635077, - 50.8655093 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-07T19:17:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 56, - "modify": 0, - "delete": 0, - "area": 0.000186992086260037, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 10, - "locale": "nl", - "imagery": "osm" - }, - "id": 119441307 - } - }, - { - "id": 119440333, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.051496, - 51.1636119 - ], - [ - 5.2275857, - 51.1636119 - ], - [ - 5.2275857, - 51.1883473 - ], - [ - 5.051496, - 51.1883473 - ], - [ - 5.051496, - 51.1636119 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-07T18:37:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00435564916537951, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 3, - "locale": "nl", - "imagery": "osm" - }, - "id": 119440333 - } - }, - { - "id": 119440040, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.050928, - 51.1193744 - ], - [ - 5.0640191, - 51.1193744 - ], - [ - 5.0640191, - 51.1273164 - ], - [ - 5.050928, - 51.1273164 - ], - [ - 5.050928, - 51.1193744 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-07T18:25:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 223, - "modify": 434, - "delete": 4, - "area": 0.000103969516200002, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 393, - "theme": "grb", - "answer": 3, - "delete": 4, - "import": 10, - "locale": "nl", - "imagery": "osm", - "conflation": 86 - }, - "id": 119440040 - } - }, - { - "id": 119435148, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1503664, - 41.388647 - ], - [ - 2.1510504, - 41.388647 - ], - [ - 2.1510504, - 41.389303 - ], - [ - 2.1503664, - 41.389303 - ], - [ - 2.1503664, - 41.388647 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ccamara", - "uid": "423535", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-07T15:36:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 4.48703999999622e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 119435148 - } - }, - { - "id": 119434186, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5915347, - 51.1010142 - ], - [ - 3.5953779, - 51.1010142 - ], - [ - 3.5953779, - 51.1028582 - ], - [ - 3.5915347, - 51.1028582 - ], - [ - 3.5915347, - 51.1010142 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-07T15:10:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 100, - "modify": 0, - "delete": 0, - "area": 0.00000708686079999374, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 10, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 1, - "change_within_500m": 9 - }, - "id": 119434186 - } - }, - { - "id": 119434092, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9142049, - 51.824733 - ], - [ - 3.9177101, - 51.824733 - ], - [ - 3.9177101, - 51.8252979 - ], - [ - 3.9142049, - 51.8252979 - ], - [ - 3.9142049, - 51.824733 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-07T15:08:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000198008748000174, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/nature.html", - "theme": "nature", - "locale": "nl", - "imagery": "osm", - "add-image": 3, - "change_within_1000m": 3 - }, - "id": 119434092 - } - }, - { - "id": 119433950, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9030908, - 51.8245357 - ], - [ - 3.9181285, - 51.8245357 - ], - [ - 3.9181285, - 51.8251536 - ], - [ - 3.9030908, - 51.8251536 - ], - [ - 3.9030908, - 51.8245357 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-07T15:03:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 22, - "delete": 0, - "area": 0.00000929179483002577, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 19, - "create": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 9, - "change_over_5000m": 2, - "change_within_500m": 4, - "change_within_1000m": 18 - }, - "id": 119433950 - } - }, - { - "id": 119433382, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8112342, - 50.7866521 - ], - [ - 3.8113475, - 50.7866521 - ], - [ - 3.8113475, - 50.7867156 - ], - [ - 3.8112342, - 50.7867156 - ], - [ - 3.8112342, - 50.7866521 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-07T14:46:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 7.19455000036455e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "import": 2, - "locale": "nl", - "imagery": "AGIV", - "import:node/9649224070": "source: https://osm.org/note/3099182", - "import:node/9649252497": "source: https://osm.org/note/3099198" - }, - "id": 119433382 - } - }, - { - "id": 119431455, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2615636, - 50.8639458 - ], - [ - 5.2797518, - 50.8639458 - ], - [ - 5.2797518, - 50.8766938 - ], - [ - 5.2615636, - 50.8766938 - ], - [ - 5.2615636, - 50.8639458 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-07T13:57:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2635, - "modify": 1935, - "delete": 6, - "area": 0.000231863173599907, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 1686, - "theme": "grb", - "delete": 6, - "import": 346, - "locale": "nl", - "imagery": "osm", - "conflation": 520 - }, - "id": 119431455 - } - }, - { - "id": 119429413, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2762501, - 50.8719188 - ], - [ - 5.2806105, - 50.8719188 - ], - [ - 5.2806105, - 50.8728419 - ], - [ - 5.2762501, - 50.8728419 - ], - [ - 5.2762501, - 50.8719188 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-07T12:58:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 139, - "modify": 180, - "delete": 1, - "area": 0.00000402508523997464, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 164, - "theme": "grb", - "delete": 1, - "import": 15, - "locale": "nl", - "imagery": "osm", - "conflation": 40 - }, - "id": 119429413 - } - }, - { - "id": 119429240, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2246267, - 51.2185636 - ], - [ - 3.2246267, - 51.2185636 - ], - [ - 3.2246267, - 51.2185636 - ], - [ - 3.2246267, - 51.2185636 - ], - [ - 3.2246267, - 51.2185636 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-07T12:54:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/artwork.html", - "theme": "artwork", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 119429240 - } - }, - { - "id": 119428605, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2688362, - 50.8712438 - ], - [ - 5.2780905, - 50.8712438 - ], - [ - 5.2780905, - 50.8740357 - ], - [ - 5.2688362, - 50.8740357 - ], - [ - 5.2688362, - 50.8712438 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-07T12:34:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 918, - "modify": 551, - "delete": 4, - "area": 0.000025837080169985, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 475, - "theme": "grb", - "delete": 4, - "import": 100, - "locale": "nl", - "imagery": "osm", - "conflation": 156 - }, - "id": 119428605 - } - }, - { - "id": 119428442, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5939707, - 51.093896 - ], - [ - 3.61465, - 51.093896 - ], - [ - 3.61465, - 51.1010626 - ], - [ - 3.5939707, - 51.1010626 - ], - [ - 3.5939707, - 51.093896 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-07T12:29:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6652, - "modify": 0, - "delete": 0, - "area": 0.000148200271379959, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 827, - "locale": "nl", - "imagery": "AGIVFlandersGRB" - }, - "id": 119428442 - } - }, - { - "id": 119427854, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4892776, - 51.1826486 - ], - [ - 4.4892776, - 51.1826486 - ], - [ - 4.4892776, - 51.1826486 - ], - [ - 4.4892776, - 51.1826486 - ], - [ - 4.4892776, - 51.1826486 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "boogscheut", - "uid": "2290210", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-07T12:13:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119427854 - } - }, - { - "id": 119427709, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.571524, - 50.9204892 - ], - [ - 5.5743478, - 50.9204892 - ], - [ - 5.5743478, - 50.9224433 - ], - [ - 5.571524, - 50.9224433 - ], - [ - 5.571524, - 50.9204892 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bezoekerscentrum Lieteberg", - "uid": "15504016", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-07T12:10:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 19, - "delete": 0, - "area": 0.00000551798757999671, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 3, - "theme": "toerisme_vlaanderen", - "answer": 35, - "create": 3, - "import": 1, - "locale": "nl", - "imagery": "osm", - "move:node/9648851052": "improve_accuracy", - "move:node/9648909892": "improve_accuracy", - "move:node/9648909893": "improve_accuracy", - "import:node/9648921722": "source: https://osm.org/note/3044449" - }, - "id": 119427709 - } - }, - { - "id": 119426696, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7022343, - 51.050972 - ], - [ - 3.7022343, - 51.050972 - ], - [ - 3.7022343, - 51.050972 - ], - [ - 3.7022343, - 51.050972 - ], - [ - 3.7022343, - 51.050972 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-8024991201", - "name": "Blazers en Blazers", - "osm_id": 8024991201, - "reasons": [ - 43 - ], - "version": 12, - "primary_tags": { - "shop": "brass_instruments" - } - } - ], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-07T11:44:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops", - "theme": "shops", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 119426696 - } - }, - { - "id": 119425364, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.0647357, - 52.0955902 - ], - [ - -1.0647357, - 52.0955902 - ], - [ - -1.0647357, - 52.0955902 - ], - [ - -1.0647357, - 52.0955902 - ], - [ - -1.0647357, - 52.0955902 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "ChisomoL", - "uid": "15333258", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-07T11:19:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 119425364 - } - }, - { - "id": 119424619, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5742969, - 50.9224285 - ], - [ - 5.5742969, - 50.9224285 - ], - [ - 5.5742969, - 50.9224285 - ], - [ - 5.5742969, - 50.9224285 - ], - [ - 5.5742969, - 50.9224285 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bezoekerscentrum Lieteberg", - "uid": "15504016", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-07T11:04:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 4, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 119424619 - } - }, - { - "id": 119422988, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2713796, - 50.8725964 - ], - [ - 5.2811124, - 50.8725964 - ], - [ - 5.2811124, - 50.8760078 - ], - [ - 5.2713796, - 50.8760078 - ], - [ - 5.2713796, - 50.8725964 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-07T10:24:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 744, - "modify": 510, - "delete": 0, - "area": 0.000033202473919972, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 443, - "theme": "grb", - "import": 101, - "locale": "nl", - "imagery": "osm", - "conflation": 138 - }, - "id": 119422988 - } - }, - { - "id": 119422904, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.274189, - 50.8757292 - ], - [ - 5.2763479, - 50.8757292 - ], - [ - 5.2763479, - 50.8769951 - ], - [ - 5.274189, - 50.8769951 - ], - [ - 5.274189, - 50.8757292 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-07T10:22:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 95, - "modify": 38, - "delete": 1, - "area": 0.00000273295151000037, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 33, - "theme": "grb", - "delete": 1, - "import": 12, - "locale": "nl", - "imagery": "osm", - "conflation": 10 - }, - "id": 119422904 - } - }, - { - "id": 119422889, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2738136, - 50.8767281 - ], - [ - 5.2743058, - 50.8767281 - ], - [ - 5.2743058, - 50.8769936 - ], - [ - 5.2738136, - 50.8769936 - ], - [ - 5.2738136, - 50.8767281 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-07T10:21:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 14, - "delete": 0, - "area": 1.30679099998591e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 12, - "theme": "grb", - "locale": "nl", - "imagery": "osm", - "conflation": 4 - }, - "id": 119422889 - } - }, - { - "id": 119422568, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.271219, - 50.8757914 - ], - [ - 5.2748599, - 50.8757914 - ], - [ - 5.2748599, - 50.8782373 - ], - [ - 5.271219, - 50.8782373 - ], - [ - 5.271219, - 50.8757914 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-07T10:13:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 199, - "modify": 156, - "delete": 0, - "area": 0.00000890527731001752, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 126, - "theme": "grb", - "import": 34, - "locale": "nl", - "imagery": "osm", - "conflation": 34 - }, - "id": 119422568 - } - }, - { - "id": 119422251, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2744502, - 50.8723739 - ], - [ - 5.2854787, - 50.8723739 - ], - [ - 5.2854787, - 50.8795756 - ], - [ - 5.2744502, - 50.8795756 - ], - [ - 5.2744502, - 50.8723739 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-07T10:04:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 646, - "modify": 0, - "delete": 0, - "area": 0.0000794239484500284, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 75, - "locale": "_context", - "imagery": "osm" - }, - "id": 119422251 - } - }, - { - "id": 119420330, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5701517, - 50.9214374 - ], - [ - 5.5742969, - 50.9214374 - ], - [ - 5.5742969, - 50.9224285 - ], - [ - 5.5701517, - 50.9224285 - ], - [ - 5.5701517, - 50.9214374 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bezoekerscentrum Lieteberg", - "uid": "15504016", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-07T09:17:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 6, - "delete": 0, - "area": 0.00000410830772000097, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 7, - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 119420330 - } - }, - { - "id": 119419335, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8767801, - 51.0069886 - ], - [ - 3.881255, - 51.0069886 - ], - [ - 3.881255, - 51.0082174 - ], - [ - 3.8767801, - 51.0082174 - ], - [ - 3.8767801, - 51.0069886 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Erin76", - "uid": "8982454", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #sidewalks", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-07T08:48:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.00000549875711999908, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/ghostbikes.html", - "theme": "sidewalks", - "answer": 3, - "locale": "en", - "imagery": "CartoDB.Positron" - }, - "id": 119419335 - } - }, - { - "id": 119418312, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0035342, - 51.3276014 - ], - [ - 5.0035342, - 51.3276014 - ], - [ - 5.0035342, - 51.3276014 - ], - [ - 5.0035342, - 51.3276014 - ], - [ - 5.0035342, - 51.3276014 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Stinus_Clasius", - "uid": "1086503", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-07T08:20:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 119418312 - } - }, - { - "id": 119417091, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0052138, - 51.2093538 - ], - [ - 3.0056967, - 51.2093538 - ], - [ - 3.0056967, - 51.2094969 - ], - [ - 3.0052138, - 51.2094969 - ], - [ - 3.0052138, - 51.2093538 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Peter Velle", - "uid": "6196862", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-07T07:48:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6, - "modify": 1, - "delete": 2, - "area": 6.91029899978035e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 4, - "create": 6, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "deletion": 2, - "change_over_5000m": 6, - "change_within_25m": 5, - "change_within_50m": 1, - "deletion:node/9647908884": "testing point", - "deletion:node/9647922799": "testing point" - }, - "id": 119417091 - } - }, - { - "id": 119414564, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9949596, - 48.4999611 - ], - [ - 8.9966318, - 48.4999611 - ], - [ - 8.9966318, - 48.5004053 - ], - [ - 8.9949596, - 48.5004053 - ], - [ - 8.9949596, - 48.4999611 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-07T06:44:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 7, - "modify": 10, - "delete": 0, - "area": 7.42791239994718e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 18, - "create": 7, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 7, - "change_within_25m": 15, - "change_within_50m": 3 - }, - "id": 119414564 - } - }, - { - "id": 119406477, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2212297, - 51.2153672 - ], - [ - 3.2212297, - 51.2153672 - ], - [ - 3.2212297, - 51.2153672 - ], - [ - 3.2212297, - 51.2153672 - ], - [ - 3.2212297, - 51.2153672 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #transit", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-06T23:44:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/transit/transit.html", - "theme": "transit", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_100m": 1 - }, - "id": 119406477 - } - }, - { - "id": 119405504, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9793169, - 51.2466353 - ], - [ - 4.9793504, - 51.2466353 - ], - [ - 4.9793504, - 51.2466616 - ], - [ - 4.9793169, - 51.2466616 - ], - [ - 4.9793169, - 51.2466353 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Den Heikanter", - "uid": "15507557", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 1, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-06T22:38:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 11, - "delete": 0, - "area": 8.81050000078704e-10, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 19, - "create": 3, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 119405504 - } - }, - { - "id": 119404196, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9146419, - 51.4530129 - ], - [ - 4.9146419, - 51.4530129 - ], - [ - 4.9146419, - 51.4530129 - ], - [ - 4.9146419, - 51.4530129 - ], - [ - 4.9146419, - 51.4530129 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9636183925", - "name": "Enclave Tours", - "osm_id": 9636183925, - "reasons": [ - 43 - ], - "version": 4, - "primary_tags": { - "shop": "bicycle_rental" - } - } - ], - "user": "Enclave Tours", - "uid": "15506540", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 5, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-06T21:31:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 4, - "locale": "nl", - "imagery": "osm" - }, - "id": 119404196 - } - }, - { - "id": 119402986, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.7291647, - 41.2208619 - ], - [ - 1.7300092, - 41.2208619 - ], - [ - 1.7300092, - 41.2222419 - ], - [ - 1.7291647, - 41.2222419 - ], - [ - 1.7291647, - 41.2208619 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 489, - "name": "Mapbox: Spam text" - } - ], - "tags": [], - "features": [ - { - "url": "node-4439612463", - "osm_id": 4439612463, - "reasons": [ - 489 - ], - "version": 9 - } - ], - "user": "hortacalaf", - "uid": "14495457", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-06T20:38:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 24, - "delete": 0, - "area": 0.00000116540999999777, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", - "answer": 30, - "locale": "ca", - "imagery": "osm" - }, - "id": 119402986 - } - }, - { - "id": 119401323, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.286613, - 50.871161 - ], - [ - 5.2883283, - 50.871161 - ], - [ - 5.2883283, - 50.8728882 - ], - [ - 5.286613, - 50.8728882 - ], - [ - 5.286613, - 50.871161 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-06T19:44:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 71, - "modify": 111, - "delete": 1, - "area": 0.00000296266615999583, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 99, - "theme": "grb", - "delete": 1, - "import": 13, - "locale": "nl", - "imagery": "osm", - "conflation": 24 - }, - "id": 119401323 - } - }, - { - "id": 119401138, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2837457, - 50.8719298 - ], - [ - 5.2879345, - 50.8719298 - ], - [ - 5.2879345, - 50.8736891 - ], - [ - 5.2837457, - 50.8736891 - ], - [ - 5.2837457, - 50.8719298 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-06T19:38:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 107, - "modify": 140, - "delete": 0, - "area": 0.000007369355840015, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 126, - "theme": "grb", - "import": 15, - "locale": "nl", - "imagery": "osm", - "conflation": 34 - }, - "id": 119401138 - } - }, - { - "id": 119400908, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2830822, - 50.8722091 - ], - [ - 5.2865016, - 50.8722091 - ], - [ - 5.2865016, - 50.8741413 - ], - [ - 5.2830822, - 50.8741413 - ], - [ - 5.2830822, - 50.8722091 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-06T19:30:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 189, - "modify": 223, - "delete": 0, - "area": 0.00000660696467999657, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 201, - "theme": "grb", - "import": 28, - "locale": "nl", - "imagery": "osm", - "conflation": 44 - }, - "id": 119400908 - } - }, - { - "id": 119400021, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.398237, - 51.1754533 - ], - [ - 3.3983187, - 51.1754533 - ], - [ - 3.3983187, - 51.1754941 - ], - [ - 3.398237, - 51.1754941 - ], - [ - 3.398237, - 51.1754533 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-06T19:00:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 3.33336000005804e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 119400021 - } - }, - { - "id": 119399406, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.7294477, - 41.2208619 - ], - [ - 1.7296802, - 41.2208619 - ], - [ - 1.7296802, - 41.2210198 - ], - [ - 1.7294477, - 41.2210198 - ], - [ - 1.7294477, - 41.2208619 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "hortacalaf", - "uid": "14495457", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-06T18:40:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 3.67117499995066e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", - "answer": 7, - "locale": "ca", - "imagery": "osm" - }, - "id": 119399406 - } - }, - { - "id": 119397966, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2789208, - 50.3326713 - ], - [ - 4.2789208, - 50.3326713 - ], - [ - 4.2789208, - 50.3326713 - ], - [ - 4.2789208, - 50.3326713 - ], - [ - 4.2789208, - 50.3326713 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Jakka", - "uid": "2403313", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-06T17:58:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 119397966 - } - }, - { - "id": 119393686, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0686177, - 51.1681563 - ], - [ - 3.9823519, - 51.1681563 - ], - [ - 3.9823519, - 51.8372542 - ], - [ - 3.0686177, - 51.8372542 - ], - [ - 3.0686177, - 51.1681563 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9644980902", - "osm_id": 9644980902, - "reasons": [ - 43 - ], - "version": 3, - "primary_tags": { - "barrier": "wicket_gate" - } - } - ], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-06T15:51:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.611377634378177, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", - "answer": 4, - "locale": "en", - "imagery": "osm", - "add-image": 4, - "change_over_5000m": 2, - "change_within_5000m": 5 - }, - "id": 119393686 - } - }, - { - "id": 119388139, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5701517, - 50.9214374 - ], - [ - 5.572608, - 50.9214374 - ], - [ - 5.572608, - 50.9221082 - ], - [ - 5.5701517, - 50.9221082 - ], - [ - 5.5701517, - 50.9214374 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bezoekerscentrum Lieteberg", - "uid": "15504016", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-06T13:38:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000164768603998652, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 119388139 - } - }, - { - "id": 119387781, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2806102, - 50.8736419 - ], - [ - 5.3015726, - 50.8736419 - ], - [ - 5.3015726, - 50.8970472 - ], - [ - 5.2806102, - 50.8970472 - ], - [ - 5.2806102, - 50.8736419 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-06T13:29:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1312, - "modify": 1073, - "delete": 24, - "area": 0.00049063126072001, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 971, - "theme": "grb", - "delete": 24, - "import": 205, - "locale": "nl", - "imagery": "osm", - "conflation": 230 - }, - "id": 119387781 - } - }, - { - "id": 119387711, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.8224595, - 50.7401743 - ], - [ - 5.8224595, - 50.7401743 - ], - [ - 5.8224595, - 50.7401743 - ], - [ - 5.8224595, - 50.7401743 - ], - [ - 5.8224595, - 50.7401743 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-06T13:27:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 3, - "import": 1, - "locale": "nl", - "imagery": "osm", - "import:node/9645639172": "source: https://osm.org/note/3044224" - }, - "id": 119387711 - } - }, - { - "id": 119387271, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.8477342, - 50.7372896 - ], - [ - 5.8477342, - 50.7372896 - ], - [ - 5.8477342, - 50.7372896 - ], - [ - 5.8477342, - 50.7372896 - ], - [ - 5.8477342, - 50.7372896 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-06T13:17:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches", - "theme": "benches", - "answer": 3, - "import": 1, - "locale": "nl", - "imagery": "AGIV", - "change_over_5000m": 4, - "import:node/9645625081": "source: https://osm.org/note/3044682" - }, - "id": 119387271 - } - }, - { - "id": 119386583, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2721597, - 50.8789965 - ], - [ - 5.281896, - 50.8789965 - ], - [ - 5.281896, - 50.8851145 - ], - [ - 5.2721597, - 50.8851145 - ], - [ - 5.2721597, - 50.8789965 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-06T13:00:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 348, - "modify": 348, - "delete": 12, - "area": 0.000059566683400008, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 316, - "theme": "grb", - "delete": 12, - "import": 55, - "locale": "nl", - "imagery": "osm", - "conflation": 64 - }, - "id": 119386583 - } - }, - { - "id": 119386576, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-06T13:00:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119386576 - } - }, - { - "id": 119386120, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3370245, - 50.8672187 - ], - [ - 4.3370245, - 50.8672187 - ], - [ - 4.3370245, - 50.8672187 - ], - [ - 4.3370245, - 50.8672187 - ], - [ - 4.3370245, - 50.8672187 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-06T12:49:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 3, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 119386120 - } - }, - { - "id": 119385630, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3526805, - 50.8558007 - ], - [ - 4.3526805, - 50.8558007 - ], - [ - 4.3526805, - 50.8558007 - ], - [ - 4.3526805, - 50.8558007 - ], - [ - 4.3526805, - 50.8558007 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-06T12:37:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 119385630 - } - }, - { - "id": 119384835, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2648288, - 50.8751699 - ], - [ - 5.2740192, - 50.8751699 - ], - [ - 5.2740192, - 50.8808079 - ], - [ - 5.2648288, - 50.8808079 - ], - [ - 5.2648288, - 50.8751699 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-06T12:17:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 893, - "modify": 446, - "delete": 0, - "area": 0.0000518154751999756, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 401, - "theme": "grb", - "import": 110, - "locale": "nl", - "imagery": "osm", - "conflation": 102 - }, - "id": 119384835 - } - }, - { - "id": 119384375, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2508493, - 50.865365 - ], - [ - 5.2660366, - 50.865365 - ], - [ - 5.2660366, - 50.8756702 - ], - [ - 5.2508493, - 50.8756702 - ], - [ - 5.2508493, - 50.865365 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-06T12:06:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 431, - "modify": 337, - "delete": 3, - "area": 0.000156508163960073, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 303, - "theme": "grb", - "delete": 3, - "import": 50, - "locale": "nl", - "imagery": "osm", - "conflation": 84 - }, - "id": 119384375 - } - }, - { - "id": 119379270, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9061527, - 51.822271 - ], - [ - 3.9061527, - 51.822271 - ], - [ - 3.9061527, - 51.822271 - ], - [ - 3.9061527, - 51.822271 - ], - [ - 3.9061527, - 51.822271 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-06T10:14:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 119379270 - } - }, - { - "id": 119377136, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2536476, - 50.867154 - ], - [ - 5.2596407, - 50.867154 - ], - [ - 5.2596407, - 50.8713076 - ], - [ - 5.2536476, - 50.8713076 - ], - [ - 5.2536476, - 50.867154 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-06T09:29:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 347, - "modify": 292, - "delete": 0, - "area": 0.0000248929401600149, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 257, - "theme": "grb", - "import": 40, - "locale": "nl", - "imagery": "osm", - "conflation": 78 - }, - "id": 119377136 - } - }, - { - "id": 119377132, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-06T09:29:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 4, - "theme": "grb", - "import": 2, - "locale": "nl", - "imagery": "osm", - "conflation": 2 - }, - "id": 119377132 - } - }, - { - "id": 119374888, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.239103, - 50.8569231 - ], - [ - 5.2534286, - 50.8569231 - ], - [ - 5.2534286, - 50.8678193 - ], - [ - 5.239103, - 50.8678193 - ], - [ - 5.239103, - 50.8569231 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-06T08:30:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 585, - "modify": 149, - "delete": 2, - "area": 0.00015609460271997, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 126, - "theme": "grb", - "delete": 2, - "import": 67, - "locale": "nl", - "imagery": "osm", - "conflation": 50 - }, - "id": 119374888 - } - }, - { - "id": 119370272, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.0237567, - 37.3113032 - ], - [ - -122.023756, - 37.3113032 - ], - [ - -122.023756, - 37.3113032 - ], - [ - -122.0237567, - 37.3113032 - ], - [ - -122.0237567, - 37.3113032 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "drklee3", - "uid": "12569239", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-06T06:21:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 8, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 10, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_5000m": 10 - }, - "id": 119370272 - } - }, - { - "id": 119369056, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3914071, - 50.8517137 - ], - [ - 4.3967582, - 50.8517137 - ], - [ - 4.3967582, - 50.8631197 - ], - [ - 4.3914071, - 50.8631197 - ], - [ - 4.3914071, - 50.8517137 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-06T05:43:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 4, - "delete": 0, - "area": 0.0000610346465999992, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 8, - "create": 2, - "locale": "en", - "imagery": "UrbISOrtho", - "add-image": 2 - }, - "id": 119369056 - } - }, - { - "id": 119357797, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2421276, - 50.858356 - ], - [ - 5.2469938, - 50.858356 - ], - [ - 5.2469938, - 50.8615918 - ], - [ - 5.2421276, - 50.8615918 - ], - [ - 5.2421276, - 50.858356 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-05T19:46:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 193, - "modify": 138, - "delete": 2, - "area": 0.0000157460499599953, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 120, - "theme": "grb", - "delete": 2, - "import": 25, - "locale": "nl", - "imagery": "osm", - "conflation": 40 - }, - "id": 119357797 - } - }, - { - "id": 119356641, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8698758, - 51.302913 - ], - [ - 4.8774972, - 51.302913 - ], - [ - 4.8774972, - 51.3074363 - ], - [ - 4.8698758, - 51.3074363 - ], - [ - 4.8698758, - 51.302913 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Philippe Winant", - "uid": "6354026", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-05T19:06:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 24, - "delete": 0, - "area": 0.0000344738786200172, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 27, - "create": 3, - "locale": "nl", - "imagery": "osm", - "add-image": 15 - }, - "id": 119356641 - } - }, - { - "id": 119356571, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.2766393, - 47.7982321 - ], - [ - -4.2758729, - 47.7982321 - ], - [ - -4.2758729, - 47.7987611 - ], - [ - -4.2766393, - 47.7987611 - ], - [ - -4.2766393, - 47.7982321 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "TedScouGV", - "uid": "75300", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-05T19:03:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 4.05425600000084e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/campersite", - "theme": "campersite", - "answer": 9, - "locale": "en", - "imagery": "osm" - }, - "id": 119356571 - } - }, - { - "id": 119356252, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8594882, - 51.1413923 - ], - [ - 4.8695345, - 51.1413923 - ], - [ - 4.8695345, - 51.1464471 - ], - [ - 4.8594882, - 51.1464471 - ], - [ - 4.8594882, - 51.1413923 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-05T18:52:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 504, - "modify": 476, - "delete": 1, - "area": 0.0000507820372400346, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 397, - "theme": "grb", - "answer": 1, - "delete": 1, - "import": 39, - "locale": "nl", - "imagery": "osm", - "conflation": 156 - }, - "id": 119356252 - } - }, - { - "id": 119356245, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.867321, - 51.1449678 - ], - [ - 4.8682469, - 51.1449678 - ], - [ - 4.8682469, - 51.1452413 - ], - [ - 4.867321, - 51.1452413 - ], - [ - 4.867321, - 51.1449678 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-05T18:51:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 18, - "delete": 0, - "area": 2.53233649998902e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 16, - "theme": "grb", - "locale": "nl", - "imagery": "osm", - "conflation": 8 - }, - "id": 119356245 - } - }, - { - "id": 119355457, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.2822625, - 47.79469 - ], - [ - -4.281062, - 47.79469 - ], - [ - -4.281062, - 47.796009 - ], - [ - -4.2822625, - 47.796009 - ], - [ - -4.2822625, - 47.79469 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "TedScouGV", - "uid": "75300", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-05T18:26:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 6, - "delete": 0, - "area": 0.00000158345949999355, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/entrances.html", - "theme": "entrances", - "answer": 5, - "create": 6, - "locale": "en", - "imagery": "osm", - "change_within_500m": 11 - }, - "id": 119355457 - } - }, - { - "id": 119355151, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9685248, - 51.8368678 - ], - [ - 3.9921277, - 51.8368678 - ], - [ - 3.9921277, - 51.8411878 - ], - [ - 3.9685248, - 51.8411878 - ], - [ - 3.9685248, - 51.8368678 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-05T18:15:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 11, - "delete": 0, - "area": 0.000101964527999998, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 11, - "create": 1, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "add-image": 6, - "change_over_5000m": 4, - "change_within_5000m": 14 - }, - "id": 119355151 - } - }, - { - "id": 119355072, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9683804, - 51.8365693 - ], - [ - 3.9822331, - 51.8365693 - ], - [ - 3.9822331, - 51.8372793 - ], - [ - 3.9683804, - 51.8372793 - ], - [ - 3.9683804, - 51.8365693 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-05T18:12:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00000983541699997227, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "answer": 3, - "locale": "en", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 2, - "change_within_5000m": 2 - }, - "id": 119355072 - } - }, - { - "id": 119355028, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9685441, - 51.8360472 - ], - [ - 3.982795, - 51.8360472 - ], - [ - 3.982795, - 51.8370128 - ], - [ - 3.9685441, - 51.8370128 - ], - [ - 3.9685441, - 51.8360472 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-05T18:10:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000137606690399083, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/nature.html", - "theme": "nature", - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 1, - "change_within_5000m": 1 - }, - "id": 119355028 - } - }, - { - "id": 119352776, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.944824, - 50.2206975 - ], - [ - 4.944824, - 50.2206975 - ], - [ - 4.944824, - 50.2206975 - ], - [ - 4.944824, - 50.2206975 - ], - [ - 4.944824, - 50.2206975 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-05T16:54:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/climbing", - "theme": "climbing", - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 119352776 - } - }, - { - "id": 119351555, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9817695, - 51.8372649 - ], - [ - 3.9817695, - 51.8372649 - ], - [ - 3.9817695, - 51.8372649 - ], - [ - 3.9817695, - 51.8372649 - ], - [ - 3.9817695, - 51.8372649 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-05T16:22:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 119351555 - } - }, - { - "id": 119347199, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9823809, - 51.8368842 - ], - [ - 3.9823809, - 51.8368842 - ], - [ - 3.9823809, - 51.8368842 - ], - [ - 3.9823809, - 51.8368842 - ], - [ - 3.9823809, - 51.8368842 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-05T14:29:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/nature.html", - "theme": "nature", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1 - }, - "id": 119347199 - } - }, - { - "id": 119346822, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9817695, - 51.8372649 - ], - [ - 3.9817695, - 51.8372649 - ], - [ - 3.9817695, - 51.8372649 - ], - [ - 3.9817695, - 51.8372649 - ], - [ - 3.9817695, - 51.8372649 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-05T14:20:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "change_over_5000m": 4 - }, - "id": 119346822 - } - }, - { - "id": 119345884, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2338597, - 50.8548283 - ], - [ - 5.2446597, - 50.8548283 - ], - [ - 5.2446597, - 50.8590859 - ], - [ - 5.2338597, - 50.8590859 - ], - [ - 5.2338597, - 50.8548283 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-05T13:54:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 335, - "modify": 322, - "delete": 6, - "area": 0.0000459820799999493, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 288, - "theme": "grb", - "delete": 6, - "import": 39, - "locale": "nl", - "imagery": "osm", - "conflation": 70 - }, - "id": 119345884 - } - }, - { - "id": 119345798, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2362568, - 50.8570936 - ], - [ - 5.2406638, - 50.8570936 - ], - [ - 5.2406638, - 50.8579964 - ], - [ - 5.2362568, - 50.8579964 - ], - [ - 5.2362568, - 50.8570936 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-05T13:52:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 23, - "modify": 20, - "delete": 0, - "area": 0.00000397863959999449, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 16, - "theme": "grb", - "import": 3, - "locale": "nl", - "imagery": "osm", - "conflation": 8 - }, - "id": 119345798 - } - }, - { - "id": 119345235, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2394462, - 50.8443136 - ], - [ - 5.2562163, - 50.8443136 - ], - [ - 5.2562163, - 50.8572157 - ], - [ - 5.2394462, - 50.8572157 - ], - [ - 5.2394462, - 50.8443136 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-05T13:39:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 486, - "modify": 468, - "delete": 3, - "area": 0.000216369507209973, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 421, - "theme": "grb", - "delete": 3, - "import": 71, - "locale": "nl", - "imagery": "osm", - "conflation": 106 - }, - "id": 119345235 - } - }, - { - "id": 119343636, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.250633, - 50.8351898 - ], - [ - 5.260058, - 50.8351898 - ], - [ - 5.260058, - 50.8468007 - ], - [ - 5.250633, - 50.8468007 - ], - [ - 5.250633, - 50.8351898 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-05T12:58:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1021, - "modify": 1540, - "delete": 10, - "area": 0.000109432732500011, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 1379, - "theme": "grb", - "delete": 10, - "import": 176, - "locale": "nl", - "imagery": "osm", - "conflation": 318 - }, - "id": 119343636 - } - }, - { - "id": 119343609, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-05T12:57:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 4, - "theme": "grb", - "locale": "nl", - "imagery": "osm", - "conflation": 2 - }, - "id": 119343609 - } - }, - { - "id": 119343192, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9922164, - 51.8412684 - ], - [ - 3.9922164, - 51.8412684 - ], - [ - 3.9922164, - 51.8412684 - ], - [ - 3.9922164, - 51.8412684 - ], - [ - 3.9922164, - 51.8412684 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-05T12:48:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 4, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 4 - }, - "id": 119343192 - } - }, - { - "id": 119341741, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2515055, - 50.8314254 - ], - [ - 5.2570114, - 50.8314254 - ], - [ - 5.2570114, - 50.8356394 - ], - [ - 5.2515055, - 50.8356394 - ], - [ - 5.2515055, - 50.8314254 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-05T12:16:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 931, - "modify": 979, - "delete": 22, - "area": 0.0000232018625999832, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 874, - "theme": "grb", - "delete": 22, - "import": 176, - "locale": "nl", - "imagery": "osm", - "conflation": 222 - }, - "id": 119341741 - } - }, - { - "id": 119341177, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2524173, - 50.8312116 - ], - [ - 5.2566551, - 50.8312116 - ], - [ - 5.2566551, - 50.8341732 - ], - [ - 5.2524173, - 50.8341732 - ], - [ - 5.2524173, - 50.8312116 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-05T12:03:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 85, - "modify": 557, - "delete": 14, - "area": 0.000012550668479994, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 502, - "theme": "grb", - "delete": 14, - "import": 21, - "locale": "nl", - "imagery": "osm", - "conflation": 138 - }, - "id": 119341177 - } - }, - { - "id": 119337024, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2383795, - 50.8152351 - ], - [ - 5.2599539, - 50.8152351 - ], - [ - 5.2599539, - 50.8285766 - ], - [ - 5.2383795, - 50.8285766 - ], - [ - 5.2383795, - 50.8152351 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-05T10:18:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 276, - "modify": 664, - "delete": 2, - "area": 0.000287834857599913, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 590, - "theme": "grb", - "delete": 2, - "import": 42, - "locale": "nl", - "imagery": "osm", - "conflation": 156 - }, - "id": 119337024 - } - }, - { - "id": 119336812, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4715524, - 51.3734347 - ], - [ - 4.4715524, - 51.3734347 - ], - [ - 4.4715524, - 51.3734347 - ], - [ - 4.4715524, - 51.3734347 - ], - [ - 4.4715524, - 51.3734347 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-05T10:13:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119336812 - } - }, - { - "id": 119335338, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.4284639, - 48.2561256 - ], - [ - 11.431913, - 48.2561256 - ], - [ - 11.431913, - 48.2565518 - ], - [ - 11.4284639, - 48.2565518 - ], - [ - 11.4284639, - 48.2561256 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "el_eco_stef", - "uid": "12795645", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-05T09:37:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000147000641999866, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/personal.html", - "theme": "personal", - "answer": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 119335338 - } - }, - { - "id": 119332474, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3018421, - 50.8262034 - ], - [ - 5.3514361, - 50.8262034 - ], - [ - 5.3514361, - 50.8516016 - ], - [ - 5.3018421, - 50.8516016 - ], - [ - 5.3018421, - 50.8262034 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "proudtobeevi", - "uid": "15491391", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-05T08:25:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6, - "modify": 2, - "delete": 1, - "area": 0.00125959833080025, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 2, - "theme": "toerisme_vlaanderen", - "answer": 4, - "create": 2, - "import": 4, - "locale": "nl", - "imagery": "osm", - "deletion": 1, - "move:node/4639723285": "improve_accuracy", - "move:node/4639723286": "improve_accuracy", - "import:node/9642595560": "source: https://osm.org/note/3044026", - "import:node/9642605521": "source: https://osm.org/note/3044068", - "import:node/9642605793": "source: https://osm.org/note/3044033", - "import:node/9642609026": "source: https://osm.org/note/3044010", - "deletion:node/6124967530": "is een picknickbank" - }, - "id": 119332474 - } - }, - { - "id": 119329440, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.8085673, - 51.1322707 - ], - [ - 5.8085673, - 51.1322707 - ], - [ - 5.8085673, - 51.1322707 - ], - [ - 5.8085673, - 51.1322707 - ], - [ - 5.8085673, - 51.1322707 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Café ´t Orgelhuys", - "uid": "15491052", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-05T07:08:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 119329440 - } - }, - { - "id": 119328552, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8744428, - 51.2041577 - ], - [ - 5.0231284, - 51.2041577 - ], - [ - 5.0231284, - 51.2673912 - ], - [ - 4.8744428, - 51.2673912 - ], - [ - 4.8744428, - 51.2041577 - ] - ] - ] - }, - "properties": { - "check_user": "jospyck", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Toerisme Kasterlee", - "uid": "15445529", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-05T06:43:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 64, - "modify": 0, - "delete": 2, - "area": 0.00940191088759935, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-04-05T10:10:20.318983Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 64, - "locale": "nl", - "imagery": "osm", - "deletion": 2, - "deletion:node/9642446796": "testing point", - "deletion:node/9642701084": "duplicate" - }, - "id": 119328552 - } - }, - { - "id": 119327176, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9085143, - 51.8247942 - ], - [ - 3.9085143, - 51.8247942 - ], - [ - 3.9085143, - 51.8247942 - ], - [ - 3.9085143, - 51.8247942 - ], - [ - 3.9085143, - 51.8247942 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-05T06:01:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/nature.html", - "theme": "nature", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_500m": 1 - }, - "id": 119327176 - } - }, - { - "id": 119327140, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.907216, - 51.8241695 - ], - [ - 3.907216, - 51.8241695 - ], - [ - 3.907216, - 51.8241695 - ], - [ - 3.907216, - 51.8241695 - ], - [ - 3.907216, - 51.8241695 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-05T06:00:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_500m": 1 - }, - "id": 119327140 - } - }, - { - "id": 119319951, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3579941, - 50.8481811 - ], - [ - 4.3579941, - 50.8481811 - ], - [ - 4.3579941, - 50.8481811 - ], - [ - 4.3579941, - 50.8481811 - ], - [ - 4.3579941, - 50.8481811 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-04T22:23:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 3, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 119319951 - } - }, - { - "id": 119319572, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.316851, - 50.8352168 - ], - [ - 4.3704821, - 50.8352168 - ], - [ - 4.3704821, - 50.8617143 - ], - [ - 4.316851, - 50.8617143 - ], - [ - 4.316851, - 50.8352168 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-04T22:02:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00142109007225028, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 2 - }, - "id": 119319572 - } - }, - { - "id": 119319527, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3224426, - 50.841712 - ], - [ - 4.3224426, - 50.841712 - ], - [ - 4.3224426, - 50.841712 - ], - [ - 4.3224426, - 50.841712 - ], - [ - 4.3224426, - 50.841712 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Jhowie_Nitnek", - "uid": "10209781", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #hackerspaces", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-04T22:00:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hackerspaces", - "theme": "hackerspaces", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 119319527 - } - }, - { - "id": 119318536, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 24.8057798, - 60.4570974 - ], - [ - 24.824118, - 60.4570974 - ], - [ - 24.824118, - 60.4638483 - ], - [ - 24.8057798, - 60.4638483 - ], - [ - 24.8057798, - 60.4570974 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NearCry", - "uid": "2373957", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-04T21:13:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 7, - "modify": 28, - "delete": 0, - "area": 0.000123799354379994, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed", - "theme": "aed", - "answer": 39, - "create": 7, - "locale": "en", - "imagery": "hri-orto" - }, - "id": 119318536 - } - }, - { - "id": 119318448, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2327132, - 51.2095932 - ], - [ - 3.2327132, - 51.2095932 - ], - [ - 3.2327132, - 51.2095932 - ], - [ - 3.2327132, - 51.2095932 - ], - [ - 3.2327132, - 51.2095932 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-04T21:10:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/climbing.html", - "theme": "shops", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 119318448 - } - }, - { - "id": 119316196, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2279679, - 50.8127515 - ], - [ - 5.2351002, - 50.8127515 - ], - [ - 5.2351002, - 50.8137786 - ], - [ - 5.2279679, - 50.8137786 - ], - [ - 5.2279679, - 50.8127515 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-04T19:56:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6, - "modify": 7, - "delete": 0, - "area": 0.0000073255853300117, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 6, - "theme": "grb", - "import": 2, - "locale": "nl", - "imagery": "osm", - "conflation": 2 - }, - "id": 119316196 - } - }, - { - "id": 119315943, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2265942, - 50.8127342 - ], - [ - 5.2295143, - 50.8127342 - ], - [ - 5.2295143, - 50.8152405 - ], - [ - 5.2265942, - 50.8152405 - ], - [ - 5.2265942, - 50.8127342 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-04T19:48:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 180, - "modify": 277, - "delete": 0, - "area": 0.00000731864663000053, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 243, - "theme": "grb", - "import": 25, - "locale": "nl", - "imagery": "osm", - "conflation": 68 - }, - "id": 119315943 - } - }, - { - "id": 119314812, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.2931984, - 47.7964505 - ], - [ - -4.2931984, - 47.7964505 - ], - [ - -4.2931984, - 47.7964505 - ], - [ - -4.2931984, - 47.7964505 - ], - [ - -4.2931984, - 47.7964505 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "TedScouGV", - "uid": "75300", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-04T19:10:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "theme": "waste_basket", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 119314812 - } - }, - { - "id": 119313585, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2268944, - 50.8136875 - ], - [ - 5.2271602, - 50.8136875 - ], - [ - 5.2271602, - 50.813831 - ], - [ - 5.2268944, - 50.813831 - ], - [ - 5.2268944, - 50.8136875 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-04T18:28:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 9, - "delete": 0, - "area": 3.81423000000491e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 8, - "theme": "grb", - "locale": "nl", - "imagery": "osm", - "conflation": 2 - }, - "id": 119313585 - } - }, - { - "id": 119312922, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.4320979, - 48.2561016 - ], - [ - 11.4421168, - 48.2561016 - ], - [ - 11.4421168, - 48.2579453 - ], - [ - 11.4320979, - 48.2579453 - ], - [ - 11.4320979, - 48.2561016 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "el_eco_stef", - "uid": "12795645", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-04T18:09:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.0000184718459300208, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 8, - "locale": "de", - "imagery": "osm" - }, - "id": 119312922 - } - }, - { - "id": 119312657, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.4230135, - 48.2445681 - ], - [ - 11.4471826, - 48.2445681 - ], - [ - 11.4471826, - 48.2576631 - ], - [ - 11.4230135, - 48.2576631 - ], - [ - 11.4230135, - 48.2445681 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "el_eco_stef", - "uid": "12795645", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-04T18:01:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.000316494364499996, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 11, - "locale": "de", - "imagery": "osm" - }, - "id": 119312657 - } - }, - { - "id": 119311890, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.4345631, - 48.2423666 - ], - [ - 11.4465686, - 48.2423666 - ], - [ - 11.4465686, - 48.2561397 - ], - [ - 11.4345631, - 48.2561397 - ], - [ - 11.4345631, - 48.2423666 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "el_eco_stef", - "uid": "12795645", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-04T17:39:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 33, - "delete": 0, - "area": 0.000165352952050031, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 41, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 119311890 - } - }, - { - "id": 119311701, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.4333385, - 48.2560376 - ], - [ - 11.43401, - 48.2560376 - ], - [ - 11.43401, - 48.2565516 - ], - [ - 11.4333385, - 48.2565516 - ], - [ - 11.4333385, - 48.2560376 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "el_eco_stef", - "uid": "12795645", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-04T17:33:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 3.45151000002262e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/entrances.html", - "theme": "entrances", - "answer": 2, - "create": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 119311701 - } - }, - { - "id": 119311575, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.907216, - 51.8241695 - ], - [ - 3.9086492, - 51.8241695 - ], - [ - 3.9086492, - 51.8247463 - ], - [ - 3.907216, - 51.8247463 - ], - [ - 3.907216, - 51.8241695 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-04T17:29:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 8.26669759996481e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 5, - "locale": "nl", - "imagery": "osm", - "change_within_500m": 5 - }, - "id": 119311575 - } - }, - { - "id": 119311075, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.4239548, - 48.2431163 - ], - [ - 11.446654, - 48.2431163 - ], - [ - 11.446654, - 48.2562704 - ], - [ - 11.4239548, - 48.2562704 - ], - [ - 11.4239548, - 48.2431163 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "el_eco_stef", - "uid": "12795645", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-04T17:16:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 14, - "delete": 0, - "area": 0.000298587546720028, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "answer": 17, - "locale": "de", - "imagery": "osm" - }, - "id": 119311075 - } - }, - { - "id": 119310359, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.4330302, - 48.2540645 - ], - [ - 11.4435876, - 48.2540645 - ], - [ - 11.4435876, - 48.255929 - ], - [ - 11.4330302, - 48.255929 - ], - [ - 11.4330302, - 48.2540645 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "el_eco_stef", - "uid": "12795645", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-04T16:54:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 14, - "delete": 0, - "area": 0.0000196842723000396, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 16, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 119310359 - } - }, - { - "id": 119307611, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9994362, - 48.5046399 - ], - [ - 8.9994362, - 48.5046399 - ], - [ - 8.9994362, - 48.5046399 - ], - [ - 8.9994362, - 48.5046399 - ], - [ - 8.9994362, - 48.5046399 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-04T15:38:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 119307611 - } - }, - { - "id": 119307381, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2327132, - 51.2095932 - ], - [ - 3.2327132, - 51.2095932 - ], - [ - 3.2327132, - 51.2095932 - ], - [ - 3.2327132, - 51.2095932 - ], - [ - 3.2327132, - 51.2095932 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-04T15:31:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/shops.html", - "theme": "shops", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 119307381 - } - }, - { - "id": 119306762, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -88.5365638, - 41.6590322 - ], - [ - -88.464607, - 41.6590322 - ], - [ - -88.464607, - 41.664035 - ], - [ - -88.5365638, - 41.664035 - ], - [ - -88.5365638, - 41.6590322 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jdcarls2", - "uid": "5778126", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-04T15:13:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 6, - "delete": 0, - "area": 0.000359985479039958, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 9, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 119306762 - } - }, - { - "id": 119304057, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2284427, - 50.8129971 - ], - [ - 5.2387413, - 50.8129971 - ], - [ - 5.2387413, - 50.8152329 - ], - [ - 5.2284427, - 50.8152329 - ], - [ - 5.2284427, - 50.8129971 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-04T13:47:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 233, - "modify": 347, - "delete": 0, - "area": 0.0000230256098800106, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 305, - "theme": "grb", - "import": 28, - "locale": "nl", - "imagery": "osm", - "conflation": 88 - }, - "id": 119304057 - } - }, - { - "id": 119303225, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2381236, - -39.8438829 - ], - [ - -73.2377638, - -39.8438829 - ], - [ - -73.2377638, - -39.8436361 - ], - [ - -73.2381236, - -39.8436361 - ], - [ - -73.2381236, - -39.8438829 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-04T13:20:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 8.87986399993241e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "cyclosm", - "add-image": 4 - }, - "id": 119303225 - } - }, - { - "id": 119302063, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2194887, - 50.7786356 - ], - [ - 5.241889, - 50.7786356 - ], - [ - 5.241889, - 50.8164531 - ], - [ - 5.2194887, - 50.8164531 - ], - [ - 5.2194887, - 50.7786356 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-04T12:49:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1001, - "modify": 1748, - "delete": 26, - "area": 0.000847123345249874, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 1547, - "theme": "grb", - "delete": 26, - "import": 142, - "locale": "nl", - "imagery": "osm", - "conflation": 412 - }, - "id": 119302063 - } - }, - { - "id": 119301118, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8444569, - 50.8132139 - ], - [ - 4.8478022, - 50.8132139 - ], - [ - 4.8478022, - 50.8310862 - ], - [ - 4.8444569, - 50.8310862 - ], - [ - 4.8444569, - 50.8132139 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Hilde OSM", - "uid": "15275790", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-04T12:23:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 5, - "delete": 1, - "area": 0.0000597882051900076, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 11, - "create": 1, - "locale": "nl", - "imagery": "osm", - "deletion": 1, - "add-image": 3, - "change_over_5000m": 1, - "change_within_25m": 15, - "deletion:node/9570775619": "duplicate" - }, - "id": 119301118 - } - }, - { - "id": 119298597, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8748669, - 50.8018524 - ], - [ - 4.9114901, - 50.8018524 - ], - [ - 4.9114901, - 50.8031202 - ], - [ - 4.8748669, - 50.8031202 - ], - [ - 4.8748669, - 50.8018524 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Hilde OSM", - "uid": "15275790", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-04T11:12:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 8, - "delete": 0, - "area": 0.0000464308929600302, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 11, - "create": 3, - "locale": "nl", - "imagery": "osm", - "add-image": 3, - "change_over_5000m": 3, - "change_within_25m": 9, - "change_within_5000m": 5 - }, - "id": 119298597 - } - }, - { - "id": 119297722, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3621716, - 50.8571793 - ], - [ - 4.3621716, - 50.8571793 - ], - [ - 4.3621716, - 50.8571793 - ], - [ - 4.3621716, - 50.8571793 - ], - [ - 4.3621716, - 50.8571793 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-04T10:48:07Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 119297722 - } - }, - { - "id": 119296121, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0379825, - 50.9401108 - ], - [ - 4.0468526, - 50.9401108 - ], - [ - 4.0468526, - 50.9467138 - ], - [ - 4.0379825, - 50.9467138 - ], - [ - 4.0379825, - 50.9401108 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "WimBau", - "uid": "15313167", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-04T10:03:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 12, - "delete": 0, - "area": 0.0000585692702999869, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 18, - "create": 3, - "locale": "nl", - "imagery": "osm", - "add-image": 4 - }, - "id": 119296121 - } - }, - { - "id": 119294511, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2118362, - 50.7902943 - ], - [ - 5.2260819, - 50.7902943 - ], - [ - 5.2260819, - 50.7946439 - ], - [ - 5.2118362, - 50.7946439 - ], - [ - 5.2118362, - 50.7902943 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-04T09:23:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 433, - "modify": 290, - "delete": 0, - "area": 0.0000619630967199662, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 247, - "theme": "grb", - "import": 53, - "locale": "nl", - "imagery": "osm", - "conflation": 90 - }, - "id": 119294511 - } - }, - { - "id": 119292927, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0251183, - 50.7607228 - ], - [ - 4.1222311, - 50.7607228 - ], - [ - 4.1222311, - 50.8181921 - ], - [ - 4.0251183, - 50.8181921 - ], - [ - 4.0251183, - 50.7607228 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-04T08:45:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 0.00558100463703939, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "import": 2, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 4, - "import:node/9635164567": "source: https://osm.org/note/3090273", - "import:node/9635167220": "source: https://osm.org/note/3090151" - }, - "id": 119292927 - } - }, - { - "id": 119292620, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2013584, - 50.795162 - ], - [ - 5.2171225, - 50.795162 - ], - [ - 5.2171225, - 50.8098113 - ], - [ - 5.2013584, - 50.8098113 - ], - [ - 5.2013584, - 50.795162 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-04T08:38:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1690, - "modify": 939, - "delete": 4, - "area": 0.000230933030130035, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 821, - "theme": "grb", - "delete": 4, - "import": 172, - "locale": "nl", - "imagery": "osm", - "conflation": 244 - }, - "id": 119292620 - } - }, - { - "id": 119291626, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2151501, - 50.8047894 - ], - [ - 5.2220316, - 50.8047894 - ], - [ - 5.2220316, - 50.8101323 - ], - [ - 5.2151501, - 50.8101323 - ], - [ - 5.2151501, - 50.8047894 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-04T08:13:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 584, - "modify": 850, - "delete": 8, - "area": 0.0000367671663500178, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 754, - "theme": "grb", - "delete": 8, - "import": 74, - "locale": "nl", - "imagery": "osm", - "conflation": 204 - }, - "id": 119291626 - } - }, - { - "id": 119291302, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2139737, - 50.8031158 - ], - [ - 5.2234925, - 50.8031158 - ], - [ - 5.2234925, - 50.8077069 - ], - [ - 5.2139737, - 50.8077069 - ], - [ - 5.2139737, - 50.8031158 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-04T08:05:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 124, - "modify": 290, - "delete": 1, - "area": 0.0000437017626799878, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 253, - "theme": "grb", - "delete": 1, - "import": 9, - "locale": "nl", - "imagery": "osm", - "conflation": 74 - }, - "id": 119291302 - } - }, - { - "id": 119280195, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.1335548, - 50.8318295 - ], - [ - -0.1335548, - 50.8318295 - ], - [ - -0.1335548, - 50.8318295 - ], - [ - -0.1335548, - 50.8318295 - ], - [ - -0.1335548, - 50.8318295 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joethUK", - "uid": "13966463", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #bicycle_rental", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-03T22:23:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bicycle_rental.html", - "theme": "bicycle_rental", - "answer": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 119280195 - } - }, - { - "id": 119278252, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9947918, - 51.1770658 - ], - [ - 4.9947918, - 51.1770658 - ], - [ - 4.9947918, - 51.1770658 - ], - [ - 4.9947918, - 51.1770658 - ], - [ - 4.9947918, - 51.1770658 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #fritures", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-03T20:42:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/fritures.html", - "theme": "fritures", - "answer": 4, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 4 - }, - "id": 119278252 - } - }, - { - "id": 119278248, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3324542, - 50.8781366 - ], - [ - 4.3325238, - 50.8781366 - ], - [ - 4.3325238, - 50.8781954 - ], - [ - 4.3324542, - 50.8781954 - ], - [ - 4.3324542, - 50.8781366 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-03T20:41:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 4.09248000033662e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 3 - }, - "id": 119278248 - } - }, - { - "id": 119276975, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.239645, - 51.223322 - ], - [ - 3.239645, - 51.223322 - ], - [ - 3.239645, - 51.223322 - ], - [ - 3.239645, - 51.223322 - ], - [ - 3.239645, - 51.223322 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-03T19:51:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/bookcases.html", - "theme": "bookcases", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 119276975 - } - }, - { - "id": 119275875, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3840286, - 50.8708091 - ], - [ - 4.3840286, - 50.8708091 - ], - [ - 4.3840286, - 50.8708091 - ], - [ - 4.3840286, - 50.8708091 - ], - [ - 4.3840286, - 50.8708091 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-03T19:09:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 119275875 - } - }, - { - "id": 119275455, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 30.5005252, - 59.9353348 - ], - [ - 30.502005, - 59.9353348 - ], - [ - 30.502005, - 59.9354003 - ], - [ - 30.5005252, - 59.9354003 - ], - [ - 30.5005252, - 59.9353348 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "TrickyFoxy", - "uid": "11528195", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-03T18:53:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 6, - "delete": 0, - "area": 9.69268999972521e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 7, - "locale": "ru", - "imagery": "Mapbox" - }, - "id": 119275455 - } - }, - { - "id": 119275032, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.212575, - 50.801533 - ], - [ - 5.2162104, - 50.801533 - ], - [ - 5.2162104, - 50.8035373 - ], - [ - 5.212575, - 50.8035373 - ], - [ - 5.212575, - 50.801533 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-03T18:37:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 132, - "modify": 122, - "delete": 0, - "area": 0.00000728643222000955, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 110, - "theme": "grb", - "import": 11, - "locale": "nl", - "imagery": "osm", - "conflation": 28 - }, - "id": 119275032 - } - }, - { - "id": 119274514, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.1264086, - 50.7422539 - ], - [ - 4.2471239, - 50.7422539 - ], - [ - 4.2471239, - 51.534583 - ], - [ - -0.1264086, - 51.534583 - ], - [ - -0.1264086, - 50.7422539 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "queenLizzie", - "uid": "15349770", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-03T18:21:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 8, - "delete": 0, - "area": 3.46527706954573, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 11, - "create": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 2, - "change_within_25m": 13 - }, - "id": 119274514 - } - }, - { - "id": 119273643, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1942513, - 50.9106537 - ], - [ - 4.1942513, - 50.9106537 - ], - [ - 4.1942513, - 50.9106537 - ], - [ - 4.1942513, - 50.9106537 - ], - [ - 4.1942513, - 50.9106537 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-03T17:52:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_within_25m": 1 - }, - "id": 119273643 - } - }, - { - "id": 119273465, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1942513, - 50.9106537 - ], - [ - 4.2017951, - 50.9106537 - ], - [ - 4.2017951, - 50.9112915 - ], - [ - 4.1942513, - 50.9112915 - ], - [ - 4.1942513, - 50.9106537 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-03T17:46:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 6, - "delete": 0, - "area": 0.00000481143563999827, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 13, - "create": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 2, - "change_within_25m": 7, - "change_within_1000m": 7 - }, - "id": 119273465 - } - }, - { - "id": 119273403, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-03T17:44:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "locale": "nl", - "imagery": "AGIV", - "move:node/-1": "improve_accuracy", - "change_within_25m": 1 - }, - "id": 119273403 - } - }, - { - "id": 119273300, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1941332, - 50.9105421 - ], - [ - 4.1941332, - 50.9105421 - ], - [ - 4.1941332, - 50.9105421 - ], - [ - 4.1941332, - 50.9105421 - ], - [ - 4.1941332, - 50.9105421 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-03T17:42:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 7, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 8 - }, - "id": 119273300 - } - }, - { - "id": 119270696, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9859003, - 51.1605061 - ], - [ - 4.9859003, - 51.1605061 - ], - [ - 4.9859003, - 51.1605061 - ], - [ - 4.9859003, - 51.1605061 - ], - [ - 4.9859003, - 51.1605061 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-03T16:22:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "change_within_5000m": 3 - }, - "id": 119270696 - } - }, - { - "id": 119265626, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.98723, - 51.1612471 - ], - [ - 4.98723, - 51.1612471 - ], - [ - 4.98723, - 51.1612471 - ], - [ - 4.98723, - 51.1612471 - ], - [ - 4.98723, - 51.1612471 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-03T13:56:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_500m": 7 - }, - "id": 119265626 - } - }, - { - "id": 119264066, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9375176, - 51.209782 - ], - [ - 4.9380132, - 51.209782 - ], - [ - 4.9380132, - 51.210366 - ], - [ - 4.9375176, - 51.210366 - ], - [ - 4.9375176, - 51.209782 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Ark van Noë", - "uid": "15477463", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-03T13:10:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 13, - "delete": 0, - "area": 2.89430400002133e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "move": 4, - "theme": "toerisme_vlaanderen", - "answer": 24, - "create": 4, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "move:node/9633278314": "improve_accuracy", - "move:node/9633344313": "improve_accuracy", - "move:node/9633374752": "improve_accuracy" - }, - "id": 119264066 - } - }, - { - "id": 119263733, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2110364, - 50.7944924 - ], - [ - 5.2234481, - 50.7944924 - ], - [ - 5.2234481, - 50.8064842 - ], - [ - 5.2110364, - 50.8064842 - ], - [ - 5.2110364, - 50.7944924 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-03T12:57:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 855, - "modify": 739, - "delete": 1, - "area": 0.000148838624059956, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 637, - "theme": "grb", - "delete": 1, - "import": 79, - "locale": "nl", - "imagery": "osm", - "conflation": 220 - }, - "id": 119263733 - } - }, - { - "id": 119263646, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8831073, - 51.1476149 - ], - [ - 3.8831073, - 51.1476149 - ], - [ - 3.8831073, - 51.1476149 - ], - [ - 3.8831073, - 51.1476149 - ], - [ - 3.8831073, - 51.1476149 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Rembrandt De Vlaeminck", - "uid": "504998", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-03T12:55:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets", - "theme": "toilets", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 3 - }, - "id": 119263646 - } - }, - { - "id": 119261895, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.0677361, - 49.4912512 - ], - [ - 6.0677361, - 49.4912512 - ], - [ - 6.0677361, - 49.4912512 - ], - [ - 6.0677361, - 49.4912512 - ], - [ - 6.0677361, - 49.4912512 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "ClarissaWAM", - "uid": "13745921", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-03T11:56:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases", - "theme": "bookcases", - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 119261895 - } - }, - { - "id": 119261814, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8075721, - 49.620419 - ], - [ - 3.8125992, - 49.620419 - ], - [ - 3.8125992, - 49.621618 - ], - [ - 3.8075721, - 49.621618 - ], - [ - 3.8075721, - 49.620419 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Salambre", - "uid": "15272429", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-03T11:54:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 2, - "delete": 0, - "area": 0.00000602749289999911, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 10, - "create": 7, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 7, - "change_within_25m": 10 - }, - "id": 119261814 - } - }, - { - "id": 119260406, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2171321, - 50.7982507 - ], - [ - 5.2325134, - 50.7982507 - ], - [ - 5.2325134, - 50.8049962 - ], - [ - 5.2171321, - 50.8049962 - ], - [ - 5.2171321, - 50.7982507 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-03T11:05:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1935, - "modify": 1516, - "delete": 9, - "area": 0.000103754559150018, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 1341, - "theme": "grb", - "delete": 9, - "import": 234, - "locale": "nl", - "imagery": "osm", - "conflation": 380 - }, - "id": 119260406 - } - }, - { - "id": 119258074, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2212939, - 50.801737 - ], - [ - 5.2307157, - 50.801737 - ], - [ - 5.2307157, - 50.8064842 - ], - [ - 5.2212939, - 50.8064842 - ], - [ - 5.2212939, - 50.801737 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-03T09:43:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 692, - "modify": 773, - "delete": 10, - "area": 0.000044727168959973, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 687, - "theme": "grb", - "delete": 10, - "import": 93, - "locale": "nl", - "imagery": "osm", - "conflation": 176 - }, - "id": 119258074 - } - }, - { - "id": 119257676, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4244446, - 50.8914764 - ], - [ - 3.4279919, - 50.8914764 - ], - [ - 3.4279919, - 50.8954137 - ], - [ - 3.4244446, - 50.8954137 - ], - [ - 3.4244446, - 50.8914764 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "thierydem", - "uid": "13422761", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-03T09:28:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000139667842899879, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 119257676 - } - }, - { - "id": 119257256, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8636521, - 51.14461 - ], - [ - 4.8687573, - 51.14461 - ], - [ - 4.8687573, - 51.146047 - ], - [ - 4.8636521, - 51.146047 - ], - [ - 4.8636521, - 51.14461 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-03T09:12:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 207, - "modify": 195, - "delete": 0, - "area": 0.00000733617240001433, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 168, - "theme": "grb", - "import": 20, - "locale": "nl", - "imagery": "osm", - "conflation": 64 - }, - "id": 119257256 - } - }, - { - "id": 119257224, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9903775, - 48.5020777 - ], - [ - 8.9912575, - 48.5020777 - ], - [ - 8.9912575, - 48.503013 - ], - [ - 8.9903775, - 48.503013 - ], - [ - 8.9903775, - 48.5020777 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-03T09:11:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 11, - "delete": 0, - "area": 8.23064000002044e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 23, - "locale": "en", - "imagery": "osm", - "change_within_25m": 20, - "change_within_50m": 3 - }, - "id": 119257224 - } - }, - { - "id": 119257102, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9904254, - 48.5027916 - ], - [ - 8.9906084, - 48.5027916 - ], - [ - 8.9906084, - 48.5028094 - ], - [ - 8.9904254, - 48.5028094 - ], - [ - 8.9904254, - 48.5027916 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-03T09:08:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 3.25739999905433e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 3, - "locale": "en", - "imagery": "osm", - "change_within_25m": 3 - }, - "id": 119257102 - } - }, - { - "id": 119257038, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9904642, - 48.5026557 - ], - [ - 8.9904992, - 48.5026557 - ], - [ - 8.9904992, - 48.5026907 - ], - [ - 8.9904642, - 48.5026907 - ], - [ - 8.9904642, - 48.5026557 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-03T09:06:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.22500000015594e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "answer": 2, - "locale": "en", - "imagery": "osm", - "change_within_25m": 2 - }, - "id": 119257038 - } - }, - { - "id": 119256997, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9905112, - 48.5027794 - ], - [ - 8.9905235, - 48.5027794 - ], - [ - 8.9905235, - 48.5027874 - ], - [ - 8.9905112, - 48.5027874 - ], - [ - 8.9905112, - 48.5027794 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-03T09:05:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 9.84000000125869e-11, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 6, - "locale": "en", - "imagery": "osm", - "change_within_25m": 6 - }, - "id": 119256997 - } - }, - { - "id": 119256882, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9903874, - 48.5025287 - ], - [ - 8.9908217, - 48.5025287 - ], - [ - 8.9908217, - 48.5028332 - ], - [ - 8.9903874, - 48.5028332 - ], - [ - 8.9903874, - 48.5025287 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-03T09:01:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.32244349999458e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 2, - "locale": "en", - "imagery": "osm", - "change_within_50m": 2 - }, - "id": 119256882 - } - }, - { - "id": 119256354, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "WimBau", - "uid": "15313167", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-03T08:37:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 119256354 - } - }, - { - "id": 119256307, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "WimBau", - "uid": "15313167", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-03T08:36:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119256307 - } - }, - { - "id": 119256303, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "WimBau", - "uid": "15313167", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-03T08:35:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119256303 - } - }, - { - "id": 119256297, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "WimBau", - "uid": "15313167", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-03T08:35:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119256297 - } - }, - { - "id": 119256295, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "WimBau", - "uid": "15313167", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-03T08:35:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119256295 - } - }, - { - "id": 119255378, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2232193, - 50.8018187 - ], - [ - 5.5231479, - 50.8018187 - ], - [ - 5.5231479, - 50.8478437 - ], - [ - 5.2232193, - 50.8478437 - ], - [ - 5.2232193, - 50.8018187 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha-2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-03T07:52:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1739, - "modify": 1322, - "delete": 24, - "area": 0.013804213815, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 1177, - "theme": "grb", - "delete": 24, - "import": 192, - "locale": "nl", - "imagery": "osm", - "conflation": 310 - }, - "id": 119255378 - } - }, - { - "id": 119255168, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6540665, - 50.9177858 - ], - [ - 3.8724956, - 50.9177858 - ], - [ - 3.8724956, - 50.9627769 - ], - [ - 3.6540665, - 50.9627769 - ], - [ - 3.6540665, - 50.9177858 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "WimBau", - "uid": "15313167", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-03T07:41:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 16, - "modify": 78, - "delete": 0, - "area": 0.00982736548101095, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 103, - "create": 16, - "locale": "nl", - "imagery": "osm", - "add-image": 24 - }, - "id": 119255168 - } - }, - { - "id": 119255028, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8724715, - 50.9421357 - ], - [ - 3.9520741, - 50.9421357 - ], - [ - 3.9520741, - 50.9464248 - ], - [ - 3.8724715, - 50.9464248 - ], - [ - 3.8724715, - 50.9421357 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "WimBau", - "uid": "15313167", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-03T07:35:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 7, - "delete": 0, - "area": 0.000341423511660091, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 17, - "create": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 3 - }, - "id": 119255028 - } - }, - { - "id": 119254211, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3974314, - 51.041181 - ], - [ - 3.3974314, - 51.041181 - ], - [ - 3.3974314, - 51.041181 - ], - [ - 3.3974314, - 51.041181 - ], - [ - 3.3974314, - 51.041181 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-03T06:52:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 5, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 119254211 - } - }, - { - "id": 119254072, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1966065, - 49.7214385 - ], - [ - 4.3401092, - 49.7214385 - ], - [ - 4.3401092, - 49.7986342 - ], - [ - 4.1966065, - 49.7986342 - ], - [ - 4.1966065, - 49.7214385 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Salambre", - "uid": "15272429", - "editor": "MapComplete 0.17.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-03T06:44:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 7, - "modify": 3, - "delete": 1, - "area": 0.0110777913783906, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 12, - "create": 4, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 4, - "change_within_25m": 4, - "change_within_50m": 8 - }, - "id": 119254072 - } - }, - { - "id": 119250358, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0956819, - 14.639055 - ], - [ - 121.0956819, - 14.639055 - ], - [ - 121.0956819, - 14.639055 - ], - [ - 121.0956819, - 14.639055 - ], - [ - 121.0956819, - 14.639055 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "GOwin", - "uid": "1041828", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-02T23:49:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 6, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 7, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 119250358 - } - }, - { - "id": 119249777, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.1563365, - 46.7970635 - ], - [ - 7.1563365, - 46.7970635 - ], - [ - 7.1563365, - 46.7970635 - ], - [ - 7.1563365, - 46.7970635 - ], - [ - 7.1563365, - 46.7970635 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ivanż", - "uid": "511916", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-02T23:13:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/entrances.html", - "theme": "entrances", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 119249777 - } - }, - { - "id": 119249675, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.8442962, - 43.8241425 - ], - [ - 17.0102495, - 43.8241425 - ], - [ - 17.0102495, - 44.0463182 - ], - [ - 16.8442962, - 44.0463182 - ], - [ - 16.8442962, - 43.8241425 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ivanż", - "uid": "511916", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-02T23:06:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 13, - "delete": 0, - "area": 0.0368707905948106, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 13, - "locale": "en", - "imagery": "osm" - }, - "id": 119249675 - } - }, - { - "id": 119249553, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 17.0034483, - 43.8276037 - ], - [ - 17.0034483, - 43.8276037 - ], - [ - 17.0034483, - 43.8276037 - ], - [ - 17.0034483, - 43.8276037 - ], - [ - 17.0034483, - 43.8276037 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ivanż", - "uid": "511916", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-02T22:59:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 119249553 - } - }, - { - "id": 119249116, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.3259043, - 47.8167695 - ], - [ - -4.3259043, - 47.8167695 - ], - [ - -4.3259043, - 47.8167695 - ], - [ - -4.3259043, - 47.8167695 - ], - [ - -4.3259043, - 47.8167695 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "TedScouGV", - "uid": "75300", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-02T22:32:07Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/campersite", - "theme": "campersite", - "answer": 5, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_5000m": 5 - }, - "id": 119249116 - } - }, - { - "id": 119247280, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9890687, - 51.1614999 - ], - [ - 4.9900664, - 51.1614999 - ], - [ - 4.9900664, - 51.1620612 - ], - [ - 4.9890687, - 51.1620612 - ], - [ - 4.9890687, - 51.1614999 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-02T21:01:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 5.60009009994062e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "change_within_5000m": 3 - }, - "id": 119247280 - } - }, - { - "id": 119245874, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2295857, - -39.815686 - ], - [ - -73.2280275, - -39.815686 - ], - [ - -73.2280275, - -39.814217 - ], - [ - -73.2295857, - -39.814217 - ], - [ - -73.2295857, - -39.815686 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-02T19:56:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 10, - "delete": 0, - "area": 0.00000228899580000785, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "cyclosm", - "add-image": 10 - }, - "id": 119245874 - } - }, - { - "id": 119241481, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.2930617, - 47.7921969 - ], - [ - -4.278724, - 47.7921969 - ], - [ - -4.278724, - 47.7960233 - ], - [ - -4.2930617, - 47.7960233 - ], - [ - -4.2930617, - 47.7921969 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "TedScouGV", - "uid": "75300", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-02T17:13:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 33, - "delete": 0, - "area": 0.000054861775280016, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "theme": "waste_basket", - "answer": 33, - "locale": "en", - "imagery": "osm" - }, - "id": 119241481 - } - }, - { - "id": 119239322, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7843661, - 49.8610092 - ], - [ - 4.7862401, - 49.8610092 - ], - [ - 4.7862401, - 49.8734081 - ], - [ - 4.7843661, - 49.8734081 - ], - [ - 4.7843661, - 49.8610092 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Salambre", - "uid": "15272429", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-02T15:58:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 10, - "modify": 1, - "delete": 0, - "area": 0.0000232355386000008, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 11, - "create": 10, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 10, - "change_within_25m": 5, - "change_within_50m": 3, - "change_within_100m": 1, - "change_within_500m": 2 - }, - "id": 119239322 - } - }, - { - "id": 119239087, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3484879, - 50.7904179 - ], - [ - 5.3484879, - 50.7904179 - ], - [ - 5.3484879, - 50.7904179 - ], - [ - 5.3484879, - 50.7904179 - ], - [ - 5.3484879, - 50.7904179 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-02T15:50:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/nature.html", - "theme": "nature", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 119239087 - } - }, - { - "id": 119238876, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.8027161, - 43.2074565 - ], - [ - -2.8027161, - 43.2074565 - ], - [ - -2.8027161, - 43.2074565 - ], - [ - -2.8027161, - 43.2074565 - ], - [ - -2.8027161, - 43.2074565 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "cregox", - "uid": "9515343", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-02T15:42:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water", - "theme": "drinking_water", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 3 - }, - "id": 119238876 - } - }, - { - "id": 119238736, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -77.2382694, - 38.8977298 - ], - [ - -77.2382694, - 38.8977298 - ], - [ - -77.2382694, - 38.8977298 - ], - [ - -77.2382694, - 38.8977298 - ], - [ - -77.2382694, - 38.8977298 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "geocruizer", - "uid": "1050248", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-02T15:37:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 119238736 - } - }, - { - "id": 119237714, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.1755398, - 39.744082 - ], - [ - -0.1615763, - 39.744082 - ], - [ - -0.1615763, - 39.7600285 - ], - [ - -0.1755398, - 39.7600285 - ], - [ - -0.1755398, - 39.744082 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Agustin", - "uid": "30004", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-02T15:05:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 2, - "delete": 0, - "area": 0.000222668952749976, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "move": 1, - "theme": "drinking_water", - "answer": 2, - "create": 2, - "locale": "en", - "imagery": "PNOA-Spain-TMS", - "add-image": 1, - "change_over_5000m": 2, - "change_within_100m": 3, - "change_within_5000m": 1, - "move:node/9631507959": "improve_accuracy" - }, - "id": 119237714 - } - }, - { - "id": 119232826, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.9969494, - 51.5875087 - ], - [ - -2.9881686, - 51.5875087 - ], - [ - -2.9881686, - 51.5896113 - ], - [ - -2.9969494, - 51.5896113 - ], - [ - -2.9969494, - 51.5875087 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ZenPhil", - "uid": "10208656", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-02T12:07:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 32, - "delete": 0, - "area": 0.000018462510080006, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets", - "theme": "toilets", - "answer": 48, - "create": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 119232826 - } - }, - { - "id": 119232288, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4414721, - 51.0815267 - ], - [ - 3.4414721, - 51.0815267 - ], - [ - 3.4414721, - 51.0815267 - ], - [ - 3.4414721, - 51.0815267 - ], - [ - 3.4414721, - 51.0815267 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-02T11:51:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 119232288 - } - }, - { - "id": 119230832, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.8479477, - 50.1510933 - ], - [ - 5.8514352, - 50.1510933 - ], - [ - 5.8514352, - 50.1585152 - ], - [ - 5.8479477, - 50.1585152 - ], - [ - 5.8479477, - 50.1510933 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Salambre", - "uid": "15272429", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-02T11:01:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 1, - "delete": 0, - "area": 0.0000258838762499922, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 8, - "create": 2, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 4, - "change_within_500m": 4 - }, - "id": 119230832 - } - }, - { - "id": 119227026, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4403616, - 52.2099574 - ], - [ - 13.4403616, - 52.2099574 - ], - [ - 13.4403616, - 52.2099574 - ], - [ - 13.4403616, - 52.2099574 - ], - [ - 13.4403616, - 52.2099574 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ebihardy", - "uid": "263464", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-02T08:47:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 119227026 - } - }, - { - "id": 119226740, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8978482, - 50.7654811 - ], - [ - 2.8978516, - 50.7654811 - ], - [ - 2.8978516, - 50.7654868 - ], - [ - 2.8978482, - 50.7654868 - ], - [ - 2.8978482, - 50.7654811 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-02T08:35:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 6, - "delete": 0, - "area": 1.93799999860821e-11, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/nature.html", - "theme": "nature", - "answer": 4, - "locale": "nl", - "imagery": "osm", - "add-image": 3 - }, - "id": 119226740 - } - }, - { - "id": 119226064, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8953336, - 51.0877123 - ], - [ - 4.9162307, - 51.0877123 - ], - [ - 4.9162307, - 51.171122 - ], - [ - 4.8953336, - 51.171122 - ], - [ - 4.8953336, - 51.0877123 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-02T08:00:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 126, - "modify": 226, - "delete": 22, - "area": 0.00174302084186994, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 215, - "theme": "grb", - "answer": 2, - "delete": 22, - "import": 7, - "locale": "nl", - "imagery": "osm", - "conflation": 34, - "change_over_5000m": 1 - }, - "id": 119226064 - } - }, - { - "id": 119225896, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.7542109, - 43.4169029 - ], - [ - -4.7542109, - 43.4169029 - ], - [ - -4.7542109, - 43.4169029 - ], - [ - -4.7542109, - 43.4169029 - ], - [ - -4.7542109, - 43.4169029 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "cregox", - "uid": "9515343", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-02T07:50:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water", - "theme": "drinking_water", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 119225896 - } - }, - { - "id": 119224678, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8913261, - 50.759508 - ], - [ - 2.8983872, - 50.759508 - ], - [ - 2.8983872, - 50.765416 - ], - [ - 2.8913261, - 50.765416 - ], - [ - 2.8913261, - 50.759508 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-02T06:39:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 6, - "delete": 0, - "area": 0.0000417169788000365, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 8, - "create": 4, - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 119224678 - } - }, - { - "id": 119218560, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2454005, - 41.4446509 - ], - [ - 2.2454005, - 41.4446509 - ], - [ - 2.2454005, - 41.4446509 - ], - [ - 2.2454005, - 41.4446509 - ], - [ - 2.2454005, - 41.4446509 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-8807870540", - "osm_id": 8807870540, - "reasons": [ - 43 - ], - "version": 2, - "primary_tags": { - "natural": "tree_stump" - } - } - ], - "user": "Sandra55", - "uid": "13279584", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-01T21:53:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "answer": 1, - "locale": "ca", - "imagery": "HDM_HOT", - "change_within_25m": 1 - }, - "id": 119218560 - } - }, - { - "id": 119216700, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3552569, - 50.8495343 - ], - [ - 4.356956, - 50.8495343 - ], - [ - 4.356956, - 50.8499239 - ], - [ - 4.3552569, - 50.8499239 - ], - [ - 4.3552569, - 50.8495343 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "bxl-forever", - "uid": "2644288", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-01T20:29:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 6.61969359997395e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 6, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 119216700 - } - }, - { - "id": 119216390, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3508551, - 50.799146 - ], - [ - 4.3927599, - 50.799146 - ], - [ - 4.3927599, - 50.8659617 - ], - [ - 4.3508551, - 50.8659617 - ], - [ - 4.3508551, - 50.799146 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-01T20:14:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00279989854535993, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 14, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 119216390 - } - }, - { - "id": 119216024, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2381516, - -39.8439309 - ], - [ - -73.2381516, - -39.8439309 - ], - [ - -73.2381516, - -39.8439309 - ], - [ - -73.2381516, - -39.8439309 - ], - [ - -73.2381516, - -39.8439309 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-01T20:01:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "osm", - "add-image": 2 - }, - "id": 119216024 - } - }, - { - "id": 119213901, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.502623, - 50.8459638 - ], - [ - 5.5049977, - 50.8459638 - ], - [ - 5.5049977, - 50.8473437 - ], - [ - 5.502623, - 50.8473437 - ], - [ - 5.502623, - 50.8459638 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-01T18:44:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 298, - "modify": 7, - "delete": 0, - "area": 0.00000327684853000793, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 6, - "theme": "grb", - "import": 33, - "locale": "nl", - "imagery": "osm", - "conflation": 2 - }, - "id": 119213901 - } - }, - { - "id": 119213892, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-01T18:44:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119213892 - } - }, - { - "id": 119213891, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-01T18:44:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119213891 - } - }, - { - "id": 119213840, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5000409, - 50.846222 - ], - [ - 5.502382, - 50.846222 - ], - [ - 5.502382, - 50.8479245 - ], - [ - 5.5000409, - 50.8479245 - ], - [ - 5.5000409, - 50.846222 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-01T18:42:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 216, - "modify": 0, - "delete": 0, - "area": 0.0000039857227500005, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 31, - "locale": "nl", - "imagery": "osm" - }, - "id": 119213840 - } - }, - { - "id": 119210331, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.3612799, - 50.4143694 - ], - [ - 6.3613404, - 50.4143694 - ], - [ - 6.3613404, - 50.4144631 - ], - [ - 6.3612799, - 50.4144631 - ], - [ - 6.3612799, - 50.4143694 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Salambre", - "uid": "15272429", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-04-01T16:57:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 1, - "delete": 0, - "area": 5.66884999996401e-9, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 2, - "change_within_25m": 2 - }, - "id": 119210331 - } - }, - { - "id": 119204588, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4916222, - 50.8433827 - ], - [ - 5.5009778, - 50.8433827 - ], - [ - 5.5009778, - 50.8493156 - ], - [ - 5.4916222, - 50.8493156 - ], - [ - 5.4916222, - 50.8433827 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-01T14:20:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1033, - "modify": 23, - "delete": 0, - "area": 0.0000555058392399791, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 20, - "theme": "grb", - "import": 132, - "locale": "nl", - "imagery": "osm", - "conflation": 6 - }, - "id": 119204588 - } - }, - { - "id": 119202793, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4897326, - 50.8442249 - ], - [ - 5.4996717, - 50.8442249 - ], - [ - 5.4996717, - 50.8519019 - ], - [ - 5.4897326, - 50.8519019 - ], - [ - 5.4897326, - 50.8442249 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-01T13:29:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 876, - "modify": 42, - "delete": 0, - "area": 0.0000763024707000136, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 36, - "theme": "grb", - "import": 110, - "locale": "nl", - "imagery": "osm", - "conflation": 12 - }, - "id": 119202793 - } - }, - { - "id": 119202792, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-01T13:29:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119202792 - } - }, - { - "id": 119202786, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-01T13:29:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119202786 - } - }, - { - "id": 119202783, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-01T13:29:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119202783 - } - }, - { - "id": 119201367, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4884256, - 50.845188 - ], - [ - 5.4944867, - 50.845188 - ], - [ - 5.4944867, - 50.8506173 - ], - [ - 5.4884256, - 50.8506173 - ], - [ - 5.4884256, - 50.845188 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-01T12:49:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 780, - "modify": 0, - "delete": 0, - "area": 0.0000329075302300188, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 80, - "locale": "nl", - "imagery": "osm" - }, - "id": 119201367 - } - }, - { - "id": 119201258, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4901097, - 50.8485132 - ], - [ - 5.4923288, - 50.8485132 - ], - [ - 5.4923288, - 50.8497515 - ], - [ - 5.4901097, - 50.8497515 - ], - [ - 5.4901097, - 50.8485132 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-01T12:46:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 258, - "modify": 0, - "delete": 0, - "area": 0.00000274791153001, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 25, - "locale": "nl", - "imagery": "osm" - }, - "id": 119201258 - } - }, - { - "id": 119201255, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-01T12:46:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119201255 - } - }, - { - "id": 119201254, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-01T12:46:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119201254 - } - }, - { - "id": 119201252, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-01T12:46:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119201252 - } - }, - { - "id": 119201250, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-01T12:46:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119201250 - } - }, - { - "id": 119201247, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-01T12:46:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119201247 - } - }, - { - "id": 119200851, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4885086, - 50.8455812 - ], - [ - 5.493227, - 50.8455812 - ], - [ - 5.493227, - 50.8497403 - ], - [ - 5.4885086, - 50.8497403 - ], - [ - 5.4885086, - 50.8455812 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-01T12:35:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1170, - "modify": 0, - "delete": 0, - "area": 0.000019624297440011, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 136, - "locale": "nl", - "imagery": "osm" - }, - "id": 119200851 - } - }, - { - "id": 119195383, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8288357, - 51.1340284 - ], - [ - 4.8289088, - 51.1340284 - ], - [ - 4.8289088, - 51.1340591 - ], - [ - 4.8288357, - 51.1340591 - ], - [ - 4.8288357, - 51.1340284 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Domein de Schuur - camping", - "uid": "15461684", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-01T10:14:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 2, - "area": 2.24417000024991e-9, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 2, - "create": 2, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "deletion": 2, - "deletion:node/9628654220": "verkeerd geselecteerd", - "deletion:node/9628655540": "duplicate" - }, - "id": 119195383 - } - }, - { - "id": 119194336, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4839199, - 50.8467785 - ], - [ - 5.4893729, - 50.8467785 - ], - [ - 5.4893729, - 50.8489175 - ], - [ - 5.4839199, - 50.8489175 - ], - [ - 5.4839199, - 50.8467785 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-01T09:48:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 800, - "modify": 0, - "delete": 0, - "area": 0.0000116639669999985, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 91, - "locale": "nl", - "imagery": "osm" - }, - "id": 119194336 - } - }, - { - "id": 119193900, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4791352, - 50.8464167 - ], - [ - 5.4851198, - 50.8464167 - ], - [ - 5.4851198, - 50.8488818 - ], - [ - 5.4791352, - 50.8488818 - ], - [ - 5.4791352, - 50.8464167 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-01T09:37:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 727, - "modify": 0, - "delete": 0, - "area": 0.0000147526374600111, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 88, - "locale": "nl", - "imagery": "osm" - }, - "id": 119193900 - } - }, - { - "id": 119193052, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.478334, - 50.8444206 - ], - [ - 5.4839446, - 50.8444206 - ], - [ - 5.4839446, - 50.8471065 - ], - [ - 5.478334, - 50.8471065 - ], - [ - 5.478334, - 50.8444206 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-01T09:18:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 620, - "modify": 0, - "delete": 0, - "area": 0.0000150695105400164, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 94, - "locale": "nl", - "imagery": "osm" - }, - "id": 119193052 - } - }, - { - "id": 119193048, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-01T09:18:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 119193048 - } - }, - { - "id": 119192273, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4777949, - 50.8421188 - ], - [ - 5.4834746, - 50.8421188 - ], - [ - 5.4834746, - 50.84618 - ], - [ - 5.4777949, - 50.84618 - ], - [ - 5.4777949, - 50.8421188 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.18.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-01T08:57:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 464, - "modify": 0, - "delete": 0, - "area": 0.0000230663976399733, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 80, - "locale": "nl", - "imagery": "osm" - }, - "id": 119192273 - } - }, - { - "id": 119191159, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.39488, - 51.0346984 - ], - [ - 3.4073317, - 51.0346984 - ], - [ - 3.4073317, - 51.0477522 - ], - [ - 3.39488, - 51.0477522 - ], - [ - 3.39488, - 51.0346984 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #sidewalks", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-01T08:26:07Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 22, - "delete": 0, - "area": 0.000162542001459927, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sidewalks", - "theme": "sidewalks", - "answer": 38, - "locale": "en", - "imagery": "osm" - }, - "id": 119191159 - } - }, - { - "id": 119191059, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3879443, - 51.0363999 - ], - [ - 3.4012289, - 51.0363999 - ], - [ - 3.4012289, - 51.0446882 - ], - [ - 3.3879443, - 51.0446882 - ], - [ - 3.3879443, - 51.0363999 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #sidewalks", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-01T08:23:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 29, - "delete": 0, - "area": 0.00011010675018005, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sidewalks", - "theme": "sidewalks", - "answer": 45, - "locale": "en", - "imagery": "osm" - }, - "id": 119191059 - } - }, - { - "id": 119188141, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4178208, - 50.7966789 - ], - [ - 4.419229, - 50.7966789 - ], - [ - 4.419229, - 50.7980694 - ], - [ - 4.4178208, - 50.7980694 - ], - [ - 4.4178208, - 50.7966789 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #cyclestreets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-01T06:57:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.0000019581020999982, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclestreets.html", - "theme": "cyclestreets", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 119188141 - } - }, - { - "id": 119188081, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4076558, - 50.7952296 - ], - [ - 4.4076558, - 50.7952296 - ], - [ - 4.4076558, - 50.7952296 - ], - [ - 4.4076558, - 50.7952296 - ], - [ - 4.4076558, - 50.7952296 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.17.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-04-01T06:55:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 119188081 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-01.json b/Docs/Tools/stats/stats.2022-5-01.json deleted file mode 100644 index e64746bd7b..0000000000 --- a/Docs/Tools/stats/stats.2022-5-01.json +++ /dev/null @@ -1,4337 +0,0 @@ -{ - "features": [ - { - "id": 120438348, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6673598, - -33.4410698 - ], - [ - -70.6652543, - -33.4410698 - ], - [ - -70.6652543, - -33.440087 - ], - [ - -70.6673598, - -33.440087 - ], - [ - -70.6673598, - -33.4410698 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T23:29:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 24, - "delete": 0, - "area": 0.00000206928540000474, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 4, - "locale": "es", - "imagery": "osm", - "add-image": 22 - }, - "id": 120438348 - } - }, - { - "id": 120438248, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2306751, - 50.7311554 - ], - [ - 4.2306751, - 50.7311554 - ], - [ - 4.2306751, - 50.7311554 - ], - [ - 4.2306751, - 50.7311554 - ], - [ - 4.2306751, - 50.7311554 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T23:23:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 6, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120438248 - } - }, - { - "id": 120437961, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2434343, - -39.8443795 - ], - [ - -73.2434343, - -39.8443795 - ], - [ - -73.2434343, - -39.8443795 - ], - [ - -73.2434343, - -39.8443795 - ], - [ - -73.2434343, - -39.8443795 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T23:05:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "HDM_HOT", - "add-image": 2 - }, - "id": 120437961 - } - }, - { - "id": 120437894, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2363391, - 50.7359919 - ], - [ - 4.2363391, - 50.7359919 - ], - [ - 4.2363391, - 50.7359919 - ], - [ - 4.2363391, - 50.7359919 - ], - [ - 4.2363391, - 50.7359919 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T23:01:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120437894 - } - }, - { - "id": 120437837, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2372774, - 50.7363464 - ], - [ - 4.2375441, - 50.7363464 - ], - [ - 4.2375441, - 50.7364649 - ], - [ - 4.2372774, - 50.7364649 - ], - [ - 4.2372774, - 50.7363464 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T22:57:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 3.1603949999806e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120437837 - } - }, - { - "id": 120437719, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.2464055, - 48.1720387 - ], - [ - 16.2464055, - 48.1720387 - ], - [ - 16.2464055, - 48.1720387 - ], - [ - 16.2464055, - 48.1720387 - ], - [ - 16.2464055, - 48.1720387 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "fdemmer", - "uid": "58402", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T22:49:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees", - "theme": "trees", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 120437719 - } - }, - { - "id": 120437536, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1008504, - 38.8359848 - ], - [ - 0.1117319, - 38.8359848 - ], - [ - 0.1117319, - 38.8446147 - ], - [ - 0.1008504, - 38.8446147 - ], - [ - 0.1008504, - 38.8359848 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-01T22:38:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 8, - "delete": 0, - "area": 0.0000939062568500273, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", - "answer": 8, - "create": 1, - "locale": "ca", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_100m": 2, - "change_within_500m": 2, - "change_within_1000m": 2, - "change_within_5000m": 2 - }, - "id": 120437536 - } - }, - { - "id": 120436845, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6653398, - -33.4406897 - ], - [ - -70.6653371, - -33.4406897 - ], - [ - -70.6653371, - -33.4405987 - ], - [ - -70.6653398, - -33.4405987 - ], - [ - -70.6653398, - -33.4406897 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T22:01:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 2.45699999631881e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "es", - "imagery": "HDM_HOT", - "add-image": 2 - }, - "id": 120436845 - } - }, - { - "id": 120436686, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.463826, - 51.2107516 - ], - [ - 4.6327999, - 51.2107516 - ], - [ - 4.6327999, - 51.3016163 - ], - [ - 4.463826, - 51.3016163 - ], - [ - 4.463826, - 51.2107516 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "pi11", - "uid": "12066190", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T21:53:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 20, - "modify": 29, - "delete": 0, - "area": 0.0153537627313296, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 101, - "create": 20, - "locale": "nl", - "imagery": "osm" - }, - "id": 120436686 - } - }, - { - "id": 120436644, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2132048, - 48.6774541 - ], - [ - 9.2266079, - 48.6774541 - ], - [ - 9.2266079, - 48.6835223 - ], - [ - 9.2132048, - 48.6835223 - ], - [ - 9.2132048, - 48.6774541 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-01T21:51:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000813326914200169, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", - "answer": 4, - "locale": "es", - "imagery": "osm" - }, - "id": 120436644 - } - }, - { - "id": 120436249, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2298265, - 50.7328247 - ], - [ - 4.2428372, - 50.7328247 - ], - [ - 4.2428372, - 50.7450711 - ], - [ - 4.2298265, - 50.7450711 - ], - [ - 4.2298265, - 50.7328247 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T21:32:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 5, - "delete": 0, - "area": 0.000159334236479944, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 6, - "create": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 120436249 - } - }, - { - "id": 120436236, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7031792, - 50.8070678 - ], - [ - 3.3012769, - 50.8070678 - ], - [ - 3.3012769, - 50.9461705 - ], - [ - 2.7031792, - 50.9461705 - ], - [ - 2.7031792, - 50.8070678 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T21:31:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 26, - "modify": 0, - "delete": 0, - "area": 0.0831970049337913, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 11, - "import": 15, - "locale": "nl", - "imagery": "AGIV", - "import:node/-11": "source: https://osm.org/note/3156284", - "import:node/-13": "source: https://osm.org/note/3156315", - "import:node/-14": "source: https://osm.org/note/3156490", - "import:node/-19": "source: https://osm.org/note/3156293", - "import:node/-20": "source: https://osm.org/note/3156286", - "import:node/9707990388": "source: https://osm.org/note/3156422", - "import:node/9707990622": "source: https://osm.org/note/3156323", - "import:node/9707990624": "source: https://osm.org/note/3156540", - "import:node/9707991563": "source: https://osm.org/note/3156272", - "import:node/9707992409": "source: https://osm.org/note/3156565", - "import:node/9708004477": "source: https://osm.org/note/3156577", - "import:node/9708028315": "source: https://osm.org/note/3156372", - "import:node/9708037355": "source: https://osm.org/note/3156566", - "import:node/9708038737": "source: https://osm.org/note/3156419", - "import:node/9708062212": "source: https://osm.org/note/3156440" - }, - "id": 120436236 - } - }, - { - "id": 120435857, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.90446, - 50.9400964 - ], - [ - 4.9118485, - 50.9400964 - ], - [ - 4.9118485, - 50.9435598 - ], - [ - 4.90446, - 50.9435598 - ], - [ - 4.90446, - 50.9400964 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-01T21:15:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 999, - "modify": 41, - "delete": 0, - "area": 0.000025589330900006, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 40, - "theme": "grb", - "answer": 3, - "import": 128, - "locale": "nl", - "imagery": "osm", - "conflation": 10 - }, - "id": 120435857 - } - }, - { - "id": 120435697, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2360756, - 50.7420359 - ], - [ - 4.2360756, - 50.7420359 - ], - [ - 4.2360756, - 50.7420359 - ], - [ - 4.2360756, - 50.7420359 - ], - [ - 4.2360756, - 50.7420359 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T21:09:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "create": 1, - "locale": "en", - "imagery": "AGIV" - }, - "id": 120435697 - } - }, - { - "id": 120435581, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2360543, - 50.7420493 - ], - [ - 4.2360543, - 50.7420493 - ], - [ - 4.2360543, - 50.7420493 - ], - [ - 4.2360543, - 50.7420493 - ], - [ - 4.2360543, - 50.7420493 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T21:04:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120435581 - } - }, - { - "id": 120434675, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2390228, - 50.7348475 - ], - [ - 4.2390228, - 50.7348475 - ], - [ - 4.2390228, - 50.7348475 - ], - [ - 4.2390228, - 50.7348475 - ], - [ - 4.2390228, - 50.7348475 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T20:29:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 5, - "create": 1, - "locale": "en", - "imagery": "AGIV", - "add-image": 1 - }, - "id": 120434675 - } - }, - { - "id": 120434623, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2432939, - -39.8456976 - ], - [ - -73.2406114, - -39.8456976 - ], - [ - -73.2406114, - -39.8440261 - ], - [ - -73.2432939, - -39.8440261 - ], - [ - -73.2432939, - -39.8456976 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T20:27:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 8, - "delete": 0, - "area": 0.00000448379874998746, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "HDM_HOT", - "add-image": 9 - }, - "id": 120434623 - } - }, - { - "id": 120431749, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7013349, - 50.8236765 - ], - [ - 4.7013349, - 50.8236765 - ], - [ - 4.7013349, - 50.8236765 - ], - [ - 4.7013349, - 50.8236765 - ], - [ - 4.7013349, - 50.8236765 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "toeklk", - "uid": "219908", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T18:32:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "import": 1, - "locale": "nl", - "imagery": "osm", - "import:node/9707636079": "source: https://osm.org/note/3091110" - }, - "id": 120431749 - } - }, - { - "id": 120431345, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.6452299, - 47.3085121 - ], - [ - 9.6452299, - 47.3085121 - ], - [ - 9.6452299, - 47.3085121 - ], - [ - 9.6452299, - 47.3085121 - ], - [ - 9.6452299, - 47.3085121 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mcliquid", - "uid": "1213571", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-01T18:20:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 120431345 - } - }, - { - "id": 120430720, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4270633, - 51.2075569 - ], - [ - 4.4270633, - 51.2075569 - ], - [ - 4.4270633, - 51.2075569 - ], - [ - 4.4270633, - 51.2075569 - ], - [ - 4.4270633, - 51.2075569 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "stijnh", - "uid": "14414954", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T17:59:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 120430720 - } - }, - { - "id": 120429835, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.0296295, - 53.5984078 - ], - [ - 10.0342637, - 53.5984078 - ], - [ - 10.0342637, - 53.605418 - ], - [ - 10.0296295, - 53.605418 - ], - [ - 10.0296295, - 53.5984078 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "G4rden3r", - "uid": "12091530", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T17:32:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000324866688400152, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees", - "theme": "trees", - "answer": 8, - "locale": "de", - "imagery": "osm" - }, - "id": 120429835 - } - }, - { - "id": 120429660, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2385025, - 48.6809452 - ], - [ - 9.2385025, - 48.6809452 - ], - [ - 9.2385025, - 48.6809452 - ], - [ - 9.2385025, - 48.6809452 - ], - [ - 9.2385025, - 48.6809452 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T17:27:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 120429660 - } - }, - { - "id": 120429589, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2410774, - -39.8449373 - ], - [ - -73.2405418, - -39.8449373 - ], - [ - -73.2405418, - -39.8442109 - ], - [ - -73.2410774, - -39.8442109 - ], - [ - -73.2410774, - -39.8449373 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-01T17:25:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 10, - "delete": 0, - "area": 3.89059839993071e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "es", - "imagery": "Mapbox", - "add-image": 9, - "change_within_50m": 2, - "change_within_100m": 8 - }, - "id": 120429589 - } - }, - { - "id": 120429453, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2462667, - 50.7381899 - ], - [ - 4.2469314, - 50.7381899 - ], - [ - 4.2469314, - 50.7386614 - ], - [ - 4.2462667, - 50.7386614 - ], - [ - 4.2462667, - 50.7381899 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T17:21:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 3.13406049997759e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120429453 - } - }, - { - "id": 120428848, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -5.858835, - 37.1915893 - ], - [ - -5.858835, - 37.1915893 - ], - [ - -5.858835, - 37.1915893 - ], - [ - -5.858835, - 37.1915893 - ], - [ - -5.858835, - 37.1915893 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "troNpo", - "uid": "12221867", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T17:03:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "create": 1, - "locale": "es", - "imagery": "osm", - "add-image": 1 - }, - "id": 120428848 - } - }, - { - "id": 120427592, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2357063, - 48.6728272 - ], - [ - 9.2357063, - 48.6728272 - ], - [ - 9.2357063, - 48.6728272 - ], - [ - 9.2357063, - 48.6728272 - ], - [ - 9.2357063, - 48.6728272 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T16:31:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 120427592 - } - }, - { - "id": 120425940, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5707875, - 53.0199278 - ], - [ - 6.5707875, - 53.0199278 - ], - [ - 6.5707875, - 53.0199278 - ], - [ - 6.5707875, - 53.0199278 - ], - [ - 6.5707875, - 53.0199278 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-01T15:48:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 3, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "change_within_50m": 3 - }, - "id": 120425940 - } - }, - { - "id": 120425621, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.238187, - 48.6735524 - ], - [ - 9.2384746, - 48.6735524 - ], - [ - 9.2384746, - 48.6737084 - ], - [ - 9.238187, - 48.6737084 - ], - [ - 9.238187, - 48.6735524 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 42, - "name": "Invalid tag modification" - } - ], - "tags": [], - "features": [ - { - "url": "way-135256863", - "osm_id": 135256863, - "reasons": [ - 42 - ], - "version": 6, - "primary_tags": {} - } - ], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #parkings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T15:40:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 4.48656000011709e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/parkings.html", - "theme": "parkings", - "locale": "de", - "imagery": "osm", - "soft-delete": 1, - "soft-delete:way/135256863": "Jetzt Baustelle" - }, - "id": 120425621 - } - }, - { - "id": 120425539, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2091881, - 51.1878525 - ], - [ - 3.2091881, - 51.1878525 - ], - [ - 3.2091881, - 51.1878525 - ], - [ - 3.2091881, - 51.1878525 - ], - [ - 3.2091881, - 51.1878525 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-01T15:38:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees", - "theme": "trees", - "answer": 2, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 120425539 - } - }, - { - "id": 120424028, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2385793, - 48.6738891 - ], - [ - 9.2387138, - 48.6738891 - ], - [ - 9.2387138, - 48.6739392 - ], - [ - 9.2385793, - 48.6739392 - ], - [ - 9.2385793, - 48.6738891 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T14:59:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 6.73845000036561e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "move": 1, - "theme": "aed", - "answer": 5, - "locale": "de", - "imagery": "osm", - "move:node/4904755373": "improve_accuracy" - }, - "id": 120424028 - } - }, - { - "id": 120422433, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4442755, - 50.8560931 - ], - [ - 4.4442755, - 50.8560931 - ], - [ - 4.4442755, - 50.8560931 - ], - [ - 4.4442755, - 50.8560931 - ], - [ - 4.4442755, - 50.8560931 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Janimatie", - "uid": "15735226", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-01T14:15:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 1, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 1, - "locale": "nl", - "imagery": "osm", - "deletion": 1, - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 2, - "deletion:node/9707232815": "testing point" - }, - "id": 120422433 - } - }, - { - "id": 120422325, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2386327, - 48.6738431 - ], - [ - 9.2398428, - 48.6738431 - ], - [ - 9.2398428, - 48.6762441 - ], - [ - 9.2386327, - 48.6762441 - ], - [ - 9.2386327, - 48.6738431 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T14:12:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 8, - "delete": 0, - "area": 0.00000290545009999822, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 7, - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 2 - }, - "id": 120422325 - } - }, - { - "id": 120421867, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2392099, - 48.6758102 - ], - [ - 9.2398089, - 48.6758102 - ], - [ - 9.2398089, - 48.6758835 - ], - [ - 9.2392099, - 48.6758835 - ], - [ - 9.2392099, - 48.6758102 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T14:02:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 4.39066999980561e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 120421867 - } - }, - { - "id": 120421449, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2378186, - 48.6735655 - ], - [ - 9.2395519, - 48.6735655 - ], - [ - 9.2395519, - 48.6762878 - ], - [ - 9.2378186, - 48.6762878 - ], - [ - 9.2378186, - 48.6735655 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T13:51:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 42, - "delete": 0, - "area": 0.00000471856258999049, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "move": 2, - "theme": "benches", - "answer": 59, - "locale": "de", - "imagery": "osm", - "move:node/8025925983": "improve_accuracy", - "move:node/8025926154": "improve_accuracy" - }, - "id": 120421449 - } - }, - { - "id": 120420872, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0111765, - 51.0989975 - ], - [ - 5.0318158, - 51.0989975 - ], - [ - 5.0318158, - 51.1053475 - ], - [ - 5.0111765, - 51.1053475 - ], - [ - 5.0111765, - 51.0989975 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-01T13:35:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 8, - "delete": 0, - "area": 0.000131059554999951, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "move": 1, - "theme": "benches", - "answer": 12, - "locale": "nl", - "imagery": "osm", - "add-image": 3, - "change_within_25m": 15, - "change_within_50m": 1, - "move:node/9677061317": "improve_accuracy" - }, - "id": 120420872 - } - }, - { - "id": 120420748, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2378941, - 48.6774924 - ], - [ - 9.2386222, - 48.6774924 - ], - [ - 9.2386222, - 48.6778077 - ], - [ - 9.2378941, - 48.6778077 - ], - [ - 9.2378941, - 48.6774924 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T13:31:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 2.29569930002891e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 3, - "locale": "de", - "imagery": "osm" - }, - "id": 120420748 - } - }, - { - "id": 120420672, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.238722, - 48.6775696 - ], - [ - 9.238722, - 48.6775696 - ], - [ - 9.238722, - 48.6775696 - ], - [ - 9.238722, - 48.6775696 - ], - [ - 9.238722, - 48.6775696 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #postboxes", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T13:29:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/postboxes.html", - "theme": "postboxes", - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 120420672 - } - }, - { - "id": 120420090, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2419503, - 48.6810474 - ], - [ - 9.2419503, - 48.6810474 - ], - [ - 9.2419503, - 48.6810474 - ], - [ - 9.2419503, - 48.6810474 - ], - [ - 9.2419503, - 48.6810474 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T13:14:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 5, - "locale": "de", - "imagery": "osm" - }, - "id": 120420090 - } - }, - { - "id": 120419624, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2452814, - 50.7431813 - ], - [ - 4.2452814, - 50.7431813 - ], - [ - 4.2452814, - 50.7431813 - ], - [ - 4.2452814, - 50.7431813 - ], - [ - 4.2452814, - 50.7431813 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-01T13:04:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 8, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_within_25m": 8 - }, - "id": 120419624 - } - }, - { - "id": 120419354, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5682043, - 50.8657848 - ], - [ - 4.5816479, - 50.8657848 - ], - [ - 4.5816479, - 50.883099 - ], - [ - 4.5682043, - 50.883099 - ], - [ - 4.5682043, - 50.8657848 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Janimatie", - "uid": "15735226", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-01T12:57:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 6, - "delete": 0, - "area": 0.000232765179120025, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 9, - "create": 1, - "import": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 2, - "change_within_25m": 1, - "change_within_50m": 9, - "import:node/9706977587": "source: https://osm.org/note/3090274" - }, - "id": 120419354 - } - }, - { - "id": 120419300, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2422658, - 48.6809251 - ], - [ - 9.2422658, - 48.6809251 - ], - [ - 9.2422658, - 48.6809251 - ], - [ - 9.2422658, - 48.6809251 - ], - [ - 9.2422658, - 48.6809251 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T12:56:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 4, - "locale": "de", - "imagery": "osm" - }, - "id": 120419300 - } - }, - { - "id": 120419175, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2385625, - 48.6810127 - ], - [ - 9.2385625, - 48.6810127 - ], - [ - 9.2385625, - 48.6810127 - ], - [ - 9.2385625, - 48.6810127 - ], - [ - 9.2385625, - 48.6810127 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T12:53:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "theme": "waste_basket", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 120419175 - } - }, - { - "id": 120418946, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2420343, - 48.6812409 - ], - [ - 9.2423052, - 48.6812409 - ], - [ - 9.2423052, - 48.6817007 - ], - [ - 9.2420343, - 48.6817007 - ], - [ - 9.2420343, - 48.6812409 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T12:47:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 9, - "delete": 0, - "area": 1.2455982000056e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 9, - "locale": "de", - "imagery": "osm" - }, - "id": 120418946 - } - }, - { - "id": 120418641, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.244389, - 48.9715622 - ], - [ - 2.2840539, - 48.9715622 - ], - [ - 2.2840539, - 48.9942507 - ], - [ - 2.244389, - 48.9942507 - ], - [ - 2.244389, - 48.9715622 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LeTopographeFou", - "uid": "3178375", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T12:40:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 98, - "delete": 0, - "area": 0.00089993708365004, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 129, - "locale": "fr", - "imagery": "osm" - }, - "id": 120418641 - } - }, - { - "id": 120418326, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2385025, - 48.6809245 - ], - [ - 9.2407485, - 48.6809245 - ], - [ - 9.2407485, - 48.6813051 - ], - [ - 9.2385025, - 48.6813051 - ], - [ - 9.2385025, - 48.6809245 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T12:31:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 8.54827599999892e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "locale": "de", - "imagery": "osm", - "add-image": 3 - }, - "id": 120418326 - } - }, - { - "id": 120418178, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0834258, - 51.043625 - ], - [ - 4.0834258, - 51.043625 - ], - [ - 4.0834258, - 51.043625 - ], - [ - 4.0834258, - 51.043625 - ], - [ - 4.0834258, - 51.043625 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T12:27:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "import": 1, - "locale": "nl", - "imagery": "osm", - "import:node/9706914055": "source: https://osm.org/note/3099195" - }, - "id": 120418178 - } - }, - { - "id": 120417910, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0946715, - 50.943853 - ], - [ - 3.0979674, - 50.943853 - ], - [ - 3.0979674, - 50.9460748 - ], - [ - 3.0946715, - 50.9460748 - ], - [ - 3.0946715, - 50.943853 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-01T12:19:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00000732283062000289, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/waste.html", - "theme": "waste", - "answer": 4, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 4 - }, - "id": 120417910 - } - }, - { - "id": 120417902, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4779751, - 51.2488613 - ], - [ - 4.5875614, - 51.2488613 - ], - [ - 4.5875614, - 51.3318286 - ], - [ - 4.4779751, - 51.3318286 - ], - [ - 4.4779751, - 51.2488613 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "pi11", - "uid": "12066190", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-01T12:19:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00909207942799001, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "answer": 5, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 3, - "change_within_5000m": 2 - }, - "id": 120417902 - } - }, - { - "id": 120416758, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9874303, - 50.7672638 - ], - [ - 3.3955029, - 50.7672638 - ], - [ - 3.3955029, - 50.8700958 - ], - [ - 2.9874303, - 50.8700958 - ], - [ - 2.9874303, - 50.7672638 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T11:46:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 0, - "delete": 0, - "area": 0.0419629216031997, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 2, - "import": 2, - "locale": "nl", - "imagery": "AGIV", - "import:node/9706889984": "source: https://osm.org/note/3156502", - "import:node/9706920630": "source: https://osm.org/note/3156340" - }, - "id": 120416758 - } - }, - { - "id": 120416741, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8980468, - 50.9390204 - ], - [ - 4.9044069, - 50.9390204 - ], - [ - 4.9044069, - 50.9443289 - ], - [ - 4.8980468, - 50.9443289 - ], - [ - 4.8980468, - 50.9390204 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-01T11:46:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 837, - "modify": 93, - "delete": 4, - "area": 0.0000337625908500299, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 80, - "theme": "grb", - "delete": 4, - "import": 87, - "locale": "nl", - "imagery": "osm", - "conflation": 26 - }, - "id": 120416741 - } - }, - { - "id": 120415669, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.9432985, - 50.7558599 - ], - [ - 3.9433777, - 50.7558599 - ], - [ - 3.9433777, - 50.7558625 - ], - [ - 3.9432985, - 50.7558625 - ], - [ - 3.9432985, - 50.7558599 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Ambigirl", - "uid": "15314372", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-01T11:17:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 2.0592000015555e-10, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 4, - "move:node/9706809949": "improve_accuracy" - }, - "id": 120415669 - } - }, - { - "id": 120413938, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2122983, - 48.6828035 - ], - [ - 9.2122983, - 48.6828035 - ], - [ - 9.2122983, - 48.6828035 - ], - [ - 9.2122983, - 48.6828035 - ], - [ - 9.2122983, - 48.6828035 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T10:23:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 120413938 - } - }, - { - "id": 120413920, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.4600413, - 47.6617312 - ], - [ - -2.4492391, - 47.6617312 - ], - [ - -2.4492391, - 47.6789309 - ], - [ - -2.4600413, - 47.6789309 - ], - [ - -2.4600413, - 47.6617312 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "H@mlet", - "uid": "691314", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-01T10:23:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.000185794599339991, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "answer": 7, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 7 - }, - "id": 120413920 - } - }, - { - "id": 120411586, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7176882, - 50.9577485 - ], - [ - 4.0057888, - 50.9577485 - ], - [ - 4.0057888, - 51.037658 - ], - [ - 3.7176882, - 51.037658 - ], - [ - 3.7176882, - 50.9577485 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "WimBau", - "uid": "15313167", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T09:04:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 10, - "modify": 71, - "delete": 0, - "area": 0.0230219748956999, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 99, - "create": 10, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 24 - }, - "id": 120411586 - } - }, - { - "id": 120411425, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7353376, - 51.1719823 - ], - [ - 4.7408563, - 51.1719823 - ], - [ - 4.7408563, - 51.1772328 - ], - [ - 4.7353376, - 51.1772328 - ], - [ - 4.7353376, - 51.1719823 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T08:57:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 940, - "modify": 208, - "delete": 0, - "area": 0.0000289759343499727, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 170, - "theme": "grb", - "import": 107, - "locale": "nl", - "imagery": "osm", - "conflation": 76 - }, - "id": 120411425 - } - }, - { - "id": 120410928, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2122983, - 48.6761841 - ], - [ - 9.239748, - 48.6761841 - ], - [ - 9.239748, - 48.6834244 - ], - [ - 9.2122983, - 48.6834244 - ], - [ - 9.2122983, - 48.6761841 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T08:39:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 19, - "delete": 0, - "area": 0.000198744062909984, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 27, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 120410928 - } - }, - { - "id": 120410291, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4080583, - 50.7952135 - ], - [ - 4.4254536, - 50.7952135 - ], - [ - 4.4254536, - 50.8437794 - ], - [ - 4.4080583, - 50.8437794 - ], - [ - 4.4080583, - 50.7952135 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-01T08:16:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.000844818400269976, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 3 - }, - "id": 120410291 - } - }, - { - "id": 120409983, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7357989, - 51.1748172 - ], - [ - 4.7422808, - 51.1748172 - ], - [ - 4.7422808, - 51.1778473 - ], - [ - 4.7357989, - 51.1778473 - ], - [ - 4.7357989, - 51.1748172 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T08:04:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 794, - "modify": 308, - "delete": 0, - "area": 0.0000196408051900234, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 253, - "theme": "grb", - "answer": 1, - "import": 90, - "locale": "nl", - "imagery": "osm", - "conflation": 108 - }, - "id": 120409983 - } - }, - { - "id": 120409507, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.012859, - 50.9765188 - ], - [ - 3.0129556, - 50.9765188 - ], - [ - 3.0129556, - 50.9765842 - ], - [ - 3.012859, - 50.9765842 - ], - [ - 3.012859, - 50.9765188 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T07:49:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 6.3176399996992e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 1, - "import": 1, - "locale": "nl", - "imagery": "AGIV", - "import:node/9706561948": "source: https://osm.org/note/3156264" - }, - "id": 120409507 - } - }, - { - "id": 120408533, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2331038, - 50.7309361 - ], - [ - 4.2433405, - 50.7309361 - ], - [ - 4.2433405, - 50.7339554 - ], - [ - 4.2331038, - 50.7339554 - ], - [ - 4.2331038, - 50.7309361 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-01T07:09:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 3, - "delete": 0, - "area": 0.0000309076683099827, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 12, - "create": 2, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "add-image": 2, - "change_over_5000m": 2, - "change_within_5000m": 14 - }, - "id": 120408533 - } - }, - { - "id": 120408040, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2055036, - 48.6563703 - ], - [ - 9.2055036, - 48.6563703 - ], - [ - 9.2055036, - 48.6563703 - ], - [ - 9.2055036, - 48.6563703 - ], - [ - 9.2055036, - 48.6563703 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T06:47:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120408040 - } - }, - { - "id": 120406971, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1909126, - 50.8622147 - ], - [ - 5.2039267, - 50.8622147 - ], - [ - 5.2039267, - 50.8687037 - ], - [ - 5.1909126, - 50.8687037 - ], - [ - 5.1909126, - 50.8622147 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-01T05:54:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 747, - "modify": 501, - "delete": 3, - "area": 0.0000844484948999354, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 417, - "theme": "grb", - "answer": 24, - "delete": 3, - "import": 96, - "locale": "nl", - "imagery": "AGIV", - "conflation": 142 - }, - "id": 120406971 - } - }, - { - "id": 120404611, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4171031, - 50.7981103 - ], - [ - 4.4171031, - 50.7981103 - ], - [ - 4.4171031, - 50.7981103 - ], - [ - 4.4171031, - 50.7981103 - ], - [ - 4.4171031, - 50.7981103 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "StefDeGreef", - "uid": "1860737", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-01T03:02:07Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 5, - "locale": "en", - "imagery": "osm", - "change_within_1000m": 5 - }, - "id": 120404611 - } - }, - { - "id": 120404558, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4167801, - 50.7982234 - ], - [ - 4.4168372, - 50.7982234 - ], - [ - 4.4168372, - 50.7982311 - ], - [ - 4.4167801, - 50.7982311 - ], - [ - 4.4167801, - 50.7982234 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "StefDeGreef", - "uid": "1860737", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-01T02:57:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 4.39670000264506e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "move": 1, - "theme": "aed", - "answer": 4, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_within_1000m": 6, - "move:node/3308451568": "improve_accuracy" - }, - "id": 120404558 - } - }, - { - "id": 120404239, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6659081, - -33.4407675 - ], - [ - -70.6659081, - -33.4407675 - ], - [ - -70.6659081, - -33.4407675 - ], - [ - -70.6659081, - -33.4407675 - ], - [ - -70.6659081, - -33.4407675 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T02:26:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "es", - "imagery": "HDM_HOT" - }, - "id": 120404239 - } - }, - { - "id": 120403766, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5205387, - 51.2270719 - ], - [ - 4.5205387, - 51.2270719 - ], - [ - 4.5205387, - 51.2270719 - ], - [ - 4.5205387, - 51.2270719 - ], - [ - 4.5205387, - 51.2270719 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "pi11", - "uid": "12066190", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-01T01:36:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 120403766 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-02.json b/Docs/Tools/stats/stats.2022-5-02.json deleted file mode 100644 index 3b2d122d97..0000000000 --- a/Docs/Tools/stats/stats.2022-5-02.json +++ /dev/null @@ -1,4366 +0,0 @@ -{ - "features": [ - { - "id": 120478509, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3256202, - 50.7789661 - ], - [ - 4.3299893, - 50.7789661 - ], - [ - 4.3299893, - 50.787137 - ], - [ - 4.3256202, - 50.787137 - ], - [ - 4.3256202, - 50.7789661 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-02T20:55:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 3, - "delete": 0, - "area": 0.0000356994791900132, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 3, - "create": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 120478509 - } - }, - { - "id": 120478392, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3298297, - 50.7875223 - ], - [ - 4.3298297, - 50.7875223 - ], - [ - 4.3298297, - 50.7875223 - ], - [ - 4.3298297, - 50.7875223 - ], - [ - 4.3298297, - 50.7875223 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-02T20:52:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120478392 - } - }, - { - "id": 120478345, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5313747, - 48.0608649 - ], - [ - 8.5641918, - 48.0608649 - ], - [ - 8.5641918, - 48.0636013 - ], - [ - 8.5313747, - 48.0636013 - ], - [ - 8.5313747, - 48.0608649 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "tobim91", - "uid": "3233303", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-02T20:51:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.0000898007124401094, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 7, - "locale": "de", - "imagery": "osm" - }, - "id": 120478345 - } - }, - { - "id": 120478059, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3255998, - 50.7786471 - ], - [ - 4.3300597, - 50.7786471 - ], - [ - 4.3300597, - 50.787856 - ], - [ - 4.3255998, - 50.787856 - ], - [ - 4.3255998, - 50.7786471 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #fritures", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-02T20:44:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 5, - "delete": 0, - "area": 0.0000410707731099845, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/fritures.html", - "theme": "fritures", - "answer": 7, - "create": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 120478059 - } - }, - { - "id": 120477903, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3294458, - 50.7863791 - ], - [ - 4.3298322, - 50.7863791 - ], - [ - 4.3298322, - 50.787422 - ], - [ - 4.3294458, - 50.787422 - ], - [ - 4.3294458, - 50.7863791 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-02T20:40:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 1, - "delete": 0, - "area": 4.02976560000636e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 3, - "create": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 120477903 - } - }, - { - "id": 120477868, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0107477, - 51.1028928 - ], - [ - 5.029456, - 51.1028928 - ], - [ - 5.029456, - 51.1084592 - ], - [ - 5.0107477, - 51.1084592 - ], - [ - 5.0107477, - 51.1028928 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T20:38:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 68, - "modify": 61, - "delete": 0, - "area": 0.000104137881119988, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 50, - "theme": "grb", - "import": 8, - "locale": "nl", - "imagery": "osm", - "conflation": 22 - }, - "id": 120477868 - } - }, - { - "id": 120477782, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0307002, - 51.1028164 - ], - [ - 5.0310269, - 51.1028164 - ], - [ - 5.0310269, - 51.1029209 - ], - [ - 5.0307002, - 51.1029209 - ], - [ - 5.0307002, - 51.1028164 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-02T20:35:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 5, - "delete": 0, - "area": 3.41401499996491e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 4, - "theme": "grb", - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "conflation": 2 - }, - "id": 120477782 - } - }, - { - "id": 120477639, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0143203, - 51.079469 - ], - [ - 5.0302621, - 51.079469 - ], - [ - 5.0302621, - 51.1047995 - ], - [ - 5.0143203, - 51.1047995 - ], - [ - 5.0143203, - 51.079469 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "way-135989691", - "name": "Pastorie", - "osm_id": 135989691, - "reasons": [ - 43 - ], - "version": 7, - "primary_tags": { - "building": "presbytery" - } - } - ], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T20:30:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 10, - "modify": 146, - "delete": 1, - "area": 0.000403813764899934, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 130, - "theme": "grb", - "delete": 1, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "conflation": 32 - }, - "id": 120477639 - } - }, - { - "id": 120477439, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.8474551, - 44.0417584 - ], - [ - 16.8474551, - 44.0417584 - ], - [ - 16.8474551, - 44.0417584 - ], - [ - 16.8474551, - 44.0417584 - ], - [ - 16.8474551, - 44.0417584 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ivanż", - "uid": "511916", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-02T20:23:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/entrances.html", - "theme": "entrances", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120477439 - } - }, - { - "id": 120477312, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2434987, - 48.9431543 - ], - [ - 2.2919109, - 48.9431543 - ], - [ - 2.2919109, - 48.9766646 - ], - [ - 2.2434987, - 48.9766646 - ], - [ - 2.2434987, - 48.9431543 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "way-70182559", - "name": "Groupe Scolaire Pasteur", - "osm_id": 70182559, - "reasons": [ - 43 - ], - "version": 4, - "primary_tags": { - "landuse": "education" - } - } - ], - "user": "LeTopographeFou", - "uid": "3178375", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-02T20:20:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 115, - "delete": 0, - "area": 0.00162230734565981, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 154, - "locale": "fr", - "imagery": "osm" - }, - "id": 120477312 - } - }, - { - "id": 120476975, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.001541, - 50.9425233 - ], - [ - 7.0463188, - 50.9425233 - ], - [ - 7.0463188, - 50.9670325 - ], - [ - 7.001541, - 50.9670325 - ], - [ - 7.001541, - 50.9425233 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "rubecula", - "uid": "9278757", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-02T20:10:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 8, - "delete": 0, - "area": 0.0010974680557602, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", - "theme": "cyclofix", - "answer": 11, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 120476975 - } - }, - { - "id": 120476241, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2156856, - 48.6729882 - ], - [ - 9.21575, - 48.6729882 - ], - [ - 9.21575, - 48.6730357 - ], - [ - 9.2156856, - 48.6730357 - ], - [ - 9.2156856, - 48.6729882 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T19:48:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 3.05900000002773e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", - "answer": 1, - "locale": "es", - "imagery": "osm", - "change_within_5000m": 1 - }, - "id": 120476241 - } - }, - { - "id": 120475916, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.238405, - 50.739197 - ], - [ - 4.238405, - 50.739197 - ], - [ - 4.238405, - 50.739197 - ], - [ - 4.238405, - 50.739197 - ], - [ - 4.238405, - 50.739197 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-02T19:37:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "create": 1, - "locale": "en", - "imagery": "AGIV" - }, - "id": 120475916 - } - }, - { - "id": 120475791, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2384712, - 50.7359349 - ], - [ - 4.2405459, - 50.7359349 - ], - [ - 4.2405459, - 50.7392796 - ], - [ - 4.2384712, - 50.7392796 - ], - [ - 4.2384712, - 50.7359349 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-02T19:34:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 2, - "delete": 0, - "area": 0.00000693924909001261, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 6, - "create": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 120475791 - } - }, - { - "id": 120475680, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2396372, - 50.7347273 - ], - [ - 4.2396372, - 50.7347273 - ], - [ - 4.2396372, - 50.7347273 - ], - [ - 4.2396372, - 50.7347273 - ], - [ - 4.2396372, - 50.7347273 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-02T19:30:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120475680 - } - }, - { - "id": 120474378, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0403236, - 51.1091326 - ], - [ - 5.0403236, - 51.1091326 - ], - [ - 5.0403236, - 51.1091326 - ], - [ - 5.0403236, - 51.1091326 - ], - [ - 5.0403236, - 51.1091326 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T18:49:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 5, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "add-image": 1 - }, - "id": 120474378 - } - }, - { - "id": 120474342, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5122688, - 51.3115194 - ], - [ - 4.5122688, - 51.3115194 - ], - [ - 4.5122688, - 51.3115194 - ], - [ - 4.5122688, - 51.3115194 - ], - [ - 4.5122688, - 51.3115194 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "pi11", - "uid": "12066190", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-02T18:48:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 5, - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 120474342 - } - }, - { - "id": 120473564, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1952284, - 51.0611584 - ], - [ - 4.221328, - 51.0611584 - ], - [ - 4.221328, - 51.125822 - ], - [ - 4.1952284, - 51.125822 - ], - [ - 4.1952284, - 51.0611584 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Janimatie", - "uid": "15735226", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T18:25:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 2, - "area": 0.00168769409456003, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "deletion": 2, - "change_over_5000m": 4, - "deletion:node/9709108800": "duplicate", - "deletion:node/9709265935": "duplicate" - }, - "id": 120473564 - } - }, - { - "id": 120472653, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2171282, - 51.1939797 - ], - [ - 3.2171282, - 51.1939797 - ], - [ - 3.2171282, - 51.1939797 - ], - [ - 3.2171282, - 51.1939797 - ], - [ - 3.2171282, - 51.1939797 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T18:02:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 3 - }, - "id": 120472653 - } - }, - { - "id": 120471685, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2291806, - 50.7466404 - ], - [ - 4.2291806, - 50.7466404 - ], - [ - 4.2291806, - 50.7466404 - ], - [ - 4.2291806, - 50.7466404 - ], - [ - 4.2291806, - 50.7466404 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-02T17:34:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/nature.html", - "theme": "nature", - "answer": 5, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120471685 - } - }, - { - "id": 120471039, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2345466, - 50.7328247 - ], - [ - 4.2372476, - 50.7328247 - ], - [ - 4.2372476, - 50.7356502 - ], - [ - 4.2345466, - 50.7356502 - ], - [ - 4.2345466, - 50.7328247 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-02T17:14:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0.00000763167550000058, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 5, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120471039 - } - }, - { - "id": 120470296, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.223733, - 48.6768307 - ], - [ - 9.223733, - 48.6768307 - ], - [ - 9.223733, - 48.6768307 - ], - [ - 9.223733, - 48.6768307 - ], - [ - 9.223733, - 48.6768307 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T16:55:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 120470296 - } - }, - { - "id": 120468833, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2175514, - 48.6765426 - ], - [ - 9.2175514, - 48.6765426 - ], - [ - 9.2175514, - 48.6765426 - ], - [ - 9.2175514, - 48.6765426 - ], - [ - 9.2175514, - 48.6765426 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T16:19:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 3 - }, - "id": 120468833 - } - }, - { - "id": 120468255, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2169458, - 48.6758801 - ], - [ - 9.2171939, - 48.6758801 - ], - [ - 9.2171939, - 48.6765968 - ], - [ - 9.2169458, - 48.6765968 - ], - [ - 9.2169458, - 48.6758801 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T16:07:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 1.77813269999755e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 1, - "locale": "de", - "imagery": "osm", - "add-image": 2, - "change_within_25m": 3 - }, - "id": 120468255 - } - }, - { - "id": 120467836, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2191086, - 48.6731093 - ], - [ - 9.221129, - 48.6731093 - ], - [ - 9.221129, - 48.67611 - ], - [ - 9.2191086, - 48.67611 - ], - [ - 9.2191086, - 48.6731093 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T15:58:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000606261428000017, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "locale": "de", - "imagery": "osm", - "add-image": 2, - "change_within_100m": 2 - }, - "id": 120467836 - } - }, - { - "id": 120467216, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.23891, - 50.7334017 - ], - [ - 4.23891, - 50.7334017 - ], - [ - 4.23891, - 50.7334017 - ], - [ - 4.23891, - 50.7334017 - ], - [ - 4.23891, - 50.7334017 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9709464531", - "name": "Veronique’s Gourmet Huisje", - "osm_id": 9709464531, - "reasons": [ - 43 - ], - "version": 3, - "primary_tags": { - "shop": "Gourmet store" - } - } - ], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 4, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-02T15:46:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120467216 - } - }, - { - "id": 120466835, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.239778, - 50.7367458 - ], - [ - 4.239778, - 50.7367458 - ], - [ - 4.239778, - 50.7367458 - ], - [ - 4.239778, - 50.7367458 - ], - [ - 4.239778, - 50.7367458 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-02T15:38:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "theme": "waste_basket", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120466835 - } - }, - { - "id": 120466733, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2157373, - 48.6728021 - ], - [ - 9.2159175, - 48.6728021 - ], - [ - 9.2159175, - 48.673011 - ], - [ - 9.2157373, - 48.673011 - ], - [ - 9.2157373, - 48.6728021 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #parkings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T15:36:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 3.76437800005392e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/parkings.html", - "theme": "parkings", - "locale": "es", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 120466733 - } - }, - { - "id": 120463498, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2168093, - 48.6724061 - ], - [ - 9.2168093, - 48.6724061 - ], - [ - 9.2168093, - 48.6724061 - ], - [ - 9.2168093, - 48.6724061 - ], - [ - 9.2168093, - 48.6724061 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T14:15:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 120463498 - } - }, - { - "id": 120463444, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2351066, - 50.7339769 - ], - [ - 4.2389209, - 50.7339769 - ], - [ - 4.2389209, - 50.7373888 - ], - [ - 4.2351066, - 50.7373888 - ], - [ - 4.2351066, - 50.7339769 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T14:13:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0.0000130140101699858, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 9, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_5000m": 10 - }, - "id": 120463444 - } - }, - { - "id": 120462015, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2236792, - 48.6737297 - ], - [ - 9.2243846, - 48.6737297 - ], - [ - 9.2243846, - 48.6738756 - ], - [ - 9.2236792, - 48.6738756 - ], - [ - 9.2236792, - 48.6737297 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T13:39:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 1.02917859999945e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "theme": "waste_basket", - "answer": 8, - "locale": "de", - "imagery": "osm", - "change_within_25m": 8 - }, - "id": 120462015 - } - }, - { - "id": 120460538, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3260735, - 43.361255 - ], - [ - 5.3260735, - 43.361255 - ], - [ - 5.3260735, - 43.361255 - ], - [ - 5.3260735, - 43.361255 - ], - [ - 5.3260735, - 43.361255 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "croustille", - "uid": "15455805", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-02T13:00:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "answer": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 120460538 - } - }, - { - "id": 120460119, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.8524032, - 43.3686043 - ], - [ - -3.8524032, - 43.3686043 - ], - [ - -3.8524032, - 43.3686043 - ], - [ - -3.8524032, - 43.3686043 - ], - [ - -3.8524032, - 43.3686043 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Ninopiña10", - "uid": "11138282", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T12:48:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 120460119 - } - }, - { - "id": 120459805, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2098638, - 51.158909 - ], - [ - 5.2098638, - 51.158909 - ], - [ - 5.2098638, - 51.158909 - ], - [ - 5.2098638, - 51.158909 - ], - [ - 5.2098638, - 51.158909 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "syerval", - "uid": "15398849", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #parkings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-02T12:40:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/parkings.html", - "theme": "parkings", - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 120459805 - } - }, - { - "id": 120459600, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2144573, - 48.6692571 - ], - [ - 9.2282797, - 48.6692571 - ], - [ - 9.2282797, - 48.6766509 - ], - [ - 9.2144573, - 48.6766509 - ], - [ - 9.2144573, - 48.6692571 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T12:35:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 63, - "delete": 0, - "area": 0.000102200061119942, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 113, - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 114 - }, - "id": 120459600 - } - }, - { - "id": 120459240, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1890771, - 51.060159 - ], - [ - 4.221356, - 51.060159 - ], - [ - 4.221356, - 51.126293 - ], - [ - 4.1890771, - 51.126293 - ], - [ - 4.1890771, - 51.060159 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Janimatie", - "uid": "15735226", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T12:27:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6, - "modify": 16, - "delete": 0, - "area": 0.00213473277259992, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 23, - "create": 3, - "import": 3, - "locale": "nl", - "imagery": "osm", - "add-image": 4, - "change_over_5000m": 6, - "change_within_25m": 25, - "change_within_50m": 1, - "change_within_100m": 2, - "move:node/9709265935": "improve_accuracy", - "import:node/9709101155": "source: https://osm.org/note/3143418", - "import:node/9709108800": "source: https://osm.org/note/3143418", - "import:node/9709265935": "source: https://osm.org/note/3161446" - }, - "id": 120459240 - } - }, - { - "id": 120459030, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2265176, - 48.6774975 - ], - [ - 9.2266079, - 48.6774975 - ], - [ - 9.2266079, - 48.677591 - ], - [ - 9.2265176, - 48.677591 - ], - [ - 9.2265176, - 48.6774975 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T12:21:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 8.44304999986603e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", - "answer": 4, - "locale": "es", - "imagery": "osm", - "change_within_25m": 4 - }, - "id": 120459030 - } - }, - { - "id": 120458904, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2272324, - 48.6761841 - ], - [ - 9.2276912, - 48.6761841 - ], - [ - 9.2276912, - 48.6776754 - ], - [ - 9.2272324, - 48.6776754 - ], - [ - 9.2272324, - 48.6761841 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T12:18:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 6, - "delete": 0, - "area": 6.8420843999982e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 5, - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 6 - }, - "id": 120458904 - } - }, - { - "id": 120458772, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6784055, - 51.2951339 - ], - [ - 4.7474141, - 51.2951339 - ], - [ - 4.7474141, - 51.3112784 - ], - [ - 4.6784055, - 51.3112784 - ], - [ - 4.6784055, - 51.2951339 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Toerisme Malle", - "uid": "15547279", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-02T12:15:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 10, - "modify": 1, - "delete": 0, - "area": 0.00111410934269971, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 3, - "create": 10, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 120458772 - } - }, - { - "id": 120458698, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7403907, - 51.3047643 - ], - [ - 4.7403907, - 51.3047643 - ], - [ - 4.7403907, - 51.3047643 - ], - [ - 4.7403907, - 51.3047643 - ], - [ - 4.7403907, - 51.3047643 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Toerisme Malle", - "uid": "15547279", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-02T12:13:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 120458698 - } - }, - { - "id": 120458298, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2148703, - 48.6698561 - ], - [ - 9.2283665, - 48.6698561 - ], - [ - 9.2283665, - 48.6805507 - ], - [ - 9.2148703, - 48.6805507 - ], - [ - 9.2148703, - 48.6698561 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T12:04:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 27, - "delete": 0, - "area": 0.000144336460520016, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 30, - "locale": "de", - "imagery": "osm", - "add-image": 10, - "change_within_25m": 40 - }, - "id": 120458298 - } - }, - { - "id": 120457061, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2170368, - 48.6768061 - ], - [ - 9.2171265, - 48.6768061 - ], - [ - 9.2171265, - 48.6768747 - ], - [ - 9.2170368, - 48.6768747 - ], - [ - 9.2170368, - 48.6768061 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #bicycle_rental", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T11:35:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 6.15341999977948e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bicycle_rental.html", - "theme": "bicycle_rental", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 120457061 - } - }, - { - "id": 120456588, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7286941, - 51.2958291 - ], - [ - 4.7528348, - 51.2958291 - ], - [ - 4.7528348, - 51.3101643 - ], - [ - 4.7286941, - 51.3101643 - ], - [ - 4.7286941, - 51.2958291 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Toerisme Malle", - "uid": "15547279", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-02T11:23:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 10, - "modify": 3, - "delete": 1, - "area": 0.00034606176263994, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 9, - "create": 10, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "deletion": 1, - "deletion:node/9709091288": "testing point" - }, - "id": 120456588 - } - }, - { - "id": 120455542, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.174613, - 48.6904902 - ], - [ - 9.1923304, - 48.6904902 - ], - [ - 9.1923304, - 48.6947207 - ], - [ - 9.174613, - 48.6947207 - ], - [ - 9.174613, - 48.6904902 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T10:57:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 17, - "delete": 0, - "area": 0.0000749534606999673, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", - "answer": 21, - "locale": "es", - "imagery": "osm" - }, - "id": 120455542 - } - }, - { - "id": 120454894, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1527818, - 48.6204135 - ], - [ - 9.2110545, - 48.6204135 - ], - [ - 9.2110545, - 48.6703406 - ], - [ - 9.1527818, - 48.6703406 - ], - [ - 9.1527818, - 48.6204135 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T10:39:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00290938692017028, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/campersite.html", - "theme": "campersite", - "answer": 10, - "locale": "de", - "imagery": "osm" - }, - "id": 120454894 - } - }, - { - "id": 120454548, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.0499244, - 38.6036182 - ], - [ - -0.0495954, - 38.6036182 - ], - [ - -0.0495954, - 38.6038795 - ], - [ - -0.0499244, - 38.6038795 - ], - [ - -0.0499244, - 38.6036182 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T10:28:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 8.59676999994229e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", - "answer": 2, - "locale": "ca", - "imagery": "osm", - "change_over_5000m": 2 - }, - "id": 120454548 - } - }, - { - "id": 120454260, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3631942, - 50.7547658 - ], - [ - 3.3631942, - 50.7547658 - ], - [ - 3.3631942, - 50.7547658 - ], - [ - 3.3631942, - 50.7547658 - ], - [ - 3.3631942, - 50.7547658 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Pieter T", - "uid": "15807133", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-02T10:21:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 120454260 - } - }, - { - "id": 120453428, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1934126, - 48.6679825 - ], - [ - 9.2392962, - 48.6679825 - ], - [ - 9.2392962, - 48.6916236 - ], - [ - 9.1934126, - 48.6916236 - ], - [ - 9.1934126, - 48.6679825 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T10:00:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 19, - "delete": 0, - "area": 0.00108473877595995, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 27, - "locale": "de", - "imagery": "osm" - }, - "id": 120453428 - } - }, - { - "id": 120450875, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.0289559, - 53.5970258 - ], - [ - 10.0350486, - 53.5970258 - ], - [ - 10.0350486, - 53.6067367 - ], - [ - 10.0289559, - 53.6067367 - ], - [ - 10.0289559, - 53.5970258 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "G4rden3r", - "uid": "12091530", - "editor": "iD 2.20.4", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Hamburg 20cm (HH LGV DOP20 2021)", - "date": "2022-05-02T08:56:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 32, - "delete": 0, - "area": 0.0000591656004300101, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://www.openstreetmap.org/edit", - "locale": "de", - "hashtags": "#MapComplete;#trees", - "changesets_count": 1306 - }, - "id": 120450875 - } - }, - { - "id": 120445862, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1478811, - 48.6256623 - ], - [ - 9.3377545, - 48.6256623 - ], - [ - 9.3377545, - 48.6944895 - ], - [ - 9.1478811, - 48.6944895 - ], - [ - 9.1478811, - 48.6256623 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T06:42:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 40, - "delete": 0, - "area": 0.0130684544764803, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 56, - "locale": "de", - "imagery": "osm", - "change_within_5000m": 11 - }, - "id": 120445862 - } - }, - { - "id": 120445717, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2390228, - 50.7348475 - ], - [ - 4.2390228, - 50.7348475 - ], - [ - 4.2390228, - 50.7348475 - ], - [ - 4.2390228, - 50.7348475 - ], - [ - 4.2390228, - 50.7348475 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T06:38:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 120445717 - } - }, - { - "id": 120445606, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2236122, - 48.6803889 - ], - [ - 9.2291035, - 48.6803889 - ], - [ - 9.2291035, - 48.6824181 - ], - [ - 9.2236122, - 48.6824181 - ], - [ - 9.2236122, - 48.6803889 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T06:35:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.0000111429459600164, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 5, - "locale": "de", - "imagery": "osm" - }, - "id": 120445606 - } - }, - { - "id": 120445045, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.218023, - 48.6766707 - ], - [ - 9.2281884, - 48.6766707 - ], - [ - 9.2281884, - 48.6777774 - ], - [ - 9.218023, - 48.6777774 - ], - [ - 9.218023, - 48.6766707 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T06:17:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 8, - "delete": 0, - "area": 0.0000112500481799392, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/entrances.html", - "theme": "entrances", - "answer": 11, - "locale": "de", - "imagery": "osm" - }, - "id": 120445045 - } - }, - { - "id": 120444933, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2212877, - 48.6789038 - ], - [ - 9.2212877, - 48.6789038 - ], - [ - 9.2212877, - 48.6789038 - ], - [ - 9.2212877, - 48.6789038 - ], - [ - 9.2212877, - 48.6789038 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T06:14:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 120444933 - } - }, - { - "id": 120444206, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2174127, - 48.6780155 - ], - [ - 9.2270169, - 48.6780155 - ], - [ - 9.2270169, - 48.6863972 - ], - [ - 9.2174127, - 48.6863972 - ], - [ - 9.2174127, - 48.6780155 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T05:52:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 12, - "delete": 0, - "area": 0.0000804995231400106, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 19, - "locale": "de", - "imagery": "osm" - }, - "id": 120444206 - } - }, - { - "id": 120443946, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.6200804, - 47.3111615 - ], - [ - 9.6200804, - 47.3111615 - ], - [ - 9.6200804, - 47.3111615 - ], - [ - 9.6200804, - 47.3111615 - ], - [ - 9.6200804, - 47.3111615 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mcliquid", - "uid": "1213571", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T05:43:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 120443946 - } - }, - { - "id": 120443909, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -5.858835, - 37.1915893 - ], - [ - -5.858835, - 37.1915893 - ], - [ - -5.858835, - 37.1915893 - ], - [ - -5.858835, - 37.1915893 - ], - [ - -5.858835, - 37.1915893 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "troNpo", - "uid": "12221867", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-02T05:42:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 6, - "locale": "es", - "imagery": "osm", - "add-image": 1 - }, - "id": 120443909 - } - }, - { - "id": 120443807, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2122983, - 48.6768307 - ], - [ - 9.223733, - 48.6768307 - ], - [ - 9.223733, - 48.6834244 - ], - [ - 9.2122983, - 48.6834244 - ], - [ - 9.2122983, - 48.6768307 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T05:39:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.0000753969813900306, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 7, - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 120443807 - } - }, - { - "id": 120443700, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.0577061, - 49.6103535 - ], - [ - 6.0577061, - 49.6103535 - ], - [ - 6.0577061, - 49.6103535 - ], - [ - 6.0577061, - 49.6103535 - ], - [ - 6.0577061, - 49.6103535 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "gloda", - "uid": "646144", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-02T05:35:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees", - "theme": "trees", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 120443700 - } - }, - { - "id": 120442602, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2185703, - 48.6794693 - ], - [ - 9.2185703, - 48.6794693 - ], - [ - 9.2185703, - 48.6794693 - ], - [ - 9.2185703, - 48.6794693 - ], - [ - 9.2185703, - 48.6794693 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T04:48:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 2, - "locale": "de", - "imagery": "osm", - "change_within_1000m": 2 - }, - "id": 120442602 - } - }, - { - "id": 120442418, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2200813, - 48.6789862 - ], - [ - 9.220769, - 48.6789862 - ], - [ - 9.220769, - 48.6794094 - ], - [ - 9.2200813, - 48.6794094 - ], - [ - 9.2200813, - 48.6789862 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-02T04:41:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 2.91034640000246e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "answer": 1, - "locale": "de", - "imagery": "HDM_HOT", - "change_within_1000m": 1 - }, - "id": 120442418 - } - }, - { - "id": 120441621, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -99.3319844, - 38.8883134 - ], - [ - -99.3099697, - 38.8883134 - ], - [ - -99.3099697, - 38.8939179 - ], - [ - -99.3319844, - 38.8939179 - ], - [ - -99.3319844, - 38.8883134 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "s_SoNick", - "uid": "8082926", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-02T03:54:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00012338138614993, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "answer": 6, - "locale": "en", - "imagery": "osm" - }, - "id": 120441621 - } - }, - { - "id": 120441439, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -99.332838, - 38.860141 - ], - [ - -99.2980167, - 38.860141 - ], - [ - -99.2980167, - 38.8961513 - ], - [ - -99.332838, - 38.8961513 - ], - [ - -99.332838, - 38.860141 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "s_SoNick", - "uid": "8082926", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-02T03:43:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 41, - "delete": 0, - "area": 0.00125392545938968, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 42, - "locale": "en", - "imagery": "osm" - }, - "id": 120441439 - } - }, - { - "id": 120441410, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -99.320608, - 38.9038277 - ], - [ - -99.320608, - 38.9038277 - ], - [ - -99.320608, - 38.9038277 - ], - [ - -99.320608, - 38.9038277 - ], - [ - -99.320608, - 38.9038277 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "s_SoNick", - "uid": "8082926", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-02T03:41:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/entrances.html", - "theme": "entrances", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 120441410 - } - }, - { - "id": 120441063, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -123.0185163, - 49.2362183 - ], - [ - -123.018516, - 49.2362183 - ], - [ - -123.018516, - 49.2362183 - ], - [ - -123.0185163, - 49.2362183 - ], - [ - -123.0185163, - 49.2362183 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joel56dt", - "uid": "3794090", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-02T03:14:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120441063 - } - }, - { - "id": 120440508, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "rynmas", - "uid": "13191473", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-02T02:08:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees", - "theme": "trees", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120440508 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-03.json b/Docs/Tools/stats/stats.2022-5-03.json deleted file mode 100644 index eaedacc3d4..0000000000 --- a/Docs/Tools/stats/stats.2022-5-03.json +++ /dev/null @@ -1,1966 +0,0 @@ -{ - "features": [ - { - "id": 120518764, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2514172, - -39.8274328 - ], - [ - -73.2514172, - -39.8274328 - ], - [ - -73.2514172, - -39.8274328 - ], - [ - -73.2514172, - -39.8274328 - ], - [ - -73.2514172, - -39.8274328 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-03T23:00:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "es", - "imagery": "osm" - }, - "id": 120518764 - } - }, - { - "id": 120516444, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2388022, - 50.7381198 - ], - [ - 4.2394009, - 50.7381198 - ], - [ - 4.2394009, - 50.7385603 - ], - [ - 4.2388022, - 50.7385603 - ], - [ - 4.2388022, - 50.7381198 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-03T21:07:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 2.63727350001768e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 4, - "create": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 120516444 - } - }, - { - "id": 120513831, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.5749924, - 52.4220891 - ], - [ - 13.5750179, - 52.4220891 - ], - [ - 13.5750179, - 52.4221012 - ], - [ - 13.5749924, - 52.4221012 - ], - [ - 13.5749924, - 52.4220891 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Supaplex030", - "uid": "418040", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #berlin_emergency_water_pumps", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-03T19:40:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 3.08549999998239e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "move": 1, - "theme": "berlin_emergency_water_pumps", - "answer": 1, - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "move:node/6341152124": "improve_accuracy" - }, - "id": 120513831 - } - }, - { - "id": 120512036, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2514373, - -39.8304826 - ], - [ - -73.2104217, - -39.8304826 - ], - [ - -73.2104217, - -39.8273568 - ], - [ - -73.2514373, - -39.8273568 - ], - [ - -73.2514373, - -39.8304826 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-03T18:47:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 10, - "delete": 0, - "area": 0.000128206562480294, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "create": 3, - "locale": "es", - "imagery": "Mapbox", - "add-image": 10 - }, - "id": 120512036 - } - }, - { - "id": 120511193, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -74.1017807, - 4.6151786 - ], - [ - -74.1017807, - 4.6151786 - ], - [ - -74.1017807, - 4.6151786 - ], - [ - -74.1017807, - 4.6151786 - ], - [ - -74.1017807, - 4.6151786 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AngocA", - "uid": "89128", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-03T18:22:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 4, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 4 - }, - "id": 120511193 - } - }, - { - "id": 120510783, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.079343, - 51.130916 - ], - [ - 5.0796568, - 51.130916 - ], - [ - 5.0796568, - 51.1309655 - ], - [ - 5.079343, - 51.1309655 - ], - [ - 5.079343, - 51.130916 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-03T18:11:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 1.55331000009515e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 2, - "import": 1, - "locale": "nl", - "imagery": "AGIV", - "move:node/9711906584": "improve_accuracy", - "import:node/9711906584": "source: https://osm.org/note/3143423" - }, - "id": 120510783 - } - }, - { - "id": 120508724, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7483983, - 51.1183001 - ], - [ - 3.1981245, - 51.1183001 - ], - [ - 3.1981245, - 51.2188482 - ], - [ - 2.7483983, - 51.2188482 - ], - [ - 2.7483983, - 51.1183001 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-03T17:13:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 14, - "modify": 0, - "delete": 0, - "area": 0.0452191149302189, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 2, - "import": 12, - "locale": "nl", - "imagery": "AGIV", - "import:node/-10": "source: https://osm.org/note/3156537", - "import:node/-11": "source: https://osm.org/note/3156375", - "change_over_5000m": 2, - "import:node/9711809276": "source: https://osm.org/note/3156258", - "import:node/9711903959": "source: https://osm.org/note/3156551", - "import:node/9711903960": "source: https://osm.org/note/3156508", - "import:node/9711903961": "source: https://osm.org/note/3156308", - "import:node/9711927991": "source: https://osm.org/note/3156438", - "import:node/9711993532": "source: https://osm.org/note/3156587", - "import:node/9711993533": "source: https://osm.org/note/3156472", - "import:node/9712020471": "source: https://osm.org/note/3156435", - "import:node/9712059289": "source: https://osm.org/note/3156495", - "import:node/9712076568": "source: https://osm.org/note/3156481" - }, - "id": 120508724 - } - }, - { - "id": 120502162, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2082483, - 51.1867515 - ], - [ - 3.2082483, - 51.1867515 - ], - [ - 3.2082483, - 51.1867515 - ], - [ - 3.2082483, - 51.1867515 - ], - [ - 3.2082483, - 51.1867515 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-03T14:20:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 8, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_within_500m": 8 - }, - "id": 120502162 - } - }, - { - "id": 120501481, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7398313, - 51.1661571 - ], - [ - 4.7449172, - 51.1661571 - ], - [ - 4.7449172, - 51.1674388 - ], - [ - 4.7398313, - 51.1674388 - ], - [ - 4.7398313, - 51.1661571 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-03T14:02:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 207, - "modify": 108, - "delete": 0, - "area": 0.00000651859802999925, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 86, - "theme": "grb", - "answer": 1, - "import": 21, - "locale": "nl", - "imagery": "osm", - "conflation": 42 - }, - "id": 120501481 - } - }, - { - "id": 120500559, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1791827, - 48.6458973 - ], - [ - 9.237814, - 48.6458973 - ], - [ - 9.237814, - 48.6806064 - ], - [ - 9.1791827, - 48.6806064 - ], - [ - 9.1791827, - 48.6458973 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-03T13:34:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 39, - "delete": 0, - "area": 0.00203503965483004, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "move": 1, - "theme": "benches", - "answer": 61, - "locale": "de", - "imagery": "osm", - "move:node/4623986807": "improve_accuracy" - }, - "id": 120500559 - } - }, - { - "id": 120499964, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7391889, - 51.1664022 - ], - [ - 4.7438065, - 51.1664022 - ], - [ - 4.7438065, - 51.1691418 - ], - [ - 4.7391889, - 51.1691418 - ], - [ - 4.7391889, - 51.1664022 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-03T13:18:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 470, - "modify": 267, - "delete": 1, - "area": 0.0000126503769599904, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 221, - "theme": "grb", - "delete": 1, - "import": 65, - "locale": "nl", - "imagery": "osm", - "conflation": 94 - }, - "id": 120499964 - } - }, - { - "id": 120499907, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7415832, - 51.1683476 - ], - [ - 4.7426917, - 51.1683476 - ], - [ - 4.7426917, - 51.1695227 - ], - [ - 4.7415832, - 51.1695227 - ], - [ - 4.7415832, - 51.1683476 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-03T13:16:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 51, - "modify": 32, - "delete": 3, - "area": 0.0000013025983500051, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 28, - "theme": "grb", - "delete": 3, - "import": 9, - "locale": "nl", - "imagery": "osm", - "conflation": 14 - }, - "id": 120499907 - } - }, - { - "id": 120498599, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -76.6157676, - 39.3248413 - ], - [ - -76.6157596, - 39.3248413 - ], - [ - -76.6157596, - 39.3248953 - ], - [ - -76.6157676, - 39.3248953 - ], - [ - -76.6157676, - 39.3248413 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "pkoby", - "uid": "999995", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-03T12:43:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 4.31999999666021e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees", - "theme": "trees", - "answer": 3, - "create": 2, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 3 - }, - "id": 120498599 - } - }, - { - "id": 120497985, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7779292, - 39.6482209 - ], - [ - 2.7784652, - 39.6482209 - ], - [ - 2.7784652, - 39.6494624 - ], - [ - 2.7779292, - 39.6494624 - ], - [ - 2.7779292, - 39.6482209 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "benetj", - "uid": "2353661", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-03T12:26:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 6.65443999999306e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", - "answer": 4, - "locale": "es", - "imagery": "osm" - }, - "id": 120497985 - } - }, - { - "id": 120497207, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5160122, - 48.0627835 - ], - [ - 8.5279045, - 48.0627835 - ], - [ - 8.5279045, - 48.0705602 - ], - [ - 8.5160122, - 48.0705602 - ], - [ - 8.5160122, - 48.0627835 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "blubberbass", - "uid": "15227900", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-03T12:05:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000924828494100065, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 5, - "locale": "en", - "imagery": "osm" - }, - "id": 120497207 - } - }, - { - "id": 120494500, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7405689, - 51.1674871 - ], - [ - 4.7432654, - 51.1674871 - ], - [ - 4.7432654, - 51.1696224 - ], - [ - 4.7405689, - 51.1696224 - ], - [ - 4.7405689, - 51.1674871 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-03T10:36:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 133, - "modify": 87, - "delete": 0, - "area": 0.00000575783644999722, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 70, - "theme": "grb", - "import": 13, - "locale": "nl", - "imagery": "osm", - "conflation": 34 - }, - "id": 120494500 - } - }, - { - "id": 120494468, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.741542, - 51.1683476 - ], - [ - 4.7438175, - 51.1683476 - ], - [ - 4.7438175, - 51.1690799 - ], - [ - 4.741542, - 51.1690799 - ], - [ - 4.741542, - 51.1683476 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-03T10:36:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 36, - "modify": 33, - "delete": 0, - "area": 0.0000016663486500061, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 28, - "theme": "grb", - "import": 7, - "locale": "nl", - "imagery": "osm", - "conflation": 10 - }, - "id": 120494468 - } - }, - { - "id": 120494167, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1797877, - 48.646532 - ], - [ - 9.1804639, - 48.646532 - ], - [ - 9.1804639, - 48.6475514 - ], - [ - 9.1797877, - 48.6475514 - ], - [ - 9.1797877, - 48.646532 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-03T10:27:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 6.89318279997086e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 8, - "locale": "de", - "imagery": "osm", - "change_within_25m": 4, - "change_within_500m": 4 - }, - "id": 120494167 - } - }, - { - "id": 120493185, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7387032, - 51.1677636 - ], - [ - 4.7452885, - 51.1677636 - ], - [ - 4.7452885, - 51.169651 - ], - [ - 4.7387032, - 51.169651 - ], - [ - 4.7387032, - 51.1677636 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-03T09:54:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 813, - "modify": 359, - "delete": 0, - "area": 0.0000124290952200077, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 292, - "theme": "grb", - "import": 101, - "locale": "nl", - "imagery": "osm", - "conflation": 134 - }, - "id": 120493185 - } - }, - { - "id": 120493171, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7391909, - 51.1689335 - ], - [ - 4.7393609, - 51.1689335 - ], - [ - 4.7393609, - 51.1690162 - ], - [ - 4.7391909, - 51.1690162 - ], - [ - 4.7391909, - 51.1689335 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-03T09:53:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 9, - "modify": 0, - "delete": 0, - "area": 1.40590000000727e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 120493171 - } - }, - { - "id": 120491373, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.542118, - 45.1773589 - ], - [ - 5.6468371, - 45.1773589 - ], - [ - 5.6468371, - 45.1885791 - ], - [ - 5.542118, - 45.1885791 - ], - [ - 5.542118, - 45.1773589 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "tsv38170", - "uid": "13047590", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-03T08:52:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00117496924581966, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/campersite", - "theme": "campersite", - "answer": 6, - "locale": "fr", - "imagery": "osm" - }, - "id": 120491373 - } - }, - { - "id": 120490512, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7363164, - 51.1684459 - ], - [ - 4.7439133, - 51.1684459 - ], - [ - 4.7439133, - 51.1721709 - ], - [ - 4.7363164, - 51.1721709 - ], - [ - 4.7363164, - 51.1684459 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-03T08:22:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1395, - "modify": 326, - "delete": 0, - "area": 0.0000282984524999687, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 266, - "theme": "grb", - "import": 172, - "locale": "nl", - "imagery": "osm", - "conflation": 120 - }, - "id": 120490512 - } - }, - { - "id": 120490508, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-03T08:22:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 120490508 - } - }, - { - "id": 120490316, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0037235, - 51.0877442 - ], - [ - 5.0590713, - 51.0877442 - ], - [ - 5.0590713, - 51.1010986 - ], - [ - 5.0037235, - 51.1010986 - ], - [ - 5.0037235, - 51.0877442 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "nathaliesmolders", - "uid": "15820052", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-03T08:14:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 5, - "delete": 0, - "area": 0.000739136660319844, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 2 - }, - "id": 120490316 - } - }, - { - "id": 120490223, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7385412, - 51.1705271 - ], - [ - 4.7437394, - 51.1705271 - ], - [ - 4.7437394, - 51.1722871 - ], - [ - 4.7385412, - 51.1722871 - ], - [ - 4.7385412, - 51.1705271 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-03T08:10:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 292, - "modify": 233, - "delete": 0, - "area": 0.00000914883199998555, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 194, - "theme": "grb", - "import": 36, - "locale": "nl", - "imagery": "osm", - "conflation": 82 - }, - "id": 120490223 - } - }, - { - "id": 120489955, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.737904, - 51.1704873 - ], - [ - 4.7411633, - 51.1704873 - ], - [ - 4.7411633, - 51.1741746 - ], - [ - 4.737904, - 51.1741746 - ], - [ - 4.737904, - 51.1704873 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-03T08:00:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 268, - "modify": 125, - "delete": 2, - "area": 0.0000120180168900087, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 96, - "theme": "grb", - "delete": 2, - "import": 33, - "locale": "nl", - "imagery": "osm", - "conflation": 44 - }, - "id": 120489955 - } - }, - { - "id": 120489853, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7657256, - 51.029265 - ], - [ - 3.4996564, - 51.029265 - ], - [ - 3.4996564, - 51.2251788 - ], - [ - 2.7657256, - 51.2251788 - ], - [ - 2.7657256, - 51.029265 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-03T07:57:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 12, - "modify": 0, - "delete": 0, - "area": 0.14378717196504, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "import": 12, - "locale": "nl", - "imagery": "AGIV10cm", - "import:node/9710745614": "source: https://osm.org/note/3156554", - "import:node/9710798957": "source: https://osm.org/note/3156318", - "import:node/9710801395": "source: https://osm.org/note/3156478", - "import:node/9710840585": "source: https://osm.org/note/3156430", - "import:node/9710852265": "source: https://osm.org/note/3156329", - "import:node/9710864939": "source: https://osm.org/note/3156333", - "import:node/9710874299": "source: https://osm.org/note/3156300", - "import:node/9710877722": "source: https://osm.org/note/3156427", - "import:node/9710882904": "source: https://osm.org/note/3156573", - "import:node/9710916162": "source: https://osm.org/note/3156518", - "import:node/9710945340": "source: https://osm.org/note/3099177", - "import:node/9710961828": "source: https://osm.org/note/3156571" - }, - "id": 120489853 - } - }, - { - "id": 120488931, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5107035, - 44.8455246 - ], - [ - -0.5107035, - 44.8455246 - ], - [ - -0.5107035, - 44.8455246 - ], - [ - -0.5107035, - 44.8455246 - ], - [ - -0.5107035, - 44.8455246 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-03T07:25:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 4, - "create": 1, - "locale": "fr", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_50m": 5 - }, - "id": 120488931 - } - }, - { - "id": 120488156, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2130707, - 51.2349833 - ], - [ - 3.2130707, - 51.2349833 - ], - [ - 3.2130707, - 51.2349833 - ], - [ - 3.2130707, - 51.2349833 - ], - [ - 3.2130707, - 51.2349833 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "peeweeke", - "uid": "494726", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-03T06:58:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "change_within_500m": 2 - }, - "id": 120488156 - } - }, - { - "id": 120488035, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1895214, - 51.2203728 - ], - [ - 3.2178978, - 51.2203728 - ], - [ - 3.2178978, - 51.2419601 - ], - [ - 3.1895214, - 51.2419601 - ], - [ - 3.1895214, - 51.2203728 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "peeweeke", - "uid": "494726", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-03T06:53:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 124, - "delete": 0, - "area": 0.000612569859720005, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 166, - "locale": "nl", - "imagery": "osm", - "change_within_50m": 2, - "change_within_100m": 2, - "change_within_500m": 28, - "change_within_1000m": 28, - "change_within_5000m": 94 - }, - "id": 120488035 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-04.json b/Docs/Tools/stats/stats.2022-5-04.json deleted file mode 100644 index 84096c242d..0000000000 --- a/Docs/Tools/stats/stats.2022-5-04.json +++ /dev/null @@ -1,2080 +0,0 @@ -{ - "features": [ - { - "id": 120560570, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.4151952, - 37.8526553 - ], - [ - -1.4151952, - 37.8526553 - ], - [ - -1.4151952, - 37.8526553 - ], - [ - -1.4151952, - 37.8526553 - ], - [ - -1.4151952, - 37.8526553 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "lololailo", - "uid": "8621270", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-04T20:44:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "answer": 5, - "create": 1, - "locale": "es", - "imagery": "PNOA-Spain-TMS" - }, - "id": 120560570 - } - }, - { - "id": 120560434, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4255955, - 51.1655832 - ], - [ - 3.4340244, - 51.1655832 - ], - [ - 3.4340244, - 51.170124 - ], - [ - 3.4255955, - 51.170124 - ], - [ - 3.4255955, - 51.1655832 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9715990648", - "osm_id": 9715990648, - "reasons": [ - 43 - ], - "version": 2, - "primary_tags": { - "barrier": "barbed_wire" - } - } - ], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-04T20:38:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000382739491200084, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", - "answer": 3, - "locale": "en", - "imagery": "AGIV", - "add-image": 3 - }, - "id": 120560434 - } - }, - { - "id": 120560382, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.439457, - 51.1649224 - ], - [ - 3.439457, - 51.1649224 - ], - [ - 3.439457, - 51.1649224 - ], - [ - 3.439457, - 51.1649224 - ], - [ - 3.439457, - 51.1649224 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-04T20:35:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 120560382 - } - }, - { - "id": 120560317, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4340456, - 51.1649157 - ], - [ - 3.4396997, - 51.1649157 - ], - [ - 3.4396997, - 51.1721292 - ], - [ - 3.4340456, - 51.1721292 - ], - [ - 3.4340456, - 51.1649157 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #maps", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-04T20:34:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 12, - "delete": 0, - "area": 0.0000407858503499912, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maps.html", - "theme": "maps", - "answer": 10, - "locale": "en", - "imagery": "AGIV", - "add-image": 7 - }, - "id": 120560317 - } - }, - { - "id": 120559509, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0541637, - 48.500025 - ], - [ - 9.054705, - 48.500025 - ], - [ - 9.054705, - 48.5006799 - ], - [ - 9.0541637, - 48.5006799 - ], - [ - 9.0541637, - 48.500025 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-04T20:02:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 16, - "delete": 0, - "area": 3.54497370000419e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 26, - "create": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 120559509 - } - }, - { - "id": 120559355, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2328535, - 50.7346111 - ], - [ - 4.2328535, - 50.7346111 - ], - [ - 4.2328535, - 50.7346111 - ], - [ - 4.2328535, - 50.7346111 - ], - [ - 4.2328535, - 50.7346111 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-04T19:56:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 3, - "locale": "en", - "imagery": "osm", - "change_within_50m": 3 - }, - "id": 120559355 - } - }, - { - "id": 120558476, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4349729, - 50.8366833 - ], - [ - 4.4349729, - 50.8366833 - ], - [ - 4.4349729, - 50.8366833 - ], - [ - 4.4349729, - 50.8366833 - ], - [ - 4.4349729, - 50.8366833 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-04T19:27:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 120558476 - } - }, - { - "id": 120557427, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0539719, - 48.5000329 - ], - [ - 9.0546159, - 48.5000329 - ], - [ - 9.0546159, - 48.500719 - ], - [ - 9.0539719, - 48.500719 - ], - [ - 9.0539719, - 48.5000329 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-04T18:57:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 12, - "delete": 4, - "area": 4.41848399996902e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 21, - "create": 4, - "locale": "de", - "imagery": "Mapbox", - "deletion": 4, - "change_over_5000m": 4, - "change_within_25m": 13, - "change_within_50m": 12, - "deletion:node/2027958333": "not found", - "deletion:node/2027971406": "not found", - "deletion:node/4514143512": "not found", - "deletion:node/4514143513": "not found" - }, - "id": 120557427 - } - }, - { - "id": 120557380, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0539793, - 48.5005222 - ], - [ - 9.0540265, - 48.5005222 - ], - [ - 9.0540265, - 48.5005737 - ], - [ - 9.0539793, - 48.5005737 - ], - [ - 9.0539793, - 48.5005222 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-04T18:55:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 2.43079999994662e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 10, - "locale": "de", - "imagery": "osm", - "change_within_25m": 10 - }, - "id": 120557380 - } - }, - { - "id": 120557265, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0537702, - 48.5002081 - ], - [ - 9.0543784, - 48.5002081 - ], - [ - 9.0543784, - 48.5006799 - ], - [ - 9.0537702, - 48.5006799 - ], - [ - 9.0537702, - 48.5002081 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-04T18:51:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 18, - "delete": 0, - "area": 2.86948759999105e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 35, - "create": 1, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 27, - "change_within_50m": 8 - }, - "id": 120557265 - } - }, - { - "id": 120553977, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.47227, - 51.0336225 - ], - [ - 4.47227, - 51.0336225 - ], - [ - 4.47227, - 51.0336225 - ], - [ - 4.47227, - 51.0336225 - ], - [ - 4.47227, - 51.0336225 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "philippec", - "uid": "76884", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-04T17:15:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_5000m": 1 - }, - "id": 120553977 - } - }, - { - "id": 120550119, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2318099, - 50.7344625 - ], - [ - 4.2329831, - 50.7344625 - ], - [ - 4.2329831, - 50.7348727 - ], - [ - 4.2318099, - 50.7348727 - ], - [ - 4.2318099, - 50.7344625 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-04T15:31:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 4.81246639997121e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 10, - "locale": "en", - "imagery": "AGIV", - "change_within_5000m": 10 - }, - "id": 120550119 - } - }, - { - "id": 120549997, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2328535, - 50.7346111 - ], - [ - 4.2328535, - 50.7346111 - ], - [ - 4.2328535, - 50.7346111 - ], - [ - 4.2328535, - 50.7346111 - ], - [ - 4.2328535, - 50.7346111 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-04T15:28:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 120549997 - } - }, - { - "id": 120546504, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7289973, - 51.165103 - ], - [ - 4.7323348, - 51.165103 - ], - [ - 4.7323348, - 51.1662165 - ], - [ - 4.7289973, - 51.1662165 - ], - [ - 4.7289973, - 51.165103 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-04T14:07:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 70, - "modify": 0, - "delete": 0, - "area": 0.00000371630624998514, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 8, - "locale": "nl", - "imagery": "osm" - }, - "id": 120546504 - } - }, - { - "id": 120544176, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8180481, - 50.8429421 - ], - [ - 3.8204044, - 50.8429421 - ], - [ - 3.8204044, - 50.8606305 - ], - [ - 3.8180481, - 50.8606305 - ], - [ - 3.8180481, - 50.8429421 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "llstan", - "uid": "15836405", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-04T13:11:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 1, - "delete": 0, - "area": 0.0000416791769199971, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 5, - "create": 4, - "locale": "nl", - "imagery": "osm" - }, - "id": 120544176 - } - }, - { - "id": 120543550, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2318099, - 50.7330979 - ], - [ - 4.2376247, - 50.7330979 - ], - [ - 4.2376247, - 50.7354099 - ], - [ - 4.2318099, - 50.7354099 - ], - [ - 4.2318099, - 50.7330979 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-04T12:55:07Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 6, - "delete": 0, - "area": 0.0000134438176000189, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 6, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 5, - "change_over_5000m": 1, - "change_within_25m": 10, - "change_within_50m": 1 - }, - "id": 120543550 - } - }, - { - "id": 120542459, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -74.2603935, - 45.445525 - ], - [ - -74.2603935, - 45.445525 - ], - [ - -74.2603935, - 45.445525 - ], - [ - -74.2603935, - 45.445525 - ], - [ - -74.2603935, - 45.445525 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Avotien", - "uid": "7853020", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-04T12:30:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120542459 - } - }, - { - "id": 120542276, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -76.6307528, - 39.3448328 - ], - [ - -76.6304679, - 39.3448328 - ], - [ - -76.6304679, - 39.3449371 - ], - [ - -76.6307528, - 39.3449371 - ], - [ - -76.6307528, - 39.3448328 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "pkoby", - "uid": "999995", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-04T12:26:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 2.97150700007708e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "answer": 2, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_5000m": 1 - }, - "id": 120542276 - } - }, - { - "id": 120541236, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -74.265727, - 45.4462087 - ], - [ - -74.257873, - 45.4462087 - ], - [ - -74.257873, - 45.4568736 - ], - [ - -74.265727, - 45.4568736 - ], - [ - -74.265727, - 45.4462087 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Avotien", - "uid": "7853020", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-04T12:05:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000837621245999581, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/nature.html", - "theme": "nature", - "answer": 5, - "locale": "en", - "imagery": "osm" - }, - "id": 120541236 - } - }, - { - "id": 120538294, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2392962, - 48.6758826 - ], - [ - 9.2392962, - 48.6758826 - ], - [ - 9.2392962, - 48.6758826 - ], - [ - 9.2392962, - 48.6758826 - ], - [ - 9.2392962, - 48.6758826 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-04T11:04:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 2, - "locale": "de", - "imagery": "osm", - "change_within_25m": 2 - }, - "id": 120538294 - } - }, - { - "id": 120535775, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8670692, - 45.7847685 - ], - [ - 4.8670692, - 45.7847685 - ], - [ - 4.8670692, - 45.7847685 - ], - [ - 4.8670692, - 45.7847685 - ], - [ - 4.8670692, - 45.7847685 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-04T10:10:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "locale": "fr", - "imagery": "osm", - "add-image": 1, - "change_within_100m": 1 - }, - "id": 120535775 - } - }, - { - "id": 120534638, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7274152, - 51.1647221 - ], - [ - 4.7326643, - 51.1647221 - ], - [ - 4.7326643, - 51.167629 - ], - [ - 4.7274152, - 51.167629 - ], - [ - 4.7274152, - 51.1647221 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-04T09:47:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 680, - "modify": 286, - "delete": 0, - "area": 0.0000152586087899946, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 238, - "theme": "grb", - "import": 102, - "locale": "nl", - "imagery": "osm", - "conflation": 96 - }, - "id": 120534638 - } - }, - { - "id": 120534598, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-04T09:46:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 120534598 - } - }, - { - "id": 120534166, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0792906, - 51.2275585 - ], - [ - 5.0867583, - 51.2275585 - ], - [ - 5.0867583, - 51.2312694 - ], - [ - 5.0792906, - 51.2312694 - ], - [ - 5.0792906, - 51.2275585 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Simonvhoudt", - "uid": "15823493", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-04T09:37:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 5, - "modify": 11, - "delete": 1, - "area": 0.0000277118879300091, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 13, - "create": 5, - "locale": "nl", - "imagery": "AGIV", - "deletion": 1, - "add-image": 12, - "move:node/9612554619": "improve_accuracy", - "deletion:node/9713477809": "duplicate" - }, - "id": 120534166 - } - }, - { - "id": 120532992, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1268333, - 51.1437114 - ], - [ - 5.1324177, - 51.1437114 - ], - [ - 5.1324177, - 51.1446924 - ], - [ - 5.1268333, - 51.1446924 - ], - [ - 5.1268333, - 51.1437114 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "syerval", - "uid": "15398849", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-04T09:15:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 1, - "delete": 0, - "area": 0.00000547829639997716, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/nature.html", - "theme": "nature", - "answer": 2, - "create": 2, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 120532992 - } - }, - { - "id": 120532675, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2361198, - 50.7341351 - ], - [ - 4.2361198, - 50.7341351 - ], - [ - 4.2361198, - 50.7341351 - ], - [ - 4.2361198, - 50.7341351 - ], - [ - 4.2361198, - 50.7341351 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-04T09:08:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 6, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 120532675 - } - }, - { - "id": 120532602, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5678399, - 52.9867308 - ], - [ - 6.5975897, - 52.9867308 - ], - [ - 6.5975897, - 53.008786 - ], - [ - 6.5678399, - 53.008786 - ], - [ - 6.5678399, - 52.9867308 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-04T09:06:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 64, - "delete": 0, - "area": 0.000656137788960126, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 77, - "locale": "nl", - "imagery": "osm", - "change_within_5000m": 77 - }, - "id": 120532602 - } - }, - { - "id": 120531772, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7283337, - 51.1646294 - ], - [ - 4.7444916, - 51.1646294 - ], - [ - 4.7444916, - 51.1687738 - ], - [ - 4.7283337, - 51.1687738 - ], - [ - 4.7283337, - 51.1646294 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-04T08:48:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1328, - "modify": 717, - "delete": 0, - "area": 0.0000669648007599041, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 601, - "theme": "grb", - "import": 160, - "locale": "nl", - "imagery": "osm", - "conflation": 236 - }, - "id": 120531772 - } - }, - { - "id": 120527949, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9950765, - 51.1519384 - ], - [ - 4.9950765, - 51.1519384 - ], - [ - 4.9950765, - 51.1519384 - ], - [ - 4.9950765, - 51.1519384 - ], - [ - 4.9950765, - 51.1519384 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Frans_Napaters", - "uid": "3574538", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 1, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-04T07:17:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "AGIV" - }, - "id": 120527949 - } - }, - { - "id": 120527634, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -74.2891847, - 39.9976617 - ], - [ - -74.2891847, - 39.9976617 - ], - [ - -74.2891847, - 39.9976617 - ], - [ - -74.2891847, - 39.9976617 - ], - [ - -74.2891847, - 39.9976617 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "CurlingMan13", - "uid": "6641970", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-04T07:10:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees", - "theme": "trees", - "answer": 3, - "locale": "en", - "imagery": "osm", - "change_within_100m": 3 - }, - "id": 120527634 - } - }, - { - "id": 120527094, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9598693, - 51.2474714 - ], - [ - 2.9598693, - 51.2474714 - ], - [ - 2.9598693, - 51.2474714 - ], - [ - 2.9598693, - 51.2474714 - ], - [ - 2.9598693, - 51.2474714 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-04T06:54:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "import": 1, - "locale": "nl", - "imagery": "AGIV", - "import:node/9713145157": "source: https://osm.org/note/3156276" - }, - "id": 120527094 - } - }, - { - "id": 120526758, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0792906, - 51.2275585 - ], - [ - 5.0883176, - 51.2275585 - ], - [ - 5.0883176, - 51.2306469 - ], - [ - 5.0792906, - 51.2306469 - ], - [ - 5.0792906, - 51.2275585 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Simonvhoudt", - "uid": "15823493", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-04T06:44:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 4, - "delete": 0, - "area": 0.000027878986800025, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 5, - "create": 3, - "locale": "nl", - "imagery": "AGIV", - "add-image": 2 - }, - "id": 120526758 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-05.json b/Docs/Tools/stats/stats.2022-5-05.json deleted file mode 100644 index 8201370c13..0000000000 --- a/Docs/Tools/stats/stats.2022-5-05.json +++ /dev/null @@ -1,2247 +0,0 @@ -{ - "features": [ - { - "id": 120606872, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2431734, - -39.844192 - ], - [ - -73.2431734, - -39.844192 - ], - [ - -73.2431734, - -39.844192 - ], - [ - -73.2431734, - -39.844192 - ], - [ - -73.2431734, - -39.844192 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-05T21:52:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "en", - "imagery": "HDM_HOT" - }, - "id": 120606872 - } - }, - { - "id": 120606521, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2807782, - 51.261063 - ], - [ - 3.3078336, - 51.261063 - ], - [ - 3.3078336, - 51.2771339 - ], - [ - 3.2807782, - 51.2771339 - ], - [ - 3.2807782, - 51.261063 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-05T21:35:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 0, - "delete": 0, - "area": 0.00043480462786007, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "import": 3, - "locale": "nl", - "imagery": "AGIV", - "import:node/9719107136": "source: https://osm.org/note/3156288", - "import:node/9719133684": "source: https://osm.org/note/3156252", - "import:node/9719156752": "source: https://osm.org/note/3156401" - }, - "id": 120606521 - } - }, - { - "id": 120606231, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2327436, - -39.8448739 - ], - [ - -73.2327112, - -39.8448739 - ], - [ - -73.2327112, - -39.8445809 - ], - [ - -73.2327436, - -39.8445809 - ], - [ - -73.2327436, - -39.8448739 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-05T21:20:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 7, - "delete": 0, - "area": 9.49320000288481e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "es", - "imagery": "osm", - "add-image": 6, - "change_within_25m": 7 - }, - "id": 120606231 - } - }, - { - "id": 120605528, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2833178, - 48.9517792 - ], - [ - 2.3013679, - 48.9517792 - ], - [ - 2.3013679, - 48.9590527 - ], - [ - 2.2833178, - 48.9590527 - ], - [ - 2.2833178, - 48.9517792 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LeTopographeFou", - "uid": "3178375", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-05T20:53:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 34, - "delete": 0, - "area": 0.000131287402350067, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 42, - "locale": "fr", - "imagery": "osm" - }, - "id": 120605528 - } - }, - { - "id": 120604624, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.580711, - 50.928574 - ], - [ - 13.4132515, - 50.928574 - ], - [ - 13.4132515, - 52.4171836 - ], - [ - 11.580711, - 52.4171836 - ], - [ - 11.580711, - 50.928574 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "xriss", - "uid": "191264", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-05T20:20:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 10, - "delete": 1, - "area": 2.7279373806888, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "move": 1, - "theme": "cyclofix", - "answer": 17, - "create": 2, - "locale": "de", - "imagery": "CartoDB.Voyager", - "deletion": 1, - "move:node/8726017928": "improve_accuracy", - "deletion:node/8516353946": "duplicate" - }, - "id": 120604624 - } - }, - { - "id": 120602770, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2432911, - -39.8445014 - ], - [ - -73.2429488, - -39.8445014 - ], - [ - -73.2429488, - -39.8441009 - ], - [ - -73.2432911, - -39.8441009 - ], - [ - -73.2432911, - -39.8445014 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-05T19:16:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.37091149999167e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 5, - "locale": "es", - "imagery": "HDM_HOT" - }, - "id": 120602770 - } - }, - { - "id": 120602328, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.9904559, - 51.7733537 - ], - [ - 13.9923763, - 51.7733537 - ], - [ - 13.9923763, - 51.7789001 - ], - [ - 13.9904559, - 51.7789001 - ], - [ - 13.9904559, - 51.7733537 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "EnricoP71", - "uid": "15704807", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-05T19:02:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 5, - "modify": 3, - "delete": 0, - "area": 0.0000106513065599973, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 120602328 - } - }, - { - "id": 120598978, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2552468, - 51.0275679 - ], - [ - 5.2552468, - 51.0275679 - ], - [ - 5.2552468, - 51.0275679 - ], - [ - 5.2552468, - 51.0275679 - ], - [ - 5.2552468, - 51.0275679 - ] - ] - ] - }, - "properties": { - "check_user": "L'imaginaire", - "reasons": [], - "tags": [], - "features": [], - "user": "mjans", - "uid": "5199038", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-05T17:23:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": false, - "checked": true, - "check_date": "2022-05-06T07:23:05.055668Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 120598978 - } - }, - { - "id": 120598018, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2434273, - -39.8443777 - ], - [ - -73.2429639, - -39.8443777 - ], - [ - -73.2429639, - -39.8442638 - ], - [ - -73.2434273, - -39.8442638 - ], - [ - -73.2434273, - -39.8443777 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-05T16:51:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 5.2781259999576e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osm", - "add-image": 3 - }, - "id": 120598018 - } - }, - { - "id": 120595899, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2111014, - 51.2313241 - ], - [ - 3.2111014, - 51.2313241 - ], - [ - 3.2111014, - 51.2313241 - ], - [ - 3.2111014, - 51.2313241 - ], - [ - 3.2111014, - 51.2313241 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-05T15:59:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/waste.html", - "theme": "waste", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_1000m": 1 - }, - "id": 120595899 - } - }, - { - "id": 120595079, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2321727, - 51.2185007 - ], - [ - 3.2323645, - 51.2185007 - ], - [ - 3.2323645, - 51.2186443 - ], - [ - 3.2321727, - 51.2186443 - ], - [ - 3.2321727, - 51.2185007 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-05T15:39:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 2.75424800002492e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/playgrounds.html", - "theme": "playgrounds", - "answer": 3, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 4 - }, - "id": 120595079 - } - }, - { - "id": 120594996, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.232375, - 51.2186546 - ], - [ - 3.232375, - 51.2186546 - ], - [ - 3.232375, - 51.2186546 - ], - [ - 3.232375, - 51.2186546 - ], - [ - 3.232375, - 51.2186546 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-05T15:37:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/bookcases.html", - "theme": "bookcases", - "answer": 3, - "import": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 3, - "import:node/9718431092": "source: https://osm.org/note/3151816" - }, - "id": 120594996 - } - }, - { - "id": 120594879, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.2695594, - 48.933132 - ], - [ - 8.2695594, - 48.933132 - ], - [ - 8.2695594, - 48.933132 - ], - [ - 8.2695594, - 48.933132 - ], - [ - 8.2695594, - 48.933132 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-05T15:34:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 1, - "locale": "de", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 120594879 - } - }, - { - "id": 120594599, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -72.6025908, - -38.7368662 - ], - [ - -72.6025908, - -38.7368662 - ], - [ - -72.6025908, - -38.7368662 - ], - [ - -72.6025908, - -38.7368662 - ], - [ - -72.6025908, - -38.7368662 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-05T15:28:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osmfr", - "add-image": 1 - }, - "id": 120594599 - } - }, - { - "id": 120594476, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1123683, - 51.1460229 - ], - [ - 3.1124736, - 51.1460229 - ], - [ - 3.1124736, - 51.146052 - ], - [ - 3.1123683, - 51.146052 - ], - [ - 3.1123683, - 51.1460229 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-05T15:26:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 3.06422999989449e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 1, - "import": 1, - "locale": "nl", - "imagery": "AGIV", - "import:node/9718388986": "source: https://osm.org/note/3156437" - }, - "id": 120594476 - } - }, - { - "id": 120592313, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5974148, - 51.1412343 - ], - [ - 5.5974148, - 51.1412343 - ], - [ - 5.5974148, - 51.1412343 - ], - [ - 5.5974148, - 51.1412343 - ], - [ - 5.5974148, - 51.1412343 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "landersav", - "uid": "15850223", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-05T14:36:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 120592313 - } - }, - { - "id": 120591217, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5722989, - 53.0101026 - ], - [ - 6.5722989, - 53.0101026 - ], - [ - 6.5722989, - 53.0101026 - ], - [ - 6.5722989, - 53.0101026 - ], - [ - 6.5722989, - 53.0101026 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-05T14:09:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 5, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 5, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 6 - }, - "id": 120591217 - } - }, - { - "id": 120591093, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.2734067, - 48.9381886 - ], - [ - 8.2734067, - 48.9381886 - ], - [ - 8.2734067, - 48.9381886 - ], - [ - 8.2734067, - 48.9381886 - ], - [ - 8.2734067, - 48.9381886 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-05T14:06:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 1, - "locale": "de", - "imagery": "osm", - "change_within_50m": 1 - }, - "id": 120591093 - } - }, - { - "id": 120590640, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.281699, - 51.03833 - ], - [ - 5.281699, - 51.03833 - ], - [ - 5.281699, - 51.03833 - ], - [ - 5.281699, - 51.03833 - ], - [ - 5.281699, - 51.03833 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mjans", - "uid": "5199038", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-05T13:55:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 1, - "import": 1, - "locale": "nl", - "imagery": "osm", - "import:node/9718193747": "source: https://osm.org/note/3161422" - }, - "id": 120590640 - } - }, - { - "id": 120590526, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.2729904, - 48.9377849 - ], - [ - 8.2729904, - 48.9377849 - ], - [ - 8.2729904, - 48.9377849 - ], - [ - 8.2729904, - 48.9377849 - ], - [ - 8.2729904, - 48.9377849 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-05T13:52:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 2, - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 3 - }, - "id": 120590526 - } - }, - { - "id": 120590282, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7310218, - 51.1671905 - ], - [ - 4.7531692, - 51.1671905 - ], - [ - 4.7531692, - 51.1730015 - ], - [ - 4.7310218, - 51.1730015 - ], - [ - 4.7310218, - 51.1671905 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-05T13:46:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 346, - "modify": 17, - "delete": 0, - "area": 0.000128698541400033, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 14, - "theme": "grb", - "import": 40, - "locale": "nl", - "imagery": "osm", - "conflation": 6 - }, - "id": 120590282 - } - }, - { - "id": 120589743, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1675713, - 50.9095843 - ], - [ - 4.1952208, - 50.9095843 - ], - [ - 4.1952208, - 50.9453211 - ], - [ - 4.1675713, - 50.9453211 - ], - [ - 4.1675713, - 50.9095843 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #fritures", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-05T13:33:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 1, - "delete": 0, - "area": 0.000988104651600089, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/fritures.html", - "theme": "fritures", - "answer": 5, - "create": 2, - "locale": "nl", - "imagery": "AGIVFlandersGRB" - }, - "id": 120589743 - } - }, - { - "id": 120589368, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1708545, - 50.9096646 - ], - [ - 4.2003246, - 50.9096646 - ], - [ - 4.2003246, - 50.9206731 - ], - [ - 4.1708545, - 50.9206731 - ], - [ - 4.1708545, - 50.9096646 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-05T13:24:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 3, - "delete": 1, - "area": 0.00032442159585008, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 6, - "create": 4, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "deletion": 1, - "deletion:node/1594721367": "shop_closed" - }, - "id": 120589368 - } - }, - { - "id": 120587275, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5369007, - 50.6332234 - ], - [ - 4.5830855, - 50.6332234 - ], - [ - 4.5830855, - 50.6575168 - ], - [ - 4.5369007, - 50.6575168 - ], - [ - 4.5369007, - 50.6332234 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "MartGr", - "uid": "14891328", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-05T12:31:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00112198582032022, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 4, - "locale": "en", - "imagery": "SPW_PICC" - }, - "id": 120587275 - } - }, - { - "id": 120587272, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5142367, - 52.9980654 - ], - [ - 6.5189882, - 52.9980654 - ], - [ - 6.5189882, - 52.9999261 - ], - [ - 6.5142367, - 52.9999261 - ], - [ - 6.5142367, - 52.9980654 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #postboxes", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-05T12:31:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.00000884111605000859, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/post-partner/postboxes.html", - "theme": "postboxes", - "answer": 7, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_within_5000m": 7 - }, - "id": 120587272 - } - }, - { - "id": 120586363, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.255115, - 51.0275679 - ], - [ - 5.2552468, - 51.0275679 - ], - [ - 5.2552468, - 51.0275824 - ], - [ - 5.255115, - 51.0275824 - ], - [ - 5.255115, - 51.0275679 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mjans", - "uid": "5199038", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-05T12:09:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 1.91109999985924e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 1, - "change_within_50m": 2 - }, - "id": 120586363 - } - }, - { - "id": 120584886, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6911995, - 48.3229676 - ], - [ - 13.6911995, - 48.3229676 - ], - [ - 13.6911995, - 48.3229676 - ], - [ - 13.6911995, - 48.3229676 - ], - [ - 13.6911995, - 48.3229676 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Nos_Fi", - "uid": "526289", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-05T11:37:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds", - "theme": "playgrounds", - "answer": 7, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 7 - }, - "id": 120584886 - } - }, - { - "id": 120584205, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6034179, - 50.8426029 - ], - [ - 3.6049017, - 50.8426029 - ], - [ - 3.6049017, - 50.8446447 - ], - [ - 3.6034179, - 50.8446447 - ], - [ - 3.6034179, - 50.8426029 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cyclestreets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-05T11:22:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000302962284000081, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclestreets", - "theme": "cyclestreets", - "answer": 2, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 2 - }, - "id": 120584205 - } - }, - { - "id": 120580400, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.768952, - 49.4469453 - ], - [ - 7.768952, - 49.4469453 - ], - [ - 7.768952, - 49.4469453 - ], - [ - 7.768952, - 49.4469453 - ], - [ - 7.768952, - 49.4469453 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Justine Dam", - "uid": "12308921", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-05T09:59:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/entrances.html", - "theme": "entrances", - "answer": 1, - "locale": "de", - "imagery": "osm", - "change_within_50m": 1 - }, - "id": 120580400 - } - }, - { - "id": 120578005, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7280272, - 51.165404 - ], - [ - 4.7416693, - 51.165404 - ], - [ - 4.7416693, - 51.170943 - ], - [ - 4.7280272, - 51.170943 - ], - [ - 4.7280272, - 51.165404 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-05T09:10:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1699, - "modify": 901, - "delete": 8, - "area": 0.0000755635918999855, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 747, - "theme": "grb", - "answer": 1, - "delete": 8, - "import": 193, - "locale": "nl", - "imagery": "osm", - "conflation": 306 - }, - "id": 120578005 - } - }, - { - "id": 120575806, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9169244, - 51.1044402 - ], - [ - 4.9199934, - 51.1044402 - ], - [ - 4.9199934, - 51.106052 - ], - [ - 4.9169244, - 51.106052 - ], - [ - 4.9169244, - 51.1044402 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Frans_Napaters", - "uid": "3574538", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-05T08:20:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 1, - "delete": 0, - "area": 0.00000494661419999741, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "move": 1, - "theme": "benches", - "answer": 2, - "create": 2, - "locale": "en", - "imagery": "AGIV", - "move:node/7417535073": "improve_accuracy" - }, - "id": 120575806 - } - }, - { - "id": 120573548, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2376678, - 41.4647463 - ], - [ - 2.2378707, - 41.4647463 - ], - [ - 2.2378707, - 41.4648502 - ], - [ - 2.2376678, - 41.4648502 - ], - [ - 2.2376678, - 41.4647463 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9192874267", - "osm_id": 9192874267, - "reasons": [ - 43 - ], - "version": 3, - "primary_tags": { - "natural": "tree_stump" - } - }, - { - "url": "node-9192717866", - "osm_id": 9192717866, - "reasons": [ - 43 - ], - "version": 2, - "primary_tags": { - "natural": "tree_stump" - } - } - ], - "user": "PabloDíaz", - "uid": "14309824", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-05T07:26:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 2.10813099998412e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "answer": 6, - "locale": "ca", - "imagery": "HDM_HOT" - }, - "id": 120573548 - } - }, - { - "id": 120573094, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6034735, - 50.6229554 - ], - [ - 4.6481245, - 50.6229554 - ], - [ - 4.6481245, - 50.6676659 - ], - [ - 4.6034735, - 50.6676659 - ], - [ - 4.6034735, - 50.6229554 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "BarbaraSting97", - "uid": "13789029", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-05T07:16:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 32, - "delete": 0, - "area": 0.00199636853550003, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 59, - "create": 5, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 120573094 - } - }, - { - "id": 120573012, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "BarbaraSting97", - "uid": "13789029", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cyclestreets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-05T07:13:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclestreets.html", - "theme": "cyclestreets", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120573012 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-06.json b/Docs/Tools/stats/stats.2022-5-06.json deleted file mode 100644 index 881813996a..0000000000 --- a/Docs/Tools/stats/stats.2022-5-06.json +++ /dev/null @@ -1,3361 +0,0 @@ -{ - "features": [ - { - "id": 120647295, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4119851, - 50.7474743 - ], - [ - 3.4119851, - 50.7474743 - ], - [ - 3.4119851, - 50.7474743 - ], - [ - 3.4119851, - 50.7474743 - ], - [ - 3.4119851, - 50.7474743 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-06T21:08:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "import": 1, - "locale": "nl", - "imagery": "AGIV", - "import:node/9721518740": "source: https://osm.org/note/3156418" - }, - "id": 120647295 - } - }, - { - "id": 120647202, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.1991708, - 56.1564945 - ], - [ - 10.2103489, - 56.1564945 - ], - [ - 10.2103489, - 56.1627823 - ], - [ - 10.1991708, - 56.1627823 - ], - [ - 10.1991708, - 56.1564945 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Lostmonkey", - "uid": "3401037", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-06T21:04:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.0000702856571800319, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 4, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 120647202 - } - }, - { - "id": 120647108, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.2031899, - 56.1517963 - ], - [ - 10.2122801, - 56.1517963 - ], - [ - 10.2122801, - 56.1702455 - ], - [ - 10.2031899, - 56.1702455 - ], - [ - 10.2031899, - 56.1517963 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Lostmonkey", - "uid": "3401037", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #bicycle_rental", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-06T21:00:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 3, - "area": 0.000167706917839979, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bicycle_rental.html", - "theme": "bicycle_rental", - "locale": "da", - "imagery": "osm", - "deletion": 3, - "deletion:node/817854687": "disused", - "deletion:node/1241055925": "shop_closed", - "deletion:node/1241055928": "disused" - }, - "id": 120647108 - } - }, - { - "id": 120647063, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0412545, - 48.5120565 - ], - [ - 9.0584958, - 48.5120565 - ], - [ - 9.0584958, - 48.5173959 - ], - [ - 9.0412545, - 48.5173959 - ], - [ - 9.0412545, - 48.5120565 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T20:58:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.0000920581972199381, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 5, - "locale": "de", - "imagery": "osm" - }, - "id": 120647063 - } - }, - { - "id": 120645792, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9350847, - 51.3252623 - ], - [ - 4.9352586, - 51.3252623 - ], - [ - 4.9352586, - 51.3253396 - ], - [ - 4.9350847, - 51.3253396 - ], - [ - 4.9350847, - 51.3252623 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T20:12:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.34424700001692e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 120645792 - } - }, - { - "id": 120644874, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -55.8857903, - -27.4348316 - ], - [ - -55.8857903, - -27.4348316 - ], - [ - -55.8857903, - -27.4348316 - ], - [ - -55.8857903, - -27.4348316 - ], - [ - -55.8857903, - -27.4348316 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-06T19:41:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "create": 1, - "locale": "es", - "imagery": "ign-orthophotos-mosaic" - }, - "id": 120644874 - } - }, - { - "id": 120644701, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -55.9808743, - -27.4587838 - ], - [ - -55.8499153, - -27.4587838 - ], - [ - -55.8499153, - -27.3835305 - ], - [ - -55.9808743, - -27.3835305 - ], - [ - -55.9808743, - -27.4587838 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Carlos Brys", - "uid": "189520", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T19:36:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.00985509691470032, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "answer": 8, - "locale": "es", - "imagery": "HDM_HOT", - "change_over_5000m": 6, - "change_within_5000m": 2 - }, - "id": 120644701 - } - }, - { - "id": 120644359, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3448063, - 50.8241078 - ], - [ - 4.3448063, - 50.8241078 - ], - [ - 4.3448063, - 50.8241078 - ], - [ - 4.3448063, - 50.8241078 - ], - [ - 4.3448063, - 50.8241078 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "StefDeGreef", - "uid": "1860737", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-06T19:24:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 7, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 120644359 - } - }, - { - "id": 120643628, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7026393, - 51.0488104 - ], - [ - 3.7026393, - 51.0488104 - ], - [ - 3.7026393, - 51.0488104 - ], - [ - 3.7026393, - 51.0488104 - ], - [ - 3.7026393, - 51.0488104 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #buurtnatuur", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T19:00:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/buurtnatuur.html", - "theme": "buurtnatuur", - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_within_50m": 1 - }, - "id": 120643628 - } - }, - { - "id": 120643618, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2931376, - 50.7041174 - ], - [ - 4.2931376, - 50.7041174 - ], - [ - 4.2931376, - 50.7041174 - ], - [ - 4.2931376, - 50.7041174 - ], - [ - 4.2931376, - 50.7041174 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T19:00:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 120643618 - } - }, - { - "id": 120642884, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.897134, - 56.9513084 - ], - [ - 9.897134, - 56.9513084 - ], - [ - 9.897134, - 56.9513084 - ], - [ - 9.897134, - 56.9513084 - ], - [ - 9.897134, - 56.9513084 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "andersdc23", - "uid": "15865930", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-06T18:36:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water", - "theme": "drinking_water", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 120642884 - } - }, - { - "id": 120641863, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.0903469, - 49.4374832 - ], - [ - 11.0903469, - 49.4374832 - ], - [ - 11.0903469, - 49.4374832 - ], - [ - 11.0903469, - 49.4374832 - ], - [ - 11.0903469, - 49.4374832 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mrey", - "uid": "6089796", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-06T18:04:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 3, - "locale": "de", - "imagery": "osm" - }, - "id": 120641863 - } - }, - { - "id": 120639716, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.70252, - 51.0482564 - ], - [ - 3.70252, - 51.0482564 - ], - [ - 3.70252, - 51.0482564 - ], - [ - 3.70252, - 51.0482564 - ], - [ - 3.70252, - 51.0482564 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T17:04:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", - "theme": "cyclofix", - "answer": 6, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_25m": 6 - }, - "id": 120639716 - } - }, - { - "id": 120638753, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7026393, - 51.0488104 - ], - [ - 3.7026393, - 51.0488104 - ], - [ - 3.7026393, - 51.0488104 - ], - [ - 3.7026393, - 51.0488104 - ], - [ - 3.7026393, - 51.0488104 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 57, - "name": "Feature overlaps with existing features" - } - ], - "tags": [], - "features": [ - { - "url": "node-9721059917", - "osm_id": 9721059917, - "reasons": [ - 57 - ], - "version": 1, - "primary_tags": { - "leisure": "park" - } - } - ], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #buurtnatuur", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T16:41:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/buurtnatuur.html", - "theme": "buurtnatuur", - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 120638753 - } - }, - { - "id": 120637448, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.477723, - 50.9648505 - ], - [ - 5.4778033, - 50.9648505 - ], - [ - 5.4778033, - 50.9648602 - ], - [ - 5.477723, - 50.9648602 - ], - [ - 5.477723, - 50.9648505 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T16:05:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 7.78909999969379e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 5, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 8, - "move:node/9720945660": "improve_accuracy" - }, - "id": 120637448 - } - }, - { - "id": 120636854, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3391644, - 50.8290049 - ], - [ - 4.3391899, - 50.8290049 - ], - [ - 4.3391899, - 50.8290279 - ], - [ - 4.3391644, - 50.8290279 - ], - [ - 4.3391644, - 50.8290049 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "StefDeGreef", - "uid": "1860737", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T15:49:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 5.86499999979218e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "move": 1, - "theme": "cyclofix", - "answer": 7, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 9, - "move:node/8146611471": "improve_accuracy" - }, - "id": 120636854 - } - }, - { - "id": 120635686, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.1581552, - 50.6057757 - ], - [ - 6.1625275, - 50.6057757 - ], - [ - 6.1625275, - 50.6274703 - ], - [ - 6.1581552, - 50.6274703 - ], - [ - 6.1581552, - 50.6057757 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Salambre", - "uid": "15272429", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T15:21:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 0.0000948552995799844, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 120635686 - } - }, - { - "id": 120634455, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3223806, - 50.8398741 - ], - [ - 3.3223806, - 50.8398741 - ], - [ - 3.3223806, - 50.8398741 - ], - [ - 3.3223806, - 50.8398741 - ], - [ - 3.3223806, - 50.8398741 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9720793314", - "osm_id": 9720793314, - "reasons": [ - 43 - ], - "version": 1, - "primary_tags": { - "amenity": "binoculars" - } - } - ], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #binoculars", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-06T14:50:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/binoculars.html", - "theme": "binoculars", - "create": 1, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 120634455 - } - }, - { - "id": 120633771, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3220265, - 50.8020428 - ], - [ - 3.3913656, - 50.8020428 - ], - [ - 3.3913656, - 50.908414 - ], - [ - 3.3220265, - 50.908414 - ], - [ - 3.3220265, - 50.8020428 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-06T14:33:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6, - "modify": 0, - "delete": 0, - "area": 0.00737568327391983, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "import": 6, - "locale": "nl", - "imagery": "AGIV", - "import:node/9720761314": "source: https://osm.org/note/3156275", - "import:node/9720784414": "source: https://osm.org/note/3156460", - "import:node/9720784415": "source: https://osm.org/note/3156278", - "import:node/9720839567": "source: https://osm.org/note/3156302", - "import:node/9720841418": "source: https://osm.org/note/3156310", - "import:node/9720878250": "source: https://osm.org/note/3156408" - }, - "id": 120633771 - } - }, - { - "id": 120633327, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9964643, - 48.5012345 - ], - [ - 8.9964643, - 48.5012345 - ], - [ - 8.9964643, - 48.5012345 - ], - [ - 8.9964643, - 48.5012345 - ], - [ - 8.9964643, - 48.5012345 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T14:19:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "de", - "imagery": "Mapbox", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 120633327 - } - }, - { - "id": 120632983, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9914767, - 48.4991729 - ], - [ - 8.9962071, - 48.4991729 - ], - [ - 8.9962071, - 48.501436 - ], - [ - 8.9914767, - 48.501436 - ], - [ - 8.9914767, - 48.4991729 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T14:07:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.0000107053682400012, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "locale": "de", - "imagery": "osm", - "add-image": 3, - "change_within_25m": 2, - "change_within_500m": 1 - }, - "id": 120632983 - } - }, - { - "id": 120632938, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9911564, - 48.4984246 - ], - [ - 8.9927379, - 48.4984246 - ], - [ - 8.9927379, - 48.4992465 - ], - [ - 8.9911564, - 48.4992465 - ], - [ - 8.9911564, - 48.4984246 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T14:06:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00000129983484999754, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 4, - "locale": "de", - "imagery": "CartoDB.Voyager", - "change_within_25m": 1, - "change_within_50m": 1, - "change_within_100m": 2 - }, - "id": 120632938 - } - }, - { - "id": 120632872, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9914223, - 48.4988938 - ], - [ - 8.9914223, - 48.4988938 - ], - [ - 8.9914223, - 48.4988938 - ], - [ - 8.9914223, - 48.4988938 - ], - [ - 8.9914223, - 48.4988938 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T14:05:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/nature.html", - "theme": "nature", - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 120632872 - } - }, - { - "id": 120632689, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3827569, - 50.9454827 - ], - [ - 5.3827569, - 50.9454827 - ], - [ - 5.3827569, - 50.9454827 - ], - [ - 5.3827569, - 50.9454827 - ], - [ - 5.3827569, - 50.9454827 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T13:58:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 120632689 - } - }, - { - "id": 120632442, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2199749, - 48.6763154 - ], - [ - 9.2377389, - 48.6763154 - ], - [ - 9.2377389, - 48.6813245 - ], - [ - 9.2199749, - 48.6813245 - ], - [ - 9.2199749, - 48.6763154 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-06T13:51:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 69, - "delete": 0, - "area": 0.0000889816524000396, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 69, - "locale": "de", - "imagery": "osm" - }, - "id": 120632442 - } - }, - { - "id": 120630861, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9904591, - 48.4983517 - ], - [ - 8.9910499, - 48.4983517 - ], - [ - 8.9910499, - 48.4984035 - ], - [ - 8.9904591, - 48.4984035 - ], - [ - 8.9904591, - 48.4983517 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T13:06:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 3.06034400007858e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 6, - "locale": "de", - "imagery": "osm", - "change_within_25m": 3, - "change_within_50m": 3 - }, - "id": 120630861 - } - }, - { - "id": 120630718, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4418442, - 50.9237717 - ], - [ - 5.459931, - 50.9237717 - ], - [ - 5.459931, - 50.9324827 - ], - [ - 5.4418442, - 50.9324827 - ], - [ - 5.4418442, - 50.9237717 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-06T13:03:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 290, - "modify": 1146, - "delete": 13, - "area": 0.000157554114799965, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 1000, - "theme": "grb", - "delete": 13, - "import": 52, - "locale": "nl", - "imagery": "osm", - "conflation": 330 - }, - "id": 120630718 - } - }, - { - "id": 120630711, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9901357, - 48.4990642 - ], - [ - 9.0538308, - 48.4990642 - ], - [ - 9.0538308, - 48.5006078 - ], - [ - 8.9901357, - 48.5006078 - ], - [ - 8.9901357, - 48.4990642 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T13:03:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.0000983197563598718, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "locale": "de", - "imagery": "osm", - "add-image": 3, - "change_within_25m": 1, - "change_within_100m": 2 - }, - "id": 120630711 - } - }, - { - "id": 120630482, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1373254, - 51.0220977 - ], - [ - 3.1375886, - 51.0220977 - ], - [ - 3.1375886, - 51.0223857 - ], - [ - 3.1373254, - 51.0223857 - ], - [ - 3.1373254, - 51.0220977 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Lichtervelde", - "uid": "15862569", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-06T12:58:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 1, - "delete": 0, - "area": 7.580159999938e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "create": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 120630482 - } - }, - { - "id": 120629569, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4807557, - 50.9725908 - ], - [ - 5.4807557, - 50.9725908 - ], - [ - 5.4807557, - 50.9725908 - ], - [ - 5.4807557, - 50.9725908 - ], - [ - 5.4807557, - 50.9725908 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T12:33:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_50m": 2 - }, - "id": 120629569 - } - }, - { - "id": 120629362, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4811205, - 50.9722244 - ], - [ - 5.4811205, - 50.9722244 - ], - [ - 5.4811205, - 50.9722244 - ], - [ - 5.4811205, - 50.9722244 - ], - [ - 5.4811205, - 50.9722244 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T12:28:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 120629362 - } - }, - { - "id": 120627571, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4777787, - 50.9648107 - ], - [ - 5.4807956, - 50.9648107 - ], - [ - 5.4807956, - 50.9726734 - ], - [ - 5.4777787, - 50.9726734 - ], - [ - 5.4777787, - 50.9648107 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T11:47:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 7, - "modify": 18, - "delete": 0, - "area": 0.000023720979629994, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "move": 1, - "theme": "benches", - "answer": 35, - "create": 7, - "locale": "nl", - "imagery": "AGIV", - "add-image": 6, - "change_over_5000m": 7, - "change_within_25m": 35, - "change_within_50m": 7, - "move:node/9720472771": "improve_accuracy" - }, - "id": 120627571 - } - }, - { - "id": 120624070, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4434885, - 50.9196534 - ], - [ - 5.4486137, - 50.9196534 - ], - [ - 5.4486137, - 50.9238793 - ], - [ - 5.4434885, - 50.9238793 - ], - [ - 5.4434885, - 50.9196534 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-06T10:36:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 96, - "modify": 287, - "delete": 8, - "area": 0.0000216585826800087, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 251, - "theme": "grb", - "delete": 8, - "import": 20, - "locale": "nl", - "imagery": "osm", - "conflation": 76 - }, - "id": 120624070 - } - }, - { - "id": 120623643, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -38.4616678, - -12.9908319 - ], - [ - -38.4615178, - -12.9908319 - ], - [ - -38.4615178, - -12.9901154 - ], - [ - -38.4616678, - -12.9901154 - ], - [ - -38.4616678, - -12.9908319 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wille", - "uid": "360183", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-06T10:24:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 1.07474999998378e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 5, - "locale": "en", - "imagery": "osm" - }, - "id": 120623643 - } - }, - { - "id": 120621898, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -55.8919391, - -27.3746668 - ], - [ - -55.8919391, - -27.3746668 - ], - [ - -55.8919391, - -27.3746668 - ], - [ - -55.8919391, - -27.3746668 - ], - [ - -55.8919391, - -27.3746668 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Carlos Brys", - "uid": "189520", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-06T09:41:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "answer": 3, - "locale": "es", - "imagery": "HDM_HOT" - }, - "id": 120621898 - } - }, - { - "id": 120621508, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3458431, - 51.3581455 - ], - [ - 3.348246, - 51.3581455 - ], - [ - 3.348246, - 51.3588587 - ], - [ - 3.3458431, - 51.3588587 - ], - [ - 3.3458431, - 51.3581455 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T09:31:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 8, - "delete": 0, - "area": 0.00000171374827999957, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 14, - "create": 2, - "locale": "nl", - "imagery": "AGIV", - "add-image": 3, - "change_over_5000m": 2, - "change_within_25m": 13, - "change_within_50m": 4 - }, - "id": 120621508 - } - }, - { - "id": 120621316, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0224508, - 51.0435685 - ], - [ - 5.0298044, - 51.0435685 - ], - [ - 5.0298044, - 51.0455935 - ], - [ - 5.0224508, - 51.0455935 - ], - [ - 5.0224508, - 51.0435685 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mjans", - "uid": "5199038", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T09:26:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 0.0000148910400000242, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "import": 2, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 2, - "import:node/9720062362": "source: https://osm.org/note/3143433", - "import:node/9720109934": "source: https://osm.org/note/3044210" - }, - "id": 120621316 - } - }, - { - "id": 120620789, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4850681, - 51.288569 - ], - [ - 4.4850681, - 51.288569 - ], - [ - 4.4850681, - 51.288569 - ], - [ - 4.4850681, - 51.288569 - ], - [ - 4.4850681, - 51.288569 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T09:11:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 120620789 - } - }, - { - "id": 120620079, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3455743, - 50.8473414 - ], - [ - 3.3483594, - 50.8473414 - ], - [ - 3.3483594, - 50.8486191 - ], - [ - 3.3455743, - 50.8486191 - ], - [ - 3.3455743, - 50.8473414 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "GISDeerlijk", - "uid": "12302378", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-06T08:52:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 5, - "modify": 7, - "delete": 0, - "area": 0.00000355852227000799, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "move": 4, - "theme": "benches", - "answer": 14, - "create": 5, - "locale": "en", - "imagery": "AGIV", - "move:node/9720013463": "improve_accuracy", - "move:node/9720030838": "improve_accuracy", - "move:node/9720042057": "improve_accuracy", - "move:node/9720066282": "improve_accuracy" - }, - "id": 120620079 - } - }, - { - "id": 120619387, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4220802, - 50.7905194 - ], - [ - 4.4220802, - 50.7905194 - ], - [ - 4.4220802, - 50.7905194 - ], - [ - 4.4220802, - 50.7905194 - ], - [ - 4.4220802, - 50.7905194 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T08:35:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 120619387 - } - }, - { - "id": 120619267, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4179983, - 50.786502 - ], - [ - 4.4247148, - 50.786502 - ], - [ - 4.4247148, - 50.7987457 - ], - [ - 4.4179983, - 50.7987457 - ], - [ - 4.4179983, - 50.786502 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T08:31:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 10, - "delete": 0, - "area": 0.0000822348110499994, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 10 - }, - "id": 120619267 - } - }, - { - "id": 120618567, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4862145, - 51.2876144 - ], - [ - 4.4862145, - 51.2876144 - ], - [ - 4.4862145, - 51.2876144 - ], - [ - 4.4862145, - 51.2876144 - ], - [ - 4.4862145, - 51.2876144 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Toerisme Vlaanderen - Pin je punt", - "uid": "15015689", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T08:12:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 4, - "import": 1, - "locale": "nl", - "imagery": "osm", - "import:node/9719954423": "source: https://osm.org/note/3022998" - }, - "id": 120618567 - } - }, - { - "id": 120618351, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.350815, - 51.358426 - ], - [ - 3.3509022, - 51.358426 - ], - [ - 3.3509022, - 51.3584554 - ], - [ - 3.350815, - 51.3584554 - ], - [ - 3.350815, - 51.358426 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T08:06:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 1, - "area": 2.56367999960778e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 5, - "locale": "nl", - "imagery": "AGIV", - "deletion": 1, - "add-image": 1, - "change_within_25m": 7, - "deletion:node/7091762084": "duplicate" - }, - "id": 120618351 - } - }, - { - "id": 120618344, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T08:06:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "AGIV", - "change_within_25m": 2 - }, - "id": 120618344 - } - }, - { - "id": 120618337, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T08:06:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "AGIV", - "change_within_25m": 1 - }, - "id": 120618337 - } - }, - { - "id": 120618331, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T08:06:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "AGIV", - "change_within_25m": 1 - }, - "id": 120618331 - } - }, - { - "id": 120618327, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T08:06:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "AGIV", - "add-image": 1, - "change_within_25m": 3 - }, - "id": 120618327 - } - }, - { - "id": 120618231, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.350815, - 51.358426 - ], - [ - 3.3508784, - 51.358426 - ], - [ - 3.3508784, - 51.3588151 - ], - [ - 3.350815, - 51.3588151 - ], - [ - 3.350815, - 51.358426 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T08:03:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 2.46689400000352e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 8, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 7, - "change_within_50m": 2 - }, - "id": 120618231 - } - }, - { - "id": 120616111, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4474947, - 52.4726501 - ], - [ - 13.4474947, - 52.4726501 - ], - [ - 13.4474947, - 52.4726501 - ], - [ - 13.4474947, - 52.4726501 - ], - [ - 13.4474947, - 52.4726501 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "tordans", - "uid": "11881", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-06T07:02:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 3, - "locale": "de", - "imagery": "osm" - }, - "id": 120616111 - } - }, - { - "id": 120615594, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2323875, - -39.8446045 - ], - [ - -73.2323875, - -39.8446045 - ], - [ - -73.2323875, - -39.8446045 - ], - [ - -73.2323875, - -39.8446045 - ], - [ - -73.2323875, - -39.8446045 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T06:47:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "HDM_HOT", - "add-image": 1, - "change_within_500m": 1 - }, - "id": 120615594 - } - }, - { - "id": 120609426, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2329395, - -39.8446682 - ], - [ - -73.2329395, - -39.8446682 - ], - [ - -73.2329395, - -39.8446682 - ], - [ - -73.2329395, - -39.8446682 - ], - [ - -73.2329395, - -39.8446682 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T01:16:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 2, - "create": 1, - "locale": "es", - "imagery": "Mapbox", - "add-image": 1, - "change_over_5000m": 1, - "change_within_500m": 3 - }, - "id": 120609426 - } - }, - { - "id": 120609266, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2329395, - -39.8448822 - ], - [ - -73.2324048, - -39.8448822 - ], - [ - -73.2324048, - -39.8445611 - ], - [ - -73.2329395, - -39.8445611 - ], - [ - -73.2329395, - -39.8448822 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-06T01:02:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 6, - "delete": 0, - "area": 1.71692170001322e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "create": 1, - "locale": "es", - "imagery": "Mapbox", - "add-image": 6, - "change_over_5000m": 1, - "change_within_500m": 7 - }, - "id": 120609266 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-07.json b/Docs/Tools/stats/stats.2022-5-07.json deleted file mode 100644 index 21514b0666..0000000000 --- a/Docs/Tools/stats/stats.2022-5-07.json +++ /dev/null @@ -1,2874 +0,0 @@ -{ - "features": [ - { - "id": 120684303, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2401775, - -39.8281995 - ], - [ - -73.2401775, - -39.8281995 - ], - [ - -73.2401775, - -39.8281995 - ], - [ - -73.2401775, - -39.8281995 - ], - [ - -73.2401775, - -39.8281995 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-07T22:12:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osmfr", - "add-image": 1 - }, - "id": 120684303 - } - }, - { - "id": 120682165, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.130819, - 50.9333265 - ], - [ - 3.1592933, - 50.9333265 - ], - [ - 3.1592933, - 50.9553156 - ], - [ - 3.130819, - 50.9553156 - ], - [ - 3.130819, - 50.9333265 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Tim Couwelier", - "uid": "7246683", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-07T20:34:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 41, - "modify": 67, - "delete": 0, - "area": 0.000626124230129973, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 55, - "theme": "grb", - "import": 2, - "locale": "nl", - "imagery": "osm", - "conflation": 24 - }, - "id": 120682165 - } - }, - { - "id": 120682158, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Tim Couwelier", - "uid": "7246683", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-07T20:34:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 120682158 - } - }, - { - "id": 120682156, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Tim Couwelier", - "uid": "7246683", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-07T20:34:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 120682156 - } - }, - { - "id": 120681851, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1569376, - 50.9551387 - ], - [ - 3.1681128, - 50.9551387 - ], - [ - 3.1681128, - 50.974726 - ], - [ - 3.1569376, - 50.974726 - ], - [ - 3.1569376, - 50.9551387 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Tim Couwelier", - "uid": "7246683", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-07T20:25:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 210, - "modify": 88, - "delete": 0, - "area": 0.000218891994959972, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 81, - "theme": "grb", - "import": 29, - "locale": "nl", - "imagery": "osm", - "conflation": 26 - }, - "id": 120681851 - } - }, - { - "id": 120681568, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -77.2668175, - 39.1787364 - ], - [ - -77.2668175, - 39.1787364 - ], - [ - -77.2668175, - 39.1787364 - ], - [ - -77.2668175, - 39.1787364 - ], - [ - -77.2668175, - 39.1787364 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "romeoz5", - "uid": "15864993", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-07T20:18:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees", - "theme": "trees", - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 120681568 - } - }, - { - "id": 120681098, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1079998, - 51.2966146 - ], - [ - 3.1079998, - 51.2966146 - ], - [ - 3.1079998, - 51.2966146 - ], - [ - 3.1079998, - 51.2966146 - ], - [ - 3.1079998, - 51.2966146 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-07T20:00:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", - "answer": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 120681098 - } - }, - { - "id": 120681024, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1017358, - 51.2763968 - ], - [ - 3.1360711, - 51.2763968 - ], - [ - 3.1360711, - 51.309092 - ], - [ - 3.1017358, - 51.309092 - ], - [ - 3.1017358, - 51.2763968 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-07T19:58:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.00112259950055997, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "locale": "nl", - "imagery": "AGIV", - "add-image": 5 - }, - "id": 120681024 - } - }, - { - "id": 120680961, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1014387, - 51.3093986 - ], - [ - 3.1014387, - 51.3093986 - ], - [ - 3.1014387, - 51.3093986 - ], - [ - 3.1014387, - 51.3093986 - ], - [ - 3.1014387, - 51.3093986 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-07T19:56:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "answer": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 120680961 - } - }, - { - "id": 120680908, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4402821, - 50.8408255 - ], - [ - 4.4425554, - 50.8408255 - ], - [ - 4.4425554, - 50.8417756 - ], - [ - 4.4402821, - 50.8417756 - ], - [ - 4.4402821, - 50.8408255 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-07T19:54:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.0000021598623299933, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 120680908 - } - }, - { - "id": 120680141, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.008036, - 49.7258516 - ], - [ - 8.031097, - 49.7258516 - ], - [ - 8.031097, - 49.7319904 - ], - [ - 8.008036, - 49.7319904 - ], - [ - 8.008036, - 49.7258516 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Tanzbärli", - "uid": "11052582", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-07T19:26:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.000141566866800053, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 120680141 - } - }, - { - "id": 120679817, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.8666259, - 49.8323861 - ], - [ - 9.8912049, - 49.8323861 - ], - [ - 9.8912049, - 49.8364344 - ], - [ - 9.8666259, - 49.8364344 - ], - [ - 9.8666259, - 49.8323861 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "onkelben866", - "uid": "14063915", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-07T19:17:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.0000995031657000189, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 14, - "locale": "de", - "imagery": "osm" - }, - "id": 120679817 - } - }, - { - "id": 120677798, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4205778, - 50.9048594 - ], - [ - 5.4335164, - 50.9048594 - ], - [ - 5.4335164, - 50.9203777 - ], - [ - 5.4205778, - 50.9203777 - ], - [ - 5.4205778, - 50.9048594 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-07T18:06:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 488, - "modify": 958, - "delete": 7, - "area": 0.000200785076380048, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 874, - "theme": "grb", - "delete": 7, - "import": 84, - "locale": "nl", - "imagery": "osm", - "conflation": 196 - }, - "id": 120677798 - } - }, - { - "id": 120677770, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-07T18:06:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 120677770 - } - }, - { - "id": 120677698, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5747986, - 51.1809193 - ], - [ - 3.5747986, - 51.1809193 - ], - [ - 3.5747986, - 51.1809193 - ], - [ - 3.5747986, - 51.1809193 - ], - [ - 3.5747986, - 51.1809193 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0-alpha", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-07T18:04:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/feature/nearby-images/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 9, - "import": 1, - "locale": "en", - "imagery": "osm", - "link-image": 1, - "import:node/9723403079": "source: https://osm.org/note/3161416" - }, - "id": 120677698 - } - }, - { - "id": 120676556, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2182202, - 48.6849492 - ], - [ - 9.2187768, - 48.6849492 - ], - [ - 9.2187768, - 48.685245 - ], - [ - 9.2182202, - 48.685245 - ], - [ - 9.2182202, - 48.6849492 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-07T17:25:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.6464228000232e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 120676556 - } - }, - { - "id": 120676429, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2428538, - 41.4676286 - ], - [ - 2.2430851, - 41.4676286 - ], - [ - 2.2430851, - 41.4677444 - ], - [ - 2.2428538, - 41.4677444 - ], - [ - 2.2428538, - 41.4676286 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-8852917075", - "osm_id": 8852917075, - "reasons": [ - 43 - ], - "version": 3, - "primary_tags": { - "natural": "tree_stump" - } - } - ], - "user": "PabloDíaz", - "uid": "14309824", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-07T17:19:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 11, - "delete": 0, - "area": 2.67845400007755e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "answer": 9, - "locale": "ca", - "imagery": "HDM_HOT", - "add-image": 6 - }, - "id": 120676429 - } - }, - { - "id": 120676244, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8320958, - 45.7594272 - ], - [ - 4.8323616, - 45.7594272 - ], - [ - 4.8323616, - 45.7595794 - ], - [ - 4.8320958, - 45.7595794 - ], - [ - 4.8320958, - 45.7594272 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-07T17:14:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 4.04547600004986e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 3, - "create": 2, - "locale": "fr", - "imagery": "osm", - "add-image": 1, - "change_within_50m": 6 - }, - "id": 120676244 - } - }, - { - "id": 120675455, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9877866, - 51.001608 - ], - [ - 4.9877866, - 51.001608 - ], - [ - 4.9877866, - 51.001608 - ], - [ - 4.9877866, - 51.001608 - ], - [ - 4.9877866, - 51.001608 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-07T16:49:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "theme": "waste_basket", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 120675455 - } - }, - { - "id": 120675053, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.8573921, - 43.3704372 - ], - [ - -3.8573921, - 43.3704372 - ], - [ - -3.8573921, - 43.3704372 - ], - [ - -3.8573921, - 43.3704372 - ], - [ - -3.8573921, - 43.3704372 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Ninopiña10", - "uid": "11138282", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-07T16:36:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 4, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 5 - }, - "id": 120675053 - } - }, - { - "id": 120674927, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4270381, - 50.9167386 - ], - [ - 5.4600746, - 50.9167386 - ], - [ - 5.4600746, - 50.9331312 - ], - [ - 5.4270381, - 50.9331312 - ], - [ - 5.4270381, - 50.9167386 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-07T16:32:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 668, - "modify": 1134, - "delete": 24, - "area": 0.000541554129899866, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 1010, - "theme": "grb", - "delete": 24, - "import": 97, - "locale": "nl", - "imagery": "osm", - "conflation": 276 - }, - "id": 120674927 - } - }, - { - "id": 120674531, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.8616163, - 49.8044188 - ], - [ - 9.8768929, - 49.8044188 - ], - [ - 9.8768929, - 49.8207593 - ], - [ - 9.8616163, - 49.8207593 - ], - [ - 9.8616163, - 49.8044188 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "onkelben866", - "uid": "14063915", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-07T16:20:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 35, - "delete": 0, - "area": 0.000249627282299974, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 47, - "locale": "de", - "imagery": "osm" - }, - "id": 120674531 - } - }, - { - "id": 120674222, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2182632, - 48.68478 - ], - [ - 9.2182632, - 48.68478 - ], - [ - 9.2182632, - 48.68478 - ], - [ - 9.2182632, - 48.68478 - ], - [ - 9.2182632, - 48.68478 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-07T16:12:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 1, - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 120674222 - } - }, - { - "id": 120674125, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.8662441, - 49.8062011 - ], - [ - 9.874645, - 49.8062011 - ], - [ - 9.874645, - 49.8360699 - ], - [ - 9.8662441, - 49.8360699 - ], - [ - 9.8662441, - 49.8062011 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 42, - "name": "Invalid tag modification" - } - ], - "tags": [], - "features": [ - { - "url": "node-332106881", - "name": "Aksar Döner", - "osm_id": 332106881, - "reasons": [ - 42 - ], - "version": 6, - "primary_tags": {} - } - ], - "user": "onkelben866", - "uid": "14063915", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-07T16:08:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 19, - "delete": 1, - "area": 0.000250924801919958, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 22, - "locale": "de", - "imagery": "osm", - "deletion": 1, - "soft-delete": 1, - "deletion:node/299464546": "shop_closed", - "soft-delete:node/332106881": "shop_closed" - }, - "id": 120674125 - } - }, - { - "id": 120674119, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.130606, - 50.9494475 - ], - [ - 3.130606, - 50.9494475 - ], - [ - 3.130606, - 50.9494475 - ], - [ - 3.130606, - 50.9494475 - ], - [ - 3.130606, - 50.9494475 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-07T16:08:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "http://127.0.0.1:1234/theme.html", - "theme": "toerisme_vlaanderen", - "answer": 5, - "import": 1, - "locale": "en", - "imagery": "osm", - "import:node/9722978227": "source: https://osm.org/note/3161472" - }, - "id": 120674119 - } - }, - { - "id": 120674112, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.6174714, - 48.1022486 - ], - [ - 11.6174714, - 48.1022486 - ], - [ - 11.6174714, - 48.1022486 - ], - [ - 11.6174714, - 48.1022486 - ], - [ - 11.6174714, - 48.1022486 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Strubbl", - "uid": "536583", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-07T16:08:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 3, - "locale": "de", - "imagery": "osm" - }, - "id": 120674112 - } - }, - { - "id": 120673388, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.8714298, - 49.8134198 - ], - [ - 9.8714298, - 49.8134198 - ], - [ - 9.8714298, - 49.8134198 - ], - [ - 9.8714298, - 49.8134198 - ], - [ - 9.8714298, - 49.8134198 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "onkelben866", - "uid": "14063915", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-07T15:44:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 120673388 - } - }, - { - "id": 120673123, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6549322, - 51.0474268 - ], - [ - 3.6549322, - 51.0474268 - ], - [ - 3.6549322, - 51.0474268 - ], - [ - 3.6549322, - 51.0474268 - ], - [ - 3.6549322, - 51.0474268 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #bicycle_rental", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-07T15:35:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "http://127.0.0.1:1234/theme.html", - "theme": "bicycle_rental", - "answer": 5, - "import": 1, - "locale": "en", - "imagery": "osm", - "import:node/9722758036": "source: https://osm.org/note/3161450" - }, - "id": 120673123 - } - }, - { - "id": 120672492, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.977433, - 50.9806263 - ], - [ - 4.9842051, - 50.9806263 - ], - [ - 4.9842051, - 51.0020256 - ], - [ - 4.977433, - 51.0020256 - ], - [ - 4.977433, - 50.9806263 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-07T15:20:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 9, - "delete": 0, - "area": 0.000144918199530022, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 17, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 3, - "change_over_5000m": 1, - "change_within_25m": 21, - "move:node/9722709204": "improve_accuracy" - }, - "id": 120672492 - } - }, - { - "id": 120672483, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-07T15:20:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 120672483 - } - }, - { - "id": 120672479, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-07T15:19:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 120672479 - } - }, - { - "id": 120672472, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-07T15:19:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 120672472 - } - }, - { - "id": 120672396, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9783488, - 50.9806499 - ], - [ - 4.9784346, - 50.9806499 - ], - [ - 4.9784346, - 50.9807968 - ], - [ - 4.9783488, - 50.9807968 - ], - [ - 4.9783488, - 50.9806499 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-07T15:18:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 8, - "delete": 0, - "area": 1.26040199997449e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 8, - "create": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 2, - "change_within_25m": 10 - }, - "id": 120672396 - } - }, - { - "id": 120672325, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9794125, - 50.9808605 - ], - [ - 4.9794125, - 50.9808605 - ], - [ - 4.9794125, - 50.9808605 - ], - [ - 4.9794125, - 50.9808605 - ], - [ - 4.9794125, - 50.9808605 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-07T15:16:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 4, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 5 - }, - "id": 120672325 - } - }, - { - "id": 120672270, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.8714252, - 49.8133754 - ], - [ - 9.8714612, - 49.8133754 - ], - [ - 9.8714612, - 49.8134328 - ], - [ - 9.8714252, - 49.8134328 - ], - [ - 9.8714252, - 49.8133754 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "onkelben866", - "uid": "14063915", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-07T15:14:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 2.0664000001883e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "move": 1, - "theme": "charging_stations", - "answer": 1, - "locale": "de", - "imagery": "CartoDB.Voyager", - "move:node/7556696949": "improve_accuracy" - }, - "id": 120672270 - } - }, - { - "id": 120671491, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1337294, - 51.3118862 - ], - [ - 3.1337294, - 51.3118862 - ], - [ - 3.1337294, - 51.3118862 - ], - [ - 3.1337294, - 51.3118862 - ], - [ - 3.1337294, - 51.3118862 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "M!dgard", - "uid": "763799", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-07T14:51:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 1, - "import": 1, - "locale": "nl", - "imagery": "osm", - "import:node/9722635408": "source: https://osm.org/note/3161433" - }, - "id": 120671491 - } - }, - { - "id": 120667519, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2344225, - 50.7377153 - ], - [ - 4.2344225, - 50.7377153 - ], - [ - 4.2344225, - 50.7377153 - ], - [ - 4.2344225, - 50.7377153 - ], - [ - 4.2344225, - 50.7377153 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-07T12:57:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_5000m": 3 - }, - "id": 120667519 - } - }, - { - "id": 120664615, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2788489, - 51.075126 - ], - [ - 5.3193839, - 51.075126 - ], - [ - 5.3193839, - 51.0851676 - ], - [ - 5.2788489, - 51.0851676 - ], - [ - 5.2788489, - 51.075126 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mjans", - "uid": "5199038", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-07T11:34:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 0, - "delete": 0, - "area": 0.000407036256000042, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 3, - "import": 3, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 3, - "change_within_25m": 2, - "change_within_50m": 1, - "import:node/9722396748": "source: https://osm.org/note/3044563", - "import:node/9722435310": "source: https://osm.org/note/3044366", - "import:node/9722441185": "source: https://osm.org/note/3044384" - }, - "id": 120664615 - } - }, - { - "id": 120660825, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0475248, - 48.5402997 - ], - [ - 9.0493505, - 48.5402997 - ], - [ - 9.0493505, - 48.54198 - ], - [ - 9.0475248, - 48.54198 - ], - [ - 9.0475248, - 48.5402997 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-07T10:01:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000306772371000617, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 3, - "locale": "de", - "imagery": "osm" - }, - "id": 120660825 - } - }, - { - "id": 120660359, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.256017, - 50.7163962 - ], - [ - 4.256017, - 50.7163962 - ], - [ - 4.256017, - 50.7163962 - ], - [ - 4.256017, - 50.7163962 - ], - [ - 4.256017, - 50.7163962 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-07T09:48:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 5, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 6 - }, - "id": 120660359 - } - }, - { - "id": 120660298, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3479591, - 51.3581455 - ], - [ - 3.348246, - 51.3581455 - ], - [ - 3.348246, - 51.3583067 - ], - [ - 3.3479591, - 51.3583067 - ], - [ - 3.3479591, - 51.3581455 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-07T09:46:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 4.62482800002256e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 120660298 - } - }, - { - "id": 120658982, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 151.1473677, - -33.8140484 - ], - [ - 151.1473677, - -33.8140484 - ], - [ - 151.1473677, - -33.8140484 - ], - [ - 151.1473677, - -33.8140484 - ], - [ - 151.1473677, - -33.8140484 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "ssarzen", - "uid": "10198216", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-07T09:09:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120658982 - } - }, - { - "id": 120655486, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4795532, - 50.9718663 - ], - [ - 5.4833068, - 50.9718663 - ], - [ - 5.4833068, - 50.973395 - ], - [ - 5.4795532, - 50.973395 - ], - [ - 5.4795532, - 50.9718663 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-07T06:48:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 153, - "modify": 97, - "delete": 0, - "area": 0.00000573812831997965, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 93, - "theme": "grb", - "answer": 1, - "import": 5, - "locale": "nl", - "imagery": "osm", - "conflation": 8, - "change_over_5000m": 6 - }, - "id": 120655486 - } - }, - { - "id": 120655411, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2327139, - -39.8448461 - ], - [ - -73.2326088, - -39.8448461 - ], - [ - -73.2326088, - -39.8446683 - ], - [ - -73.2327139, - -39.8446683 - ], - [ - -73.2327139, - -39.8448461 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-07T06:45:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.86867799993857e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "HDM_HOT", - "add-image": 2 - }, - "id": 120655411 - } - }, - { - "id": 120654285, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.016939, - 14.7406765 - ], - [ - 121.0186261, - 14.7406765 - ], - [ - 121.0186261, - 14.741641 - ], - [ - 121.016939, - 14.741641 - ], - [ - 121.016939, - 14.7406765 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Legitimater", - "uid": "15335201", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-07T05:37:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6, - "modify": 1, - "delete": 0, - "area": 0.00000162720795001226, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees", - "theme": "trees", - "answer": 4, - "create": 6, - "locale": "en", - "imagery": "EsriWorldImagery" - }, - "id": 120654285 - } - }, - { - "id": 120653983, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4473522, - 50.9383009 - ], - [ - 5.4783701, - 50.9383009 - ], - [ - 5.4783701, - 50.9512205 - ], - [ - 5.4473522, - 50.9512205 - ], - [ - 5.4473522, - 50.9383009 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-07T05:17:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 191, - "modify": 209, - "delete": 6, - "area": 0.000400738860839893, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 188, - "theme": "grb", - "answer": 6, - "delete": 6, - "import": 13, - "locale": "nl", - "imagery": "osm", - "conflation": 36 - }, - "id": 120653983 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-08.json b/Docs/Tools/stats/stats.2022-5-08.json deleted file mode 100644 index acf1ca44aa..0000000000 --- a/Docs/Tools/stats/stats.2022-5-08.json +++ /dev/null @@ -1,2842 +0,0 @@ -{ - "features": [ - { - "id": 120721622, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2323793, - -39.8453414 - ], - [ - -73.2279485, - -39.8453414 - ], - [ - -73.2279485, - -39.8443341 - ], - [ - -73.2323793, - -39.8443341 - ], - [ - -73.2323793, - -39.8453414 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-08T23:19:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 18, - "delete": 0, - "area": 0.00000446314484003003, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "HDM_HOT", - "add-image": 18 - }, - "id": 120721622 - } - }, - { - "id": 120720725, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3770763, - 52.5695488 - ], - [ - 13.3770763, - 52.5695488 - ], - [ - 13.3770763, - 52.5695488 - ], - [ - 13.3770763, - 52.5695488 - ], - [ - 13.3770763, - 52.5695488 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T22:16:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "de", - "imagery": "osm", - "change_within_100m": 1 - }, - "id": 120720725 - } - }, - { - "id": 120720277, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -99.1843697, - 19.3139412 - ], - [ - -99.1842831, - 19.3139412 - ], - [ - -99.1842831, - 19.3140273 - ], - [ - -99.1843697, - 19.3140273 - ], - [ - -99.1843697, - 19.3139412 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mapeadora", - "uid": "1437169", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T21:52:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6, - "modify": 3, - "delete": 0, - "area": 7.45626000032759e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 3, - "create": 6, - "locale": "es", - "imagery": "osm", - "change_over_5000m": 6, - "change_within_25m": 3 - }, - "id": 120720277 - } - }, - { - "id": 120720180, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -99.1848184, - 19.313955 - ], - [ - -99.1845059, - 19.313955 - ], - [ - -99.1845059, - 19.3139929 - ], - [ - -99.1848184, - 19.3139929 - ], - [ - -99.1848184, - 19.313955 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mapeadora", - "uid": "1437169", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T21:48:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6, - "modify": 4, - "delete": 0, - "area": 1.18437499993493e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 6, - "create": 6, - "locale": "es", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 6, - "change_within_25m": 7 - }, - "id": 120720180 - } - }, - { - "id": 120720053, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2305079, - -39.8448463 - ], - [ - -73.2305079, - -39.8448463 - ], - [ - -73.2305079, - -39.8448463 - ], - [ - -73.2305079, - -39.8448463 - ], - [ - -73.2305079, - -39.8448463 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T21:41:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "HDM_HOT", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 120720053 - } - }, - { - "id": 120719103, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3215353, - 50.863263 - ], - [ - 5.1930214, - 50.863263 - ], - [ - 5.1930214, - 51.0440947 - ], - [ - 4.3215353, - 51.0440947 - ], - [ - 4.3215353, - 50.863263 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T20:57:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 138, - "modify": 224, - "delete": 8, - "area": 0.157592312989369, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 197, - "theme": "grb", - "answer": 4, - "delete": 8, - "import": 9, - "locale": "nl", - "imagery": "AGIV", - "conflation": 46, - "change_over_5000m": 13 - }, - "id": 120719103 - } - }, - { - "id": 120719054, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.560662, - 53.0158088 - ], - [ - 6.5707432, - 53.0158088 - ], - [ - 6.5707432, - 53.0199009 - ], - [ - 6.560662, - 53.0199009 - ], - [ - 6.560662, - 53.0158088 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T20:54:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 5, - "modify": 33, - "delete": 0, - "area": 0.0000412532785200121, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/kerbs-crossings/kerbs_and_crossings.html", - "theme": "kerbs_and_crossings", - "answer": 37, - "create": 22, - "locale": "nl", - "imagery": "osm", - "change_within_500m": 32, - "change_within_1000m": 1 - }, - "id": 120719054 - } - }, - { - "id": 120718072, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3978439, - 50.8588811 - ], - [ - 4.3978439, - 50.8588811 - ], - [ - 4.3978439, - 50.8588811 - ], - [ - 4.3978439, - 50.8588811 - ], - [ - 4.3978439, - 50.8588811 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T20:18:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 120718072 - } - }, - { - "id": 120717998, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3973717, - 50.8592935 - ], - [ - 4.3973717, - 50.8592935 - ], - [ - 4.3973717, - 50.8592935 - ], - [ - 4.3973717, - 50.8592935 - ], - [ - 4.3973717, - 50.8592935 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T20:15:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 120717998 - } - }, - { - "id": 120715827, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5111952, - 44.8465782 - ], - [ - -0.5111952, - 44.8465782 - ], - [ - -0.5111952, - 44.8465782 - ], - [ - -0.5111952, - 44.8465782 - ], - [ - -0.5111952, - 44.8465782 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T19:04:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 5, - "create": 1, - "locale": "fr", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_100m": 6 - }, - "id": 120715827 - } - }, - { - "id": 120714938, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3720864, - 50.8614537 - ], - [ - 4.3776622, - 50.8614537 - ], - [ - 4.3776622, - 50.8629491 - ], - [ - 4.3720864, - 50.8629491 - ], - [ - 4.3720864, - 50.8614537 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T18:41:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000833805132001739, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 120714938 - } - }, - { - "id": 120714230, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5678458, - 53.0189554 - ], - [ - 6.5707432, - 53.0189554 - ], - [ - 6.5707432, - 53.0213535 - ], - [ - 6.5678458, - 53.0213535 - ], - [ - 6.5678458, - 53.0189554 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T18:29:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 9, - "modify": 44, - "delete": 0, - "area": 0.00000694825493998161, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/kerbs-crossings/kerbs_and_crossings.html", - "theme": "kerbs_and_crossings", - "answer": 46, - "create": 31, - "locale": "nl", - "imagery": "osm", - "change_within_500m": 25, - "change_within_1000m": 39 - }, - "id": 120714230 - } - }, - { - "id": 120714216, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T18:29:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/kerbs-crossings/kerbs_and_crossings.html", - "theme": "kerbs_and_crossings", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_500m": 1 - }, - "id": 120714216 - } - }, - { - "id": 120713748, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3731347, - 50.8635293 - ], - [ - 4.3731463, - 50.8635293 - ], - [ - 4.3731463, - 50.8635367 - ], - [ - 4.3731347, - 50.8635367 - ], - [ - 4.3731347, - 50.8635293 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T18:20:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 8.58399999357477e-11, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 120713748 - } - }, - { - "id": 120713017, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5545349, - 53.0169293 - ], - [ - 6.570089, - 53.0169293 - ], - [ - 6.570089, - 53.0202106 - ], - [ - 6.5545349, - 53.0202106 - ], - [ - 6.5545349, - 53.0169293 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T18:03:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 9, - "modify": 31, - "delete": 0, - "area": 0.0000510376683299631, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/kerbs-crossings/kerbs_and_crossings.html", - "theme": "kerbs_and_crossings", - "answer": 35, - "create": 26, - "locale": "nl", - "imagery": "osm", - "change_within_500m": 35, - "change_within_1000m": 18 - }, - "id": 120713017 - } - }, - { - "id": 120711721, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3715287, - 50.8609774 - ], - [ - 4.373096, - 50.8609774 - ], - [ - 4.373096, - 50.8638307 - ], - [ - 4.3715287, - 50.8638307 - ], - [ - 4.3715287, - 50.8609774 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9725152321", - "name": "Be Mobile Shop", - "osm_id": 9725152321, - "reasons": [ - 43 - ], - "version": 2, - "primary_tags": { - "shop": "telecommunication" - } - } - ], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T17:33:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 14, - "delete": 0, - "area": 0.00000447197708999854, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "locale": "nl", - "imagery": "osm", - "add-image": 20 - }, - "id": 120711721 - } - }, - { - "id": 120711558, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3716089, - 50.8611078 - ], - [ - 4.3716089, - 50.8611078 - ], - [ - 4.3716089, - 50.8611078 - ], - [ - 4.3716089, - 50.8611078 - ], - [ - 4.3716089, - 50.8611078 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T17:29:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 120711558 - } - }, - { - "id": 120710998, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3729978, - 50.8632563 - ], - [ - 4.3729978, - 50.8632563 - ], - [ - 4.3729978, - 50.8632563 - ], - [ - 4.3729978, - 50.8632563 - ], - [ - 4.3729978, - 50.8632563 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T17:13:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 120710998 - } - }, - { - "id": 120710874, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3726625, - 50.8626237 - ], - [ - 4.3728941, - 50.8626237 - ], - [ - 4.3728941, - 50.8632873 - ], - [ - 4.3726625, - 50.8632873 - ], - [ - 4.3726625, - 50.8626237 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T17:08:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.53689760000812e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "theme": "waste_basket", - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 120710874 - } - }, - { - "id": 120709286, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2057596, - 41.5336634 - ], - [ - 2.2222761, - 41.5336634 - ], - [ - 2.2222761, - 41.5493551 - ], - [ - 2.2057596, - 41.5493551 - ], - [ - 2.2057596, - 41.5336634 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Moisès", - "uid": "12884230", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-08T16:19:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.000259171963049969, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "answer": 10, - "locale": "en", - "imagery": "osm" - }, - "id": 120709286 - } - }, - { - "id": 120708939, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2647166, - 53.2058247 - ], - [ - 6.2663684, - 53.2058247 - ], - [ - 6.2663684, - 53.211493 - ], - [ - 6.2647166, - 53.211493 - ], - [ - 6.2647166, - 53.2058247 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T16:08:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.00000936289793999584, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_500m": 1 - }, - "id": 120708939 - } - }, - { - "id": 120708901, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2876617, - 50.71165 - ], - [ - 4.2876617, - 50.71165 - ], - [ - 4.2876617, - 50.71165 - ], - [ - 4.2876617, - 50.71165 - ], - [ - 4.2876617, - 50.71165 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T16:08:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 120708901 - } - }, - { - "id": 120708849, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2767103, - 53.2134036 - ], - [ - 6.2767103, - 53.2134036 - ], - [ - 6.2767103, - 53.2134036 - ], - [ - 6.2767103, - 53.2134036 - ], - [ - 6.2767103, - 53.2134036 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T16:07:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_1000m": 1 - }, - "id": 120708849 - } - }, - { - "id": 120708810, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2682003, - 53.2106725 - ], - [ - 6.2682003, - 53.2106725 - ], - [ - 6.2682003, - 53.2106725 - ], - [ - 6.2682003, - 53.2106725 - ], - [ - 6.2682003, - 53.2106725 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T16:06:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_500m": 1 - }, - "id": 120708810 - } - }, - { - "id": 120708774, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2760951, - 53.2164172 - ], - [ - 6.2760951, - 53.2164172 - ], - [ - 6.2760951, - 53.2164172 - ], - [ - 6.2760951, - 53.2164172 - ], - [ - 6.2760951, - 53.2164172 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T16:05:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 2, - "locale": "en", - "imagery": "osm", - "change_within_1000m": 2 - }, - "id": 120708774 - } - }, - { - "id": 120708693, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2642372, - 53.2098303 - ], - [ - 6.2773318, - 53.2098303 - ], - [ - 6.2773318, - 53.2134429 - ], - [ - 6.2642372, - 53.2134429 - ], - [ - 6.2642372, - 53.2098303 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T16:02:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.000047305551959956, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 2, - "locale": "en", - "imagery": "osm", - "change_within_100m": 1, - "change_within_1000m": 1 - }, - "id": 120708693 - } - }, - { - "id": 120708578, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2589364, - 53.2039524 - ], - [ - 6.260171, - 53.2039524 - ], - [ - 6.260171, - 53.2048651 - ], - [ - 6.2589364, - 53.2048651 - ], - [ - 6.2589364, - 53.2039524 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T15:58:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00000112681942000089, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/campersite.html", - "theme": "campersite", - "answer": 6, - "locale": "en", - "imagery": "osm", - "change_within_1000m": 6 - }, - "id": 120708578 - } - }, - { - "id": 120702754, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1045262, - 38.8347373 - ], - [ - 0.1119218, - 38.8347373 - ], - [ - 0.1119218, - 38.8381897 - ], - [ - 0.1045262, - 38.8381897 - ], - [ - 0.1045262, - 38.8347373 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T13:30:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000255325694400035, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "answer": 2, - "locale": "es", - "imagery": "osm", - "change_over_5000m": 2 - }, - "id": 120702754 - } - }, - { - "id": 120702220, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3735711, - 50.8643453 - ], - [ - 4.3735711, - 50.8643453 - ], - [ - 4.3735711, - 50.8643453 - ], - [ - 4.3735711, - 50.8643453 - ], - [ - 4.3735711, - 50.8643453 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "bxl-forever", - "uid": "2644288", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-08T13:14:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 120702220 - } - }, - { - "id": 120699297, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.0660409, - 49.9762415 - ], - [ - 8.0660409, - 49.9762415 - ], - [ - 8.0660409, - 49.9762415 - ], - [ - 8.0660409, - 49.9762415 - ], - [ - 8.0660409, - 49.9762415 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "self", - "uid": "34921", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #parkings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T11:53:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/parkings.html", - "theme": "parkings", - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 120699297 - } - }, - { - "id": 120698684, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5869583, - 50.7710205 - ], - [ - 4.6032562, - 50.7710205 - ], - [ - 4.6032562, - 50.7836911 - ], - [ - 4.5869583, - 50.7836911 - ], - [ - 4.5869583, - 50.7710205 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Hilde OSM", - "uid": "15275790", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T11:30:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 0, - "delete": 0, - "area": 0.000206504171739993, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "create": 5, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 5, - "change_within_25m": 2 - }, - "id": 120698684 - } - }, - { - "id": 120698370, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 24.9655381, - 60.3156939 - ], - [ - 24.9675847, - 60.3156939 - ], - [ - 24.9675847, - 60.3173939 - ], - [ - 24.9655381, - 60.3173939 - ], - [ - 24.9655381, - 60.3156939 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Obsi", - "uid": "21602", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-08T11:20:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000347921999999899, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 120698370 - } - }, - { - "id": 120698157, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 24.9679602, - 60.3176059 - ], - [ - 24.9684751, - 60.3176059 - ], - [ - 24.9684751, - 60.3178822 - ], - [ - 24.9679602, - 60.3178822 - ], - [ - 24.9679602, - 60.3176059 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Obsi", - "uid": "21602", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-08T11:14:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 1.42266870001236e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 5, - "locale": "en", - "imagery": "osm" - }, - "id": 120698157 - } - }, - { - "id": 120697709, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4609352, - 50.8944885 - ], - [ - 5.4668353, - 50.8944885 - ], - [ - 5.4668353, - 50.896624 - ], - [ - 5.4609352, - 50.896624 - ], - [ - 5.4609352, - 50.8944885 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-08T10:59:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 17, - "modify": 298, - "delete": 0, - "area": 0.0000125996635500079, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 261, - "theme": "grb", - "import": 2, - "locale": "nl", - "imagery": "osm", - "conflation": 74 - }, - "id": 120697709 - } - }, - { - "id": 120697581, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3792697, - 50.8449872 - ], - [ - 4.3792697, - 50.8449872 - ], - [ - 4.3792697, - 50.8449872 - ], - [ - 4.3792697, - 50.8449872 - ], - [ - 4.3792697, - 50.8449872 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T10:53:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_5000m": 1 - }, - "id": 120697581 - } - }, - { - "id": 120696126, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8772687, - 51.0602847 - ], - [ - 4.8807864, - 51.0602847 - ], - [ - 4.8807864, - 51.0613724 - ], - [ - 4.8772687, - 51.0613724 - ], - [ - 4.8772687, - 51.0602847 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Frans_Napaters", - "uid": "3574538", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T10:10:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.00000382620229002245, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 2, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 2 - }, - "id": 120696126 - } - }, - { - "id": 120695033, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4479748, - 50.8888955 - ], - [ - 5.4689231, - 50.8888955 - ], - [ - 5.4689231, - 50.9040192 - ], - [ - 5.4479748, - 50.9040192 - ], - [ - 5.4479748, - 50.8888955 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-08T09:41:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 477, - "modify": 2221, - "delete": 22, - "area": 0.000316815804710074, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 1980, - "theme": "grb", - "answer": 1, - "delete": 22, - "import": 60, - "locale": "nl", - "imagery": "osm", - "conflation": 534 - }, - "id": 120695033 - } - }, - { - "id": 120695001, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-08T09:41:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 4, - "theme": "grb", - "locale": "nl", - "imagery": "osm", - "conflation": 2 - }, - "id": 120695001 - } - }, - { - "id": 120694660, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4292086, - 50.8971185 - ], - [ - 5.45585, - 50.8971185 - ], - [ - 5.45585, - 50.9057653 - ], - [ - 5.4292086, - 50.9057653 - ], - [ - 5.4292086, - 50.8971185 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-08T09:31:07Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 195, - "modify": 382, - "delete": 14, - "area": 0.000230362857520028, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 336, - "theme": "grb", - "delete": 14, - "import": 33, - "locale": "nl", - "imagery": "osm", - "conflation": 84 - }, - "id": 120694660 - } - }, - { - "id": 120691778, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2376047, - 41.4652271 - ], - [ - 2.2384688, - 41.4652271 - ], - [ - 2.2384688, - 41.466306 - ], - [ - 2.2376047, - 41.466306 - ], - [ - 2.2376047, - 41.4652271 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-8853143449", - "osm_id": 8853143449, - "reasons": [ - 43 - ], - "version": 3, - "primary_tags": { - "natural": "tree_stump" - } - } - ], - "user": "PabloDíaz", - "uid": "14309824", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-08T07:44:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 7, - "delete": 0, - "area": 9.32277490002957e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "answer": 8, - "locale": "ca", - "imagery": "HDM_HOT", - "add-image": 6 - }, - "id": 120691778 - } - }, - { - "id": 120691575, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2387445, - 50.7363996 - ], - [ - 4.2387445, - 50.7363996 - ], - [ - 4.2387445, - 50.7363996 - ], - [ - 4.2387445, - 50.7363996 - ], - [ - 4.2387445, - 50.7363996 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T07:34:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_5000m": 7 - }, - "id": 120691575 - } - }, - { - "id": 120691024, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.4855543, - 48.0827774 - ], - [ - 11.4855543, - 48.0827774 - ], - [ - 11.4855543, - 48.0827774 - ], - [ - 11.4855543, - 48.0827774 - ], - [ - 11.4855543, - 48.0827774 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "muc-osm", - "uid": "17011", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-08T07:14:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 4, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 120691024 - } - }, - { - "id": 120689653, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2383659, - 50.7391702 - ], - [ - 4.2383659, - 50.7391702 - ], - [ - 4.2383659, - 50.7391702 - ], - [ - 4.2383659, - 50.7391702 - ], - [ - 4.2383659, - 50.7391702 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-08T06:06:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "add-image": 1 - }, - "id": 120689653 - } - }, - { - "id": 120688598, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1360711, - 51.2913161 - ], - [ - 3.1360711, - 51.2913161 - ], - [ - 3.1360711, - 51.2913161 - ], - [ - 3.1360711, - 51.2913161 - ], - [ - 3.1360711, - 51.2913161 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-08T04:42:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 120688598 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-09.json b/Docs/Tools/stats/stats.2022-5-09.json deleted file mode 100644 index 9d5bb20e80..0000000000 --- a/Docs/Tools/stats/stats.2022-5-09.json +++ /dev/null @@ -1,2518 +0,0 @@ -{ - "features": [ - { - "id": 120768556, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3607558, - 52.5712482 - ], - [ - 13.3607558, - 52.5712482 - ], - [ - 13.3607558, - 52.5712482 - ], - [ - 13.3607558, - 52.5712482 - ], - [ - 13.3607558, - 52.5712482 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-09T23:39:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "theme": "waste_basket", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 120768556 - } - }, - { - "id": 120766323, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1968203, - 48.6545271 - ], - [ - 9.1970581, - 48.6545271 - ], - [ - 9.1970581, - 48.6548064 - ], - [ - 9.1968203, - 48.6548064 - ], - [ - 9.1968203, - 48.6545271 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #parkings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-09T21:27:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 6.64175399986216e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/parkings.html", - "theme": "parkings", - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_within_5000m": 1 - }, - "id": 120766323 - } - }, - { - "id": 120766214, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1929478, - 48.6532462 - ], - [ - 9.1929478, - 48.6532462 - ], - [ - 9.1929478, - 48.6532462 - ], - [ - 9.1929478, - 48.6532462 - ], - [ - 9.1929478, - 48.6532462 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-09T21:22:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_within_5000m": 1 - }, - "id": 120766214 - } - }, - { - "id": 120765560, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3484364, - 52.5757559 - ], - [ - 13.3484364, - 52.5757559 - ], - [ - 13.3484364, - 52.5757559 - ], - [ - 13.3484364, - 52.5757559 - ], - [ - 13.3484364, - 52.5757559 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-09T20:57:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 2, - "locale": "de", - "imagery": "osm", - "change_within_5000m": 2 - }, - "id": 120765560 - } - }, - { - "id": 120762668, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9935585, - 48.4989174 - ], - [ - 8.9965179, - 48.4989174 - ], - [ - 8.9965179, - 48.5009311 - ], - [ - 8.9935585, - 48.5009311 - ], - [ - 8.9935585, - 48.4989174 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-09T19:18:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.00000595934377999728, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 18, - "locale": "de", - "imagery": "osm", - "change_within_25m": 2, - "change_within_50m": 6, - "change_within_100m": 8, - "change_within_500m": 2 - }, - "id": 120762668 - } - }, - { - "id": 120762570, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1876579, - 48.6532462 - ], - [ - 9.1929478, - 48.6532462 - ], - [ - 9.1929478, - 48.6543386 - ], - [ - 9.1876579, - 48.6543386 - ], - [ - 9.1876579, - 48.6532462 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-09T19:14:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00000577868676002521, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 4, - "locale": "de", - "imagery": "osm", - "change_within_5000m": 4 - }, - "id": 120762570 - } - }, - { - "id": 120761878, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7024508, - 51.0412119 - ], - [ - 3.7024508, - 51.0412119 - ], - [ - 3.7024508, - 51.0412119 - ], - [ - 3.7024508, - 51.0412119 - ], - [ - 3.7024508, - 51.0412119 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-09T18:51:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/playgrounds.html", - "theme": "playgrounds", - "answer": 5, - "locale": "en", - "imagery": "osm", - "add-image": 2, - "change_within_25m": 7 - }, - "id": 120761878 - } - }, - { - "id": 120761758, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7029086, - 51.0385771 - ], - [ - 3.7034347, - 51.0385771 - ], - [ - 3.7034347, - 51.0396271 - ], - [ - 3.7029086, - 51.0396271 - ], - [ - 3.7029086, - 51.0385771 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-09T18:47:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 5.5240499999927e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/etymology.html", - "theme": "etymology", - "answer": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1, - "change_within_50m": 1 - }, - "id": 120761758 - } - }, - { - "id": 120759277, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -76.6156557, - 39.324963 - ], - [ - -76.6156557, - 39.324963 - ], - [ - -76.6156557, - 39.324963 - ], - [ - -76.6156557, - 39.324963 - ], - [ - -76.6156557, - 39.324963 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "pkoby", - "uid": "999995", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-09T17:38:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/entrances.html", - "theme": "entrances", - "answer": 2, - "locale": "en", - "imagery": "osm", - "change_within_25m": 2 - }, - "id": 120759277 - } - }, - { - "id": 120759206, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1047871, - 38.8400339 - ], - [ - 0.1051384, - 38.8400339 - ], - [ - 0.1051384, - 38.8403364 - ], - [ - 0.1047871, - 38.8403364 - ], - [ - 0.1047871, - 38.8400339 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-09T17:35:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 7, - "delete": 0, - "area": 1.06268249998789e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", - "answer": 9, - "locale": "ca", - "imagery": "osm", - "change_within_25m": 9 - }, - "id": 120759206 - } - }, - { - "id": 120758932, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3505254, - 52.575432 - ], - [ - 13.3505254, - 52.575432 - ], - [ - 13.3505254, - 52.575432 - ], - [ - 13.3505254, - 52.575432 - ], - [ - 13.3505254, - 52.575432 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-09T17:28:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 2, - "locale": "de", - "imagery": "osm", - "change_within_25m": 2 - }, - "id": 120758932 - } - }, - { - "id": 120758801, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-09T17:25:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 2, - "locale": "de", - "imagery": "osm", - "change_within_25m": 2 - }, - "id": 120758801 - } - }, - { - "id": 120758754, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.6970783, - 47.8288567 - ], - [ - -0.6970783, - 47.8288567 - ], - [ - -0.6970783, - 47.8288567 - ], - [ - -0.6970783, - 47.8288567 - ], - [ - -0.6970783, - 47.8288567 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ayack", - "uid": "32476", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-09T17:24:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 1, - "locale": "fr", - "imagery": "osm" - }, - "id": 120758754 - } - }, - { - "id": 120758706, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3521541, - 52.5747559 - ], - [ - 13.3521541, - 52.5747559 - ], - [ - 13.3521541, - 52.5747559 - ], - [ - 13.3521541, - 52.5747559 - ], - [ - 13.3521541, - 52.5747559 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-09T17:23:07Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 2, - "locale": "de", - "imagery": "osm", - "change_within_25m": 2 - }, - "id": 120758706 - } - }, - { - "id": 120757633, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4168042, - 46.9354753 - ], - [ - 7.4168042, - 46.9354753 - ], - [ - 7.4168042, - 46.9354753 - ], - [ - 7.4168042, - 46.9354753 - ], - [ - 7.4168042, - 46.9354753 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "habi", - "uid": "15671", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-09T16:53:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 3, - "locale": "en", - "imagery": "osm", - "change_within_100m": 3 - }, - "id": 120757633 - } - }, - { - "id": 120757174, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1962937, - 48.6546664 - ], - [ - 9.1967073, - 48.6546664 - ], - [ - 9.1967073, - 48.6548059 - ], - [ - 9.1962937, - 48.6548059 - ], - [ - 9.1962937, - 48.6546664 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #parkings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-09T16:39:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 5.76971999983165e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/parkings.html", - "theme": "parkings", - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 120757174 - } - }, - { - "id": 120756962, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.6266143, - 45.0558845 - ], - [ - 7.6975242, - 45.0558845 - ], - [ - 7.6975242, - 45.0881672 - ], - [ - 7.6266143, - 45.0881672 - ], - [ - 7.6266143, - 45.0558845 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "madbob", - "uid": "734100", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-09T16:34:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 218, - "delete": 0, - "area": 0.00228916302873023, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 357, - "locale": "en", - "imagery": "osm" - }, - "id": 120756962 - } - }, - { - "id": 120756175, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2300796, - -39.8441085 - ], - [ - -73.2300796, - -39.8441085 - ], - [ - -73.2300796, - -39.8441085 - ], - [ - -73.2300796, - -39.8441085 - ], - [ - -73.2300796, - -39.8441085 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "nw520", - "uid": "6895624", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-09T16:14:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120756175 - } - }, - { - "id": 120755140, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2505394, - -39.8309026 - ], - [ - -73.2497998, - -39.8309026 - ], - [ - -73.2497998, - -39.8278991 - ], - [ - -73.2505394, - -39.8278991 - ], - [ - -73.2505394, - -39.8309026 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-09T15:54:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0.00000222138859996465, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "create": 1, - "locale": "es", - "imagery": "Mapbox", - "add-image": 2, - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 120755140 - } - }, - { - "id": 120751998, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2370224, - 50.7345462 - ], - [ - 4.2407221, - 50.7345462 - ], - [ - 4.2407221, - 50.7369132 - ], - [ - 4.2370224, - 50.7369132 - ], - [ - 4.2370224, - 50.7345462 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-09T14:37:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 1, - "delete": 0, - "area": 0.00000875718989999911, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "move": 1, - "theme": "waste", - "answer": 3, - "create": 3, - "locale": "en", - "imagery": "osm", - "move:node/9727037575": "improve_accuracy" - }, - "id": 120751998 - } - }, - { - "id": 120751761, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.238831, - 50.7384493 - ], - [ - 4.238831, - 50.7384493 - ], - [ - 4.238831, - 50.7384493 - ], - [ - 4.238831, - 50.7384493 - ], - [ - 4.238831, - 50.7384493 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-09T14:30:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 5, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120751761 - } - }, - { - "id": 120750374, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-09T13:54:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "locale": "fr", - "imagery": "osm", - "add-image": 1, - "change_within_100m": 1 - }, - "id": 120750374 - } - }, - { - "id": 120745628, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.872528, - 50.770528 - ], - [ - 4.0261788, - 50.770528 - ], - [ - 4.0261788, - 50.839306 - ], - [ - 3.872528, - 50.839306 - ], - [ - 3.872528, - 50.770528 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-09T12:02:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 2, - "delete": 0, - "area": 0.0105677947224003, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 4, - "import": 2, - "locale": "nl", - "imagery": "osm", - "move:node/9726748950": "improve_accuracy", - "import:node/9726748950": "source: https://osm.org/note/3161435", - "import:node/9726749177": "source: https://osm.org/note/3161448" - }, - "id": 120745628 - } - }, - { - "id": 120744338, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4527137, - 50.9126693 - ], - [ - 5.4683992, - 50.9126693 - ], - [ - 5.4683992, - 50.9195245 - ], - [ - 5.4527137, - 50.9195245 - ], - [ - 5.4527137, - 50.9126693 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-09T11:36:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 147, - "modify": 726, - "delete": 27, - "area": 0.000107527239600062, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 637, - "theme": "grb", - "delete": 27, - "import": 24, - "locale": "nl", - "imagery": "osm", - "conflation": 182 - }, - "id": 120744338 - } - }, - { - "id": 120743540, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0987596, - 38.8290415 - ], - [ - 0.1156732, - 38.8290415 - ], - [ - 0.1156732, - 38.8484067 - ], - [ - 0.0987596, - 38.8484067 - ], - [ - 0.0987596, - 38.8290415 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-09T11:18:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 9, - "delete": 0, - "area": 0.000327535246719928, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 11, - "locale": "ca", - "imagery": "CartoDB.Voyager" - }, - "id": 120743540 - } - }, - { - "id": 120743062, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7731392, - 50.9032585 - ], - [ - 4.7808377, - 50.9032585 - ], - [ - 4.7808377, - 50.9075759 - ], - [ - 4.7731392, - 50.9075759 - ], - [ - 4.7731392, - 50.9032585 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-09T11:08:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 403, - "modify": 10, - "delete": 0, - "area": 0.0000332375038999842, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 8, - "theme": "grb", - "answer": 1, - "import": 41, - "locale": "nl", - "imagery": "osm", - "conflation": 2 - }, - "id": 120743062 - } - }, - { - "id": 120742166, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1001702, - 38.8322347 - ], - [ - 0.1023056, - 38.8322347 - ], - [ - 0.1023056, - 38.8372991 - ], - [ - 0.1001702, - 38.8372991 - ], - [ - 0.1001702, - 38.8322347 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-09T10:49:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.0000108145197600042, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "answer": 8, - "locale": "ca", - "imagery": "osm", - "change_over_5000m": 8 - }, - "id": 120742166 - } - }, - { - "id": 120740918, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4581651, - 50.9130981 - ], - [ - 5.4669901, - 50.9130981 - ], - [ - 5.4669901, - 50.9168946 - ], - [ - 5.4581651, - 50.9168946 - ], - [ - 5.4581651, - 50.9130981 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-09T10:22:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 55, - "modify": 1191, - "delete": 19, - "area": 0.0000335041124999993, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 1040, - "theme": "grb", - "answer": 1, - "delete": 19, - "import": 10, - "locale": "nl", - "imagery": "osm", - "conflation": 318 - }, - "id": 120740918 - } - }, - { - "id": 120739482, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4567301, - 50.9118103 - ], - [ - 5.4637586, - 50.9118103 - ], - [ - 5.4637586, - 50.9164323 - ], - [ - 5.4567301, - 50.9164323 - ], - [ - 5.4567301, - 50.9118103 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-09T09:54:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 55, - "modify": 980, - "delete": 0, - "area": 0.0000324857269999863, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 848, - "theme": "grb", - "answer": 1, - "import": 10, - "locale": "nl", - "imagery": "osm", - "conflation": 264 - }, - "id": 120739482 - } - }, - { - "id": 120739435, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2375953, - 50.8060686 - ], - [ - 3.2375953, - 50.8060686 - ], - [ - 3.2375953, - 50.8060686 - ], - [ - 3.2375953, - 50.8060686 - ], - [ - 3.2375953, - 50.8060686 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-09T09:53:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "import": 1, - "locale": "nl", - "imagery": "AGIV", - "import:node/9726460006": "source: https://osm.org/note/3156313" - }, - "id": 120739435 - } - }, - { - "id": 120738436, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4424134, - 50.9156642 - ], - [ - 5.45748, - 50.9156642 - ], - [ - 5.45748, - 50.919109 - ], - [ - 5.4424134, - 50.919109 - ], - [ - 5.4424134, - 50.9156642 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-09T09:34:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 214, - "modify": 694, - "delete": 6, - "area": 0.0000519014236799533, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 611, - "theme": "grb", - "delete": 6, - "import": 24, - "locale": "nl", - "imagery": "osm", - "conflation": 172 - }, - "id": 120738436 - } - }, - { - "id": 120738248, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4451765, - 50.917189 - ], - [ - 5.4511777, - 50.917189 - ], - [ - 5.4511777, - 50.918946 - ], - [ - 5.4451765, - 50.918946 - ], - [ - 5.4451765, - 50.917189 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-09T09:29:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 67, - "modify": 199, - "delete": 3, - "area": 0.0000105441083999868, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 182, - "theme": "grb", - "delete": 3, - "import": 7, - "locale": "nl", - "imagery": "osm", - "conflation": 34 - }, - "id": 120738248 - } - }, - { - "id": 120738068, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4488631, - 50.9180905 - ], - [ - 5.4529536, - 50.9180905 - ], - [ - 5.4529536, - 50.922793 - ], - [ - 5.4488631, - 50.922793 - ], - [ - 5.4488631, - 50.9180905 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-09T09:25:07Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 20, - "modify": 268, - "delete": 10, - "area": 0.0000192355762500031, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 231, - "theme": "grb", - "import": 4, - "locale": "nl", - "imagery": "osm", - "conflation": 52 - }, - "id": 120738068 - } - }, - { - "id": 120736209, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.988477, - 43.3452759 - ], - [ - -3.988477, - 43.3452759 - ], - [ - -3.988477, - 43.3452759 - ], - [ - -3.988477, - 43.3452759 - ], - [ - -3.988477, - 43.3452759 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Ninopiña10", - "uid": "11138282", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-09T08:49:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 120736209 - } - }, - { - "id": 120735970, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.641443, - 47.3225692 - ], - [ - 9.641443, - 47.3225692 - ], - [ - 9.641443, - 47.3225692 - ], - [ - 9.641443, - 47.3225692 - ], - [ - 9.641443, - 47.3225692 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mcliquid", - "uid": "1213571", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-09T08:44:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 2 - }, - "id": 120735970 - } - }, - { - "id": 120733149, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2117132, - 41.5458995 - ], - [ - 2.2132922, - 41.5458995 - ], - [ - 2.2132922, - 41.5468769 - ], - [ - 2.2117132, - 41.5468769 - ], - [ - 2.2117132, - 41.5458995 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Moisès", - "uid": "12884230", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-09T07:36:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000154331460000563, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 120733149 - } - }, - { - "id": 120724011, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -72.2564001, - 43.7845398 - ], - [ - -72.2564001, - 43.7845398 - ], - [ - -72.2564001, - 43.7845398 - ], - [ - -72.2564001, - 43.7845398 - ], - [ - -72.2564001, - 43.7845398 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "A Hall", - "uid": "936117", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-09T02:28:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120724011 - } - }, - { - "id": 120722796, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -99.1715486, - 19.4255156 - ], - [ - -99.1715486, - 19.4255156 - ], - [ - -99.1715486, - 19.4255156 - ], - [ - -99.1715486, - 19.4255156 - ], - [ - -99.1715486, - 19.4255156 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-09T00:54:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osmfr", - "add-image": 1 - }, - "id": 120722796 - } - }, - { - "id": 120722214, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2319315, - -39.8446606 - ], - [ - -73.2318704, - -39.8446606 - ], - [ - -73.2318704, - -39.8445775 - ], - [ - -73.2319315, - -39.8445775 - ], - [ - -73.2319315, - -39.8446606 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-09T00:04:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 5.07740999955625e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "es", - "imagery": "HDM_HOT", - "add-image": 4 - }, - "id": 120722214 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-10.json b/Docs/Tools/stats/stats.2022-5-10.json deleted file mode 100644 index 397fac6a52..0000000000 --- a/Docs/Tools/stats/stats.2022-5-10.json +++ /dev/null @@ -1,3082 +0,0 @@ -{ - "features": [ - { - "id": 120813715, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.851323, - 50.7976572 - ], - [ - 3.3590464, - 50.7976572 - ], - [ - 3.3590464, - 51.0309932 - ], - [ - 2.851323, - 51.0309932 - ], - [ - 2.851323, - 50.7976572 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-10T23:25:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 9, - "modify": 0, - "delete": 0, - "area": 0.118470147262397, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 2, - "import": 7, - "locale": "nl", - "imagery": "AGIV", - "import:node/9731220089": "source: https://osm.org/note/3156351", - "import:node/9731264405": "source: https://osm.org/note/3156441", - "import:node/9731265898": "source: https://osm.org/note/3156445", - "import:node/9731265924": "source: https://osm.org/note/3156363", - "import:node/9731266648": "source: https://osm.org/note/3156348", - "import:node/9731266948": "source: https://osm.org/note/3156514", - "import:node/9731266949": "source: https://osm.org/note/3156462" - }, - "id": 120813715 - } - }, - { - "id": 120812691, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1067251, - 38.8455358 - ], - [ - 0.1067251, - 38.8455358 - ], - [ - 0.1067251, - 38.8455358 - ], - [ - 0.1067251, - 38.8455358 - ], - [ - 0.1067251, - 38.8455358 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-10T22:17:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "ca", - "imagery": "CartoDB.Voyager", - "change_within_1000m": 1 - }, - "id": 120812691 - } - }, - { - "id": 120809532, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7359211, - 48.3298646 - ], - [ - 11.7359211, - 48.3298646 - ], - [ - 11.7359211, - 48.3298646 - ], - [ - 11.7359211, - 48.3298646 - ], - [ - 11.7359211, - 48.3298646 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "onkelben866", - "uid": "14063915", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-10T20:05:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 8, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 9, - "locale": "de", - "imagery": "osm" - }, - "id": 120809532 - } - }, - { - "id": 120807384, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7317664, - 51.0552688 - ], - [ - 3.7335813, - 51.0552688 - ], - [ - 3.7335813, - 51.0557186 - ], - [ - 3.7317664, - 51.0557186 - ], - [ - 3.7317664, - 51.0552688 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "mietcls", - "uid": "15913740", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-10T18:58:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 5, - "delete": 0, - "area": 8.16342019997007e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 6, - "create": 2, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 120807384 - } - }, - { - "id": 120806190, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2971361, - 50.7863165 - ], - [ - 4.2971361, - 50.7863165 - ], - [ - 4.2971361, - 50.7863165 - ], - [ - 4.2971361, - 50.7863165 - ], - [ - 4.2971361, - 50.7863165 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-10T18:24:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 5, - "locale": "nl", - "imagery": "osm" - }, - "id": 120806190 - } - }, - { - "id": 120805867, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7104171, - 51.0373003 - ], - [ - 3.7104171, - 51.0373003 - ], - [ - 3.7104171, - 51.0373003 - ], - [ - 3.7104171, - 51.0373003 - ], - [ - 3.7104171, - 51.0373003 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-10T18:16:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/food.html", - "theme": "food", - "answer": 6, - "locale": "en", - "imagery": "osm", - "change_within_50m": 6 - }, - "id": 120805867 - } - }, - { - "id": 120805157, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-10T17:57:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "HDM_HOT", - "add-image": 1, - "change_within_5000m": 1 - }, - "id": 120805157 - } - }, - { - "id": 120804994, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.25102, - -39.8320848 - ], - [ - -73.2505177, - -39.8320848 - ], - [ - -73.2505177, - -39.8273032 - ], - [ - -73.25102, - -39.8273032 - ], - [ - -73.25102, - -39.8320848 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-10T17:51:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.00000240179767996707, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "HDM_HOT", - "add-image": 5, - "change_within_5000m": 5 - }, - "id": 120804994 - } - }, - { - "id": 120804027, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.58691, - 50.7708847 - ], - [ - 4.603364, - 50.7708847 - ], - [ - 4.603364, - 50.7836911 - ], - [ - 4.58691, - 50.7836911 - ], - [ - 4.58691, - 50.7708847 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Hilde OSM", - "uid": "15275790", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-10T17:22:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 5, - "modify": 12, - "delete": 0, - "area": 0.000210716505599927, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 17, - "create": 5, - "locale": "nl", - "imagery": "osm", - "add-image": 6, - "change_over_5000m": 29, - "move:node/9724554639": "improve_accuracy" - }, - "id": 120804027 - } - }, - { - "id": 120803919, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2322005, - 50.7313691 - ], - [ - 4.2322005, - 50.7313691 - ], - [ - 4.2322005, - 50.7313691 - ], - [ - 4.2322005, - 50.7313691 - ], - [ - 4.2322005, - 50.7313691 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-10T17:19:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 7, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_within_5000m": 7 - }, - "id": 120803919 - } - }, - { - "id": 120803744, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2343521, - 50.7327383 - ], - [ - 4.3390365, - 50.7327383 - ], - [ - 4.3390365, - 50.7415725 - ], - [ - 4.2343521, - 50.7415725 - ], - [ - 4.2343521, - 50.7327383 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-10T17:14:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 5, - "delete": 0, - "area": 0.000924802926479525, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 13, - "create": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 3, - "change_over_5000m": 17, - "change_within_5000m": 1 - }, - "id": 120803744 - } - }, - { - "id": 120799823, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2657101, - 50.7551109 - ], - [ - 4.2663037, - 50.7551109 - ], - [ - 4.2663037, - 50.7555304 - ], - [ - 4.2657101, - 50.7555304 - ], - [ - 4.2657101, - 50.7551109 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-10T15:42:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 5, - "delete": 0, - "area": 2.49015199999828e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 7, - "create": 4, - "locale": "nl", - "imagery": "osm", - "add-image": 3, - "change_over_5000m": 4, - "change_within_25m": 9, - "change_within_50m": 1 - }, - "id": 120799823 - } - }, - { - "id": 120799030, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -9.2873619, - 38.8185745 - ], - [ - -9.2872238, - 38.8185745 - ], - [ - -9.2872238, - 38.818609 - ], - [ - -9.2873619, - 38.818609 - ], - [ - -9.2873619, - 38.8185745 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Luice Marion", - "uid": "9490064", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-10T15:20:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 2, - "delete": 0, - "area": 4.76445000075897e-9, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 7, - "create": 2, - "locale": "en", - "imagery": "ORTOS_DGT_2018_WMS", - "change_over_5000m": 2, - "change_within_500m": 7 - }, - "id": 120799030 - } - }, - { - "id": 120796607, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2496558, - -39.830912 - ], - [ - -73.2496558, - -39.830912 - ], - [ - -73.2496558, - -39.830912 - ], - [ - -73.2496558, - -39.830912 - ], - [ - -73.2496558, - -39.830912 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-10T14:16:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120796607 - } - }, - { - "id": 120796593, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.149222, - 37.9797166 - ], - [ - -1.1153529, - 37.9797166 - ], - [ - -1.1153529, - 38.0068996 - ], - [ - -1.149222, - 38.0068996 - ], - [ - -1.149222, - 37.9797166 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 530, - "name": "Mapbox: Incorrect mapping" - } - ], - "tags": [], - "features": [ - { - "url": "way-306587199", - "osm_id": 306587199, - "reasons": [ - 530 - ], - "version": 5 - } - ], - "user": "lololailo", - "uid": "8621270", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-10T14:15:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 9, - "delete": 0, - "area": 0.000920663745299788, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "move": 1, - "theme": "aed", - "answer": 12, - "create": 3, - "locale": "es", - "imagery": "osm", - "move:node/9730192543": "improve_accuracy" - }, - "id": 120796593 - } - }, - { - "id": 120795016, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4647473, - 50.9170618 - ], - [ - 5.4679428, - 50.9170618 - ], - [ - 5.4679428, - 50.9208428 - ], - [ - 5.4647473, - 50.9208428 - ], - [ - 5.4647473, - 50.9170618 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-10T13:40:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 61, - "modify": 527, - "delete": 4, - "area": 0.0000120821855000128, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 468, - "theme": "grb", - "delete": 4, - "import": 9, - "locale": "nl", - "imagery": "osm", - "conflation": 122 - }, - "id": 120795016 - } - }, - { - "id": 120794993, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-10T13:40:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 5, - "theme": "grb", - "locale": "nl", - "imagery": "osm", - "conflation": 2 - }, - "id": 120794993 - } - }, - { - "id": 120793810, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4822592, - 51.0173869 - ], - [ - 4.4822592, - 51.0173869 - ], - [ - 4.4822592, - 51.0173869 - ], - [ - 4.4822592, - 51.0173869 - ], - [ - 4.4822592, - 51.0173869 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-10T13:15:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 120793810 - } - }, - { - "id": 120793653, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.466185, - 50.9172081 - ], - [ - 5.4723473, - 50.9172081 - ], - [ - 5.4723473, - 50.9200736 - ], - [ - 5.466185, - 50.9200736 - ], - [ - 5.466185, - 50.9172081 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 1, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-10T13:12:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 137, - "modify": 1013, - "delete": 43, - "area": 0.0000176580706499908, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 893, - "theme": "grb", - "delete": 43, - "import": 22, - "locale": "nl", - "imagery": "osm", - "conflation": 270 - }, - "id": 120793653 - } - }, - { - "id": 120793603, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4686946, - 50.9165438 - ], - [ - 5.4702712, - 50.9165438 - ], - [ - 5.4702712, - 50.9175513 - ], - [ - 5.4686946, - 50.9175513 - ], - [ - 5.4686946, - 50.9165438 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-10T13:11:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 13, - "modify": 44, - "delete": 2, - "area": 0.00000158842450000001, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 39, - "theme": "grb", - "delete": 2, - "import": 4, - "locale": "nl", - "imagery": "osm", - "conflation": 10 - }, - "id": 120793603 - } - }, - { - "id": 120792734, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2767473, - 53.213969 - ], - [ - 6.2767647, - 53.213969 - ], - [ - 6.2767647, - 53.2140205 - ], - [ - 6.2767473, - 53.2140205 - ], - [ - 6.2767473, - 53.213969 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-10T12:51:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 3, - "delete": 0, - "area": 8.96099999960165e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 4, - "create": 4, - "locale": "en", - "imagery": "Actueel_orthoHR_WMTS", - "change_over_5000m": 8 - }, - "id": 120792734 - } - }, - { - "id": 120792405, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.457712, - -34.6252336 - ], - [ - -58.4576878, - -34.6252336 - ], - [ - -58.4576878, - -34.625199 - ], - [ - -58.457712, - -34.625199 - ], - [ - -58.457712, - -34.6252336 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AgusQui", - "uid": "331218", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-10T12:44:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 8.37319999934868e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "answer": 14, - "locale": "en", - "imagery": "osm", - "change_within_25m": 14 - }, - "id": 120792405 - } - }, - { - "id": 120791664, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4608569, - 50.914801 - ], - [ - 5.4701171, - 50.914801 - ], - [ - 5.4701171, - 50.9192174 - ], - [ - 5.4608569, - 50.9192174 - ], - [ - 5.4608569, - 50.914801 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-10T12:28:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 68, - "modify": 986, - "delete": 9, - "area": 0.0000408967472800385, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 853, - "theme": "grb", - "delete": 9, - "import": 9, - "locale": "nl", - "imagery": "osm", - "conflation": 266 - }, - "id": 120791664 - } - }, - { - "id": 120791305, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3390365, - 50.7415725 - ], - [ - 4.3390365, - 50.7415725 - ], - [ - 4.3390365, - 50.7415725 - ], - [ - 4.3390365, - 50.7415725 - ], - [ - 4.3390365, - 50.7415725 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-10T12:19:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 4, - "import": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 5, - "import:node/9729925596": "source: https://osm.org/note/3091099" - }, - "id": 120791305 - } - }, - { - "id": 120789321, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5720681, - 50.8041532 - ], - [ - 4.5720681, - 50.8041532 - ], - [ - 4.5720681, - 50.8041532 - ], - [ - 4.5720681, - 50.8041532 - ], - [ - 4.5720681, - 50.8041532 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Turfje65", - "uid": "15863882", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-10T11:38:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 6, - "locale": "nl", - "imagery": "osm" - }, - "id": 120789321 - } - }, - { - "id": 120786710, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4302831, - 51.1785656 - ], - [ - 4.4303451, - 51.1785656 - ], - [ - 4.4303451, - 51.1785974 - ], - [ - 4.4302831, - 51.1785974 - ], - [ - 4.4302831, - 51.1785656 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "pi11", - "uid": "12066190", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-10T10:31:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.9716000001538e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/surveillance.html", - "theme": "surveillance", - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 120786710 - } - }, - { - "id": 120786267, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.9631704, - 53.4058384 - ], - [ - -2.9631704, - 53.4058384 - ], - [ - -2.9631704, - 53.4058384 - ], - [ - -2.9631704, - 53.4058384 - ], - [ - -2.9631704, - 53.4058384 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Adrian McEwen", - "uid": "55910", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-10T10:20:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 5, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 7, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 120786267 - } - }, - { - "id": 120785757, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7876863, - 53.0245418 - ], - [ - 11.7876863, - 53.0245418 - ], - [ - 11.7876863, - 53.0245418 - ], - [ - 11.7876863, - 53.0245418 - ], - [ - 11.7876863, - 53.0245418 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "micjoe", - "uid": "15079427", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-10T10:07:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "EsriWorldImagery", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 120785757 - } - }, - { - "id": 120785535, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4617076, - 50.9185465 - ], - [ - 5.4626992, - 50.9185465 - ], - [ - 5.4626992, - 50.9191469 - ], - [ - 5.4617076, - 50.9191469 - ], - [ - 5.4617076, - 50.9185465 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-10T10:02:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 45, - "delete": 1, - "area": 5.95356640003171e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 37, - "theme": "grb", - "delete": 1, - "locale": "nl", - "imagery": "osm", - "conflation": 16 - }, - "id": 120785535 - } - }, - { - "id": 120785470, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3984362, - 50.7928975 - ], - [ - 5.4015032, - 50.7928975 - ], - [ - 5.4015032, - 50.794697 - ], - [ - 5.3984362, - 50.794697 - ], - [ - 5.3984362, - 50.7928975 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-10T10:00:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 263, - "modify": 11, - "delete": 0, - "area": 0.00000551906649999048, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 10, - "theme": "grb", - "import": 34, - "locale": "nl", - "imagery": "AGIV", - "conflation": 2 - }, - "id": 120785470 - } - }, - { - "id": 120785272, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.459126, - 50.9188829 - ], - [ - 5.4617471, - 50.9188829 - ], - [ - 5.4617471, - 50.9200934 - ], - [ - 5.459126, - 50.9200934 - ], - [ - 5.459126, - 50.9188829 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-10T09:56:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 21, - "modify": 250, - "delete": 0, - "area": 0.00000317284154999746, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 220, - "theme": "grb", - "import": 3, - "locale": "nl", - "imagery": "osm", - "conflation": 68 - }, - "id": 120785272 - } - }, - { - "id": 120783116, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0178013, - 38.7931732 - ], - [ - 0.104075, - 38.7931732 - ], - [ - 0.104075, - 38.8393526 - ], - [ - 0.0178013, - 38.8393526 - ], - [ - 0.0178013, - 38.7931732 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9729432901", - "osm_id": 9729432901, - "reasons": [ - 43 - ], - "version": 1, - "primary_tags": { - "amenity": "bicycle_wash" - } - } - ], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-10T09:09:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 17, - "delete": 0, - "area": 0.00398406770177998, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 27, - "create": 1, - "locale": "ca", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 5, - "change_within_1000m": 9, - "change_within_5000m": 14 - }, - "id": 120783116 - } - }, - { - "id": 120783030, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1070147, - 38.8346457 - ], - [ - 0.1121244, - 38.8346457 - ], - [ - 0.1121244, - 38.8377795 - ], - [ - 0.1070147, - 38.8377795 - ], - [ - 0.1070147, - 38.8346457 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-10T09:07:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000160127778600026, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 3, - "locale": "ca", - "imagery": "CartoDB.Voyager", - "change_within_50m": 1, - "change_within_1000m": 2 - }, - "id": 120783030 - } - }, - { - "id": 120782971, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0952426, - 38.8392283 - ], - [ - 0.0954281, - 38.8392283 - ], - [ - 0.0954281, - 38.8394722 - ], - [ - 0.0952426, - 38.8394722 - ], - [ - 0.0952426, - 38.8392283 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #fritures", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-10T09:05:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 4.52434500001798e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/fritures.html", - "theme": "fritures", - "answer": 2, - "locale": "ca", - "imagery": "osm", - "change_within_5000m": 2 - }, - "id": 120782971 - } - }, - { - "id": 120781401, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.9872829, - 51.7605874 - ], - [ - 13.9880902, - 51.7605874 - ], - [ - 13.9880902, - 51.7608638 - ], - [ - 13.9872829, - 51.7608638 - ], - [ - 13.9872829, - 51.7605874 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "EnricoP71", - "uid": "15704807", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-10T08:27:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 2.23137720003357e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 120781401 - } - }, - { - "id": 120779320, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.8810921, - 43.259159 - ], - [ - -3.8037264, - 43.259159 - ], - [ - -3.8037264, - 43.3043428 - ], - [ - -3.8810921, - 43.3043428 - ], - [ - -3.8810921, - 43.259159 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Ninopiña10", - "uid": "11138282", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-10T07:42:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 6, - "modify": 7, - "delete": 0, - "area": 0.0034956763156603, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 14, - "create": 6, - "locale": "en", - "imagery": "osm", - "add-image": 6, - "change_over_5000m": 6, - "change_within_25m": 20 - }, - "id": 120779320 - } - }, - { - "id": 120777821, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4531617, - 50.9185925 - ], - [ - 5.4668404, - 50.9185925 - ], - [ - 5.4668404, - 50.9229729 - ], - [ - 5.4531617, - 50.9229729 - ], - [ - 5.4531617, - 50.9185925 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-10T07:09:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 199, - "modify": 1588, - "delete": 40, - "area": 0.0000599181774799332, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 1387, - "theme": "grb", - "delete": 40, - "import": 33, - "locale": "nl", - "imagery": "osm", - "conflation": 406 - }, - "id": 120777821 - } - }, - { - "id": 120775456, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.995714, - 48.499319 - ], - [ - 8.9962585, - 48.499319 - ], - [ - 8.9962585, - 48.499606 - ], - [ - 8.995714, - 48.499606 - ], - [ - 8.995714, - 48.499319 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-10T06:12:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.56271500000129e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "locale": "de", - "imagery": "HDM_HOT", - "add-image": 1, - "change_within_50m": 1 - }, - "id": 120775456 - } - }, - { - "id": 120775452, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2499418, - -39.8319456 - ], - [ - -73.2491687, - -39.8319456 - ], - [ - -73.2491687, - -39.8308828 - ], - [ - -73.2499418, - -39.8308828 - ], - [ - -73.2499418, - -39.8319456 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-10T06:12:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 6, - "delete": 0, - "area": 8.21650680003511e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "Mapbox", - "add-image": 6 - }, - "id": 120775452 - } - }, - { - "id": 120775243, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2498144, - -39.8314675 - ], - [ - -73.249475, - -39.8314675 - ], - [ - -73.249475, - -39.8310599 - ], - [ - -73.2498144, - -39.8310599 - ], - [ - -73.2498144, - -39.8314675 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-10T06:06:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 1.38339440001472e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "osm", - "add-image": 4 - }, - "id": 120775243 - } - }, - { - "id": 120774724, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2504649, - -39.8308524 - ], - [ - -73.2496427, - -39.8308524 - ], - [ - -73.2496427, - -39.8304546 - ], - [ - -73.2504649, - -39.8304546 - ], - [ - -73.2504649, - -39.8308524 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-10T05:53:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 10, - "delete": 0, - "area": 3.27071159996326e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "osm", - "add-image": 10 - }, - "id": 120774724 - } - }, - { - "id": 120774333, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2507963, - -39.8305903 - ], - [ - -73.2501681, - -39.8305903 - ], - [ - -73.2501681, - -39.8296324 - ], - [ - -73.2507963, - -39.8296324 - ], - [ - -73.2507963, - -39.8305903 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-10T05:42:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 6, - "delete": 0, - "area": 6.01752780005513e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "osm", - "add-image": 6 - }, - "id": 120774333 - } - }, - { - "id": 120774012, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.250695, - -39.8295367 - ], - [ - -73.2506879, - -39.8295367 - ], - [ - -73.2506879, - -39.829493 - ], - [ - -73.250695, - -39.829493 - ], - [ - -73.250695, - -39.8295367 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-10T05:32:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 3.10269999582803e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "osm", - "add-image": 2 - }, - "id": 120774012 - } - }, - { - "id": 120773568, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.250679, - -39.8294574 - ], - [ - -73.2505855, - -39.8294574 - ], - [ - -73.2505855, - -39.8287155 - ], - [ - -73.250679, - -39.8287155 - ], - [ - -73.250679, - -39.8294574 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-10T05:14:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 8, - "delete": 0, - "area": 6.93676500042161e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "osm", - "add-image": 8 - }, - "id": 120773568 - } - }, - { - "id": 120773337, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2506134, - -39.8290211 - ], - [ - -73.2506134, - -39.8290211 - ], - [ - -73.2506134, - -39.8290211 - ], - [ - -73.2506134, - -39.8290211 - ], - [ - -73.2506134, - -39.8290211 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-10T05:06:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 120773337 - } - }, - { - "id": 120769135, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.379049, - 52.5696113 - ], - [ - 13.379049, - 52.5696113 - ], - [ - 13.379049, - 52.5696113 - ], - [ - 13.379049, - 52.5696113 - ], - [ - 13.379049, - 52.5696113 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-10T00:18:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 120769135 - } - }, - { - "id": 120768965, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.250758, - -39.8286203 - ], - [ - -73.250758, - -39.8286203 - ], - [ - -73.250758, - -39.8286203 - ], - [ - -73.250758, - -39.8286203 - ], - [ - -73.250758, - -39.8286203 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-10T00:06:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "EsriWorldImageryClarity", - "add-image": 1 - }, - "id": 120768965 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-11.json b/Docs/Tools/stats/stats.2022-5-11.json deleted file mode 100644 index 8c6ccf1785..0000000000 --- a/Docs/Tools/stats/stats.2022-5-11.json +++ /dev/null @@ -1,1677 +0,0 @@ -{ - "features": [ - { - "id": 120860730, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4672495, - 50.8422286 - ], - [ - 4.4693218, - 50.8422286 - ], - [ - 4.4693218, - 50.8486457 - ], - [ - 4.4672495, - 50.8486457 - ], - [ - 4.4672495, - 50.8422286 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-11T22:35:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000132981563300005, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 2 - }, - "id": 120860730 - } - }, - { - "id": 120856013, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3991943, - 50.9064113 - ], - [ - 3.4023339, - 50.9064113 - ], - [ - 3.4023339, - 50.9074445 - ], - [ - 3.3991943, - 50.9074445 - ], - [ - 3.3991943, - 50.9064113 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-11T19:47:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000324383471998374, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", - "answer": 1, - "locale": "en", - "imagery": "AGIV", - "add-image": 2 - }, - "id": 120856013 - } - }, - { - "id": 120855468, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4026061, - 50.9072629 - ], - [ - 3.4027708, - 50.9072629 - ], - [ - 3.4027708, - 50.9073262 - ], - [ - 3.4026061, - 50.9073262 - ], - [ - 3.4026061, - 50.9072629 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-11T19:30:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.04255100001272e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 120855468 - } - }, - { - "id": 120855389, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3972841, - 50.9057477 - ], - [ - 3.4050942, - 50.9057477 - ], - [ - 3.4050942, - 50.9090516 - ], - [ - 3.3972841, - 50.9090516 - ], - [ - 3.3972841, - 50.9057477 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-11T19:27:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.0000258037893899919, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 5, - "change_over_5000m": 2 - }, - "id": 120855389 - } - }, - { - "id": 120854963, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.8463995, - 49.4199836 - ], - [ - 6.8463995, - 49.4199836 - ], - [ - 6.8463995, - 49.4199836 - ], - [ - 6.8463995, - 49.4199836 - ], - [ - 6.8463995, - 49.4199836 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "derFred", - "uid": "331548", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-11T19:16:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120854963 - } - }, - { - "id": 120854842, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.392292, - 50.848837 - ], - [ - 4.4007981, - 50.848837 - ], - [ - 4.4007981, - 50.8558079 - ], - [ - 4.392292, - 50.8558079 - ], - [ - 4.392292, - 50.848837 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-11T19:12:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.0000592951724899903, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 6 - }, - "id": 120854842 - } - }, - { - "id": 120849677, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2526657, - 50.7102411 - ], - [ - 4.2526657, - 50.7102411 - ], - [ - 4.2526657, - 50.7102411 - ], - [ - 4.2526657, - 50.7102411 - ], - [ - 4.2526657, - 50.7102411 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-11T16:38:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 4, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 4 - }, - "id": 120849677 - } - }, - { - "id": 120848795, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4402821, - 50.8408255 - ], - [ - 4.4425554, - 50.8408255 - ], - [ - 4.4425554, - 50.8417756 - ], - [ - 4.4402821, - 50.8417756 - ], - [ - 4.4402821, - 50.8408255 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-11T16:18:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.0000021598623299933, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 2 - }, - "id": 120848795 - } - }, - { - "id": 120848590, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5816479, - 50.883099 - ], - [ - 4.5816479, - 50.883099 - ], - [ - 4.5816479, - 50.883099 - ], - [ - 4.5816479, - 50.883099 - ], - [ - 4.5816479, - 50.883099 - ] - ] - ] - }, - "properties": { - "check_user": "L'imaginaire", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Janimatie", - "uid": "15735226", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-11T16:12:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-05-15T15:38:35.526745Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 120848590 - } - }, - { - "id": 120845688, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4717551, - 50.9121989 - ], - [ - 4.4723659, - 50.9121989 - ], - [ - 4.4723659, - 50.9126307 - ], - [ - 4.4717551, - 50.9126307 - ], - [ - 4.4717551, - 50.9121989 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-11T15:02:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 2.63743440000553e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 3, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 3 - }, - "id": 120845688 - } - }, - { - "id": 120845664, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1898322, - 50.9119775 - ], - [ - 3.1952258, - 50.9119775 - ], - [ - 3.1952258, - 50.9148808 - ], - [ - 3.1898322, - 50.9148808 - ], - [ - 3.1898322, - 50.9119775 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Tim Couwelier", - "uid": "7246683", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-11T15:02:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 315, - "modify": 0, - "delete": 0, - "area": 0.0000156592388799981, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "theme": "grb", - "import": 48, - "locale": "nl", - "imagery": "AGIVFlandersGRB" - }, - "id": 120845664 - } - }, - { - "id": 120845653, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Tim Couwelier", - "uid": "7246683", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-11T15:01:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "theme": "grb", - "import": 2, - "locale": "nl", - "imagery": "AGIVFlandersGRB" - }, - "id": 120845653 - } - }, - { - "id": 120845493, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1892911, - 50.9126946 - ], - [ - 3.1906945, - 50.9126946 - ], - [ - 3.1906945, - 50.9148603 - ], - [ - 3.1892911, - 50.9148603 - ], - [ - 3.1892911, - 50.9126946 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Tim Couwelier", - "uid": "7246683", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-11T14:58:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 160, - "modify": 0, - "delete": 0, - "area": 0.00000303934337999878, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "theme": "grb", - "import": 29, - "locale": "nl", - "imagery": "AGIVFlandersGRB" - }, - "id": 120845493 - } - }, - { - "id": 120842166, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.721699, - 51.0268317 - ], - [ - 3.7218979, - 51.0268317 - ], - [ - 3.7218979, - 51.0269374 - ], - [ - 3.721699, - 51.0269374 - ], - [ - 3.721699, - 51.0268317 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-11T13:49:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 2.10237299997767e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 4, - "locale": "en", - "imagery": "osm", - "change_within_5000m": 4 - }, - "id": 120842166 - } - }, - { - "id": 120840202, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4862677, - 50.8541587 - ], - [ - 4.4869415, - 50.8541587 - ], - [ - 4.4869415, - 50.8545056 - ], - [ - 4.4862677, - 50.8545056 - ], - [ - 4.4862677, - 50.8541587 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-11T13:07:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 8, - "delete": 0, - "area": 2.33741220002705e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 5, - "locale": "nl", - "imagery": "osm", - "add-image": 6, - "change_within_25m": 11 - }, - "id": 120840202 - } - }, - { - "id": 120834121, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3142972, - 50.8431942 - ], - [ - 3.3157257, - 50.8431942 - ], - [ - 3.3157257, - 50.8440835 - ], - [ - 3.3142972, - 50.8440835 - ], - [ - 3.3142972, - 50.8431942 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-11T11:01:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 7, - "modify": 0, - "delete": 0, - "area": 0.00000127036505000641, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 7, - "create": 4, - "import": 3, - "locale": "nl", - "imagery": "AGIV", - "change_over_5000m": 7, - "change_within_25m": 6, - "change_within_50m": 1, - "import:node/9732382301": "source: https://osm.org/note/3156439", - "import:node/9732406100": "source: https://osm.org/note/3156465", - "import:node/9732421985": "source: https://osm.org/note/3156339" - }, - "id": 120834121 - } - }, - { - "id": 120833514, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.8406551, - 43.2991622 - ], - [ - -3.8406551, - 43.2991622 - ], - [ - -3.8406551, - 43.2991622 - ], - [ - -3.8406551, - 43.2991622 - ], - [ - -3.8406551, - 43.2991622 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Ninopiña10", - "uid": "11138282", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-11T10:48:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 120833514 - } - }, - { - "id": 120831510, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3052056, - 51.075126 - ], - [ - 5.3052056, - 51.075126 - ], - [ - 5.3052056, - 51.075126 - ], - [ - 5.3052056, - 51.075126 - ], - [ - 5.3052056, - 51.075126 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mjans", - "uid": "5199038", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-11T10:02:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "import": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_50m": 1, - "import:node/9732245715": "source: https://osm.org/note/3044384" - }, - "id": 120831510 - } - }, - { - "id": 120830059, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3972841, - 50.9057477 - ], - [ - 3.3972841, - 50.9057477 - ], - [ - 3.3972841, - 50.9057477 - ], - [ - 3.3972841, - 50.9057477 - ], - [ - 3.3972841, - 50.9057477 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-11T09:30:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 1, - "import": 1, - "locale": "nl", - "imagery": "AGIV", - "change_over_5000m": 1, - "change_within_25m": 1, - "import:node/9732140863": "source: https://osm.org/note/3156487" - }, - "id": 120830059 - } - }, - { - "id": 120825038, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2802489, - 53.2143405 - ], - [ - 6.2802489, - 53.2143405 - ], - [ - 6.2802489, - 53.2143405 - ], - [ - 6.2802489, - 53.2143405 - ], - [ - 6.2802489, - 53.2143405 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-11T07:37:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 2 - }, - "id": 120825038 - } - }, - { - "id": 120823176, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.7752068, - 59.9263529 - ], - [ - 10.7752068, - 59.9263529 - ], - [ - 10.7752068, - 59.9263529 - ], - [ - 10.7752068, - 59.9263529 - ], - [ - 10.7752068, - 59.9263529 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Krissmed", - "uid": "14675238", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-11T06:51:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 6, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 10, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120823176 - } - }, - { - "id": 120822976, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7182149, - 50.8940287 - ], - [ - 4.7186369, - 50.8940287 - ], - [ - 4.7186369, - 50.8949163 - ], - [ - 4.7182149, - 50.8949163 - ], - [ - 4.7182149, - 50.8940287 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Els Brouwers", - "uid": "15461605", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-11T06:46:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 2, - "delete": 0, - "area": 3.7456719999897e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "create": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 2, - "change_within_25m": 4 - }, - "id": 120822976 - } - }, - { - "id": 120821197, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5396399, - 47.3762817 - ], - [ - 8.5396399, - 47.3762817 - ], - [ - 8.5396399, - 47.3762817 - ], - [ - 8.5396399, - 47.3762817 - ], - [ - 8.5396399, - 47.3762817 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mottiger", - "uid": "7504544", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-11T06:00:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120821197 - } - }, - { - "id": 120817078, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.0828364, - 49.4364575 - ], - [ - 11.0908071, - 49.4364575 - ], - [ - 11.0908071, - 49.4373176 - ], - [ - 11.0828364, - 49.4373176 - ], - [ - 11.0828364, - 49.4364575 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mrey", - "uid": "6089796", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-11T03:28:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.00000685559906997596, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 5, - "locale": "de", - "imagery": "osm", - "change_within_500m": 5 - }, - "id": 120817078 - } - }, - { - "id": 120817047, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.0878667, - 49.4367579 - ], - [ - 11.0883751, - 49.4367579 - ], - [ - 11.0883751, - 49.4369486 - ], - [ - 11.0878667, - 49.4369486 - ], - [ - 11.0878667, - 49.4367579 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mrey", - "uid": "6089796", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-11T03:25:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 9.69518799989007e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/entrances.html", - "theme": "entrances", - "answer": 6, - "locale": "en", - "imagery": "osm", - "change_within_25m": 4, - "change_within_50m": 2 - }, - "id": 120817047 - } - }, - { - "id": 120816626, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -74.0220629, - 40.5763899 - ], - [ - -73.941154, - 40.5763899 - ], - [ - -73.941154, - 40.6191994 - ], - [ - -74.0220629, - 40.6191994 - ], - [ - -74.0220629, - 40.5763899 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "MxxCon", - "uid": "384667", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-11T02:55:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 21, - "delete": 0, - "area": 0.00346366955454964, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "answer": 25, - "locale": "en", - "imagery": "osm", - "soft-delete": 1, - "change_over_5000m": 3, - "change_within_500m": 2, - "change_within_1000m": 7, - "change_within_5000m": 9, - "soft-delete:way/249728013": "shop_closed" - }, - "id": 120816626 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-12.json b/Docs/Tools/stats/stats.2022-5-12.json deleted file mode 100644 index ca5c23c70d..0000000000 --- a/Docs/Tools/stats/stats.2022-5-12.json +++ /dev/null @@ -1,1178 +0,0 @@ -{ - "features": [ - { - "id": 120908885, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2158167, - -39.8332752 - ], - [ - -73.2151554, - -39.8332752 - ], - [ - -73.2151554, - -39.8330683 - ], - [ - -73.2158167, - -39.8330683 - ], - [ - -73.2158167, - -39.8332752 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-12T23:29:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 5, - "delete": 0, - "area": 1.36822970002242e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 2, - "create": 2, - "locale": "en", - "imagery": "Mapbox", - "add-image": 3 - }, - "id": 120908885 - } - }, - { - "id": 120904993, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4661208, - 51.1448664 - ], - [ - 4.466192, - 51.1448664 - ], - [ - 4.466192, - 51.144912 - ], - [ - 4.4661208, - 51.144912 - ], - [ - 4.4661208, - 51.1448664 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "orchi_osm", - "uid": "8887512", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-12T20:11:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 3.24672000003111e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 120904993 - } - }, - { - "id": 120903647, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7087877, - 50.9218351 - ], - [ - 3.3333267, - 50.9218351 - ], - [ - 3.3333267, - 51.0482345 - ], - [ - 2.7087877, - 51.0482345 - ], - [ - 2.7087877, - 50.9218351 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-12T19:27:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 7, - "modify": 0, - "delete": 0, - "area": 0.0789413548765981, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "import": 7, - "locale": "nl", - "imagery": "AGIV", - "import:node/9735723114": "source: https://osm.org/note/3156516", - "import:node/9735740989": "source: https://osm.org/note/3156464", - "import:node/9735741235": "source: https://osm.org/note/3156496", - "import:node/9735743220": "source: https://osm.org/note/3156560", - "import:node/9735763502": "source: https://osm.org/note/3156377", - "import:node/9735779631": "source: https://osm.org/note/3156384", - "import:node/9735833261": "source: https://osm.org/note/3156257" - }, - "id": 120903647 - } - }, - { - "id": 120902380, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3843428, - 50.866721 - ], - [ - 4.3843428, - 50.866721 - ], - [ - 4.3843428, - 50.866721 - ], - [ - 4.3843428, - 50.866721 - ], - [ - 4.3843428, - 50.866721 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-12T18:52:07Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 120902380 - } - }, - { - "id": 120901632, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -57.1506663, - -26.6682613 - ], - [ - -57.1506663, - -26.6682613 - ], - [ - -57.1506663, - -26.6682613 - ], - [ - -57.1506663, - -26.6682613 - ], - [ - -57.1506663, - -26.6682613 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ToMaps_py", - "uid": "5731101", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-12T18:28:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120901632 - } - }, - { - "id": 120898574, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1056933, - 38.8279555 - ], - [ - 0.1068975, - 38.8279555 - ], - [ - 0.1068975, - 38.8281408 - ], - [ - 0.1056933, - 38.8281408 - ], - [ - 0.1056933, - 38.8279555 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-12T16:59:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 2.23138259997927e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "answer": 4, - "create": 1, - "locale": "ca", - "imagery": "PNOA-Spain", - "add-image": 2, - "change_over_5000m": 1, - "change_within_25m": 6 - }, - "id": 120898574 - } - }, - { - "id": 120896876, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4275114, - 50.8212686 - ], - [ - 4.4275114, - 50.8212686 - ], - [ - 4.4275114, - 50.8212686 - ], - [ - 4.4275114, - 50.8212686 - ], - [ - 4.4275114, - 50.8212686 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "StefDeGreef", - "uid": "1860737", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-12T16:09:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 120896876 - } - }, - { - "id": 120896714, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.6347075, - 45.0408326 - ], - [ - 7.7047034, - 45.0408326 - ], - [ - 7.7047034, - 45.0868281 - ], - [ - 7.6347075, - 45.0868281 - ], - [ - 7.6347075, - 45.0408326 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "madbob", - "uid": "734100", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-12T16:04:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 132, - "delete": 0, - "area": 0.00321949641844973, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 188, - "locale": "en", - "imagery": "osm" - }, - "id": 120896714 - } - }, - { - "id": 120896533, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.9538498, - 51.6130531 - ], - [ - -3.9532171, - 51.6130531 - ], - [ - -3.9532171, - 51.6133691 - ], - [ - -3.9538498, - 51.6133691 - ], - [ - -3.9538498, - 51.6130531 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Gerrit Niezen", - "uid": "11595943", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-12T16:00:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.99933199998773e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "locale": "en", - "imagery": "osm", - "soft-delete": 1, - "soft-delete:way/97752096": "disused" - }, - "id": 120896533 - } - }, - { - "id": 120896012, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2775745, - 53.2135691 - ], - [ - 6.2775745, - 53.2135691 - ], - [ - 6.2775745, - 53.2135691 - ], - [ - 6.2775745, - 53.2135691 - ], - [ - 6.2775745, - 53.2135691 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #aed_brugge", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-12T15:46:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed_brugge.html", - "theme": "aed_brugge", - "answer": 5, - "locale": "nl", - "imagery": "HDM_HOT", - "change_within_1000m": 5 - }, - "id": 120896012 - } - }, - { - "id": 120895072, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2550518, - 53.2224191 - ], - [ - 6.2854626, - 53.2224191 - ], - [ - 6.2854626, - 53.2371394 - ], - [ - 6.2550518, - 53.2371394 - ], - [ - 6.2550518, - 53.2224191 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-12T15:28:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 17, - "delete": 0, - "area": 0.000447656099239789, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 27, - "locale": "en", - "imagery": "osm", - "change_within_5000m": 27 - }, - "id": 120895072 - } - }, - { - "id": 120874163, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1813416, - 50.915569 - ], - [ - 3.1866062, - 50.915569 - ], - [ - 3.1866062, - 50.9175136 - ], - [ - 3.1813416, - 50.9175136 - ], - [ - 3.1813416, - 50.915569 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Tim Couwelier", - "uid": "7246683", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-12T08:05:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 380, - "modify": 13, - "delete": 2, - "area": 0.0000102375411600083, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 9, - "theme": "grb", - "answer": 3, - "delete": 2, - "import": 53, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "conflation": 4 - }, - "id": 120874163 - } - }, - { - "id": 120871292, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.4220119, - 36.9028378 - ], - [ - -3.4220119, - 36.9028378 - ], - [ - -3.4220119, - 36.9028378 - ], - [ - -3.4220119, - 36.9028378 - ], - [ - -3.4220119, - 36.9028378 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "vokki", - "uid": "15931327", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-12T06:57:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "PNOA-Spain-TMS" - }, - "id": 120871292 - } - }, - { - "id": 120869985, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4027252, - 50.9068627 - ], - [ - 3.4030804, - 50.9068627 - ], - [ - 3.4030804, - 50.907125 - ], - [ - 3.4027252, - 50.907125 - ], - [ - 3.4027252, - 50.9068627 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-12T06:26:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 9.31689600010031e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 120869985 - } - }, - { - "id": 120867651, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 26.3317877, - 42.6832951 - ], - [ - 26.3317877, - 42.6832951 - ], - [ - 26.3317877, - 42.6832951 - ], - [ - 26.3317877, - 42.6832951 - ], - [ - 26.3317877, - 42.6832951 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Vangarov", - "uid": "15880565", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-12T05:18:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "create": 1, - "locale": "nl", - "imagery": "EsriWorldImagery" - }, - "id": 120867651 - } - }, - { - "id": 120862800, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0184631, - 38.8498922 - ], - [ - 0.0212768, - 38.8498922 - ], - [ - 0.0212768, - 38.8518963 - ], - [ - 0.0184631, - 38.8518963 - ], - [ - 0.0184631, - 38.8498922 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-12T00:42:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.00000563893617000174, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 5, - "locale": "ca", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 5 - }, - "id": 120862800 - } - }, - { - "id": 120862757, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0977057, - 38.8355696 - ], - [ - 0.104868, - 38.8355696 - ], - [ - 0.104868, - 38.8393853 - ], - [ - 0.0977057, - 38.8393853 - ], - [ - 0.0977057, - 38.8355696 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-12T00:40:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.0000273291881099784, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 9, - "locale": "ca", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 9 - }, - "id": 120862757 - } - }, - { - "id": 120862749, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1124729, - 38.837982 - ], - [ - 0.1124729, - 38.837982 - ], - [ - 0.1124729, - 38.837982 - ], - [ - 0.1124729, - 38.837982 - ], - [ - 0.1124729, - 38.837982 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-12T00:39:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 1, - "locale": "ca", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 120862749 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-13.json b/Docs/Tools/stats/stats.2022-5-13.json deleted file mode 100644 index 924cceab13..0000000000 --- a/Docs/Tools/stats/stats.2022-5-13.json +++ /dev/null @@ -1,1288 +0,0 @@ -{ - "features": [ - { - "id": 120955711, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7273613, - 51.0427599 - ], - [ - 3.7273613, - 51.0427599 - ], - [ - 3.7273613, - 51.0427599 - ], - [ - 3.7273613, - 51.0427599 - ], - [ - 3.7273613, - 51.0427599 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-13T21:31:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", - "theme": "cyclofix", - "answer": 4, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 4 - }, - "id": 120955711 - } - }, - { - "id": 120953796, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2328835, - 50.7346822 - ], - [ - 4.2329675, - 50.7346822 - ], - [ - 4.2329675, - 50.7348092 - ], - [ - 4.2328835, - 50.7348092 - ], - [ - 4.2328835, - 50.7346822 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-13T20:27:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 1.06679999999492e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 3, - "create": 2, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_50m": 3 - }, - "id": 120953796 - } - }, - { - "id": 120953793, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3066018, - 52.5180571 - ], - [ - 13.4185865, - 52.5180571 - ], - [ - 13.4185865, - 52.5812635 - ], - [ - 13.3066018, - 52.5812635 - ], - [ - 13.3066018, - 52.5180571 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 87, - "name": "Irrelevant tags on highway" - } - ], - "tags": [], - "features": [ - { - "url": "way-237716417", - "name": "Golda-Meir-Steg", - "osm_id": 237716417, - "reasons": [ - 87 - ], - "version": 16, - "primary_tags": { - "highway": "footway" - } - } - ], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-13T20:27:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 90, - "delete": 0, - "area": 0.00707814974207988, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 102, - "locale": "de", - "imagery": "osm" - }, - "id": 120953793 - } - }, - { - "id": 120949998, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2202923, - 50.748141 - ], - [ - 4.2202923, - 50.748141 - ], - [ - 4.2202923, - 50.748141 - ], - [ - 4.2202923, - 50.748141 - ], - [ - 4.2202923, - 50.748141 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9042426135", - "name": "Fietsbieb Halle", - "osm_id": 9042426135, - "reasons": [ - 43 - ], - "version": 4, - "primary_tags": { - "amenity": "bicycle_library" - } - } - ], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-13T18:42:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_within_5000m": 1 - }, - "id": 120949998 - } - }, - { - "id": 120949018, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7273613, - 51.0427599 - ], - [ - 3.7273613, - 51.0427599 - ], - [ - 3.7273613, - 51.0427599 - ], - [ - 3.7273613, - 51.0427599 - ], - [ - 3.7273613, - 51.0427599 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-13T18:14:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", - "theme": "cyclofix", - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1 - }, - "id": 120949018 - } - }, - { - "id": 120946554, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2354423, - 50.7343554 - ], - [ - 4.2354423, - 50.7343554 - ], - [ - 4.2354423, - 50.7343554 - ], - [ - 4.2354423, - 50.7343554 - ], - [ - 4.2354423, - 50.7343554 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-13T17:08:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 6, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 6 - }, - "id": 120946554 - } - }, - { - "id": 120944469, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.4392296, - 55.8524325 - ], - [ - 37.4392296, - 55.8524325 - ], - [ - 37.4392296, - 55.8524325 - ], - [ - 37.4392296, - 55.8524325 - ], - [ - 37.4392296, - 55.8524325 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "somix", - "uid": "12176526", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-13T16:18:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 6, - "locale": "en", - "imagery": "osm", - "change_within_500m": 6 - }, - "id": 120944469 - } - }, - { - "id": 120941137, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9669723, - 50.3062213 - ], - [ - 5.7125495, - 50.3062213 - ], - [ - 5.7125495, - 51.1762922 - ], - [ - 4.9669723, - 51.1762922 - ], - [ - 4.9669723, - 50.3062213 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "bavh", - "uid": "30514", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-13T15:01:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 15, - "delete": 0, - "area": 0.648705025423481, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations", - "move": 1, - "theme": "charging_stations", - "answer": 20, - "locale": "en", - "imagery": "CartoDB.Voyager", - "move:node/7184050483": "improve_accuracy" - }, - "id": 120941137 - } - }, - { - "id": 120937607, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2416398, - 50.7423322 - ], - [ - 4.241777, - 50.7423322 - ], - [ - 4.241777, - 50.7423853 - ], - [ - 4.2416398, - 50.7423853 - ], - [ - 4.2416398, - 50.7423322 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-13T13:53:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 5, - "delete": 0, - "area": 7.28532000033279e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix", - "move": 1, - "theme": "cyclofix", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "add-image": 1, - "change_over_5000m": 1, - "change_within_5000m": 6, - "move:node/9207458590": "improve_accuracy" - }, - "id": 120937607 - } - }, - { - "id": 120937450, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3490074, - 51.3583946 - ], - [ - 3.3490074, - 51.3583946 - ], - [ - 3.3490074, - 51.3583946 - ], - [ - 3.3490074, - 51.3583946 - ], - [ - 3.3490074, - 51.3583946 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-13T13:50:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 120937450 - } - }, - { - "id": 120936490, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.5901804, - 48.0215783 - ], - [ - 10.5901804, - 48.0215783 - ], - [ - 10.5901804, - 48.0215783 - ], - [ - 10.5901804, - 48.0215783 - ], - [ - 10.5901804, - 48.0215783 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-13T13:23:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 9, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 12, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 120936490 - } - }, - { - "id": 120935956, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0324011, - 38.7961369 - ], - [ - 0.0975851, - 38.7961369 - ], - [ - 0.0975851, - 38.8390413 - ], - [ - 0.0324011, - 38.8390413 - ], - [ - 0.0324011, - 38.7961369 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-13T13:10:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0.00279668040959984, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "create": 1, - "locale": "ca", - "imagery": "cyclosm" - }, - "id": 120935956 - } - }, - { - "id": 120933362, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1132741, - 38.8340481 - ], - [ - 0.1132741, - 38.8340481 - ], - [ - 0.1132741, - 38.8340481 - ], - [ - 0.1132741, - 38.8340481 - ], - [ - 0.1132741, - 38.8340481 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-13T12:09:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "answer": 1, - "locale": "ca", - "imagery": "HDM_HOT", - "change_over_5000m": 1 - }, - "id": 120933362 - } - }, - { - "id": 120932739, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4370437, - 50.9022725 - ], - [ - 5.469224, - 50.9022725 - ], - [ - 5.469224, - 50.9223747 - ], - [ - 5.4370437, - 50.9223747 - ], - [ - 5.4370437, - 50.9022725 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-13T11:56:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 615, - "modify": 2305, - "delete": 40, - "area": 0.000646894826659879, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 2028, - "theme": "grb", - "delete": 40, - "import": 97, - "locale": "nl", - "imagery": "osm", - "conflation": 578 - }, - "id": 120932739 - } - }, - { - "id": 120932394, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4565889, - 50.9164403 - ], - [ - 5.4623947, - 50.9164403 - ], - [ - 5.4623947, - 50.9207158 - ], - [ - 5.4565889, - 50.9207158 - ], - [ - 5.4565889, - 50.9164403 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-13T11:49:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 22, - "modify": 324, - "delete": 5, - "area": 0.0000248226979000332, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 293, - "theme": "grb", - "delete": 5, - "import": 5, - "locale": "nl", - "imagery": "osm", - "conflation": 84 - }, - "id": 120932394 - } - }, - { - "id": 120930463, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2209162, - 48.7840022 - ], - [ - 2.3734067, - 48.7840022 - ], - [ - 2.3734067, - 48.9198854 - ], - [ - 2.2209162, - 48.9198854 - ], - [ - 2.2209162, - 48.7840022 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wagner51", - "uid": "11699", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-13T11:08:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 8, - "delete": 0, - "area": 0.0207208971095992, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations", - "theme": "charging_stations", - "answer": 14, - "locale": "fr", - "imagery": "CartoDB.Voyager" - }, - "id": 120930463 - } - }, - { - "id": 120929304, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.419071, - 50.9788967 - ], - [ - 4.438021, - 50.9788967 - ], - [ - 4.438021, - 50.9799808 - ], - [ - 4.419071, - 50.9799808 - ], - [ - 4.419071, - 50.9788967 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Janimatie", - "uid": "15735226", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-13T10:41:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 2, - "delete": 0, - "area": 0.0000205436949999988, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 7, - "create": 2, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_5000m": 7 - }, - "id": 120929304 - } - }, - { - "id": 120924883, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4591777, - 50.9176296 - ], - [ - 5.471333, - 50.9176296 - ], - [ - 5.471333, - 50.9226577 - ], - [ - 5.4591777, - 50.9226577 - ], - [ - 5.4591777, - 50.9176296 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-13T09:15:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 221, - "modify": 1130, - "delete": 27, - "area": 0.000061118063930049, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 983, - "theme": "grb", - "delete": 27, - "import": 37, - "locale": "nl", - "imagery": "osm", - "conflation": 310 - }, - "id": 120924883 - } - }, - { - "id": 120910073, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2156318, - -39.8333614 - ], - [ - -73.2145631, - -39.8333614 - ], - [ - -73.2145631, - -39.832349 - ], - [ - -73.2156318, - -39.832349 - ], - [ - -73.2156318, - -39.8333614 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-13T01:04:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.00000108195187999087, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "HDM_HOT", - "add-image": 7 - }, - "id": 120910073 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-14.json b/Docs/Tools/stats/stats.2022-5-14.json deleted file mode 100644 index 80101fad1f..0000000000 --- a/Docs/Tools/stats/stats.2022-5-14.json +++ /dev/null @@ -1,1199 +0,0 @@ -{ - "features": [ - { - "id": 120995001, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1036522, - 38.833928 - ], - [ - 0.1036721, - 38.833928 - ], - [ - 0.1036721, - 38.834032 - ], - [ - 0.1036522, - 38.834032 - ], - [ - 0.1036522, - 38.833928 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-14T22:47:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 1, - "delete": 0, - "area": 2.06960000000683e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 5, - "create": 2, - "locale": "ca", - "imagery": "PNOA-Spain", - "change_over_5000m": 2, - "change_within_25m": 5 - }, - "id": 120995001 - } - }, - { - "id": 120994937, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2323441, - -39.8163691 - ], - [ - -73.2323441, - -39.8163691 - ], - [ - -73.2323441, - -39.8163691 - ], - [ - -73.2323441, - -39.8163691 - ], - [ - -73.2323441, - -39.8163691 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-14T22:44:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osm", - "add-image": 1 - }, - "id": 120994937 - } - }, - { - "id": 120993541, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3173465, - 50.836684 - ], - [ - 4.3173465, - 50.836684 - ], - [ - 4.3173465, - 50.836684 - ], - [ - 4.3173465, - 50.836684 - ], - [ - 4.3173465, - 50.836684 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #ghostbikes", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-14T21:23:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/ghostbikes.html", - "theme": "ghostbikes", - "locale": "nl", - "imagery": "CartoDB.Positron", - "add-image": 1 - }, - "id": 120993541 - } - }, - { - "id": 120993519, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2235102, - 51.2016792 - ], - [ - 3.2235102, - 51.2016792 - ], - [ - 3.2235102, - 51.2016792 - ], - [ - 3.2235102, - 51.2016792 - ], - [ - 3.2235102, - 51.2016792 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Arx - 83", - "uid": "9282195", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-14T21:21:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork", - "theme": "artwork", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "change_within_500m": 2 - }, - "id": 120993519 - } - }, - { - "id": 120986049, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1047537, - 38.8364764 - ], - [ - 0.1074812, - 38.8364764 - ], - [ - 0.1074812, - 38.8382786 - ], - [ - 0.1047537, - 38.8382786 - ], - [ - 0.1047537, - 38.8364764 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-14T16:42:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 5, - "delete": 0, - "area": 0.00000491550050000053, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 7, - "create": 1, - "locale": "ca", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 8 - }, - "id": 120986049 - } - }, - { - "id": 120985573, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.251168, - -39.8318721 - ], - [ - -73.251168, - -39.8318721 - ], - [ - -73.251168, - -39.8318721 - ], - [ - -73.251168, - -39.8318721 - ], - [ - -73.251168, - -39.8318721 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-14T16:26:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "HDM_HOT", - "add-image": 1 - }, - "id": 120985573 - } - }, - { - "id": 120985441, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1062038, - 38.836688 - ], - [ - 0.1070346, - 38.836688 - ], - [ - 0.1070346, - 38.8371084 - ], - [ - 0.1062038, - 38.8371084 - ], - [ - 0.1062038, - 38.836688 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-14T16:22:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 3.49268319996574e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 2, - "locale": "ca", - "imagery": "osm", - "change_over_5000m": 2 - }, - "id": 120985441 - } - }, - { - "id": 120985421, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0979345, - 38.8381481 - ], - [ - 0.0985039, - 38.8381481 - ], - [ - 0.0985039, - 38.8384945 - ], - [ - 0.0979345, - 38.8384945 - ], - [ - 0.0979345, - 38.8381481 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-14T16:21:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.97240160002894e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "answer": 1, - "locale": "ca", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 120985421 - } - }, - { - "id": 120985360, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1122207, - 38.8377625 - ], - [ - 0.1122207, - 38.8377625 - ], - [ - 0.1122207, - 38.8377625 - ], - [ - 0.1122207, - 38.8377625 - ], - [ - 0.1122207, - 38.8377625 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-14T16:19:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/nature.html", - "theme": "nature", - "answer": 2, - "locale": "ca", - "imagery": "osm", - "change_over_5000m": 2 - }, - "id": 120985360 - } - }, - { - "id": 120985330, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1115454, - 38.8376777 - ], - [ - 0.1122083, - 38.8376777 - ], - [ - 0.1122083, - 38.8384425 - ], - [ - 0.1115454, - 38.8384425 - ], - [ - 0.1115454, - 38.8376777 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-14T16:19:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 5.06985919999266e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 2, - "locale": "ca", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 2 - }, - "id": 120985330 - } - }, - { - "id": 120985124, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7863934, - -34.6513029 - ], - [ - -58.7863934, - -34.6513029 - ], - [ - -58.7863934, - -34.6513029 - ], - [ - -58.7863934, - -34.6513029 - ], - [ - -58.7863934, - -34.6513029 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AgusQui", - "uid": "331218", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-14T16:12:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 120985124 - } - }, - { - "id": 120983016, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0344643, - 38.7934335 - ], - [ - 0.0344643, - 38.7934335 - ], - [ - 0.0344643, - 38.7934335 - ], - [ - 0.0344643, - 38.7934335 - ], - [ - 0.0344643, - 38.7934335 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-14T15:03:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 1, - "locale": "ca", - "imagery": "CartoDB.Voyager", - "change_within_25m": 1 - }, - "id": 120983016 - } - }, - { - "id": 120982766, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3004131, - 52.5381048 - ], - [ - 13.3506121, - 52.5381048 - ], - [ - 13.3506121, - 52.5715185 - ], - [ - 13.3004131, - 52.5715185 - ], - [ - 13.3004131, - 52.5381048 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-14T14:58:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00167733432630018, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 4, - "locale": "de", - "imagery": "osm" - }, - "id": 120982766 - } - }, - { - "id": 120975177, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -117.1972375, - 32.7260576 - ], - [ - -7.8970443, - 32.7260576 - ], - [ - -7.8970443, - 37.0361441 - ], - [ - -117.1972375, - 37.0361441 - ], - [ - -117.1972375, - 32.7260576 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Alexmol", - "uid": "347293", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-14T11:28:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 7, - "delete": 0, - "area": 471.093287158712, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 10, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 120975177 - } - }, - { - "id": 120974276, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.033415, - 38.7948937 - ], - [ - 0.033415, - 38.7948937 - ], - [ - 0.033415, - 38.7948937 - ], - [ - 0.033415, - 38.7948937 - ], - [ - 0.033415, - 38.7948937 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-14T11:03:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "create": 1, - "locale": "ca", - "imagery": "PNOA-Spain", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 120974276 - } - }, - { - "id": 120974122, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0344643, - 38.7934335 - ], - [ - 0.0344643, - 38.7934335 - ], - [ - 0.0344643, - 38.7934335 - ], - [ - 0.0344643, - 38.7934335 - ], - [ - 0.0344643, - 38.7934335 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-14T10:59:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 1, - "locale": "ca", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 120974122 - } - }, - { - "id": 120973946, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2368036, - 48.6818495 - ], - [ - 9.2368036, - 48.6818495 - ], - [ - 9.2368036, - 48.6818495 - ], - [ - 9.2368036, - 48.6818495 - ], - [ - 9.2368036, - 48.6818495 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-14T10:54:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 1, - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 120973946 - } - }, - { - "id": 120973482, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.6947669, - -36.5864664 - ], - [ - 174.6947707, - -36.5864664 - ], - [ - 174.6947707, - -36.5864571 - ], - [ - 174.6947669, - -36.5864571 - ], - [ - 174.6947669, - -36.5864664 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LACDH", - "uid": "4994674", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-14T10:42:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 13, - "delete": 0, - "area": 3.53400000244812e-11, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "move": 1, - "theme": "charging_stations", - "answer": 18, - "locale": "en", - "imagery": "CartoDB.Voyager", - "move:node/5629724273": "improve_accuracy" - }, - "id": 120973482 - } - }, - { - "id": 120964797, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-14T06:46:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "HDM_HOT", - "add-image": 1 - }, - "id": 120964797 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-15.json b/Docs/Tools/stats/stats.2022-5-15.json deleted file mode 100644 index cc40022bc5..0000000000 --- a/Docs/Tools/stats/stats.2022-5-15.json +++ /dev/null @@ -1,1853 +0,0 @@ -{ - "features": [ - { - "id": 121027788, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -86.4126876, - 39.675823 - ], - [ - -86.4126876, - 39.675823 - ], - [ - -86.4126876, - 39.675823 - ], - [ - -86.4126876, - 39.675823 - ], - [ - -86.4126876, - 39.675823 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "TArzate5", - "uid": "12330537", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-15T23:13:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 121027788 - } - }, - { - "id": 121027164, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.7245396, - 56.0574812 - ], - [ - -2.7170941, - 56.0574812 - ], - [ - -2.7170941, - 56.0580439 - ], - [ - -2.7245396, - 56.0580439 - ], - [ - -2.7245396, - 56.0574812 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jdtoy", - "uid": "2127380", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-15T22:32:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 3, - "delete": 0, - "area": 0.00000418958285002404, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "move": 1, - "theme": "trees", - "answer": 4, - "create": 2, - "locale": "en", - "imagery": "EsriWorldImageryClarity", - "change_over_5000m": 7, - "move:node/9742149050": "improve_accuracy" - }, - "id": 121027164 - } - }, - { - "id": 121025504, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3267583, - 51.5664038 - ], - [ - 13.3267583, - 51.5664038 - ], - [ - 13.3267583, - 51.5664038 - ], - [ - 13.3267583, - 51.5664038 - ], - [ - 13.3267583, - 51.5664038 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "da-werbung", - "uid": "4923577", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-15T21:03:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 121025504 - } - }, - { - "id": 121025251, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6765733, - 50.9887729 - ], - [ - 4.6765733, - 50.9887729 - ], - [ - 4.6765733, - 50.9887729 - ], - [ - 4.6765733, - 50.9887729 - ], - [ - 4.6765733, - 50.9887729 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "philippec", - "uid": "76884", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-15T20:51:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "locale": "nl", - "imagery": "osm", - "add-image": 3 - }, - "id": 121025251 - } - }, - { - "id": 121024888, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.6072477, - 52.2882123 - ], - [ - -1.6068275, - 52.2882123 - ], - [ - -1.6068275, - 52.2882846 - ], - [ - -1.6072477, - 52.2882846 - ], - [ - -1.6072477, - 52.2882123 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RobJN", - "uid": "411244", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #uk_addresses", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-15T20:35:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 2, - "delete": 0, - "area": 3.03804599997293e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/uk_addresses.html", - "theme": "uk_addresses", - "answer": 6, - "import": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 121024888 - } - }, - { - "id": 121024771, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3867069, - 50.8387988 - ], - [ - 4.3867069, - 50.8387988 - ], - [ - 4.3867069, - 50.8387988 - ], - [ - 4.3867069, - 50.8387988 - ], - [ - 4.3867069, - 50.8387988 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-15T20:29:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 2, - "change_within_5000m": 2 - }, - "id": 121024771 - } - }, - { - "id": 121024603, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 18.9321168, - 50.2682484 - ], - [ - 18.9321168, - 50.2682484 - ], - [ - 18.9321168, - 50.2682484 - ], - [ - 18.9321168, - 50.2682484 - ], - [ - 18.9321168, - 50.2682484 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "arukuni", - "uid": "8534839", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-15T20:20:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 121024603 - } - }, - { - "id": 121024505, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9924533, - 51.1557388 - ], - [ - 4.9924573, - 51.1557388 - ], - [ - 4.9924573, - 51.1557943 - ], - [ - 4.9924533, - 51.1557943 - ], - [ - 4.9924533, - 51.1557388 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-15T20:16:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 2, - "delete": 0, - "area": 2.21999999961253e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 15, - "create": 2, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_5000m": 15 - }, - "id": 121024505 - } - }, - { - "id": 121022658, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9565665, - 51.1998854 - ], - [ - 4.9565665, - 51.1998854 - ], - [ - 4.9565665, - 51.1998854 - ], - [ - 4.9565665, - 51.1998854 - ], - [ - 4.9565665, - 51.1998854 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-15T19:00:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 2, - "locale": "nl", - "imagery": "AGIV", - "add-image": 1 - }, - "id": 121022658 - } - }, - { - "id": 121022600, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.6993583, - -36.8979788 - ], - [ - 174.7272891, - -36.8979788 - ], - [ - 174.7272891, - -36.8688594 - ], - [ - 174.6993583, - -36.8688594 - ], - [ - 174.6993583, - -36.8979788 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ralley", - "uid": "670820", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-15T18:58:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 15, - "delete": 0, - "area": 0.00081332813752018, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 15, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 15 - }, - "id": 121022600 - } - }, - { - "id": 121021609, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -9.1357561, - 38.712706 - ], - [ - -9.1357561, - 38.712706 - ], - [ - -9.1357561, - 38.712706 - ], - [ - -9.1357561, - 38.712706 - ], - [ - -9.1357561, - 38.712706 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Reino Baptista", - "uid": "2820801", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-15T18:07:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 121021609 - } - }, - { - "id": 121021287, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4548766, - 50.9249494 - ], - [ - 5.4586138, - 50.9249494 - ], - [ - 5.4586138, - 50.9261865 - ], - [ - 5.4548766, - 50.9261865 - ], - [ - 5.4548766, - 50.9249494 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-15T17:55:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 26, - "modify": 52, - "delete": 2, - "area": 0.00000462329011998973, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 46, - "theme": "grb", - "delete": 2, - "import": 4, - "locale": "nl", - "imagery": "osm", - "conflation": 12 - }, - "id": 121021287 - } - }, - { - "id": 121020638, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2188684, - 48.6840441 - ], - [ - 9.2191624, - 48.6840441 - ], - [ - 9.2191624, - 48.6842088 - ], - [ - 9.2188684, - 48.6842088 - ], - [ - 9.2188684, - 48.6840441 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-15T17:34:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 4.84217999997833e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 121020638 - } - }, - { - "id": 121019778, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4968231, - 50.9868935 - ], - [ - 4.4968231, - 50.9868935 - ], - [ - 4.4968231, - 50.9868935 - ], - [ - 4.4968231, - 50.9868935 - ], - [ - 4.4968231, - 50.9868935 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "philippec", - "uid": "76884", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-15T16:54:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 4, - "change_over_5000m": 5 - }, - "id": 121019778 - } - }, - { - "id": 121018772, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "csjunker", - "uid": "696477", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-15T16:12:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 1, - "locale": "en", - "imagery": "Geodatastyrelsen_Skaermkort" - }, - "id": 121018772 - } - }, - { - "id": 121017840, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9510927, - 51.1886189 - ], - [ - 4.9510927, - 51.1886189 - ], - [ - 4.9510927, - 51.1886189 - ], - [ - 4.9510927, - 51.1886189 - ], - [ - 4.9510927, - 51.1886189 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-15T15:44:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 6, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 6 - }, - "id": 121017840 - } - }, - { - "id": 121017678, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4378201, - 51.0854715 - ], - [ - 3.4390808, - 51.0854715 - ], - [ - 3.4390808, - 51.0979524 - ], - [ - 3.4378201, - 51.0979524 - ], - [ - 3.4378201, - 51.0854715 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-15T15:41:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000157346706299999, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 121017678 - } - }, - { - "id": 121014433, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.452369, - 50.9230754 - ], - [ - 5.4588813, - 50.9230754 - ], - [ - 5.4588813, - 50.9269091 - ], - [ - 5.452369, - 50.9269091 - ], - [ - 5.452369, - 50.9230754 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-15T14:17:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 151, - "modify": 736, - "delete": 9, - "area": 0.0000249662045100075, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 654, - "theme": "grb", - "delete": 9, - "import": 20, - "locale": "nl", - "imagery": "osm", - "conflation": 180 - }, - "id": 121014433 - } - }, - { - "id": 121013943, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.9649317, - 52.3973826 - ], - [ - 16.9649317, - 52.3973826 - ], - [ - 16.9649317, - 52.3973826 - ], - [ - 16.9649317, - 52.3973826 - ], - [ - 16.9649317, - 52.3973826 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Mariusz256", - "uid": "10396575", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-15T14:03:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 121013943 - } - }, - { - "id": 121012581, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8740872, - 45.7471321 - ], - [ - 4.8752631, - 45.7471321 - ], - [ - 4.8752631, - 45.747247 - ], - [ - 4.8740872, - 45.747247 - ], - [ - 4.8740872, - 45.7471321 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "JitenshaNiko", - "uid": "71304", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-15T13:26:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.35110909999748e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 121012581 - } - }, - { - "id": 121011880, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.787709, - 46.8159006 - ], - [ - 6.7877867, - 46.8159006 - ], - [ - 6.7877867, - 46.8159559 - ], - [ - 6.787709, - 46.8159559 - ], - [ - 6.787709, - 46.8159006 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "imagoiq", - "uid": "1856092", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-15T13:13:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 6, - "delete": 0, - "area": 4.29680999993959e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 8, - "locale": "fr", - "imagery": "osm" - }, - "id": 121011880 - } - }, - { - "id": 121011671, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8689725, - 45.7461644 - ], - [ - 7.2676411, - 45.7461644 - ], - [ - 7.2676411, - 47.7486139 - ], - [ - 4.8689725, - 47.7486139 - ], - [ - 4.8689725, - 45.7461644 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "JitenshaNiko", - "uid": "71304", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-15T13:07:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 18, - "delete": 0, - "area": 4.80321273873571, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 34, - "create": 2, - "locale": "fr", - "imagery": "fr.ign.bdortho" - }, - "id": 121011671 - } - }, - { - "id": 121007973, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.1811945, - 48.6889258 - ], - [ - 6.1811945, - 48.6889258 - ], - [ - 6.1811945, - 48.6889258 - ], - [ - 6.1811945, - 48.6889258 - ], - [ - 6.1811945, - 48.6889258 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Vermoot", - "uid": "11463327", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-15T11:07:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 121007973 - } - }, - { - "id": 121006684, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.139356, - 50.84089 - ], - [ - -0.139356, - 50.84089 - ], - [ - -0.139356, - 50.84089 - ], - [ - -0.139356, - 50.84089 - ], - [ - -0.139356, - 50.84089 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Jez Nicholson", - "uid": "7329", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-15T10:18:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 3, - "locale": "en", - "imagery": "osm", - "change_within_25m": 3 - }, - "id": 121006684 - } - }, - { - "id": 121005770, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8772687, - 51.0602847 - ], - [ - 4.8807864, - 51.0602847 - ], - [ - 4.8807864, - 51.0613724 - ], - [ - 4.8772687, - 51.0613724 - ], - [ - 4.8772687, - 51.0602847 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Frans_Napaters", - "uid": "3574538", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-15T09:46:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 8, - "delete": 0, - "area": 0.00000382620229002245, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 5, - "locale": "en", - "imagery": "osm", - "add-image": 17, - "change_within_25m": 17 - }, - "id": 121005770 - } - }, - { - "id": 121005536, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4471432, - 50.9091467 - ], - [ - 5.4601497, - 50.9091467 - ], - [ - 5.4601497, - 50.9151997 - ], - [ - 5.4471432, - 50.9151997 - ], - [ - 5.4471432, - 50.9091467 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-15T09:39:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 49, - "modify": 9, - "delete": 0, - "area": 0.0000787283445000153, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 8, - "theme": "grb", - "import": 6, - "locale": "nl", - "imagery": "osm", - "conflation": 4 - }, - "id": 121005536 - } - }, - { - "id": 121001868, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 75.7769537, - 31.2197083 - ], - [ - 75.7769537, - 31.2197083 - ], - [ - 75.7769537, - 31.2197083 - ], - [ - 75.7769537, - 31.2197083 - ], - [ - 75.7769537, - 31.2197083 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Mohit Jairath", - "uid": "15920679", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-15T07:10:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 121001868 - } - }, - { - "id": 121001712, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.6576817, - 42.3412856 - ], - [ - -3.6576817, - 42.3412856 - ], - [ - -3.6576817, - 42.3412856 - ], - [ - -3.6576817, - 42.3412856 - ], - [ - -3.6576817, - 42.3412856 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dinn0", - "uid": "14893874", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-15T07:02:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_25m": 1 - }, - "id": 121001712 - } - }, - { - "id": 120998384, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7867206, - -34.6512499 - ], - [ - -58.7865812, - -34.6512499 - ], - [ - -58.7865812, - -34.6512256 - ], - [ - -58.7867206, - -34.6512256 - ], - [ - -58.7867206, - -34.6512499 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AgusQui", - "uid": "331218", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-15T03:35:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 3.3874200010025e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "create": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 120998384 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-16.json b/Docs/Tools/stats/stats.2022-5-16.json deleted file mode 100644 index 65688ebc91..0000000000 --- a/Docs/Tools/stats/stats.2022-5-16.json +++ /dev/null @@ -1,2354 +0,0 @@ -{ - "features": [ - { - "id": 121071618, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4815516, - 51.0822078 - ], - [ - 3.5099255, - 51.0822078 - ], - [ - 3.5099255, - 51.0938814 - ], - [ - 3.4815516, - 51.0938814 - ], - [ - 3.4815516, - 51.0822078 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-16T22:13:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00033122555904005, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 3, - "change_within_5000m": 1 - }, - "id": 121071618 - } - }, - { - "id": 121070082, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 17.7856301, - 48.4218354 - ], - [ - 17.7879891, - 48.4218354 - ], - [ - 17.7879891, - 48.4249734 - ], - [ - 17.7856301, - 48.4249734 - ], - [ - 17.7856301, - 48.4218354 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Tomas Jancovic", - "uid": "4997045", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-16T21:07:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 15, - "delete": 0, - "area": 0.00000740254200000595, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 23, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 24 - }, - "id": 121070082 - } - }, - { - "id": 121068322, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.9182296, - 53.5643321 - ], - [ - 9.9182296, - 53.5643321 - ], - [ - 9.9182296, - 53.5643321 - ], - [ - 9.9182296, - 53.5643321 - ], - [ - 9.9182296, - 53.5643321 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Nicolelaine", - "uid": "2997398", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-16T20:16:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 121068322 - } - }, - { - "id": 121067964, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2916228, - 50.949791 - ], - [ - 3.2916673, - 50.949791 - ], - [ - 3.2916673, - 50.9498152 - ], - [ - 3.2916228, - 50.9498152 - ], - [ - 3.2916228, - 50.949791 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-16T20:06:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 4, - "delete": 0, - "area": 1.07690000025336e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 6, - "create": 2, - "locale": "nl", - "imagery": "AGIV", - "add-image": 2, - "change_over_5000m": 10 - }, - "id": 121067964 - } - }, - { - "id": 121067682, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2917577, - 50.9499323 - ], - [ - 3.2917577, - 50.9499323 - ], - [ - 3.2917577, - 50.9499323 - ], - [ - 3.2917577, - 50.9499323 - ], - [ - 3.2917577, - 50.9499323 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-16T19:58:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 2, - "locale": "nl", - "imagery": "AGIV", - "change_over_5000m": 2 - }, - "id": 121067682 - } - }, - { - "id": 121067564, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.8711893, - 49.7582171 - ], - [ - 10.6172991, - 49.7582171 - ], - [ - 10.6172991, - 49.813482 - ], - [ - 9.8711893, - 49.813482 - ], - [ - 9.8711893, - 49.7582171 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "onkelben866", - "uid": "14063915", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-16T19:55:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 10, - "delete": 0, - "area": 0.0412336834860181, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 15, - "create": 1, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 121067564 - } - }, - { - "id": 121067115, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2917577, - 50.9499323 - ], - [ - 3.2917577, - 50.9499323 - ], - [ - 3.2917577, - 50.9499323 - ], - [ - 3.2917577, - 50.9499323 - ], - [ - 3.2917577, - 50.9499323 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-16T19:41:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "add-image": 1, - "change_over_5000m": 3 - }, - "id": 121067115 - } - }, - { - "id": 121066871, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.7033889, - -36.873156 - ], - [ - 174.7049339, - -36.873156 - ], - [ - 174.7049339, - -36.8728913 - ], - [ - 174.7033889, - -36.8728913 - ], - [ - 174.7033889, - -36.873156 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ralley", - "uid": "670820", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-16T19:33:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 4.08961500001937e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1 - }, - "id": 121066871 - } - }, - { - "id": 121066209, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.7014231, - -36.9333394 - ], - [ - 174.876222, - -36.9333394 - ], - [ - 174.876222, - -36.881982 - ], - [ - 174.7014231, - -36.881982 - ], - [ - 174.7014231, - -36.9333394 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ralley", - "uid": "670820", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-16T19:13:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.00897721702686077, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 7, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 3, - "change_within_1000m": 2, - "change_within_5000m": 2 - }, - "id": 121066209 - } - }, - { - "id": 121064277, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6142661, - 51.1034952 - ], - [ - 3.6142661, - 51.1034952 - ], - [ - 3.6142661, - 51.1034952 - ], - [ - 3.6142661, - 51.1034952 - ], - [ - 3.6142661, - 51.1034952 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "philippec", - "uid": "76884", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-16T18:20:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 121064277 - } - }, - { - "id": 121058672, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8444269, - 45.7519499 - ], - [ - 4.8444269, - 45.7519499 - ], - [ - 4.8444269, - 45.7519499 - ], - [ - 4.8444269, - 45.7519499 - ], - [ - 4.8444269, - 45.7519499 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "MatthieuLyon69", - "uid": "562805", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-16T15:23:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 121058672 - } - }, - { - "id": 121056111, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4252157, - 51.2035611 - ], - [ - 4.4252157, - 51.2035611 - ], - [ - 4.4252157, - 51.2035611 - ], - [ - 4.4252157, - 51.2035611 - ], - [ - 4.4252157, - 51.2035611 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-16T14:11:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 121056111 - } - }, - { - "id": 121052836, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4649723, - 50.9250421 - ], - [ - 5.4753038, - 50.9250421 - ], - [ - 5.4753038, - 50.9281506 - ], - [ - 5.4649723, - 50.9281506 - ], - [ - 5.4649723, - 50.9250421 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-16T12:50:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 395, - "modify": 1767, - "delete": 101, - "area": 0.0000321154677500324, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 1554, - "theme": "grb", - "delete": 101, - "import": 79, - "locale": "nl", - "imagery": "osm", - "conflation": 458 - }, - "id": 121052836 - } - }, - { - "id": 121051673, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.9531105, - 45.7962548 - ], - [ - 15.9742781, - 45.7962548 - ], - [ - 15.9742781, - 45.8040785 - ], - [ - 15.9531105, - 45.8040785 - ], - [ - 15.9531105, - 45.7962548 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Janjko", - "uid": "244754", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-16T12:27:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 48, - "delete": 0, - "area": 0.000165608952120064, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 71, - "locale": "en", - "imagery": "osm" - }, - "id": 121051673 - } - }, - { - "id": 121051508, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Janjko", - "uid": "244754", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-16T12:24:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 121051508 - } - }, - { - "id": 121050789, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.8432177, - 49.8304551 - ], - [ - 9.8664026, - 49.8304551 - ], - [ - 9.8664026, - 49.8599215 - ], - [ - 9.8432177, - 49.8599215 - ], - [ - 9.8432177, - 49.8304551 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "onkelben866", - "uid": "14063915", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-16T12:11:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 35, - "delete": 0, - "area": 0.00068317553735994, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 48, - "locale": "de", - "imagery": "osm" - }, - "id": 121050789 - } - }, - { - "id": 121048707, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.5048061, - 42.447111 - ], - [ - -2.5044756, - 42.447111 - ], - [ - -2.5044756, - 42.4485988 - ], - [ - -2.5048061, - 42.4485988 - ], - [ - -2.5048061, - 42.447111 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dinn0", - "uid": "14893874", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-16T11:26:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 4.91717899999883e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_25m": 1, - "change_within_100m": 1 - }, - "id": 121048707 - } - }, - { - "id": 121048036, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -60.7981454, - -32.9127302 - ], - [ - -60.7969143, - -32.9127302 - ], - [ - -60.7969143, - -32.9061251 - ], - [ - -60.7981454, - -32.9061251 - ], - [ - -60.7981454, - -32.9127302 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mweper", - "uid": "1311281", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-16T11:13:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000813153861003742, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 121048036 - } - }, - { - "id": 121047493, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4000355, - 50.8497344 - ], - [ - 4.4000355, - 50.8497344 - ], - [ - 4.4000355, - 50.8497344 - ], - [ - 4.4000355, - 50.8497344 - ], - [ - 4.4000355, - 50.8497344 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-16T11:01:40Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/US99KxJ.jpg" - ], - "amenity": [ - "bicycle_parking" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 121047493 - } - }, - { - "id": 121045103, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.9746391, - 45.8027768 - ], - [ - 15.9746439, - 45.8027768 - ], - [ - 15.9746439, - 45.8028245 - ], - [ - 15.9746391, - 45.8028245 - ], - [ - 15.9746391, - 45.8027768 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Janjko", - "uid": "244754", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-16T10:11:05Z", - "reviewed_features": [], - "tag_changes": { - "bus": [ - "no" - ], - "hgv": [ - "no" - ], - "access": [ - "yes" - ], - "amenity": [ - "charging_station" - ], - "bicycle": [ - "no" - ], - "scooter": [ - "no" - ], - "motorcar": [ - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 2.28960000064327e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 4, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 121045103 - } - }, - { - "id": 121042704, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7319263, - 51.3015161 - ], - [ - 4.7339943, - 51.3015161 - ], - [ - 4.7339943, - 51.3019345 - ], - [ - 4.7319263, - 51.3019345 - ], - [ - 4.7319263, - 51.3015161 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Toerisme Malle", - "uid": "15547279", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-16T09:32:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 0, - "delete": 0, - "area": 8.6525120000209e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "create": 3, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 121042704 - } - }, - { - "id": 121042222, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.45817, - 50.9242576 - ], - [ - 5.4767265, - 50.9242576 - ], - [ - 5.4767265, - 50.9287293 - ], - [ - 5.45817, - 50.9287293 - ], - [ - 5.45817, - 50.9242576 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-16T09:22:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 519, - "modify": 2487, - "delete": 100, - "area": 0.0000829791010500627, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 2180, - "theme": "grb", - "answer": 1, - "delete": 100, - "import": 91, - "locale": "nl", - "imagery": "osm", - "conflation": 630 - }, - "id": 121042222 - } - }, - { - "id": 121042098, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4582467, - 50.9240959 - ], - [ - 5.4609573, - 50.9240959 - ], - [ - 5.4609573, - 50.9253386 - ], - [ - 5.4582467, - 50.9253386 - ], - [ - 5.4582467, - 50.9240959 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-16T09:19:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 36, - "modify": 159, - "delete": 16, - "area": 0.00000336846262001538, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 141, - "theme": "grb", - "delete": 16, - "import": 9, - "locale": "nl", - "imagery": "osm", - "conflation": 36 - }, - "id": 121042098 - } - }, - { - "id": 121041011, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.660019, - 51.2805047 - ], - [ - 4.6938819, - 51.2805047 - ], - [ - 4.6938819, - 51.2972287 - ], - [ - 4.660019, - 51.2972287 - ], - [ - 4.660019, - 51.2805047 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Toerisme Malle", - "uid": "15547279", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-16T08:57:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 8, - "modify": 6, - "delete": 0, - "area": 0.000566323139599877, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 7, - "create": 8, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 121041011 - } - }, - { - "id": 121039870, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.0688742, - 48.1870996 - ], - [ - 15.0688742, - 48.1870996 - ], - [ - 15.0688742, - 48.1870996 - ], - [ - 15.0688742, - 48.1870996 - ], - [ - 15.0688742, - 48.1870996 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "alxGS", - "uid": "13367754", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-16T08:33:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 3, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 121039870 - } - }, - { - "id": 121039374, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.1377708, - 48.1265289 - ], - [ - 15.1502505, - 48.1265289 - ], - [ - 15.1502505, - 48.1428728 - ], - [ - 15.1377708, - 48.1428728 - ], - [ - 15.1377708, - 48.1265289 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "alxGS", - "uid": "13367754", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-16T08:23:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 10, - "delete": 0, - "area": 0.000203966968830033, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 14, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 121039374 - } - }, - { - "id": 121038943, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6763214, - 51.2949109 - ], - [ - 4.7018051, - 51.2949109 - ], - [ - 4.7018051, - 51.3008162 - ], - [ - 4.6763214, - 51.3008162 - ], - [ - 4.6763214, - 51.2949109 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Toerisme Malle", - "uid": "15547279", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-16T08:12:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 8, - "modify": 2, - "delete": 2, - "area": 0.000150488893610049, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 5, - "create": 8, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "deletion": 2, - "deletion:node/9742900587": "not found", - "deletion:node/9742948060": "testing point" - }, - "id": 121038943 - } - }, - { - "id": 121035313, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.265708, - 48.7789225 - ], - [ - 10.3045536, - 48.7789225 - ], - [ - 10.3045536, - 48.7945509 - ], - [ - 10.265708, - 48.7945509 - ], - [ - 10.265708, - 48.7789225 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Segelpaule", - "uid": "146822", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-16T06:43:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 8, - "delete": 0, - "area": 0.00060709457503989, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/nature.html", - "theme": "nature", - "answer": 8, - "locale": "en", - "imagery": "osm" - }, - "id": 121035313 - } - }, - { - "id": 121035206, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7702969, - 50.9097243 - ], - [ - 4.7728375, - 50.9097243 - ], - [ - 4.7728375, - 50.9118525 - ], - [ - 4.7702969, - 50.9118525 - ], - [ - 4.7702969, - 50.9097243 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Hilde OSM", - "uid": "15275790", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-16T06:40:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 8, - "delete": 0, - "area": 0.00000540690492000275, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 11, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 4, - "change_over_5000m": 1, - "change_within_25m": 15 - }, - "id": 121035206 - } - }, - { - "id": 121034216, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.0497152, - 48.8345491 - ], - [ - 10.0682785, - 48.8345491 - ], - [ - 10.0682785, - 48.8349704 - ], - [ - 10.0497152, - 48.8349704 - ], - [ - 10.0497152, - 48.8345491 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Segelpaule", - "uid": "146822", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-16T06:14:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000782071829011887, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 121034216 - } - }, - { - "id": 121034011, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.0919616, - 48.8342195 - ], - [ - 10.096381, - 48.8342195 - ], - [ - 10.096381, - 48.8411842 - ], - [ - 10.0919616, - 48.8411842 - ], - [ - 10.0919616, - 48.8342195 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Segelpaule", - "uid": "146822", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-16T06:08:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.0000307797951799871, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 10, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 121034011 - } - }, - { - "id": 121032795, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.9839282, - 40.5730029 - ], - [ - -73.9405525, - 40.5730029 - ], - [ - -73.9405525, - 40.5878536 - ], - [ - -73.9839282, - 40.5878536 - ], - [ - -73.9839282, - 40.5730029 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "MxxCon", - "uid": "384667", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-16T05:24:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 20, - "delete": 0, - "area": 0.000644159507990142, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "answer": 22, - "locale": "en", - "imagery": "osm", - "change_within_1000m": 2, - "change_within_5000m": 5 - }, - "id": 121032795 - } - }, - { - "id": 121032581, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.9732843, - 40.5808858 - ], - [ - -73.9719128, - 40.5808858 - ], - [ - -73.9719128, - 40.5812025 - ], - [ - -73.9732843, - 40.5812025 - ], - [ - -73.9732843, - 40.5808858 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "MxxCon", - "uid": "384667", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-16T05:17:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 6, - "delete": 0, - "area": 4.34354050009957e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/entrances.html", - "theme": "entrances", - "answer": 6, - "locale": "en", - "imagery": "osm", - "change_within_500m": 6 - }, - "id": 121032581 - } - }, - { - "id": 121032203, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.972004, - 40.5763866 - ], - [ - -73.9131302, - 40.5763866 - ], - [ - -73.9131302, - 40.6279442 - ], - [ - -73.972004, - 40.6279442 - ], - [ - -73.972004, - 40.5763866 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "MxxCon", - "uid": "384667", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-16T05:05:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 10, - "delete": 0, - "area": 0.00303539183088018, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 11, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_500m": 6, - "change_within_5000m": 5 - }, - "id": 121032203 - } - }, - { - "id": 121031471, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.9838587, - 40.57538 - ], - [ - -73.9749964, - 40.57538 - ], - [ - -73.9749964, - 40.5797153 - ], - [ - -73.9838587, - 40.5797153 - ], - [ - -73.9838587, - 40.57538 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "MxxCon", - "uid": "384667", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-16T04:27:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 32, - "delete": 0, - "area": 0.000038420729189964, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 41, - "locale": "en", - "imagery": "osm", - "change_within_1000m": 9, - "change_within_5000m": 32 - }, - "id": 121031471 - } - }, - { - "id": 121028937, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 174.8838368, - -36.9348462 - ], - [ - 174.8879612, - -36.9348462 - ], - [ - 174.8879612, - -36.9295865 - ], - [ - 174.8838368, - -36.9295865 - ], - [ - 174.8838368, - -36.9348462 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ralley", - "uid": "670820", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-16T01:01:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.0000216931066799874, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_1000m": 1 - }, - "id": 121028937 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-17.json b/Docs/Tools/stats/stats.2022-5-17.json deleted file mode 100644 index a621f4a8d9..0000000000 --- a/Docs/Tools/stats/stats.2022-5-17.json +++ /dev/null @@ -1,3491 +0,0 @@ -{ - "features": [ - { - "id": 121118922, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.2694693, - 53.4333957 - ], - [ - 12.2704592, - 53.4333957 - ], - [ - 12.2704592, - 53.4343264 - ], - [ - 12.2694693, - 53.4343264 - ], - [ - 12.2694693, - 53.4333957 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Niels Elgaard Larsen", - "uid": "1288", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T21:36:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 9.21299930003646e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "answer": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 121118922 - } - }, - { - "id": 121118640, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.530901, - 44.8551194 - ], - [ - -0.5297779, - 44.8551194 - ], - [ - -0.5297779, - 44.857559 - ], - [ - -0.530901, - 44.857559 - ], - [ - -0.530901, - 44.8551194 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-17T21:25:57Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/bdBn524.jpg", - "https://i.imgur.com/BchmgZE.jpg" - ], - "man_made": [ - "surveillance" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000273991476000256, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "locale": "fr", - "imagery": "osm", - "add-image": 2, - "change_within_25m": 2 - }, - "id": 121118640 - } - }, - { - "id": 121118554, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2163222, - -39.8326361 - ], - [ - -73.2146958, - -39.8326361 - ], - [ - -73.2146958, - -39.8322404 - ], - [ - -73.2163222, - -39.8322404 - ], - [ - -73.2163222, - -39.8326361 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-17T21:23:06Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/wHnyGIY.jpg", - "https://i.imgur.com/1WoTLA8.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 3, - "modify": 9, - "delete": 0, - "area": 6.43566479994543e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "move": 2, - "theme": "trees", - "answer": 3, - "create": 3, - "locale": "es", - "imagery": "EsriWorldImagery", - "add-image": 5, - "change_over_5000m": 3, - "change_within_25m": 10, - "move:node/9750182248": "improve_accuracy", - "move:node/9750191525": "improve_accuracy" - }, - "id": 121118554 - } - }, - { - "id": 121118487, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.3069063, - 43.6187531 - ], - [ - 1.3069063, - 43.6187531 - ], - [ - 1.3069063, - 43.6187531 - ], - [ - 1.3069063, - 43.6187531 - ], - [ - 1.3069063, - 43.6187531 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T21:19:59Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "theme": "waste_basket", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 121118487 - } - }, - { - "id": 121115858, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.351492, - 44.8712712 - ], - [ - 4.364943, - 44.8712712 - ], - [ - 4.364943, - 44.8804823 - ], - [ - 4.351492, - 44.8804823 - ], - [ - 4.351492, - 44.8712712 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Binnette", - "uid": "918586", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/Binnette/5998b87d5e32efab13a00d5aa1ca1731/raw/b25da7c21c50e4852eb8230110a028c563d53847/walkingnetworks.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T19:53:19Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "hiking" - ], - "survey:date": [ - "2021-12-28" - ], - "expected_lwn_route_relations": [ - "3" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.000123898506099926, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://gist.githubusercontent.com/Binnette/5998b87d5e32efab13a00d5aa1ca1731/raw/b25da7c21c50e4852eb8230110a028c563d53847/walkingnetworks.json", - "answer": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 121115858 - } - }, - { - "id": 121115735, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3650338, - 44.8803151 - ], - [ - 4.3650338, - 44.8803151 - ], - [ - 4.3650338, - 44.8803151 - ], - [ - 4.3650338, - 44.8803151 - ], - [ - 4.3650338, - 44.8803151 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Binnette", - "uid": "918586", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/Binnette/5998b87d5e32efab13a00d5aa1ca1731/raw/cb8f5e51c869c9dd54221b56e7c771659c69c4a4/walkingnetworks.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T19:49:35Z", - "reviewed_features": [], - "tag_changes": { - "survey:date": [ - "2021-12-28" - ], - "expected_lwn_route_relations": [ - "3" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://gist.githubusercontent.com/Binnette/5998b87d5e32efab13a00d5aa1ca1731/raw/cb8f5e51c869c9dd54221b56e7c771659c69c4a4/walkingnetworks.json", - "answer": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 121115735 - } - }, - { - "id": 121111163, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.531071, - 44.857765 - ], - [ - -0.531071, - 44.857765 - ], - [ - -0.531071, - 44.857765 - ], - [ - -0.531071, - 44.857765 - ], - [ - -0.531071, - 44.857765 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-17T17:30:25Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/oeKjquh.jpg" - ], - "man_made": [ - "surveillance" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "locale": "fr", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 121111163 - } - }, - { - "id": 121110964, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4866615, - 51.5904159 - ], - [ - 13.5092224, - 51.5904159 - ], - [ - 13.5092224, - 51.6026817 - ], - [ - 13.4866615, - 51.6026817 - ], - [ - 13.4866615, - 51.5904159 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Ronnsen79", - "uid": "15992654", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T17:22:56Z", - "reviewed_features": [], - "tag_changes": { - "note": [ - "Vorhanden", - "Nicht mehr vorhanden", - "Nicht für Fw", - "K. A.", - "Eingezäunt" - ], - "fire_hydrant:diameter": [ - "1", - "100", - "80" - ] - }, - "create": 3, - "modify": 37, - "delete": 0, - "area": 0.000276727487219877, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 121110964 - } - }, - { - "id": 121109328, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.8733831, - 48.7496917 - ], - [ - 8.8733831, - 48.7496917 - ], - [ - 8.8733831, - 48.7496917 - ], - [ - 8.8733831, - 48.7496917 - ], - [ - 8.8733831, - 48.7496917 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Urml", - "uid": "2088671", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T16:38:26Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "restaurant" - ] - }, - "create": 1, - "modify": 10, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 10, - "create": 1, - "locale": "de", - "imagery": "osm", - "add-image": 5 - }, - "id": 121109328 - } - }, - { - "id": 121102388, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6235712, - 50.9568578 - ], - [ - 3.6447857, - 50.9568578 - ], - [ - 3.6447857, - 50.9637571 - ], - [ - 3.6235712, - 50.9637571 - ], - [ - 3.6235712, - 50.9568578 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-17T13:52:42Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "copyshop" - ], - "office": [ - "company" - ], - "amenity": [ - "pharmacy" - ], - "building": [ - "roof", - "house", - "yes" - ], - "addr:street": [ - "Zuiderbiesten" - ], - "addr:housenumber": [ - "7", - "5" - ], - "source:geometry:ref": [ - "Gbg/3805893", - "Gbg/3807581", - "Gbg/3807582", - "Gbg/3809032", - "Gbg/3807585", - "Gbg/3807103", - "Gbg/3806925", - "Gbg/3806668", - "Gbg/3806675", - "Gbg/3805858" - ], - "source:geometry:date": [ - "2012-11-26", - "2012-08-13", - "2019-03-29", - "2014-12-17" - ] - }, - "create": 6729, - "modify": 75, - "delete": 1, - "area": 0.000146365199850011, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 64, - "theme": "grb", - "delete": 1, - "import": 888, - "locale": "nl", - "imagery": "osm", - "conflation": 22, - "change_over_5000m": 718 - }, - "id": 121102388 - } - }, - { - "id": 121102245, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.3069708, - 43.6186648 - ], - [ - 1.3072017, - 43.6186648 - ], - [ - 1.3072017, - 43.6188224 - ], - [ - 1.3069708, - 43.6188224 - ], - [ - 1.3069708, - 43.6186648 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T13:50:40Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/Lzkq14u.jpg" - ], - "leisure": [ - "playground" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 3.6389840000334e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 121102245 - } - }, - { - "id": 121101359, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4692451, - 50.9254929 - ], - [ - 5.4730395, - 50.9254929 - ], - [ - 5.4730395, - 50.9270813 - ], - [ - 5.4692451, - 50.9270813 - ], - [ - 5.4692451, - 50.9254929 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T13:35:22Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes" - ] - }, - "create": 15, - "modify": 6, - "delete": 0, - "area": 0.00000602702495998282, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 6, - "theme": "grb", - "import": 3, - "locale": "nl", - "imagery": "osm", - "conflation": 2 - }, - "id": 121101359 - } - }, - { - "id": 121101264, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.628836, - 50.9530991 - ], - [ - 3.638503, - 50.9530991 - ], - [ - 3.638503, - 50.9579608 - ], - [ - 3.628836, - 50.9579608 - ], - [ - 3.628836, - 50.9530991 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-17T13:33:23Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "garden" - ], - "building": [ - "house", - "yes", - "residential", - "terrace", - "roof" - ], - "addr:street": [ - "Zuiderbiesten", - "Biesten" - ], - "addr:housenumber": [ - "27A", - "31", - "33", - "39", - "13", - "11", - "9", - "3", - "49", - "47" - ], - "source:geometry:ref": [ - "Gbg/3806276", - "Gbg/3806655", - "Gbg/5684153", - "Gbg/3806657", - "Gbg/3806656", - "Gbg/3806661", - "Gbg/3806660", - "Gbg/3806659", - "Gbg/3806662", - "Gbg/3806664", - "Gbg/3806653", - "Gbg/3806650", - "Gbg/3806651", - "Gbg/3806636", - "Gbg/3806665", - "Gbg/3806666", - "Gbg/3806667", - "Gbg/3806677", - "Gbg/3806678", - "Gbg/3806681" - ], - "source:geometry:date": [ - "2012-08-13", - "2014-12-17", - "2016-09-07", - "2021-04-29", - "2012-11-26", - "2018-05-23", - "2020-01-07", - "2019-03-29" - ] - }, - "create": 1386, - "modify": 128, - "delete": 0, - "area": 0.0000469980538999926, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 108, - "theme": "grb", - "answer": 1, - "import": 219, - "locale": "nl", - "imagery": "osm", - "conflation": 42, - "change_over_5000m": 220 - }, - "id": 121101264 - } - }, - { - "id": 121100440, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7202336, - -34.665669 - ], - [ - -58.5969584, - -34.665669 - ], - [ - -58.5969584, - -34.6450594 - ], - [ - -58.7202336, - -34.6450594 - ], - [ - -58.7202336, - -34.665669 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AgusQui", - "uid": "331218", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-17T13:17:03Z", - "reviewed_features": [], - "tag_changes": { - "ref": [ - "RO 5B" - ], - "railway": [ - "signal" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0.00254065256192007, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "answer": 6, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 6 - }, - "id": 121100440 - } - }, - { - "id": 121099791, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.364419, - 50.9611513 - ], - [ - 5.3644625, - 50.9611513 - ], - [ - 5.3644625, - 50.9611803 - ], - [ - 5.364419, - 50.9611803 - ], - [ - 5.364419, - 50.9611513 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-17T13:02:25Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/CxFv2IA.jpg" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.26150000022387e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 2, - "move:node/2652967003": "improve_accuracy" - }, - "id": 121099791 - } - }, - { - "id": 121097843, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9330818, - 48.6953694 - ], - [ - 9.0232743, - 48.6953694 - ], - [ - 9.0232743, - 48.7672987 - ], - [ - 8.9330818, - 48.7672987 - ], - [ - 8.9330818, - 48.6953694 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Urml", - "uid": "2088671", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T12:19:58Z", - "reviewed_features": [], - "tag_changes": { - "sport": [ - "climbing", - "climbing;bouldering" - ], - "access": [ - "yes" - ], - "leisure": [ - "sports_centre" - ], - "website": [ - "https://gymnasium-renningen.de/" - ], - "building": [ - "yes" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00648748339025011, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/climbing.html", - "theme": "climbing", - "answer": 4, - "locale": "de", - "imagery": "osm" - }, - "id": 121097843 - } - }, - { - "id": 121097619, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.306909, - 43.618759 - ], - [ - 1.3070136, - 43.618759 - ], - [ - 1.3070136, - 43.6187706 - ], - [ - 1.306909, - 43.6187706 - ], - [ - 1.306909, - 43.618759 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T12:15:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 1, - "area": 1.21336000005824e-9, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "move": 1, - "theme": "waste_basket", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm", - "deletion": 1, - "move:node/9748960310": "improve_accuracy", - "deletion:node/9748960310": "duplicate" - }, - "id": 121097619 - } - }, - { - "id": 121095534, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2099704, - 51.1880573 - ], - [ - 3.2099704, - 51.1880573 - ], - [ - 3.2099704, - 51.1880573 - ], - [ - 3.2099704, - 51.1880573 - ], - [ - 3.2099704, - 51.1880573 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-17T11:35:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 121095534 - } - }, - { - "id": 121094577, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -8.3018204, - 43.2915551 - ], - [ - -8.3015184, - 43.2915551 - ], - [ - -8.3015184, - 43.2920325 - ], - [ - -8.3018204, - 43.2920325 - ], - [ - -8.3018204, - 43.2915551 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "luckthing", - "uid": "13948532", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T11:14:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 1.44174800000157e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "theme": "waste_basket", - "answer": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 121094577 - } - }, - { - "id": 121094491, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -8.3178825, - 43.2875394 - ], - [ - -8.3019087, - 43.2875394 - ], - [ - -8.3019087, - 43.2914859 - ], - [ - -8.3178825, - 43.2914859 - ], - [ - -8.3178825, - 43.2875394 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "luckthing", - "uid": "13948532", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T11:12:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0.0000630406016999632, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "split": 2, - "theme": "street_lighting", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 121094491 - } - }, - { - "id": 121094316, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 83.1017006, - 54.8538623 - ], - [ - 83.1152009, - 54.8538623 - ], - [ - 83.1152009, - 54.8596691 - ], - [ - 83.1017006, - 54.8596691 - ], - [ - 83.1017006, - 54.8538623 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 87, - "name": "Irrelevant tags on highway" - } - ], - "tags": [], - "features": [ - { - "url": "way-433769296", - "name": "улица Николаева", - "osm_id": 433769296, - "reasons": [ - 87 - ], - "version": 3, - "primary_tags": { - "highway": "unclassified" - } - } - ], - "user": "Miroff", - "uid": "217899", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T11:08:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000783935420399544, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 6, - "locale": "ru", - "imagery": "osm" - }, - "id": 121094316 - } - }, - { - "id": 121094288, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.8656479, - 43.3192417 - ], - [ - -3.8656479, - 43.3192417 - ], - [ - -3.8656479, - 43.3192417 - ], - [ - -3.8656479, - 43.3192417 - ], - [ - -3.8656479, - 43.3192417 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ninopiña10", - "uid": "11138282", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-17T11:08:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 121094288 - } - }, - { - "id": 121094247, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -8.3191927, - 43.2753576 - ], - [ - -8.2967907, - 43.2753576 - ], - [ - -8.2967907, - 43.2993974 - ], - [ - -8.3191927, - 43.2993974 - ], - [ - -8.3191927, - 43.2753576 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "luckthing", - "uid": "13948532", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T11:07:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.000538539599599924, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "answer": 9, - "locale": "en", - "imagery": "osm" - }, - "id": 121094247 - } - }, - { - "id": 121094108, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -8.3072315, - 43.2874499 - ], - [ - -8.3059499, - 43.2874499 - ], - [ - -8.3059499, - 43.289101 - ], - [ - -8.3072315, - 43.289101 - ], - [ - -8.3072315, - 43.2874499 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "luckthing", - "uid": "13948532", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T11:03:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00000211604976000544, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 121094108 - } - }, - { - "id": 121093446, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -8.3403718, - 43.2796228 - ], - [ - -8.2673071, - 43.2796228 - ], - [ - -8.2673071, - 43.311679 - ], - [ - -8.3403718, - 43.311679 - ], - [ - -8.3403718, - 43.2796228 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "luckthing", - "uid": "13948532", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T10:49:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 10, - "delete": 0, - "area": 0.00234217663613996, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "answer": 10, - "create": 2, - "locale": "en", - "imagery": "PNOA-Spain-TMS" - }, - "id": 121093446 - } - }, - { - "id": 121093212, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -8.3557792, - 43.2714888 - ], - [ - -8.2682052, - 43.2714888 - ], - [ - -8.2682052, - 43.4057712 - ], - [ - -8.3557792, - 43.4057712 - ], - [ - -8.3557792, - 43.2714888 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "luckthing", - "uid": "13948532", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T10:45:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0117596468975997, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "nature", - "answer": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 121093212 - } - }, - { - "id": 121092518, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -8.4192596, - 43.2312666 - ], - [ - -8.4108818, - 43.2312666 - ], - [ - -8.4108818, - 43.3499279 - ], - [ - -8.4192596, - 43.3499279 - ], - [ - -8.4192596, - 43.2312666 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "luckthing", - "uid": "13948532", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T10:30:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 7, - "delete": 0, - "area": 0.000994120639139981, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/climbing.html", - "theme": "climbing", - "answer": 9, - "create": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 121092518 - } - }, - { - "id": 121092413, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -7.8949374, - 43.7163683 - ], - [ - -7.8949374, - 43.7163683 - ], - [ - -7.8949374, - 43.7163683 - ], - [ - -7.8949374, - 43.7163683 - ], - [ - -7.8949374, - 43.7163683 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9748738736", - "osm_id": 9748738736, - "reasons": [ - 43 - ], - "version": 1, - "primary_tags": { - "amenity": "binoculars" - } - } - ], - "user": "luckthing", - "uid": "13948532", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #binoculars", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T10:28:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/binoculars.html", - "theme": "binoculars", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "PNOA-Spain-TMS" - }, - "id": 121092413 - } - }, - { - "id": 121091526, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -8.3102995, - 43.2863536 - ], - [ - -8.3017454, - 43.2863536 - ], - [ - -8.3017454, - 43.2918415 - ], - [ - -8.3102995, - 43.2918415 - ], - [ - -8.3102995, - 43.2863536 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "luckthing", - "uid": "13948532", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T10:09:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 38, - "delete": 0, - "area": 0.0000469440453899852, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 56, - "create": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 121091526 - } - }, - { - "id": 121091190, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -8.3013356, - 43.2902348 - ], - [ - -8.2703501, - 43.2902348 - ], - [ - -8.2703501, - 43.2980788 - ], - [ - -8.3013356, - 43.2980788 - ], - [ - -8.3013356, - 43.2902348 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "luckthing", - "uid": "13948532", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T10:01:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 2, - "delete": 1, - "area": 0.000243050261999957, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 2, - "create": 3, - "locale": "en", - "imagery": "osm", - "deletion": 1, - "deletion:node/9748616614": "testing point" - }, - "id": 121091190 - } - }, - { - "id": 121090759, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -8.393875, - 43.371277 - ], - [ - -8.393875, - 43.371277 - ], - [ - -8.393875, - 43.371277 - ], - [ - -8.393875, - 43.371277 - ], - [ - -8.393875, - 43.371277 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "luckthing", - "uid": "13948532", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T09:51:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 121090759 - } - }, - { - "id": 121090489, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -8.4054228, - 43.3762172 - ], - [ - -8.4054228, - 43.3762172 - ], - [ - -8.4054228, - 43.3762172 - ], - [ - -8.4054228, - 43.3762172 - ], - [ - -8.4054228, - 43.3762172 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "luckthing", - "uid": "13948532", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T09:46:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 121090489 - } - }, - { - "id": 121089968, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -8.3063966, - 43.289085 - ], - [ - -8.3010802, - 43.289085 - ], - [ - -8.3010802, - 43.2959939 - ], - [ - -8.3063966, - 43.2959939 - ], - [ - -8.3063966, - 43.289085 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "luckthing", - "uid": "13948532", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T09:36:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0.0000367304759599945, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 8, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 121089968 - } - }, - { - "id": 121089902, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4656758, - 50.9264522 - ], - [ - 5.47033, - 50.9264522 - ], - [ - 5.47033, - 50.9299814 - ], - [ - 5.4656758, - 50.9299814 - ], - [ - 5.4656758, - 50.9264522 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T09:34:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 99, - "modify": 599, - "delete": 29, - "area": 0.0000164256026400126, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 523, - "theme": "grb", - "delete": 29, - "import": 18, - "locale": "nl", - "imagery": "osm", - "conflation": 164 - }, - "id": 121089902 - } - }, - { - "id": 121089767, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4788527, - 51.1600788 - ], - [ - 4.4856293, - 51.1600788 - ], - [ - 4.4856293, - 51.1639661 - ], - [ - 4.4788527, - 51.1639661 - ], - [ - 4.4788527, - 51.1600788 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "maubu", - "uid": "15716055", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T09:32:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 4, - "delete": 0, - "area": 0.000026342677180017, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 6, - "create": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 121089767 - } - }, - { - "id": 121089730, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -8.3075627, - 43.2874306 - ], - [ - -8.3070215, - 43.2874306 - ], - [ - -8.3070215, - 43.2882821 - ], - [ - -8.3075627, - 43.2882821 - ], - [ - -8.3075627, - 43.2874306 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "luckthing", - "uid": "13948532", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T09:31:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 6, - "delete": 0, - "area": 4.60831800002269e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 7, - "locale": "en", - "imagery": "osm" - }, - "id": 121089730 - } - }, - { - "id": 121089635, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -8.3076495, - 43.2868482 - ], - [ - -8.3038818, - 43.2868482 - ], - [ - -8.3038818, - 43.2888002 - ], - [ - -8.3076495, - 43.2888002 - ], - [ - -8.3076495, - 43.2868482 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "luckthing", - "uid": "13948532", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T09:29:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.00000735455039998574, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 6, - "locale": "en", - "imagery": "osm" - }, - "id": 121089635 - } - }, - { - "id": 121089147, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -8.3607822, - 43.2810317 - ], - [ - -8.2741931, - 43.2810317 - ], - [ - -8.2741931, - 43.3160537 - ], - [ - -8.3607822, - 43.3160537 - ], - [ - -8.3607822, - 43.2810317 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "luckthing", - "uid": "13948532", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T09:19:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 9, - "delete": 0, - "area": 0.0030325234601998, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 18, - "locale": "es", - "imagery": "CartoDB.Voyager" - }, - "id": 121089147 - } - }, - { - "id": 121088328, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -8.3213657, - 43.2783574 - ], - [ - -8.3063244, - 43.2783574 - ], - [ - -8.3063244, - 43.2956307 - ], - [ - -8.3213657, - 43.2956307 - ], - [ - -8.3213657, - 43.2783574 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "luckthing", - "uid": "13948532", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T09:01:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 7, - "delete": 0, - "area": 0.000259812887289991, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 11, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 121088328 - } - }, - { - "id": 121088140, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -8.3074178, - 43.286305 - ], - [ - -8.304108, - 43.286305 - ], - [ - -8.304108, - 43.2874347 - ], - [ - -8.3074178, - 43.2874347 - ], - [ - -8.3074178, - 43.286305 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "luckthing", - "uid": "13948532", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T08:57:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.00000373908105999995, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 10, - "locale": "es", - "imagery": "osm" - }, - "id": 121088140 - } - }, - { - "id": 121087485, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2272325, - 50.9616092 - ], - [ - 4.2272325, - 50.9616092 - ], - [ - 4.2272325, - 50.9616092 - ], - [ - 4.2272325, - 50.9616092 - ], - [ - 4.2272325, - 50.9616092 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T08:43:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "import": 1, - "locale": "nl", - "imagery": "osm", - "import:node/9748423599": "source: https://osm.org/note/3090311" - }, - "id": 121087485 - } - }, - { - "id": 121086096, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3255945, - 50.8545415 - ], - [ - 4.3340369, - 50.8545415 - ], - [ - 4.3340369, - 50.8571051 - ], - [ - 4.3255945, - 50.8571051 - ], - [ - 4.3255945, - 50.8545415 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Erin76", - "uid": "8982454", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T08:12:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 13, - "delete": 0, - "area": 0.0000216429366399565, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 17, - "locale": "nl", - "imagery": "osm" - }, - "id": 121086096 - } - }, - { - "id": 121085448, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.7923027, - 51.3894918 - ], - [ - 6.7975439, - 51.3894918 - ], - [ - 6.7975439, - 51.3922642 - ], - [ - 6.7923027, - 51.3922642 - ], - [ - 6.7923027, - 51.3894918 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "calli3756", - "uid": "546812", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T07:58:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 13, - "delete": 0, - "area": 0.0000145307028799895, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 13, - "locale": "en", - "imagery": "nrw_ortho_wms" - }, - "id": 121085448 - } - }, - { - "id": 121083080, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.0728822, - 48.829189 - ], - [ - 10.0799606, - 48.829189 - ], - [ - 10.0799606, - 48.8321846 - ], - [ - 10.0728822, - 48.8321846 - ], - [ - 10.0728822, - 48.829189 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Segelpaule", - "uid": "146822", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T07:10:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000212040550399867, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 3, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 121083080 - } - }, - { - "id": 121082056, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5140126, - 53.1975588 - ], - [ - 6.5143709, - 53.1975588 - ], - [ - 6.5143709, - 53.1980096 - ], - [ - 6.5140126, - 53.1980096 - ], - [ - 6.5140126, - 53.1975588 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-17T06:49:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 1.61521639998634e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 4, - "create": 1, - "locale": "en", - "imagery": "Actueel_orthoHR_WMTS", - "add-image": 1, - "change_over_5000m": 2, - "change_within_5000m": 4 - }, - "id": 121082056 - } - }, - { - "id": 121080104, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.7456988, - 48.4011164 - ], - [ - 11.7456988, - 48.4011164 - ], - [ - 11.7456988, - 48.4011164 - ], - [ - 11.7456988, - 48.4011164 - ], - [ - 11.7456988, - 48.4011164 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Zorae", - "uid": "9333062", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T06:08:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 121080104 - } - }, - { - "id": 121079478, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.418045, - 52.0983377 - ], - [ - 13.418045, - 52.0983377 - ], - [ - 13.418045, - 52.0983377 - ], - [ - 13.418045, - 52.0983377 - ], - [ - 13.418045, - 52.0983377 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ebihardy", - "uid": "263464", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-17T05:51:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 121079478 - } - }, - { - "id": 121079411, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.329815, - 50.9906025 - ], - [ - 3.329815, - 50.9906025 - ], - [ - 3.329815, - 50.9906025 - ], - [ - 3.329815, - 50.9906025 - ], - [ - 3.329815, - 50.9906025 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RubOSM", - "uid": "2096650", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-17T05:49:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 4, - "import": 1, - "locale": "nl", - "imagery": "osm", - "import:node/9748077287": "source: https://osm.org/note/3161437" - }, - "id": 121079411 - } - }, - { - "id": 121075113, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.71259, - 45.1762693 - ], - [ - 5.7127283, - 45.1762693 - ], - [ - 5.7127283, - 45.1763502 - ], - [ - 5.71259, - 45.1763502 - ], - [ - 5.71259, - 45.1762693 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Binnette", - "uid": "918586", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-17T02:50:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 10, - "delete": 0, - "area": 1.11884700001008e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 14, - "locale": "en", - "imagery": "osm", - "change_within_500m": 14 - }, - "id": 121075113 - } - }, - { - "id": 121074597, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.3755901, - 47.6849813 - ], - [ - -122.37559, - 47.6849813 - ], - [ - -122.37559, - 47.6849813 - ], - [ - -122.3755901, - 47.6849813 - ], - [ - -122.3755901, - 47.6849813 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Wim L", - "uid": "223681", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-17T01:55:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 121074597 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-18.json b/Docs/Tools/stats/stats.2022-5-18.json deleted file mode 100644 index c7e6241197..0000000000 --- a/Docs/Tools/stats/stats.2022-5-18.json +++ /dev/null @@ -1,3995 +0,0 @@ -{ - "features": [ - { - "id": 121168007, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.5247694, - 45.0325494 - ], - [ - 7.7190443, - 45.0325494 - ], - [ - 7.7190443, - 45.0939566 - ], - [ - 7.5247694, - 45.0939566 - ], - [ - 7.5247694, - 45.0325494 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "madbob", - "uid": "734100", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-18T23:30:53Z", - "reviewed_features": [], - "tag_changes": { - "place": [ - "square" - ], - "amenity": [ - "school", - "community_centre", - "cinema" - ], - "highway": [ - "tertiary", - "residential", - "pedestrian", - "primary", - "secondary", - "unclassified", - "service", - "footway", - "steps" - ], - "railway": [ - "tram" - ], - "tourism": [ - "yes" - ], - "building": [ - "yes" - ], - "name:etymology:wikidata": [ - "Q19833", - "Q19826", - "Q2751", - "Q220", - "Q598854", - "Q13437", - "Q6596", - "Q9000", - "Q676555", - "Q6122", - "Q1848", - "Q13619", - "Q9519", - "Q1486", - "Q10261", - "Q13670", - "Q100", - "Q17827", - "Q9311", - "Q6606", - "Q13138", - "Q441294", - "Q541300", - "Q31", - "Q13470", - "Q643", - "Q723652", - "Q539", - "Q2044", - "Q3947924", - "Q64450" - ] - }, - "create": 0, - "modify": 303, - "delete": 0, - "area": 0.0119298776392796, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 438, - "locale": "en", - "imagery": "osm" - }, - "id": 121168007 - } - }, - { - "id": 121164998, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6334937, - 50.9529321 - ], - [ - 3.6503084, - 50.9529321 - ], - [ - 3.6503084, - 50.9674165 - ], - [ - 3.6334937, - 50.9674165 - ], - [ - 3.6334937, - 50.9529321 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-18T21:16:39Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "supermarket", - "car_repair" - ], - "office": [ - "company" - ], - "amenity": [ - "place_of_worship", - "arts_centre" - ], - "building": [ - "house", - "yes", - "church", - "greenhouse", - "shop", - "roof" - ], - "addr:street": [ - "De Lichterveldestraat", - "Kerkplein", - "Zagmanstraat", - "Bosstraat" - ], - "addr:housenumber": [ - "6B", - "11", - "16A", - "18", - "45C", - "1" - ], - "source:geometry:ref": [ - "Gbg/3806278", - "Gbg/3806389", - "Gbg/6031917", - "Gbg/3807478", - "Gbg/6725233", - "Gbg/3807475", - "Gbg/5684176", - "Gbg/3807477", - "Gbg/3806399", - "Gbg/3807762", - "Gbg/6344391", - "Gbg/3809667" - ], - "source:geometry:date": [ - "2012-08-13", - "2014-12-17", - "2017-09-15", - "2020-05-09", - "2016-09-07", - "2018-05-23", - "2012-11-26", - "2017-09-28", - "2012-10-17" - ] - }, - "create": 5216, - "modify": 97, - "delete": 0, - "area": 0.000243550840680015, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 84, - "theme": "grb", - "answer": 1, - "import": 660, - "locale": "nl", - "imagery": "osm", - "conflation": 24, - "change_over_5000m": 659 - }, - "id": 121164998 - } - }, - { - "id": 121164320, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2319197, - -39.8474093 - ], - [ - -73.231165, - -39.8474093 - ], - [ - -73.231165, - -39.8458035 - ], - [ - -73.2319197, - -39.8458035 - ], - [ - -73.2319197, - -39.8474093 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-18T20:53:57Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/W3521ts.jpg", - "https://i.imgur.com/yMGliwG.jpg", - "https://i.imgur.com/VguzCC0.jpg", - "https://i.imgur.com/58lftkV.jpg", - "https://i.imgur.com/ldLrQ3S.jpg", - "https://i.imgur.com/ztLG8a6.jpg", - "https://i.imgur.com/AAd2o41.jpg", - "https://i.imgur.com/tq0wZAg.jpg", - "https://i.imgur.com/vLMCaJY.jpg", - "https://i.imgur.com/Wnh8QCg.jpg", - "https://i.imgur.com/OhndJig.jpg", - "https://i.imgur.com/cB7ue6j.jpg", - "https://i.imgur.com/XhLyOv6.jpg", - "https://i.imgur.com/CtxiT3N.jpg", - "https://i.imgur.com/RNvDwyZ.jpg", - "https://i.imgur.com/ISiFItn.jpg" - ], - "image:0": [ - "https://i.imgur.com/wn10Wk3.jpg", - "https://i.imgur.com/JV0hohr.jpg", - "https://i.imgur.com/c5RDWYC.jpg", - "https://i.imgur.com/MTDVWH3.jpg" - ], - "natural": [ - "tree" - ], - "leaf_cycle": [ - "deciduous" - ] - }, - "create": 0, - "modify": 21, - "delete": 0, - "area": 0.00000121189726000275, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "es", - "imagery": "HDM_HOT", - "add-image": 20, - "change_within_25m": 21 - }, - "id": 121164320 - } - }, - { - "id": 121162818, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2324556, - -39.8460562 - ], - [ - -73.2317358, - -39.8460562 - ], - [ - -73.2317358, - -39.8438042 - ], - [ - -73.2324556, - -39.8438042 - ], - [ - -73.2324556, - -39.8460562 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-18T20:04:23Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/uva2A8Q.jpg", - "https://i.imgur.com/ERy60aR.jpg", - "https://i.imgur.com/Dtr2h15.jpg", - "https://i.imgur.com/JDFSeYU.jpg", - "https://i.imgur.com/fDULVGa.jpg", - "https://i.imgur.com/t8PaUJo.jpg", - "https://i.imgur.com/md9zPT1.jpg", - "https://i.imgur.com/nCxT7Ob.jpg", - "https://i.imgur.com/SsjkV0j.jpg", - "https://i.imgur.com/pPRIrdl.jpg", - "https://i.imgur.com/JTFEHux.jpg", - "https://i.imgur.com/pvk0s6X.jpg", - "https://i.imgur.com/igSSyOQ.jpg", - "https://i.imgur.com/mF3MVCl.jpg", - "https://i.imgur.com/72jeZOk.jpg", - "https://i.imgur.com/8PkmCDq.jpg", - "https://i.imgur.com/SjG9880.jpg", - "https://i.imgur.com/3sIEg30.jpg", - "https://i.imgur.com/d0R59PF.jpg", - "https://i.imgur.com/urariCc.jpg", - "https://i.imgur.com/2gdVulu.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 0, - "modify": 21, - "delete": 0, - "area": 0.00000162098959999634, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "HDM_HOT", - "add-image": 21, - "change_within_25m": 20, - "change_within_50m": 1 - }, - "id": 121162818 - } - }, - { - "id": 121162070, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2487075, - 53.199991 - ], - [ - 6.2488443, - 53.199991 - ], - [ - 6.2488443, - 53.2001709 - ], - [ - 6.2487075, - 53.2001709 - ], - [ - 6.2487075, - 53.199991 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-18T19:41:33Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 2, - "modify": 5, - "delete": 0, - "area": 2.46103200008406e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 8, - "create": 2, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "add-image": 2, - "change_over_5000m": 2, - "change_within_5000m": 10 - }, - "id": 121162070 - } - }, - { - "id": 121161539, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2499747, - 53.2010715 - ], - [ - 6.2499747, - 53.2010715 - ], - [ - 6.2499747, - 53.2010715 - ], - [ - 6.2499747, - 53.2010715 - ], - [ - 6.2499747, - 53.2010715 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-18T19:25:39Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "indoor": [ - "no" - ], - "emergency": [ - "defibrillator" - ], - "wheelchair": [ - "yes" - ], - "survey:date": [ - "2022-05-18" - ], - "opening_hours": [ - "24/7" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 5, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_within_5000m": 5 - }, - "id": 121161539 - } - }, - { - "id": 121159657, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7036228, - 50.8805314 - ], - [ - 4.7039947, - 50.8805314 - ], - [ - 4.7039947, - 50.8805686 - ], - [ - 4.7036228, - 50.8805686 - ], - [ - 4.7036228, - 50.8805314 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Janimatie", - "uid": "15735226", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-18T18:25:40Z", - "reviewed_features": [], - "tag_changes": { - "fixme": [ - "the tag access was filled out by the user and might need refinement" - ], - "image": [ - "https://i.imgur.com/5wQmCCd.jpg" - ], - "level": [ - "0" - ], - "access": [ - "Tijdens openingsuren bibliotheek", - "yes" - ], - "amenity": [ - "toilets" - ], - "image:0": [ - "https://i.imgur.com/mRwhPFh.jpg" - ], - "toilets:position": [ - "seated;urinal" - ], - "toilets:handwashing": [ - "yes" - ], - "toilets:paper_supplied": [ - "yes" - ] - }, - "create": 0, - "modify": 6, - "delete": 1, - "area": 1.38346799978454e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 7, - "locale": "nl", - "imagery": "AGIV", - "deletion": 1, - "add-image": 2, - "deletion:node/7835232730": "duplicate" - }, - "id": 121159657 - } - }, - { - "id": 121158699, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.0612579, - 53.9353522 - ], - [ - 13.0612579, - 53.9353522 - ], - [ - 13.0612579, - 53.9353522 - ], - [ - 13.0612579, - 53.9353522 - ], - [ - 13.0612579, - 53.9353522 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "kjon", - "uid": "44217", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #observation_towers", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-18T17:57:27Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Vogelbeobachtungsturm", - "Vogelbeobachtungsturm (Höhe 9m)" - ], - "height": [ - "9 m" - ], - "tourism": [ - "viewpoint" - ], - "man_made": [ - "tower" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/observation_towers.html", - "theme": "observation_towers", - "answer": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 121158699 - } - }, - { - "id": 121158296, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5324616, - 44.8568503 - ], - [ - -0.5324616, - 44.8568503 - ], - [ - -0.5324616, - 44.8568503 - ], - [ - -0.5324616, - 44.8568503 - ], - [ - -0.5324616, - 44.8568503 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-18T17:43:46Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "surveillance" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 4, - "create": 1, - "locale": "fr", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_50m": 5 - }, - "id": 121158296 - } - }, - { - "id": 121156660, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4189932, - 50.8985036 - ], - [ - 5.4350536, - 50.8985036 - ], - [ - 5.4350536, - 50.9065059 - ], - [ - 5.4189932, - 50.9065059 - ], - [ - 5.4189932, - 50.8985036 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-18T16:54:07Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes", - "house", - "commercial", - "school", - "industrial", - "roof" - ], - "addr:street": [ - "Meidoornlaan" - ], - "addr:housenumber": [ - "1A" - ], - "source:geometry:ref": [ - "Gbg/2336334", - "Gbg/4708873", - "Gbg/2336115", - "Gbg/4708869", - "Gbg/2336338", - "Gbg/2336328", - "Gbg/2336360", - "Gbg/4708877", - "Gbg/2336241", - "Gbg/4708858", - "Gbg/2336331", - "Gbg/4708853", - "Gbg/2336240", - "Gbg/6450978", - "Gbg/2336329", - "Gbg/2336333", - "Gbg/2336332", - "Gbg/6450975", - "Gbg/2335813", - "Gbg/5836074", - "Gbg/2335741", - "Gbg/6635449", - "Gbg/2335327", - "Gbg/4707186", - "Gbg/4707185", - "Gbg/2335743", - "Gbg/2335546", - "Gbg/2336070", - "Gbg/2336335", - "Gbg/5835583", - "Gbg/2335848", - "Gbg/2335849", - "Gbg/2335745", - "Gbg/5836114", - "Gbg/2335818", - "Gbg/2335817", - "Gbg/2335954", - "Gbg/2335953", - "Gbg/5836273", - "Gbg/5836275", - "Gbg/5836272", - "Gbg/5836268", - "Gbg/2335819", - "Gbg/2335820", - "Gbg/5548498", - "Gbg/7024142", - "Gbg/5836226", - "Gbg/2335178", - "Gbg/7024141", - "Gbg/2335729", - "Gbg/2335836", - "Gbg/2335834", - "Gbg/2335835", - "Gbg/6635466", - "Gbg/2335728", - "Gbg/6635435", - "Gbg/2335830", - "Gbg/2336186", - "Gbg/2336120", - "Gbg/2336359", - "Gbg/4709535", - "Gbg/2336112", - "Gbg/5836020", - "Gbg/2336111", - "Gbg/2336110", - "Gbg/5836134", - "Gbg/2336108", - "Gbg/2336107", - "Gbg/2336106", - "Gbg/2336344", - "Gbg/2336119", - "Gbg/2336118", - "Gbg/2336117", - "Gbg/2336116", - "Gbg/2336074", - "Gbg/4709202", - "Gbg/2336073", - "Gbg/2336075", - "Gbg/2335328", - "Gbg/2335329", - "Gbg/2335916", - "Gbg/2335915", - "Gbg/6450976", - "Gbg/5739970", - "Gbg/5739971", - "Gbg/5740024", - "Gbg/7023785", - "Gbg/6111644", - "Gbg/6450981", - "Gbg/5740029", - "Gbg/2335400", - "Gbg/2335410", - "Gbg/2335397", - "Gbg/2335396", - "Gbg/2335411", - "Gbg/6451137", - "Gbg/4709543", - "Gbg/5836208", - "Gbg/2335334", - "Gbg/2335333", - "Gbg/2335335", - "Gbg/5740034", - "Gbg/2335911", - "Gbg/4709640", - "Gbg/7024156", - "Gbg/2335721", - "Gbg/5836050", - "Gbg/2335720", - "Gbg/2335719", - "Gbg/2335330", - "Gbg/6931468", - "Gbg/6931467", - "Gbg/6931466", - "Gbg/6931456", - "Gbg/6931463", - "Gbg/6715619", - "Gbg/6715620", - "Gbg/6931462", - "Gbg/2336113", - "Gbg/2336114", - "Gbg/5835860", - "Gbg/2335994", - "Gbg/2335993", - "Gbg/6780746", - "Gbg/6780892", - "Gbg/2340056", - "Gbg/2340042", - "Gbg/2340032", - "Gbg/2340024", - "Gbg/2339997", - "Gbg/4707506", - "Gbg/5834855", - "Gbg/5835293", - "Gbg/5548504" - ], - "source:geometry:date": [ - "2010-01-25", - "2020-02-25", - "2014-05-27", - "2017-01-30", - "2018-08-07", - "2019-07-05", - "2016-11-09", - "2020-01-06", - "2015-08-25", - "2020-04-30", - "2021-04-20", - "2010-06-14", - "2016-05-13" - ] - }, - "create": 972, - "modify": 1343, - "delete": 15, - "area": 0.000128520138920016, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 1217, - "theme": "grb", - "delete": 15, - "import": 161, - "locale": "nl", - "imagery": "osm", - "conflation": 268 - }, - "id": 121156660 - } - }, - { - "id": 121156578, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1231735, - 51.2176747 - ], - [ - 4.1231735, - 51.2176747 - ], - [ - 4.1231735, - 51.2176747 - ], - [ - 4.1231735, - 51.2176747 - ], - [ - 4.1231735, - 51.2176747 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-18T16:51:53Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "recycling" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/waste.html", - "theme": "waste", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 121156578 - } - }, - { - "id": 121156344, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.427708, - 50.9052282 - ], - [ - 5.4672393, - 50.9052282 - ], - [ - 5.4672393, - 50.915004 - ], - [ - 5.427708, - 50.915004 - ], - [ - 5.427708, - 50.9052282 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-18T16:44:28Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "bicycle" - ], - "amenity": [ - "fuel" - ], - "building": [ - "yes", - "roof", - "house", - "detached" - ], - "source:geometry:ref": [ - "Gba/542779", - "Gbg/2335930", - "Gbg/5289986", - "Gbg/2335923", - "Gbg/2335919", - "Gbg/2335920", - "Gbg/4709114", - "Gbg/2335385", - "Gbg/2335413", - "Gbg/2335414", - "Gbg/2335332", - "Gbg/2336361", - "Gbg/2335927", - "Gbg/2335715", - "Gbg/2335714", - "Gbg/2335935", - "Gbg/2335924", - "Gbg/2335926", - "Gbg/2335925", - "Gbg/2335331", - "Gbg/5824166", - "Gbg/1471647", - "Gbg/1471729", - "Gbg/1471728", - "Gbg/1470034", - "Gbg/4831158", - "Gbg/2335931", - "Gbg/2335932", - "Gbg/2335700", - "Gbg/2335699", - "Gbg/6780782", - "Gbg/6450708", - "Gbg/7006885", - "Gbg/7023944", - "Gbg/7024159", - "Gbg/2335437", - "Gbg/5834635", - "Gbg/6450058", - "Gbg/2335433", - "Gbg/4708826" - ], - "source:geometry:date": [ - "2017-11-08", - "2010-01-25", - "2015-08-25", - "2020-02-25", - "2017-01-30", - "2017-01-24", - "2009-11-20", - "2014-08-20", - "2020-04-30", - "2018-08-07", - "2021-10-07", - "2014-05-27" - ] - }, - "create": 101, - "modify": 407, - "delete": 13, - "area": 0.000386450082539997, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 369, - "theme": "grb", - "delete": 13, - "import": 19, - "locale": "nl", - "imagery": "osm", - "conflation": 80 - }, - "id": 121156344 - } - }, - { - "id": 121155024, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4679209, - 50.915324 - ], - [ - 5.4904659, - 50.915324 - ], - [ - 5.4904659, - 50.9272027 - ], - [ - 5.4679209, - 50.9272027 - ], - [ - 5.4679209, - 50.915324 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-18T16:09:20Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "newsagent" - ], - "amenity": [ - "restaurant" - ], - "building": [ - "industrial", - "house", - "yes", - "roof", - "detached" - ], - "source:geometry:ref": [ - "Gbg/4752350", - "Gbg/1578903", - "Gba/101551", - "Gbg/1578416", - "Gbg/6841120", - "Gbg/7032682", - "Gbg/1578837", - "Gbg/1578975", - "Gbg/1579004", - "Gbg/4753068", - "Gbg/1578359", - "Gbg/1578967", - "Gbg/1578952", - "Gbg/7032686", - "Gbg/7032695", - "Gbg/5786676", - "Gbg/1578971", - "Gbg/7032692", - "Gbg/7032691", - "Gbg/1578791", - "Gbg/6655661", - "Gbg/6655662", - "Gbg/6178092", - "Gbg/6179024", - "Gbg/1471966", - "Gbg/1471645", - "Gbg/1471631", - "Gba/640158", - "Gbg/1469950", - "Gbg/1471109", - "Gbg/6176818", - "Gbg/4832491", - "Gbg/6900595", - "Gbg/1471105", - "Gbg/1469951", - "Gbg/6179688", - "Gbg/6900597", - "Gbg/6179261", - "Gbg/1469947", - "Gbg/1469948", - "Gbg/6177799", - "Gbg/1469949", - "Gbg/6176521", - "Gbg/6345819", - "Gbg/6900599", - "Gbg/4830813", - "Gbg/6655658", - "Gbg/1471092", - "Gbg/6900591", - "Gbg/2342963", - "Gbg/2343003", - "Gbg/4708174", - "Gbg/5290564", - "Gbg/2343011", - "Gbg/2342999", - "Gbg/7024500", - "Gbg/6450608", - "Gbg/2343052", - "Gbg/2343016", - "Gbg/6780836", - "Gbg/7024501", - "Gbg/2343065", - "Gbg/2343060", - "Gbg/2343068", - "Gbg/5834484", - "Gbg/5835077", - "Gbg/2343080", - "Gbg/2343105", - "Gbg/5836015", - "Gbg/2342996", - "Gbg/2342979", - "Gbg/2342962", - "Gbg/2342942", - "Gbg/2342922", - "Gbg/2343129", - "Gbg/6780837", - "Gbg/6780838", - "Gbg/6450079", - "Gbg/5835518", - "Gbg/2343148", - "Gbg/4707721", - "Gbg/5835899", - "Gbg/4707495", - "Gbg/2343188", - "Gbg/6449914" - ], - "source:geometry:date": [ - "2014-06-12", - "2009-08-20", - "2020-09-24", - "2021-12-03", - "2016-12-19", - "2019-08-09", - "2018-01-08", - "2009-11-20", - "2019-02-12", - "2014-08-20", - "2021-02-24", - "2018-06-18", - "2010-11-02", - "2015-08-25", - "2020-02-25", - "2018-08-07", - "2017-01-30", - "2020-04-30", - "2014-05-27" - ] - }, - "create": 383, - "modify": 675, - "delete": 14, - "area": 0.000267805291500091, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 595, - "theme": "grb", - "delete": 14, - "import": 61, - "locale": "nl", - "imagery": "osm", - "conflation": 170 - }, - "id": 121155024 - } - }, - { - "id": 121154484, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4588409, - 50.9232627 - ], - [ - 5.4813157, - 50.9232627 - ], - [ - 5.4813157, - 50.9321114 - ], - [ - 5.4588409, - 50.9321114 - ], - [ - 5.4588409, - 50.9232627 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-18T15:56:31Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes", - "house", - "roof" - ], - "source:geometry:ref": [ - "Gbg/1578309", - "Gbg/5787146", - "Gbg/1578311", - "Gbg/6437951", - "Gbg/4752728", - "Gbg/6436820", - "Gbg/6440039", - "Gbg/1578917", - "Gbg/6436987", - "Gbg/1578314", - "Gbg/4750651", - "Gbg/6437402", - "Gbg/4749895", - "Gbg/5786802", - "Gbg/1578313", - "Gbg/5786033", - "Gbg/4748710", - "Gbg/5787147", - "Gbg/4753669", - "Gbg/1578466", - "Gbg/4751471", - "Gbg/1579000", - "Gbg/6438032", - "Gbg/5785483", - "Gbg/1578326", - "Gbg/4749648", - "Gbg/5785851", - "Gbg/5783129", - "Gbg/1578325", - "Gbg/6746773", - "Gbg/4752794", - "Gbg/6435961", - "Gbg/1578819", - "Gbg/4754063", - "Gbg/1579039", - "Gbg/5787179", - "Gbg/5417555", - "Gbg/5786743", - "Gbg/6439819", - "Gbg/1578955", - "Gbg/7032674", - "Gbg/6437018" - ], - "source:geometry:date": [ - "2016-12-19", - "2009-08-20", - "2018-07-30", - "2014-06-12", - "2020-02-05", - "2019-06-07", - "2015-11-04", - "2021-12-03" - ] - }, - "create": 158, - "modify": 345, - "delete": 13, - "area": 0.000198872762759869, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 303, - "theme": "grb", - "delete": 13, - "import": 32, - "locale": "nl", - "imagery": "osm", - "conflation": 84 - }, - "id": 121154484 - } - }, - { - "id": 121153857, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -60.8210361, - -32.9366272 - ], - [ - -60.7655185, - -32.9366272 - ], - [ - -60.7655185, - -32.9251279 - ], - [ - -60.8210361, - -32.9251279 - ], - [ - -60.8210361, - -32.9366272 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mweper", - "uid": "1311281", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-18T15:42:25Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "surveillance" - ], - "operator": [ - "Municipalidad de Funes", - "Barrio San Sebastián" - ], - "camera:mount": [ - "wall" - ], - "surveillance": [ - "public", - "traffic" - ], - "camera:direction": [ - "314", - "35", - "125", - "310" - ] - }, - "create": 0, - "modify": 8, - "delete": 0, - "area": 0.000638413537679853, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 11, - "locale": "en", - "imagery": "osm" - }, - "id": 121153857 - } - }, - { - "id": 121153758, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -60.810955, - -32.9168627 - ], - [ - -60.8104748, - -32.9168627 - ], - [ - -60.8104748, - -32.9166109 - ], - [ - -60.810955, - -32.9166109 - ], - [ - -60.810955, - -32.9168627 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mweper", - "uid": "1311281", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-18T15:39:59Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ], - "support": [ - "pole" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.20914360000029e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 121153758 - } - }, - { - "id": 121153503, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -60.8104584, - -32.9136312 - ], - [ - -60.806479, - -32.9136312 - ], - [ - -60.806479, - -32.9108203 - ], - [ - -60.8104584, - -32.9108203 - ], - [ - -60.8104584, - -32.9136312 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mweper", - "uid": "1311281", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-18T15:32:54Z", - "reviewed_features": [], - "tag_changes": { - "phone": [ - "+54 341 493 6003" - ], - "access": [ - "public", - "yes", - "limited", - "members", - "customers" - ], - "barrier": [ - "fence" - ], - "leisure": [ - "pitch" - ], - "surface": [ - "grass", - "concrete" - ], - "reservation": [ - "yes" - ] - }, - "create": 0, - "modify": 11, - "delete": 0, - "area": 0.0000111856954599964, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "answer": 13, - "locale": "es", - "imagery": "osm" - }, - "id": 121153503 - } - }, - { - "id": 121153048, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -60.7321845, - -32.9754186 - ], - [ - -60.7321845, - -32.9754186 - ], - [ - -60.7321845, - -32.9754186 - ], - [ - -60.7321845, - -32.9754186 - ], - [ - -60.7321845, - -32.9754186 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mweper", - "uid": "1311281", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #observation_towers", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-18T15:21:17Z", - "reviewed_features": [], - "tag_changes": { - "noname": [ - "yes" - ], - "man_made": [ - "tower" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/observation_towers.html", - "theme": "observation_towers", - "answer": 1, - "locale": "es", - "imagery": "osm" - }, - "id": 121153048 - } - }, - { - "id": 121152875, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -60.8035978, - -32.9178184 - ], - [ - -60.8035978, - -32.9178184 - ], - [ - -60.8035978, - -32.9178184 - ], - [ - -60.8035978, - -32.9178184 - ], - [ - -60.8035978, - -32.9178184 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mweper", - "uid": "1311281", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-18T15:18:06Z", - "reviewed_features": [], - "tag_changes": { - "bicycle": [ - "yes" - ], - "highway": [ - "crossing" - ], - "crossing": [ - "unmarked", - "marked" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 2, - "locale": "es", - "imagery": "osm" - }, - "id": 121152875 - } - }, - { - "id": 121152419, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -60.8077635, - -32.931075 - ], - [ - -60.7976243, - -32.931075 - ], - [ - -60.7976243, - -32.9177968 - ], - [ - -60.8077635, - -32.9177968 - ], - [ - -60.8077635, - -32.931075 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mweper", - "uid": "1311281", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-18T15:07:24Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "bicycle" - ], - "phone": [ - "+54 9 341 351 9232" - ], - "amenity": [ - "bicycle_parking" - ], - "leisure": [ - "track" - ], - "website": [ - "https://pini-bike.negocio.site/" - ], - "cargo_bike": [ - "yes" - ], - "opening_hours": [ - "24/7" - ], - "service:bicycle:diy": [ - "no" - ], - "service:bicycle:second_hand": [ - "no" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.000134630325439988, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 6, - "locale": "es", - "imagery": "osm" - }, - "id": 121152419 - } - }, - { - "id": 121152399, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2164204, - -39.8327389 - ], - [ - -73.2161174, - -39.8327389 - ], - [ - -73.2161174, - -39.8317069 - ], - [ - -73.2164204, - -39.8317069 - ], - [ - -73.2164204, - -39.8327389 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-18T15:07:07Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 3, - "modify": 4, - "delete": 0, - "area": 3.1269600000311e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 6, - "create": 3, - "locale": "es", - "imagery": "EsriWorldImageryClarity", - "add-image": 2, - "change_over_5000m": 3, - "change_within_5000m": 8 - }, - "id": 121152399 - } - }, - { - "id": 121151414, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1230112, - 51.1711015 - ], - [ - 4.1230112, - 51.1711015 - ], - [ - 4.1230112, - 51.1711015 - ], - [ - 4.1230112, - 51.1711015 - ], - [ - 4.1230112, - 51.1711015 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-18T14:47:34Z", - "reviewed_features": [], - "tag_changes": { - "barrier": [ - "fence" - ], - "leisure": [ - "dog_park" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 3 - }, - "id": 121151414 - } - }, - { - "id": 121149322, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2256578, - 48.683025 - ], - [ - 9.2256578, - 48.683025 - ], - [ - 9.2256578, - 48.683025 - ], - [ - 9.2256578, - 48.683025 - ], - [ - 9.2256578, - 48.683025 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-18T13:55:00Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "farm" - ], - "image": [ - "https://i.imgur.com/UQNkGsx.jpg" - ], - "payment:cash": [ - "yes" - ], - "payment:cards": [ - "no" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 1, - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_within_100m": 2 - }, - "id": 121149322 - } - }, - { - "id": 121147174, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1142525, - 51.1654236 - ], - [ - 4.1142525, - 51.1654236 - ], - [ - 4.1142525, - 51.1654236 - ], - [ - 4.1142525, - 51.1654236 - ], - [ - 4.1142525, - 51.1654236 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #fitness_station", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-18T13:00:28Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "fitness_station" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "fitness_station", - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 121147174 - } - }, - { - "id": 121146764, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2340334, - 50.7355016 - ], - [ - 4.2340334, - 50.7355016 - ], - [ - 4.2340334, - 50.7355016 - ], - [ - 4.2340334, - 50.7355016 - ], - [ - 4.2340334, - 50.7355016 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-18T12:50:16Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/p0DQu5v.jpg" - ], - "access": [ - "yes" - ], - "amenity": [ - "bicycle_parking" - ], - "covered": [ - "no" - ], - "capacity": [ - "5" - ], - "cargo_bike": [ - "yes" - ], - "capacity:cargo_bike": [ - "1" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 5, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 121146764 - } - }, - { - "id": 121145969, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1433572, - 51.1714002 - ], - [ - 4.1435442, - 51.1714002 - ], - [ - 4.1435442, - 51.1715213 - ], - [ - 4.1433572, - 51.1715213 - ], - [ - 4.1433572, - 51.1714002 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-18T12:33:27Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "bicycle" - ], - "rental": [ - "city_bike" - ], - "service:bicycle:pump": [ - "separate" - ], - "service:bicycle:rental": [ - "yes" - ], - "service:bicycle:repair": [ - "yes" - ], - "service:bicycle:retail": [ - "no" - ], - "service:bicycle:cleaning": [ - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 2.26457000002718e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", - "theme": "cyclofix", - "answer": 6, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_within_25m": 6 - }, - "id": 121145969 - } - }, - { - "id": 121145841, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1436367, - 51.1714072 - ], - [ - 4.1436367, - 51.1714072 - ], - [ - 4.1436367, - 51.1714072 - ], - [ - 4.1436367, - 51.1714072 - ], - [ - 4.1436367, - 51.1714072 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-18T12:31:46Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/I0HDODp.jpg" - ], - "rental": [ - "city_bike" - ], - "amenity": [ - "bicycle_rental" - ], - "payment:app": [ - "yes" - ], - "payment:cash": [ - "no" - ], - "payment:cards": [ - "no" - ], - "bicycle_rental": [ - "key_dispensing_machine" - ], - "payment:membership_card": [ - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1, - "change_within_100m": 3 - }, - "id": 121145841 - } - }, - { - "id": 121144520, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4582786, - 50.9258837 - ], - [ - 5.4743274, - 50.9258837 - ], - [ - 5.4743274, - 50.9316175 - ], - [ - 5.4582786, - 50.9316175 - ], - [ - 5.4582786, - 50.9258837 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-18T12:08:19Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "convenience" - ], - "building": [ - "yes", - "house", - "roof", - "detached", - "garage", - "apartments" - ], - "source:geometry:ref": [ - "Gbg/6450269", - "Gbg/7032684", - "Gbg/7032685", - "Gbg/2341668", - "Gbg/2341698", - "Gbg/2341729", - "Gbg/2341717", - "Gbg/2341758", - "Gbg/2341754", - "Gbg/2341751", - "Gbg/4707749", - "Gbg/4709018", - "Gbg/2341806", - "Gbg/5835945", - "Gbg/5835549", - "Gbg/2341855", - "Gbg/2341878", - "Gbg/2341921", - "Gbg/2341920", - "Gbg/2341942", - "Gbg/2341995", - "Gbg/2342030", - "Gbg/2342044", - "Gbg/2342074", - "Gbg/2342094", - "Gbg/6780463", - "Gbg/7024495", - "Gbg/6780462", - "Gbg/5290628", - "Gbg/2342279", - "Gbg/2342347", - "Gbg/2342315", - "Gbg/2342348", - "Gbg/4707650", - "Gbg/2342388", - "Gbg/2342431", - "Gbg/5835100", - "Gbg/6450467", - "Gbg/4709254", - "Gbg/2342245", - "Gbg/2342224", - "Gbg/2342218", - "Gbg/2342200", - "Gbg/2342183", - "Gbg/2342127", - "Gbg/2342152", - "Gbg/2342149", - "Gbg/2342133", - "Gbg/2342124", - "Gbg/2342107", - "Gbg/2342070", - "Gbg/2342322", - "Gba/171484", - "Gbg/2342305", - "Gbg/2341834", - "Gbg/2341856", - "Gbg/2342064", - "Gbg/2342066", - "Gbg/2342141", - "Gbg/6450153", - "Gbg/2342210", - "Gbg/2342163", - "Gbg/2342192", - "Gbg/2342213", - "Gbg/4708418", - "Gbg/4708663", - "Gbg/6450298", - "Gbg/4708753", - "Gbg/2342256", - "Gbg/5835205", - "Gbg/6780442", - "Gbg/7024493", - "Gbg/4708503", - "Gbg/6449980", - "Gbg/2342283", - "Gbg/2342298", - "Gbg/2342333", - "Gbg/2342367", - "Gbg/2342409", - "Gbg/2342390", - "Gbg/2342730", - "Gbg/2342701", - "Gbg/5835223", - "Gbg/5835451", - "Gbg/5834523", - "Gbg/4708659", - "Gbg/4707583", - "Gbg/5834788", - "Gbg/2342705", - "Gbg/5834214", - "Gbg/7023821", - "Gbg/2342749", - "Gbg/2342622", - "Gbg/2342603", - "Gbg/4707376", - "Gbg/2342636", - "Gbg/4708611", - "Gbg/7024494", - "Gbg/6450858", - "Gbg/2342420", - "Gbg/4708459", - "Gbg/2342407", - "Gbg/4708797", - "Gbg/2342379", - "Gbg/2342386", - "Gbg/2342376", - "Gbg/5834800", - "Gbg/4708171", - "Gbg/2342284", - "Gbg/5834424", - "Gbg/4708114", - "Gbg/6450899", - "Gbg/5835005", - "Gbg/6450784", - "Gbg/6449967", - "Gbg/6780441", - "Gbg/5834463", - "Gbg/2342173", - "Gbg/2342238", - "Gbg/2342254", - "Gbg/2342276", - "Gbg/2342303", - "Gbg/2342326", - "Gbg/7024004", - "Gbg/4708005", - "Gbg/4707352", - "Gbg/2342361", - "Gbg/6780454", - "Gbg/6780455", - "Gbg/4707735", - "Gbg/2342449", - "Gbg/2342465", - "Gbg/4708553", - "Gbg/5835726", - "Gbg/4708973", - "Gbg/2342526", - "Gbg/2342791", - "Gbg/6450232", - "Gbg/7024510", - "Gbg/2342781", - "Gbg/2342699", - "Gbg/2342813", - "Gbg/2342825", - "Gbg/6780461", - "Gbg/6449875", - "Gbg/6780460", - "Gbg/4708571", - "Gbg/2342836", - "Gbg/2342843", - "Gbg/2342859", - "Gbg/2342872", - "Gbg/2342884", - "Gbg/5836173", - "Gbg/5835318", - "Gbg/4708784", - "Gbg/2343102", - "Gbg/5835752", - "Gbg/2343081", - "Gbg/4708492", - "Gbg/5834776", - "Gbg/2343074", - "Gbg/2343082", - "Gbg/2343095", - "Gbg/2343111", - "Gbg/2343067", - "Gbg/2343064", - "Gbg/4708257", - "Gbg/5835125", - "Gbg/2343086", - "Gbg/2343077", - "Gbg/2343056", - "Gbg/2343046", - "Gbg/2343084", - "Gbg/7024511", - "Gbg/2343089", - "Gbg/7024512", - "Gbg/2343069", - "Gbg/4707279", - "Gbg/2343036", - "Gbg/2343029", - "Gbg/4708169", - "Gbg/2343026", - "Gbg/3174791", - "Gbg/2342995", - "Gbg/2342988", - "Gbg/4707676", - "Gbg/4707309", - "Gbg/5834250", - "Gbg/2342974", - "Gbg/4709191", - "Gbg/4709415", - "Gbg/2342929", - "Gbg/4707685", - "Gbg/2342972", - "Gbg/6450886", - "Gbg/2343028", - "Gbg/2343017", - "Gbg/7024514", - "Gbg/7024515", - "Gbg/2343041", - "Gbg/2343055", - "Gbg/5834933", - "Gbg/2343076", - "Gbg/4709294", - "Gbg/2343108", - "Gbg/4753541", - "Gbg/6437981", - "Gbg/1578705", - "Gbg/2343103", - "Gbg/5834623", - "Gbg/2343136", - "Gbg/2343151", - "Gbg/4708673", - "Gbg/2343140", - "Gbg/2343117", - "Gbg/2343104", - "Gbg/7024513", - "Gbg/2343090", - "Gbg/6450941", - "Gbg/2343066", - "Gbg/2343048", - "Gbg/5835248", - "Gbg/2343053", - "Gbg/2343078", - "Gbg/5290245", - "Gbg/2343101", - "Gbg/2343109", - "Gbg/2343119", - "Gbg/2343124", - "Gbg/5548486", - "Gbg/5290265", - "Gbg/2343161", - "GRB", - "Gbg/2343179", - "Gbg/2343154", - "Gbg/2343177", - "Gbg/5835102", - "Gbg/2343173", - "Gbg/2343171", - "Gbg/6449972", - "Gbg/5834950", - "Gbg/2343167", - "Gbg/2343162", - "Gbg/6780459", - "Gbg/5836312", - "Gbg/2343150", - "Gbg/5835629", - "Gbg/2343147", - "Gbg/2343145", - "Gbg/2343132", - "Gbg/2343123", - "Gbg/5836032", - "Gbg/4752030", - "Gbg/1578368", - "Gbg/4749912", - "Gbg/1578321", - "Gbg/1578320", - "Gbg/4753921", - "Gbg/1578318", - "Gbg/1578233", - "Gbg/1578317", - "Gbg/1578707", - "Gbg/1578316", - "Gbg/2342369", - "Gbg/2342357", - "Gbg/5834515", - "Gbg/2342350", - "Gbg/2342319", - "Gbg/2342314", - "Gbg/2342312", - "Gbg/2342289", - "Gbg/2342336", - "Gbg/2342327", - "Gbg/2342288", - "Gbg/2342304", - "Gbg/2342281", - "Gbg/2342275", - "Gbg/2342285", - "Gbg/6450406", - "Gbg/6450602", - "Gbg/4709575", - "Gbg/2342253", - "Gbg/4708363", - "Gbg/2342193", - "Gbg/2342216", - "Gbg/2342236", - "Gbg/2342209", - "Gbg/2342182", - "Gbg/2342187", - "Gbg/2342178", - "Gbg/2342196", - "Gbg/2342158", - "Gbg/2342174", - "Gbg/4707581", - "Gbg/4708380", - "Gbg/2342167", - "Gbg/2342140", - "Gbg/2342089", - "Gbg/2342059", - "Gbg/2342032", - "Gbg/2342011", - "Gbg/4708282", - "Gbg/2341983", - "Gbg/2341981", - "Gbg/2341966", - "Gbg/2342026", - "Gbg/2342095", - "Gbg/7024492", - "Gbg/2342126", - "Gbg/2342259", - "Gbg/2342476", - "Gbg/2342468", - "Gbg/4708314", - "Gbg/4707530", - "Gbg/2342414", - "Gbg/2342393", - "Gbg/2342381", - "Gbg/4708757", - "Gbg/4707438", - "Gbg/2342341", - "Gbg/2342295", - "Gbg/2342272", - "Gbg/2342286", - "Gbg/2342310", - "Gbg/4708680", - "Gbg/5834741", - "Gbg/2342332", - "Gbg/2342308", - "Gbg/2342318", - "Gbg/2342438", - "Gbg/2342451", - "Gbg/4709357", - "Gbg/2342485", - "Gbg/4708780", - "Gbg/5835690", - "Gbg/5835819", - "Gbg/2342478", - "Gbg/2342492", - "Gbg/2342475", - "Gbg/2342447", - "Gbg/2342434", - "Gbg/2342400", - "Gbg/4513148", - "Gbg/6994472", - "Gbg/6994473" - ], - "source:geometry:date": [ - "2018-08-07", - "2021-12-03", - "2010-11-02", - "2014-05-27", - "2017-01-30", - "2020-04-30", - "2020-02-25", - "2015-08-25", - "2012-03-14", - "2014-01-30", - "2018-07-30", - "2009-08-20", - "2016-05-13", - "2022-05-17", - "2014-06-12", - "2016-12-19", - "2021-09-20" - ] - }, - "create": 254, - "modify": 2534, - "delete": 51, - "area": 0.0000920206094400256, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 2207, - "theme": "grb", - "delete": 51, - "import": 54, - "locale": "nl", - "imagery": "osm", - "conflation": 692 - }, - "id": 121144520 - } - }, - { - "id": 121143420, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.464458, - 50.928051 - ], - [ - 5.4689883, - 50.928051 - ], - [ - 5.4689883, - 50.930567 - ], - [ - 5.464458, - 50.930567 - ], - [ - 5.464458, - 50.928051 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-18T11:46:47Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "roof", - "detached", - "yes", - "house" - ], - "source:geometry:ref": [ - "Gbg/2342455", - "Gbg/5835446", - "Gbg/5835620", - "Gbg/2342539", - "Gbg/5290264", - "Gbg/2342577", - "Gbg/6450953", - "Gbg/2342538", - "Gbg/2342529", - "Gbg/5290250", - "Gbg/2342611", - "Gbg/2342633", - "Gbg/2342642", - "Gbg/2342667", - "Gbg/7023822", - "Gbg/4707390", - "Gbg/2342713", - "Gbg/5836156", - "Gbg/5836204", - "Gbg/2342658", - "Gbg/6450269", - "Gbg/4708576", - "Gbg/2342590", - "Gbg/2342629", - "Gbg/2342608", - "Gbg/5835456", - "Gbg/2342559", - "Gbg/2342573", - "Gbg/5836128", - "Gbg/2342504", - "Gbg/5834945", - "Gbg/5834939", - "Gbg/5834720", - "Gbg/6450891", - "Gbg/2342477", - "Gbg/2342398", - "Gbg/2342385", - "Gbg/2342330", - "Gbg/2342302", - "Gbg/7024005", - "Gbg/2342225", - "Gbg/2342222", - "Gbg/2342230", - "Gbg/2342269", - "Gbg/2342291", - "Gbg/6451144", - "Gbg/2342351", - "Gbg/6522617", - "Gbg/2342430", - "Gbg/2342714", - "Gbg/2342735", - "Gbg/2342680", - "Gbg/2342659", - "Gbg/5290244", - "Gbg/2342605", - "Gbg/2342809", - "Gbg/2342803" - ], - "source:geometry:date": [ - "2018-08-07", - "2017-01-30", - "2010-11-02", - "2016-05-13", - "2020-02-25", - "2015-08-25", - "2014-05-27", - "2018-12-10" - ] - }, - "create": 71, - "modify": 439, - "delete": 24, - "area": 0.0000113982348000018, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 388, - "theme": "grb", - "delete": 24, - "import": 16, - "locale": "nl", - "imagery": "osm", - "conflation": 114 - }, - "id": 121143420 - } - }, - { - "id": 121143333, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.467321, - 50.9295092 - ], - [ - 5.4688052, - 50.9295092 - ], - [ - 5.4688052, - 50.9304306 - ], - [ - 5.467321, - 50.9304306 - ], - [ - 5.467321, - 50.9295092 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-18T11:44:48Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes", - "roof" - ], - "source:geometry:ref": [ - "Gbg/2342640", - "Gbg/2342657", - "Gbg/2342693", - "Gbg/2342710", - "Gbg/4707529", - "Gbg/5836186", - "Gbg/5836096", - "Gbg/2342786", - "Gbg/2342769" - ], - "source:geometry:date": [ - "2010-11-02", - "2017-01-30", - "2020-02-25", - "2014-05-27", - "2018-08-07", - "2015-08-25" - ] - }, - "create": 21, - "modify": 73, - "delete": 11, - "area": 0.00000136754188000437, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 70, - "theme": "grb", - "delete": 11, - "import": 6, - "locale": "nl", - "imagery": "osm", - "conflation": 18 - }, - "id": 121143333 - } - }, - { - "id": 121139553, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4673301, - 50.9272691 - ], - [ - 5.4706768, - 50.9272691 - ], - [ - 5.4706768, - 50.9290813 - ], - [ - 5.4673301, - 50.9290813 - ], - [ - 5.4673301, - 50.9272691 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-18T10:25:16Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes", - "detached", - "house", - "roof" - ], - "source:geometry:ref": [ - "Gbg/2342634", - "Gbg/7023809", - "Gbg/2342684", - "Gbg/6450688", - "Gbg/4708604", - "Gbg/2342661", - "Gbg/5836202", - "Gbg/5834959", - "Gbg/2342716", - "Gbg/4708183", - "Gbg/6450176", - "Gbg/2342808", - "Gbg/2342830", - "Gbg/2342796", - "Gbg/2342776", - "Gbg/2342840", - "Gbg/2342886", - "Gbg/2342878", - "Gbg/2342871", - "Gbg/2342905", - "Gbg/2342894", - "Gbg/2342914", - "Gbg/4708729", - "Gbg/5834445", - "Gbg/6450958", - "Gbg/2342862", - "Gbg/4707734", - "Gbg/5835032", - "Gbg/2342912", - "Gbg/6780444", - "Gbg/2342949", - "Gbg/2342956", - "Gbg/2342932", - "Gbg/4708694", - "Gbg/2342969", - "Gbg/2342973", - "Gbg/6450948", - "Gbg/2342951", - "Gbg/2342935", - "Gbg/2342968", - "Gbg/2342978", - "Gbg/2342986", - "Gbg/7024508", - "Gbg/2342994", - "Gbg/2342918", - "Gbg/4707776", - "Gbg/2342888", - "Gbg/2342877", - "Gbg/2342842", - "Gbg/2342857", - "Gbg/2342824", - "Gbg/5290248", - "Gbg/6450268", - "Gbg/6450932", - "Gbg/7024509", - "Gbg/6780445", - "Gbg/2342811", - "Gbg/5834902", - "Gbg/2342779", - "Gbg/6780446", - "Gbg/2342767", - "Gbg/7023808", - "Gbg/2342741", - "Gbg/6450685", - "Gbg/4708208", - "Gbg/2342880", - "Gbg/5835717" - ], - "source:geometry:date": [ - "2010-11-02", - "2020-02-25", - "2015-08-25", - "2018-08-07", - "2014-05-27", - "2017-01-30", - "2020-04-30", - "2012-03-14" - ] - }, - "create": 77, - "modify": 475, - "delete": 21, - "area": 0.00000606488974001095, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 410, - "theme": "grb", - "delete": 21, - "import": 18, - "locale": "nl", - "imagery": "osm", - "conflation": 134 - }, - "id": 121139553 - } - }, - { - "id": 121134623, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.999458, - 43.4078028 - ], - [ - -3.9618695, - 43.4078028 - ], - [ - -3.9618695, - 43.4200036 - ], - [ - -3.999458, - 43.4200036 - ], - [ - -3.999458, - 43.4078028 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ninopiña10", - "uid": "11138282", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-18T08:48:27Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "drinking_water" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 0.000458609770800084, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 5, - "create": 2, - "locale": "en", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 2, - "change_within_25m": 7 - }, - "id": 121134623 - } - }, - { - "id": 121132724, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3179078, - 44.8472835 - ], - [ - 4.4408325, - 44.8472835 - ], - [ - 4.4408325, - 44.9161808 - ], - [ - 4.3179078, - 44.9161808 - ], - [ - 4.3179078, - 44.8472835 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Binnette", - "uid": "918586", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/Binnette/5998b87d5e32efab13a00d5aa1ca1731/raw/95be0f8e9a17cd3c3ad0326a94c81e6452f0fe16/walkingnetworks.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-18T08:05:02Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "hiking" - ], - "survey:date": [ - "2021-12-28" - ] - }, - "create": 0, - "modify": 40, - "delete": 0, - "area": 0.0084691799333095, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://gist.githubusercontent.com/Binnette/5998b87d5e32efab13a00d5aa1ca1731/raw/95be0f8e9a17cd3c3ad0326a94c81e6452f0fe16/walkingnetworks.json", - "answer": 40, - "locale": "en", - "imagery": "osm" - }, - "id": 121132724 - } - }, - { - "id": 121132312, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3234809, - 44.8479993 - ], - [ - 4.4218624, - 44.8479993 - ], - [ - 4.4218624, - 44.9139881 - ], - [ - 4.3234809, - 44.9139881 - ], - [ - 4.3234809, - 44.8479993 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Binnette", - "uid": "918586", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/Binnette/5998b87d5e32efab13a00d5aa1ca1731/raw/b25da7c21c50e4852eb8230110a028c563d53847/walkingnetworks.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-18T07:54:47Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "hiking" - ], - "survey:date": [ - "2021-12-28" - ], - "expected_lwn_route_relations": [ - "3", - "2", - "4" - ] - }, - "create": 0, - "modify": 34, - "delete": 0, - "area": 0.00649207712719998, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://gist.githubusercontent.com/Binnette/5998b87d5e32efab13a00d5aa1ca1731/raw/b25da7c21c50e4852eb8230110a028c563d53847/walkingnetworks.json", - "answer": 45, - "locale": "en", - "imagery": "osm" - }, - "id": 121132312 - } - }, - { - "id": 121128602, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.4954436, - 49.773106 - ], - [ - 10.4955362, - 49.773106 - ], - [ - 10.4955362, - 49.7731164 - ], - [ - 10.4954436, - 49.7731164 - ], - [ - 10.4954436, - 49.773106 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "onkelben866", - "uid": "14063915", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-18T06:36:19Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "charging_station" - ] - }, - "create": 1, - "modify": 10, - "delete": 0, - "area": 9.63040000072261e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "move": 1, - "theme": "charging_stations", - "answer": 14, - "create": 1, - "locale": "de", - "imagery": "CartoDB.Voyager", - "move:node/9750887298": "improve_accuracy" - }, - "id": 121128602 - } - }, - { - "id": 121127575, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3648376, - 50.9612889 - ], - [ - 5.3648376, - 50.9612889 - ], - [ - 5.3648376, - 50.9612889 - ], - [ - 5.3648376, - 50.9612889 - ], - [ - 5.3648376, - 50.9612889 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-18T06:11:53Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/zuSJxB8.jpg" - ], - "natural": [ - "tree" - ], - "leaf_type": [ - "broadleaved" - ], - "denotation": [ - "landmark" - ], - "leaf_cycle": [ - "deciduous" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 4 - }, - "id": 121127575 - } - }, - { - "id": 121123128, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.340668, - 50.8069055 - ], - [ - 5.3424994, - 50.8069055 - ], - [ - 5.3424994, - 50.8099846 - ], - [ - 5.340668, - 50.8099846 - ], - [ - 5.340668, - 50.8069055 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-18T03:25:14Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "tertiary" - ], - "name:etymology:wikidata": [ - "Q55008046" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.00000563906374000257, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 121123128 - } - }, - { - "id": 121121367, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -99.1098452, - 19.4613109 - ], - [ - -99.1096989, - 19.4613109 - ], - [ - -99.1096989, - 19.4613741 - ], - [ - -99.1098452, - 19.4613741 - ], - [ - -99.1098452, - 19.4613109 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mapeadora", - "uid": "1437169", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-18T00:21:46Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 2, - "modify": 1, - "delete": 0, - "area": 9.24615999976837e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 2, - "create": 2, - "locale": "es", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_500m": 2 - }, - "id": 121121367 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-19.json b/Docs/Tools/stats/stats.2022-5-19.json deleted file mode 100644 index 2fe6cb76e6..0000000000 --- a/Docs/Tools/stats/stats.2022-5-19.json +++ /dev/null @@ -1,1691 +0,0 @@ -{ - "features": [ - { - "id": 121208078, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4267662, - 50.8822279 - ], - [ - 3.4267662, - 50.8822279 - ], - [ - 3.4267662, - 50.8822279 - ], - [ - 3.4267662, - 50.8822279 - ], - [ - 3.4267662, - 50.8822279 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibault Rommel", - "uid": "5846458", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-19T18:29:37Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/2FqQ9qK.jpg" - ], - "rental": [ - "city_bike" - ], - "amenity": [ - "bicycle_rental" - ], - "bicycle_rental": [ - "docking_station" - ], - "capacity:city_bike": [ - "12" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 4 - }, - "id": 121208078 - } - }, - { - "id": 121198279, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7216874, - 51.0423994 - ], - [ - 3.7216874, - 51.0423994 - ], - [ - 3.7216874, - 51.0423994 - ], - [ - 3.7216874, - 51.0423994 - ], - [ - 3.7216874, - 51.0423994 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "M!dgard", - "uid": "763799", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-19T14:15:15Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "species:wikidata": [ - "Q161374" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 121198279 - } - }, - { - "id": 121197910, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6892122, - 51.0235038 - ], - [ - 3.6892122, - 51.0235038 - ], - [ - 3.6892122, - 51.0235038 - ], - [ - 3.6892122, - 51.0235038 - ], - [ - 3.6892122, - 51.0235038 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "M!dgard", - "uid": "763799", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-19T14:06:09Z", - "reviewed_features": [], - "tag_changes": { - "valves": [ - "sclaverand;schrader" - ], - "amenity": [ - "bicycle_repair_station" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 121197910 - } - }, - { - "id": 121197782, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6892122, - 51.0235038 - ], - [ - 3.6892122, - 51.0235038 - ], - [ - 3.6892122, - 51.0235038 - ], - [ - 3.6892122, - 51.0235038 - ], - [ - 3.6892122, - 51.0235038 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "M!dgard", - "uid": "763799", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-19T14:02:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 5, - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 121197782 - } - }, - { - "id": 121195824, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4797189, - 51.0334762 - ], - [ - 4.4797189, - 51.0334762 - ], - [ - 4.4797189, - 51.0334762 - ], - [ - 4.4797189, - 51.0334762 - ], - [ - 4.4797189, - 51.0334762 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "philippec", - "uid": "76884", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-19T13:12:22Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/C0N0MPy.jpg" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 121195824 - } - }, - { - "id": 121192060, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1949374, - 45.7378386 - ], - [ - 3.1949374, - 45.7378386 - ], - [ - 3.1949374, - 45.7378386 - ], - [ - 3.1949374, - 45.7378386 - ], - [ - 3.1949374, - 45.7378386 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jieff6_10", - "uid": "3510184", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #postboxes", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-19T11:50:49Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "post_box" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/postboxes.html", - "theme": "postboxes", - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 121192060 - } - }, - { - "id": 121191415, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2961962, - 45.7594414 - ], - [ - 3.1376883, - 45.7594414 - ], - [ - 3.1376883, - 48.8609484 - ], - [ - 2.2961962, - 48.8609484 - ], - [ - 2.2961962, - 45.7594414 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jieff6_10", - "uid": "3510184", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #facadegardens", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-19T11:37:29Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "bicycle" - ], - "highway": [ - "steps", - "footway", - "service", - "path" - ], - "leisure": [ - "garden" - ] - }, - "create": 3, - "modify": 1, - "delete": 0, - "area": 2.6098936385947, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/facadegardens.html", - "theme": "facadegardens", - "answer": 9, - "create": 3, - "locale": "fr", - "imagery": "osm" - }, - "id": 121191415 - } - }, - { - "id": 121189940, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0597688, - 50.8495352 - ], - [ - 4.0598351, - 50.8495352 - ], - [ - 4.0598351, - 50.8497158 - ], - [ - 4.0597688, - 50.8497158 - ], - [ - 4.0597688, - 50.8495352 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-19T11:08:09Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "picnic_table" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 1.19737800000667e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "import": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 3, - "import:node/9754296735": "source: https://osm.org/note/3090238" - }, - "id": 121189940 - } - }, - { - "id": 121187877, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4167276, - 50.9053328 - ], - [ - 5.422073, - 50.9053328 - ], - [ - 5.422073, - 50.9074432 - ], - [ - 5.4167276, - 50.9074432 - ], - [ - 5.4167276, - 50.9053328 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-19T10:21:54Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "jewelry", - "butcher", - "newsagent", - "bakery" - ], - "amenity": [ - "community_centre", - "fast_food", - "vending_machine" - ], - "building": [ - "yes", - "house", - "commercial", - "apartments", - "school", - "roof" - ], - "addr:street": [ - "Kloosterstraat", - "Paanhuisstraat" - ], - "addr:housenumber": [ - "29", - "5" - ], - "source:geometry:ref": [ - "Gbg/2335866", - "Gbg/2335867", - "Gbg/2336355", - "Gbg/2335317", - "Gbg/2335316", - "Gbg/2335798", - "Gbg/2335388", - "Gbg/2336102", - "Gbg/4708898", - "Gbg/5836008", - "Gbg/2335312", - "Gbg/5947029", - "Gbg/4707188", - "Gbg/4708862", - "Gbg/2336372", - "Gbg/6449843", - "Gbg/2335500", - "Gbg/2335753", - "Gbg/5947025", - "Gbg/2335298", - "Gbg/6450982", - "Gbg/2335309", - "Gbg/5290362", - "Gbg/5289949", - "Gbg/4708911", - "Gbg/2335751", - "Gbg/5289932", - "Gbg/2335302", - "Gbg/4709144", - "Gbg/2335884", - "Gbg/2335883", - "Gbg/4709631", - "Gbg/2335290", - "Gbg/5836071", - "Gbg/2335864", - "Gbg/2335865", - "Gbg/2335862", - "Gbg/2335861", - "Gbg/2335321", - "Gbg/2335320", - "Gbg/2335323", - "Gbg/2335324", - "Gbg/2335325", - "Gbg/2335304", - "Gbg/2335303", - "Gbg/2335305", - "Gbg/2335300", - "Gbg/2335299", - "Gbg/2335301", - "Gbg/2335306", - "Gbg/2335307", - "Gbg/2335315", - "Gbg/2335314", - "Gbg/2335801", - "Gbg/2335395", - "Gbg/2335799", - "Gbg/4708913", - "Gbg/4708978", - "Gbg/2335965", - "Gbg/2335966", - "Gbg/2335802", - "Gbg/5836235", - "Gbg/2335322" - ], - "source:geometry:date": [ - "2015-08-25", - "2010-01-25", - "2014-05-27", - "2017-01-30", - "2018-08-07", - "2020-04-30", - "2020-02-25", - "2017-05-22" - ] - }, - "create": 221, - "modify": 613, - "delete": 17, - "area": 0.0000112809321600356, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 558, - "theme": "grb", - "delete": 17, - "import": 39, - "locale": "nl", - "imagery": "osm", - "conflation": 126 - }, - "id": 121187877 - } - }, - { - "id": 121186797, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4186162, - 50.9036058 - ], - [ - 5.4233255, - 50.9036058 - ], - [ - 5.4233255, - 50.9066296 - ], - [ - 5.4186162, - 50.9066296 - ], - [ - 5.4186162, - 50.9036058 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-19T09:59:15Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "jewelry" - ], - "amenity": [ - "fast_food", - "post_office", - "community_centre" - ], - "building": [ - "house", - "yes", - "public", - "roof" - ], - "addr:street": [ - "Kloosterstraat" - ], - "addr:housenumber": [ - "1" - ], - "source:geometry:ref": [ - "Gbg/2335815", - "Gbg/2335517", - "Gbg/2335814", - "Gbg/2335855", - "Gbg/2335326", - "Gbg/2335950", - "Gbg/5836138", - "Gbg/2335858", - "Gbg/2335859", - "Gbg/2335860", - "Gbg/2335725", - "Gbg/2335179", - "Gbg/2335803", - "Gbg/2335951", - "Gbg/2335960", - "Gbg/2335959", - "Gbg/2335952", - "Gbg/2335804", - "Gbg/2335963", - "Gbg/2335964", - "Gbg/2335805", - "Gbg/6451063", - "Gbg/6635475", - "Gbg/6635455", - "Gbg/6635468", - "Gbg/2335809", - "Gbg/5836081", - "Gbg/2335811", - "Gbg/2335810", - "Gbg/2335812", - "Gbg/6635480", - "Gbg/2336362", - "Gbg/2335726", - "Gbg/2335854", - "Gbg/2335841", - "Gbg/2335842", - "Gbg/2335843", - "Gbg/2335844", - "Gbg/2335846", - "Gbg/6451087", - "Gbg/6635431", - "Gbg/5836178", - "Gbg/2335852", - "Gbg/2335958", - "Gbg/5836027", - "Gbg/2335822", - "Gbg/6635487", - "Gbg/2335824", - "Gbg/5836170", - "Gbg/2335825", - "Gbg/2335826", - "Gbg/2335840", - "Gbg/5835927", - "Gbg/2335837", - "Gbg/2335838", - "Gbg/6931469" - ], - "source:geometry:date": [ - "2010-01-25", - "2020-04-30", - "2017-01-30", - "2019-07-05", - "2014-05-27", - "2015-08-25", - "2021-04-20" - ] - }, - "create": 287, - "modify": 498, - "delete": 7, - "area": 0.0000142399813400054, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 450, - "theme": "grb", - "delete": 7, - "import": 52, - "locale": "nl", - "imagery": "osm", - "conflation": 112 - }, - "id": 121186797 - } - }, - { - "id": 121186673, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4229565, - 50.9056517 - ], - [ - 5.4231754, - 50.9056517 - ], - [ - 5.4231754, - 50.9057944 - ], - [ - 5.4229565, - 50.9057944 - ], - [ - 5.4229565, - 50.9056517 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-19T09:56:57Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house" - ], - "source:geometry:ref": [ - "Gbg/2335816" - ], - "source:geometry:date": [ - "2010-01-25" - ] - }, - "create": 0, - "modify": 11, - "delete": 0, - "area": 3.12370299995441e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 10, - "theme": "grb", - "locale": "nl", - "imagery": "osm", - "conflation": 2 - }, - "id": 121186673 - } - }, - { - "id": 121186174, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5518855, - 53.0657265 - ], - [ - 6.5806527, - 53.0657265 - ], - [ - 6.5806527, - 53.0930517 - ], - [ - 6.5518855, - 53.0930517 - ], - [ - 6.5518855, - 53.0657265 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-19T09:48:57Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential", - "unclassified", - "footway", - "primary", - "service" - ], - "name:etymology:wikidata": [ - "Q146391", - "Q13358519", - "Q5194627", - "Q156921", - "Q25393", - "Q25234", - "Q25388", - "Q18789", - "Q18845", - "Q168473", - "Q43489", - "Q29858", - "Q25380", - "Q27589", - "Q2175460", - "Q835083" - ] - }, - "create": 0, - "modify": 33, - "delete": 0, - "area": 0.000786069493439995, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 37, - "locale": "nl", - "imagery": "osm", - "change_within_50m": 1, - "change_within_500m": 1, - "change_within_1000m": 18, - "change_within_5000m": 17 - }, - "id": 121186174 - } - }, - { - "id": 121186169, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1004406, - 38.8376833 - ], - [ - 0.1120733, - 38.8376833 - ], - [ - 0.1120733, - 38.8440603 - ], - [ - 0.1004406, - 38.8440603 - ], - [ - 0.1004406, - 38.8376833 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-19T09:48:52Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/z0CFFo0.jpg", - "https://i.imgur.com/H8ZrCXG.jpg", - "https://i.imgur.com/uRSEZmx.jpg" - ], - "waste": [ - "trash;dog_excrement;cigarettes" - ], - "amenity": [ - "recycling", - "waste_basket", - "waste_disposal" - ], - "highway": [ - "crossing" - ], - "crossing": [ - "marked" - ], - "opening_hours": [ - "24/7" - ], - "tactile_paving": [ - "incorrect", - "yes", - "no" - ], - "crossing:island": [ - "no" - ] - }, - "create": 5, - "modify": 8, - "delete": 0, - "area": 0.000074181727900006, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 11, - "create": 5, - "locale": "ca", - "imagery": "osm", - "add-image": 4, - "change_over_5000m": 5, - "change_within_25m": 13, - "change_within_50m": 2 - }, - "id": 121186169 - } - }, - { - "id": 121184168, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1036262, - 50.8330112 - ], - [ - 5.1239271, - 50.8330112 - ], - [ - 5.1239271, - 50.841777 - ], - [ - 5.1036262, - 50.841777 - ], - [ - 5.1036262, - 50.8330112 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Stad Zoutleeuw", - "uid": "16012939", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-19T09:10:34Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "amenity": [ - "toilets" - ], - "opening_hours": [ - "We-Fr 11:00-18:00; Sa-Su 11:00-19:00" - ], - "changing_table": [ - "yes" - ], - "toilets:handwashing": [ - "yes" - ], - "toilets:paper_supplied": [ - "yes" - ], - "changing_table:location": [ - "female_toilet" - ] - }, - "create": 1, - "modify": 8, - "delete": 0, - "area": 0.000177953629219985, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 15, - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 121184168 - } - }, - { - "id": 121183621, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7470047, - 51.1640294 - ], - [ - 4.7476164, - 51.1640294 - ], - [ - 4.7476164, - 51.1643445 - ], - [ - 4.7470047, - 51.1643445 - ], - [ - 4.7470047, - 51.1640294 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Stinus_Clasius", - "uid": "1086503", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-19T08:58:46Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house" - ] - }, - "create": 29, - "modify": 0, - "delete": 0, - "area": 1.92746670001129e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "theme": "grb", - "import": 4, - "locale": "nl", - "imagery": "AGIVFlandersGRB" - }, - "id": 121183621 - } - }, - { - "id": 121182527, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5874941, - 51.003143 - ], - [ - 4.5874981, - 51.003143 - ], - [ - 4.5874981, - 51.0031488 - ], - [ - 4.5874941, - 51.0031488 - ], - [ - 4.5874941, - 51.003143 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "philippec", - "uid": "76884", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-19T08:37:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 2.31999999901432e-11, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "move": 1, - "theme": "cyclofix", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "move:node/9753918057": "improve_accuracy" - }, - "id": 121182527 - } - }, - { - "id": 121179953, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.435622, - 50.891231 - ], - [ - 4.435622, - 50.891231 - ], - [ - 4.435622, - 50.891231 - ], - [ - 4.435622, - 50.891231 - ], - [ - 4.435622, - 50.891231 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-19T07:45:00Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "charging_station" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 7, - "create": 1, - "locale": "en", - "imagery": "AGIV", - "change_over_5000m": 8 - }, - "id": 121179953 - } - }, - { - "id": 121177115, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5657718, - 52.9952091 - ], - [ - 6.576919, - 52.9952091 - ], - [ - 6.576919, - 52.998461 - ], - [ - 6.5657718, - 52.998461 - ], - [ - 6.5657718, - 52.9952091 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-19T06:45:39Z", - "reviewed_features": [], - "tag_changes": { - "noname": [ - "yes" - ], - "natural": [ - "tree" - ], - "heritage": [ - "yes" - ], - "leaf_type": [ - "broadleaved" - ], - "denotation": [ - "natural_monument", - "urban" - ], - "leaf_cycle": [ - "deciduous" - ], - "species:wikidata": [ - "Q146149", - "Q165145", - "Q2228034" - ] - }, - "create": 1, - "modify": 19, - "delete": 0, - "area": 0.0000362495796800242, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "move": 1, - "theme": "trees", - "answer": 25, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_5000m": 26, - "move:node/4777757193": "improve_accuracy" - }, - "id": 121177115 - } - }, - { - "id": 121171436, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2319094, - -39.8456811 - ], - [ - -73.2319032, - -39.8456811 - ], - [ - -73.2319032, - -39.8456497 - ], - [ - -73.2319094, - -39.8456497 - ], - [ - -73.2319094, - -39.8456811 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-19T03:51:53Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/FFzed3G.jpg", - "https://i.imgur.com/S1hX3Q8.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.94680000028205e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "HDM_HOT", - "add-image": 2, - "change_within_500m": 2 - }, - "id": 121171436 - } - }, - { - "id": 121168411, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6506974, - -33.4516004 - ], - [ - -70.650681, - -33.4516004 - ], - [ - -70.650681, - -33.4515613 - ], - [ - -70.6506974, - -33.4515613 - ], - [ - -70.6506974, - -33.4516004 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-19T00:03:25Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 6.41239999633779e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 3, - "create": 2, - "locale": "es", - "imagery": "EsriWorldImagery" - }, - "id": 121168411 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-20.json b/Docs/Tools/stats/stats.2022-5-20.json deleted file mode 100644 index 2a01818b75..0000000000 --- a/Docs/Tools/stats/stats.2022-5-20.json +++ /dev/null @@ -1,2184 +0,0 @@ -{ - "features": [ - { - "id": 121260521, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 23.9863531, - 49.8128104 - ], - [ - 23.9863531, - 49.8128104 - ], - [ - 23.9863531, - 49.8128104 - ], - [ - 23.9863531, - 49.8128104 - ], - [ - 23.9863531, - 49.8128104 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "maximkooo", - "uid": "6268514", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-20T20:52:08Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "toilets" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 121260521 - } - }, - { - "id": 121259376, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7298474, - 51.060719 - ], - [ - 3.7298474, - 51.060719 - ], - [ - 3.7298474, - 51.060719 - ], - [ - 3.7298474, - 51.060719 - ], - [ - 3.7298474, - 51.060719 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-20T19:59:12Z", - "reviewed_features": [], - "tag_changes": { - "image:0": [ - "https://i.imgur.com/qY3pnVy.jpg" - ], - "tourism": [ - "artwork" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/artwork.html", - "theme": "artwork", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 121259376 - } - }, - { - "id": 121259173, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.731854, - 51.064861 - ], - [ - 3.7320203, - 51.064861 - ], - [ - 3.7320203, - 51.0649731 - ], - [ - 3.731854, - 51.0649731 - ], - [ - 3.731854, - 51.064861 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-20T19:52:07Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/qhwGmRZ.jpg" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ], - "direction": [ - "182" - ] - }, - "create": 2, - "modify": 5, - "delete": 0, - "area": 1.86422300004417e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 5, - "create": 2, - "locale": "nl", - "imagery": "AGIV", - "add-image": 3, - "change_over_5000m": 2, - "change_within_25m": 8 - }, - "id": 121259173 - } - }, - { - "id": 121258681, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5503104, - 44.8522634 - ], - [ - -0.5501557, - 44.8522634 - ], - [ - -0.5501557, - 44.8523672 - ], - [ - -0.5503104, - 44.8523672 - ], - [ - -0.5503104, - 44.8522634 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-20T19:33:35Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "industrial" - ], - "man_made": [ - "surveillance" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 1.60578600007831e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 4, - "create": 2, - "locale": "fr", - "imagery": "osm", - "add-image": 1, - "change_within_50m": 7 - }, - "id": 121258681 - } - }, - { - "id": 121258058, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7526418, - 50.8027777 - ], - [ - 3.7658951, - 50.8027777 - ], - [ - 3.7658951, - 50.8032604 - ], - [ - 3.7526418, - 50.8032604 - ], - [ - 3.7526418, - 50.8027777 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-20T19:11:04Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "yes" - ], - "amenity": [ - "charging_station" - ], - "landuse": [ - "grass", - "meadow", - "forest" - ], - "leisure": [ - "park" - ] - }, - "create": 1, - "modify": 5, - "delete": 0, - "area": 0.00000639736790998885, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 10, - "create": 1, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "add-image": 1, - "change_over_5000m": 1, - "change_within_1000m": 10 - }, - "id": 121258058 - } - }, - { - "id": 121257936, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1817549, - 48.6925403 - ], - [ - 9.1918555, - 48.6925403 - ], - [ - 9.1918555, - 48.694202 - ], - [ - 9.1817549, - 48.694202 - ], - [ - 9.1817549, - 48.6925403 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-20T19:06:28Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/BN7MFZx.jpg", - "https://i.imgur.com/gznQiqz.jpg" - ], - "amenity": [ - "charging_station" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000167841670199986, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "locale": "de", - "imagery": "osm", - "add-image": 2, - "change_within_5000m": 2 - }, - "id": 121257936 - } - }, - { - "id": 121257577, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7646634, - 50.8042931 - ], - [ - 3.7646634, - 50.8042931 - ], - [ - 3.7646634, - 50.8042931 - ], - [ - 3.7646634, - 50.8042931 - ], - [ - 3.7646634, - 50.8042931 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 2, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-20T18:52:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 5, - "create": 1, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "add-image": 1, - "change_over_5000m": 1, - "change_within_1000m": 6 - }, - "id": 121257577 - } - }, - { - "id": 121257432, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4002316, - 52.3245661 - ], - [ - 13.4002316, - 52.3245661 - ], - [ - 13.4002316, - 52.3245661 - ], - [ - 13.4002316, - 52.3245661 - ], - [ - 13.4002316, - 52.3245661 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FreddyFFB", - "uid": "16029853", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-20T18:47:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 121257432 - } - }, - { - "id": 121255719, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2380522, - 50.7382288 - ], - [ - 4.2382644, - 50.7382288 - ], - [ - 4.2382644, - 50.7394925 - ], - [ - 4.2380522, - 50.7394925 - ], - [ - 4.2380522, - 50.7382288 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-20T17:53:53Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "surveillance" - ] - }, - "create": 2, - "modify": 4, - "delete": 0, - "area": 2.68157139999048e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 11, - "create": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 121255719 - } - }, - { - "id": 121254968, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7545362, - 50.8026565 - ], - [ - 3.7594541, - 50.8026565 - ], - [ - 3.7594541, - 50.8037028 - ], - [ - 3.7545362, - 50.8037028 - ], - [ - 3.7545362, - 50.8026565 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-20T17:30:59Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 10, - "modify": 13, - "delete": 0, - "area": 0.00000514559877002881, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 21, - "create": 10, - "locale": "nl", - "imagery": "AGIV", - "add-image": 6, - "change_over_5000m": 10, - "change_within_25m": 25, - "change_within_50m": 2 - }, - "id": 121254968 - } - }, - { - "id": 121254696, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1006894, - 50.9525164 - ], - [ - 3.1007093, - 50.9525164 - ], - [ - 3.1007093, - 50.9525204 - ], - [ - 3.1006894, - 50.9525204 - ], - [ - 3.1006894, - 50.9525164 - ] - ] - ] - }, - "properties": { - "check_user": "L'imaginaire", - "reasons": [], - "tags": [], - "features": [], - "user": "gptm", - "uid": "2873411", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-20T17:22:12Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_repair_station" - ] - }, - "create": 1, - "modify": 7, - "delete": 0, - "area": 7.95999999416061e-11, - "is_suspect": false, - "harmful": false, - "checked": true, - "check_date": "2022-05-20T20:27:05.445355Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 8, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 10, - "move:node/9757887106": "improve_accuracy" - }, - "id": 121254696 - } - }, - { - "id": 121254571, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7640401, - 50.8038079 - ], - [ - 3.7650316, - 50.8038079 - ], - [ - 3.7650316, - 50.8048071 - ], - [ - 3.7640401, - 50.8048071 - ], - [ - 3.7640401, - 50.8038079 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-20T17:18:59Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "image": [ - "https://i.imgur.com/jT0qLMK.jpg" - ], - "access": [ - "yes" - ], - "amenity": [ - "charging_station", - "bicycle_repair_station" - ], - "capacity": [ - "6", - "8" - ], - "operator": [ - "Gemeente Brakek" - ], - "socket:typee": [ - "6" - ], - "opening_hours": [ - "24/7" - ], - "authentication:none": [ - "yes" - ] - }, - "create": 2, - "modify": 12, - "delete": 0, - "area": 9.90706799995499e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 22, - "create": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 3, - "change_over_5000m": 2, - "change_within_25m": 24, - "change_within_50m": 1 - }, - "id": 121254571 - } - }, - { - "id": 121254521, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7317252, - 51.0648375 - ], - [ - 3.731854, - 51.0648375 - ], - [ - 3.731854, - 51.0648972 - ], - [ - 3.7317252, - 51.0648972 - ], - [ - 3.7317252, - 51.0648375 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-20T17:17:40Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/aOl9Cvq.jpg" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "playground", - "picnic_table" - ] - }, - "create": 2, - "modify": 3, - "delete": 0, - "area": 7.68935999923839e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "create": 2, - "locale": "nl", - "imagery": "AGIV", - "add-image": 2, - "change_over_5000m": 2, - "change_within_25m": 4 - }, - "id": 121254521 - } - }, - { - "id": 121252868, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7585687, - 50.8021132 - ], - [ - 3.7651698, - 50.8021132 - ], - [ - 3.7651698, - 50.8043058 - ], - [ - 3.7585687, - 50.8043058 - ], - [ - 3.7585687, - 50.8021132 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-20T16:31:23Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "vending_machine", - "bicycle_repair_station", - "bicycle_parking" - ] - }, - "create": 3, - "modify": 4, - "delete": 0, - "area": 0.0000144735718600044, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 11, - "create": 3, - "locale": "nl", - "imagery": "AGIV", - "add-image": 2, - "change_over_5000m": 3, - "change_within_25m": 12, - "change_within_50m": 1 - }, - "id": 121252868 - } - }, - { - "id": 121252818, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7797207, - 50.8072471 - ], - [ - 3.7797207, - 50.8072471 - ], - [ - 3.7797207, - 50.8072471 - ], - [ - 3.7797207, - 50.8072471 - ], - [ - 3.7797207, - 50.8072471 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #fritures", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-20T16:29:38Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "fast_food" - ], - "opening_hours": [ - "We 11:30-13:30, 17:00-22:00; Th 17:00-22:00; Fr 11:30-13:30, 17:00-23:00; Sa-Su 11:30-13:30, 17:00-22:00;PH off" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "fritures", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 121252818 - } - }, - { - "id": 121252787, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #fritures", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-20T16:28:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/fritures.html", - "theme": "fritures", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 121252787 - } - }, - { - "id": 121246319, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6306912, - 50.9565762 - ], - [ - 3.6447625, - 50.9565762 - ], - [ - 3.6447625, - 50.967252 - ], - [ - 3.6306912, - 50.967252 - ], - [ - 3.6306912, - 50.9565762 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-20T13:53:16Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes", - "roof" - ], - "source:geometry:ref": [ - "Gbg/3806468" - ], - "source:geometry:date": [ - "2012-11-26" - ] - }, - "create": 1663, - "modify": 9, - "delete": 0, - "area": 0.000150222384540023, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 8, - "theme": "grb", - "import": 217, - "locale": "nl", - "imagery": "osm", - "conflation": 2 - }, - "id": 121246319 - } - }, - { - "id": 121244392, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6264444, - 50.9977497 - ], - [ - 4.6264444, - 50.9977497 - ], - [ - 4.6264444, - 50.9977497 - ], - [ - 4.6264444, - 50.9977497 - ], - [ - 4.6264444, - 50.9977497 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-20T13:07:00Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "playground" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "import": 1, - "locale": "nl", - "imagery": "osm", - "import:node/9757347638": "source: https://osm.org/note/3084030" - }, - "id": 121244392 - } - }, - { - "id": 121244070, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.418372, - 50.9062422 - ], - [ - 5.4260531, - 50.9062422 - ], - [ - 5.4260531, - 50.9090831 - ], - [ - 5.418372, - 50.9090831 - ], - [ - 5.418372, - 50.9062422 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-20T12:59:02Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "post_box", - "townhall", - "place_of_worship", - "pub", - "fast_food", - "cafe" - ], - "building": [ - "apartments", - "school", - "house", - "yes", - "church", - "farm_auxiliary", - "roof" - ], - "addr:street": [ - "Dorpsstraat", - "Sint-Janslaan", - "Kloosterstraat", - "Wijkstraat" - ], - "addr:housenumber": [ - "16", - "3", - "18A", - "11", - "9", - "7", - "5", - "2A", - "8", - "1A", - "1" - ], - "source:geometry:ref": [ - "Gbg/2335241", - "Gbg/2335759", - "Gbg/2335868", - "Gbg/2335283", - "Gbg/2335284", - "Gbg/2336357", - "Gbg/2335279", - "Gbg/2335869", - "Gbg/2335280", - "Gbg/5835902", - "Gbg/2335404", - "Gbg/2335403", - "Gbg/2335962", - "Gbg/2335870", - "Gbg/2335212", - "Gbg/2335213", - "Gbg/5835919", - "Gbg/5290374", - "Gbg/2335266", - "Gbg/2335267", - "Gbg/2335268", - "Gbg/5290351", - "Gbg/2335724", - "Gbg/6715618", - "Gbg/2335210", - "Gbg/6451153", - "Gbg/2335208", - "Gbg/2335206", - "Gbg/2335207", - "Gbg/4708908", - "Gbg/2335749", - "Gbg/2335748", - "Gbg/2335282", - "Gbg/4709533", - "Gbg/2335286", - "Gbg/4709387", - "Gbg/2335288", - "Gbg/2335295", - "Gbg/2335888", - "Gbg/2335240", - "Gbg/2335239", - "Gbg/5289930", - "Gbg/2335237", - "Gbg/2335236", - "Gbg/2335235", - "Gbg/2335961", - "Gbg/2335887", - "Gbg/2335354", - "Gbg/2335877", - "Gbg/2335878", - "Gbg/2335879", - "Gbg/2335882", - "Gbg/2335880", - "Gbg/2335885", - "Gbg/2335291", - "Gbg/5836292", - "Gbg/2335293", - "Gbg/2335294", - "Gbg/2335874", - "Gbg/2335873", - "Gbg/2335270", - "Gbg/2335271", - "Gbg/4709016", - "Gbg/5835873", - "Gbg/2335274", - "Gbg/2335276", - "Gbg/2335277", - "Gbg/6715629", - "Gbg/6715627", - "Gbg/6715626", - "Gbg/6715630", - "Gbg/6780774", - "Gbg/2335532", - "Gbg/7023811", - "Gbg/5289955", - "Gbg/2335908", - "Gbg/5290402", - "Gbg/4707837", - "Gbg/2335281", - "Gbg/2335264", - "Gbg/5289952", - "Gbg/4709015", - "Gbg/2335289", - "Gbg/2335296", - "Gbg/4708894", - "Gbg/2335875", - "Gbg/2335272", - "Gbg/2335275" - ], - "source:geometry:date": [ - "2017-01-30", - "2012-03-14", - "2015-08-25", - "2010-01-25", - "2020-01-06", - "2018-08-07", - "2014-05-27", - "2016-05-13", - "2020-04-30", - "2020-02-25" - ] - }, - "create": 446, - "modify": 840, - "delete": 21, - "area": 0.0000218212369899648, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 805, - "theme": "grb", - "delete": 21, - "import": 64, - "locale": "nl", - "imagery": "osm", - "conflation": 176 - }, - "id": 121244070 - } - }, - { - "id": 121237686, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1056203, - 50.8328362 - ], - [ - 5.1056203, - 50.8328362 - ], - [ - 5.1056203, - 50.8328362 - ], - [ - 5.1056203, - 50.8328362 - ], - [ - 5.1056203, - 50.8328362 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Stad Zoutleeuw", - "uid": "16012939", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 1, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-20T11:09:49Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "picnic_table" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 1, - "import": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "import:node/9757085168": "source: https://osm.org/note/3090202" - }, - "id": 121237686 - } - }, - { - "id": 121237011, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.2484012, - 40.8481467 - ], - [ - 14.2721247, - 40.8481467 - ], - [ - 14.2721247, - 40.9486324 - ], - [ - 14.2484012, - 40.9486324 - ], - [ - 14.2484012, - 40.8481467 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Acheloo", - "uid": "11366923", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-20T10:57:21Z", - "reviewed_features": [], - "tag_changes": { - "place": [ - "square" - ], - "amenity": [ - "hospital", - "school", - "college" - ], - "highway": [ - "residential", - "tertiary", - "secondary", - "pedestrian" - ], - "building": [ - "public" - ], - "name:etymology:wikidata": [ - "Q9696", - "Q187336", - "Q472772", - "Q166234", - "Q7814", - "Q5592", - "Q680", - "Q762", - "Q63302009", - "Q1067", - "Q2023833", - "Q267304", - "Q733392", - "Q320171", - "Q83003", - "Q3762973", - "Q114387", - "Q503060", - "Q36330", - "Q297190", - "Q332626", - "Q168691" - ] - }, - "create": 0, - "modify": 47, - "delete": 0, - "area": 0.00238387250395009, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 54, - "locale": "it", - "imagery": "osm" - }, - "id": 121237011 - } - }, - { - "id": 121233337, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3355776, - 50.8363144 - ], - [ - 4.3355776, - 50.8363144 - ], - [ - 4.3355776, - 50.8363144 - ], - [ - 4.3355776, - 50.8363144 - ], - [ - 4.3355776, - 50.8363144 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-20T09:37:45Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "public_bookcase" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 121233337 - } - }, - { - "id": 121232316, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.4358155, - 49.4915462 - ], - [ - 11.4476759, - 49.4915462 - ], - [ - 11.4476759, - 49.5124204 - ], - [ - 11.4358155, - 49.5124204 - ], - [ - 11.4358155, - 49.4915462 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "TheFish", - "uid": "121036", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-20T09:13:43Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/ScFjA1D.jpg", - "https://i.imgur.com/55hRk2l.jpg", - "https://i.imgur.com/LjMvGJs.jpg", - "https://i.imgur.com/xeLML7n.jpg" - ], - "noname": [ - "yes" - ], - "image:0": [ - "https://i.imgur.com/yiKSACV.jpg" - ], - "natural": [ - "tree" - ], - "heritage": [ - "yes", - "no" - ], - "wikidata": [ - "Q62104477" - ], - "species:wikidata": [ - "Q149335", - "Q12004", - "Q43284" - ] - }, - "create": 0, - "modify": 13, - "delete": 0, - "area": 0.000247576361680013, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 12, - "locale": "de", - "imagery": "osm", - "add-image": 7 - }, - "id": 121232316 - } - }, - { - "id": 121230895, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.207806, - 50.9058677 - ], - [ - 4.2094696, - 50.9058677 - ], - [ - 4.2094696, - 50.906306 - ], - [ - 4.207806, - 50.906306 - ], - [ - 4.207806, - 50.9058677 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-20T08:43:12Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "access": [ - "yes" - ], - "leisure": [ - "playground" - ], - "surface": [ - "grass" - ], - "operator": [ - "gemeente Asse" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 7.2915587999858e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 4, - "import": 1, - "locale": "nl", - "imagery": "osm", - "import:node/9756757456": "source: https://osm.org/note/3161473" - }, - "id": 121230895 - } - }, - { - "id": 121230531, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1007969, - 50.8323086 - ], - [ - 5.1062963, - 50.8323086 - ], - [ - 5.1062963, - 50.8334454 - ], - [ - 5.1007969, - 50.8334454 - ], - [ - 5.1007969, - 50.8323086 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Stad Zoutleeuw", - "uid": "16012939", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-20T08:33:58Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "image": [ - "https://i.imgur.com/81h0Ycv.jpg", - "https://i.imgur.com/QyXkx9O.jpg" - ], - "access": [ - "yes" - ], - "amenity": [ - "toilets", - "bench" - ], - "image:0": [ - "https://i.imgur.com/W4SMbQ0.jpg" - ], - "leisure": [ - "playground", - "picnic_table" - ], - "surface": [ - "sand" - ] - }, - "create": 3, - "modify": 7, - "delete": 0, - "area": 0.00000625171792002659, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "move": 2, - "theme": "toerisme_vlaanderen", - "answer": 8, - "create": 2, - "import": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 4, - "move:node/9756745045": "improve_accuracy", - "import:node/9756907408": "source: https://osm.org/note/3090320" - }, - "id": 121230531 - } - }, - { - "id": 121218865, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5903353, - -34.6443169 - ], - [ - -58.5903353, - -34.6443169 - ], - [ - -58.5903353, - -34.6443169 - ], - [ - -58.5903353, - -34.6443169 - ], - [ - -58.5903353, - -34.6443169 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AgusQui", - "uid": "331218", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-20T01:07:33Z", - "reviewed_features": [], - "tag_changes": { - "railway": [ - "signal" - ], - "railway:signal:route:ref": [ - "HD 22" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_50m": 1 - }, - "id": 121218865 - } - }, - { - "id": 121218560, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.9395884, - 40.7019937 - ], - [ - -73.9392946, - 40.7019937 - ], - [ - -73.9392946, - 40.7021573 - ], - [ - -73.9395884, - 40.7021573 - ], - [ - -73.9395884, - 40.7019937 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jessbeutler", - "uid": "3243541", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #swimming_pools", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-20T00:42:09Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "swimming_pool" - ], - "location": [ - "outdoor" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 4.8065680001543e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "swimming_pools", - "answer": 1, - "locale": "en", - "imagery": "USDA-NAIP" - }, - "id": 121218560 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-21.json b/Docs/Tools/stats/stats.2022-5-21.json deleted file mode 100644 index 61e524adfa..0000000000 --- a/Docs/Tools/stats/stats.2022-5-21.json +++ /dev/null @@ -1,2587 +0,0 @@ -{ - "features": [ - { - "id": 121298909, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.9538278, - 49.8499921 - ], - [ - 9.9538278, - 49.8499921 - ], - [ - 9.9538278, - 49.8499921 - ], - [ - 9.9538278, - 49.8499921 - ], - [ - 9.9538278, - 49.8499921 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "kay_D", - "uid": "57158", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-21T21:33:57Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "denotation": [ - "none" - ], - "leaf_cycle": [ - "deciduous" - ], - "species:wikidata": [ - "Q13223298" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 3, - "locale": "de", - "imagery": "osm" - }, - "id": 121298909 - } - }, - { - "id": 121298903, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2902744, - 51.1166765 - ], - [ - 3.290659, - 51.1166765 - ], - [ - 3.290659, - 51.1169057 - ], - [ - 3.2902744, - 51.1169057 - ], - [ - 3.2902744, - 51.1166765 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-21T21:33:36Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/TeHGRMJ.jpg", - "https://i.imgur.com/HFpxDS5.jpg" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 8.81503199998522e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 121298903 - } - }, - { - "id": 121296442, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6766982, - 50.9410567 - ], - [ - 5.6768699, - 50.9410567 - ], - [ - 5.6768699, - 50.9412477 - ], - [ - 5.6766982, - 50.9412477 - ], - [ - 5.6766982, - 50.9410567 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Timothy Yzermans", - "uid": "16042306", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-21T20:05:03Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes" - ], - "man_made": [ - "surveillance" - ], - "camera:type": [ - "fixed" - ], - "camera:mount": [ - "wall" - ], - "surveillance": [ - "outdoor" - ], - "camera:direction": [ - "330" - ], - "surveillance:type": [ - "camera" - ] - }, - "create": 3, - "modify": 5, - "delete": 0, - "area": 3.27947000001821e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance", - "theme": "surveillance", - "answer": 14, - "create": 5, - "locale": "en", - "imagery": "AGIV", - "change_over_5000m": 2, - "change_within_25m": 7, - "change_within_50m": 9 - }, - "id": 121296442 - } - }, - { - "id": 121296412, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.869045, - 49.8305779 - ], - [ - 9.8698771, - 49.8305779 - ], - [ - 9.8698771, - 49.835638 - ], - [ - 9.869045, - 49.835638 - ], - [ - 9.869045, - 49.8305779 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "onkelben866", - "uid": "14063915", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-21T20:04:14Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "toilets" - ], - "wheelchair": [ - "yes" - ], - "opening_hours": [ - "Mo-Su 08:00-22:00", - "24/7" - ], - "changing_table": [ - "yes" - ], - "toilets:position": [ - "seated;urinal" - ], - "toilets:handwashing": [ - "yes" - ], - "toilets:paper_supplied": [ - "yes" - ], - "changing_table:location": [ - "female_toilet" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.00000421050921000235, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 14, - "locale": "de", - "imagery": "osm" - }, - "id": 121296412 - } - }, - { - "id": 121295849, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4310101, - 50.8355912 - ], - [ - 4.4310101, - 50.8355912 - ], - [ - 4.4310101, - 50.8355912 - ], - [ - 4.4310101, - 50.8355912 - ], - [ - 4.4310101, - 50.8355912 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-21T19:42:30Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/DdWoonQ.jpg" - ], - "amenity": [ - "bicycle_parking" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 121295849 - } - }, - { - "id": 121295179, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8949188, - 50.2249054 - ], - [ - 4.8949188, - 50.2249054 - ], - [ - 4.8949188, - 50.2249054 - ], - [ - 4.8949188, - 50.2249054 - ], - [ - 4.8949188, - 50.2249054 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-21T19:18:38Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "information" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/nature.html", - "theme": "nature", - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 121295179 - } - }, - { - "id": 121294852, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.439366, - 50.8554992 - ], - [ - 4.5034502, - 50.8554992 - ], - [ - 4.5034502, - 50.8611503 - ], - [ - 4.439366, - 50.8611503 - ], - [ - 4.439366, - 50.8554992 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-21T19:09:43Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/UQADh3T.jpg" - ], - "image:0": [ - "https://i.imgur.com/bgRfuS9.jpg" - ], - "image:1": [ - "https://i.imgur.com/dmzu5h5.jpg" - ], - "leisure": [ - "playground" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.000362146222620093, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 6 - }, - "id": 121294852 - } - }, - { - "id": 121294678, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8926497, - 50.2332771 - ], - [ - 4.8926497, - 50.2332771 - ], - [ - 4.8926497, - 50.2332771 - ], - [ - 4.8926497, - 50.2332771 - ], - [ - 4.8926497, - 50.2332771 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-21T19:02:53Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "recycling" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/waste.html", - "theme": "waste", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 121294678 - } - }, - { - "id": 121294109, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9033517, - 50.2384788 - ], - [ - 4.9033517, - 50.2384788 - ], - [ - 4.9033517, - 50.2384788 - ], - [ - 4.9033517, - 50.2384788 - ], - [ - 4.9033517, - 50.2384788 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-21T18:44:54Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "playground" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 121294109 - } - }, - { - "id": 121292719, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.1581552, - 50.6274703 - ], - [ - 6.1581552, - 50.6274703 - ], - [ - 6.1581552, - 50.6274703 - ], - [ - 6.1581552, - 50.6274703 - ], - [ - 6.1581552, - 50.6274703 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Salambre", - "uid": "15272429", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-21T18:00:58Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "picnic_table" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_5000m": 1 - }, - "id": 121292719 - } - }, - { - "id": 121291459, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8621056, - 50.4685469 - ], - [ - 4.8621159, - 50.4685469 - ], - [ - 4.8621159, - 50.4686016 - ], - [ - 4.8621056, - 50.4686016 - ], - [ - 4.8621056, - 50.4685469 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-21T17:22:42Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "bicycle" - ], - "email": [ - "namur@provelo.org" - ], - "image": [ - "https://i.imgur.com/mC6f9i7.jpg", - "https://i.imgur.com/6Fp7YS6.jpg" - ], - "rental": [ - "city_bike" - ], - "amenity": [ - "bicycle_rental" - ], - "payment:app": [ - "yes" - ], - "payment:cash": [ - "no" - ], - "opening_hours": [ - "Mo-Fr 09:00-12:30, 13:30-18:00;PH off", - "Mo-We 09:30-12:30, 13:00-19:00; Th 07:00-19:00; Fr 09:30-12:30, 13:00-19:00" - ], - "payment:cards": [ - "no" - ], - "capacity:city_bike": [ - "6" - ], - "payment:membership_card": [ - "yes" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 5.63410000022644e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 5, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_within_25m": 7 - }, - "id": 121291459 - } - }, - { - "id": 121291404, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3826417, - 50.8329608 - ], - [ - 4.3826417, - 50.8329608 - ], - [ - 4.3826417, - 50.8329608 - ], - [ - 4.3826417, - 50.8329608 - ], - [ - 4.3826417, - 50.8329608 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "RJShew", - "uid": "16040998", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-21T17:20:59Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_repair_station" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 6, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 121291404 - } - }, - { - "id": 121289028, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1982605, - 51.1938999 - ], - [ - 3.1982605, - 51.1938999 - ], - [ - 3.1982605, - 51.1938999 - ], - [ - 3.1982605, - 51.1938999 - ], - [ - 3.1982605, - 51.1938999 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Hopperpop", - "uid": "3664604", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-21T16:17:16Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "fast_food" - ], - "cuisine": [ - "friture", - "fish_and_chips" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 121289028 - } - }, - { - "id": 121286564, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1543841, - 49.9921754 - ], - [ - 5.15446, - 49.9921754 - ], - [ - 5.15446, - 49.9922114 - ], - [ - 5.1543841, - 49.9922114 - ], - [ - 5.1543841, - 49.9921754 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-21T15:16:42Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 2, - "modify": 1, - "delete": 1, - "area": 2.7324000001329e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "create": 2, - "locale": "nl", - "imagery": "SPW_ORTHO_LAST", - "deletion": 1, - "change_over_5000m": 2, - "change_within_5000m": 3, - "deletion:node/5042649937": "not found" - }, - "id": 121286564 - } - }, - { - "id": 121286180, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 43.8552761, - 56.2542038 - ], - [ - 43.8552982, - 56.2542038 - ], - [ - 43.8552982, - 56.2542075 - ], - [ - 43.8552761, - 56.2542075 - ], - [ - 43.8552761, - 56.2542038 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "alexashh", - "uid": "9054103", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-21T15:04:48Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 8.17700000225218e-11, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "move": 1, - "theme": "cyclofix", - "answer": 4, - "create": 1, - "locale": "ru", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_50m": 5, - "move:node/9759648952": "improve_accuracy" - }, - "id": 121286180 - } - }, - { - "id": 121284729, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.2075676, - 47.27122 - ], - [ - 8.2075676, - 47.27122 - ], - [ - 8.2075676, - 47.27122 - ], - [ - 8.2075676, - 47.27122 - ], - [ - 8.2075676, - 47.27122 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "habi", - "uid": "15671", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-21T14:26:48Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "caravan_site" - ] - }, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/campersite.html", - "theme": "campersite", - "answer": 8, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 8 - }, - "id": 121284729 - } - }, - { - "id": 121281914, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8777557, - 50.7714671 - ], - [ - 3.882262, - 50.7714671 - ], - [ - 3.882262, - 50.771797 - ], - [ - 3.8777557, - 50.771797 - ], - [ - 3.8777557, - 50.7714671 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-21T13:17:25Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "charging_station", - "bench" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 0.00000148662836998649, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 9, - "create": 2, - "locale": "nl", - "imagery": "AGIV", - "add-image": 1, - "change_over_5000m": 2, - "change_within_25m": 10 - }, - "id": 121281914 - } - }, - { - "id": 121281871, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8831099, - 50.7717961 - ], - [ - 3.8831099, - 50.7717961 - ], - [ - 3.8831099, - 50.7717961 - ], - [ - 3.8831099, - 50.7717961 - ], - [ - 3.8831099, - 50.7717961 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-21T13:16:16Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "wheelchair": [ - "limited" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 2, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "change_within_100m": 2 - }, - "id": 121281871 - } - }, - { - "id": 121281416, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.8632632, - 49.8273578 - ], - [ - 9.8754396, - 49.8273578 - ], - [ - 9.8754396, - 49.8387642 - ], - [ - 9.8632632, - 49.8387642 - ], - [ - 9.8632632, - 49.8273578 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "onkelben866", - "uid": "14063915", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-21T13:00:38Z", - "reviewed_features": [], - "tag_changes": { - "bus": [ - "no" - ], - "fee": [ - "yes" - ], - "hgv": [ - "no" - ], - "email": [ - "buergerbuero@margetshoechheim.de" - ], - "phone": [ - "+49 931 468620" - ], - "access": [ - "yes" - ], - "amenity": [ - "charging_station" - ], - "bicycle": [ - "no" - ], - "maxstay": [ - "unlimited" - ], - "network": [ - "LastMileSolutions" - ], - "scooter": [ - "no" - ], - "capacity": [ - "6", - "3", - "2" - ], - "motorcar": [ - "yes" - ], - "operator": [ - "Gemeinde Margetshöchheim" - ], - "no:network": [ - "yes" - ], - "parking:fee": [ - "no" - ], - "payment:app": [ - "yes" - ], - "payment:cash": [ - "no" - ], - "socket:type2": [ - "1" - ], - "socket:typee": [ - "1" - ], - "opening_hours": [ - "24/7" - ], - "payment:cards": [ - "yes", - "no" - ], - "authentication:app": [ - "no" - ], - "authentication:nfc": [ - "no" - ], - "authentication:none": [ - "yes" - ], - "socket:type2:output": [ - "22 kW" - ], - "socket:type2:current": [ - "32 A" - ], - "socket:type2:voltage": [ - "400 V" - ], - "socket:typee:current": [ - "16 A" - ], - "socket:typee:voltage": [ - "230 V" - ], - "payment:membership_card": [ - "yes" - ], - "authentication:debit_card": [ - "no" - ], - "authentication:money_card": [ - "no" - ], - "authentication:phone_call": [ - "no" - ], - "authentication:short_message": [ - "no" - ], - "authentication:membership_card": [ - "no" - ] - }, - "create": 1, - "modify": 44, - "delete": 0, - "area": 0.000138888888959976, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 62, - "create": 1, - "locale": "de", - "imagery": "Mapbox" - }, - "id": 121281416 - } - }, - { - "id": 121275206, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4464556, - 51.0808207 - ], - [ - 3.4464556, - 51.0808207 - ], - [ - 3.4464556, - 51.0808207 - ], - [ - 3.4464556, - 51.0808207 - ], - [ - 3.4464556, - 51.0808207 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-21T09:59:58Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/44ZyHXh.jpg" - ], - "barrier": [ - "lift_gate" - ], - "survey:date": [ - "2022-05-21" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", - "answer": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 121275206 - } - }, - { - "id": 121273438, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3529522, - 50.192646 - ], - [ - 4.3530741, - 50.192646 - ], - [ - 4.3530741, - 50.1927504 - ], - [ - 4.3529522, - 50.1927504 - ], - [ - 4.3529522, - 50.192646 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RubOSM", - "uid": "2096650", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-21T09:11:47Z", - "reviewed_features": [], - "tag_changes": { - "seats": [ - "3" - ], - "colour": [ - "black" - ], - "amenity": [ - "bench" - ], - "material": [ - "plastic" - ], - "direction": [ - "138" - ], - "survey:date": [ - "2022-05-21" - ] - }, - "create": 2, - "modify": 6, - "delete": 0, - "area": 1.27263599997327e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 17, - "create": 2, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 17 - }, - "id": 121273438 - } - }, - { - "id": 121271315, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3639327, - 50.188205 - ], - [ - 4.3639547, - 50.188205 - ], - [ - 4.3639547, - 50.1882165 - ], - [ - 4.3639327, - 50.1882165 - ], - [ - 4.3639327, - 50.188205 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RubOSM", - "uid": "2096650", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-21T07:58:52Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 2.52999999981022e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 11, - "create": 2, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 11 - }, - "id": 121271315 - } - }, - { - "id": 121271259, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.418016, - 50.9088416 - ], - [ - 5.419251, - 50.9088416 - ], - [ - 5.419251, - 50.9097287 - ], - [ - 5.418016, - 50.9097287 - ], - [ - 5.418016, - 50.9088416 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-21T07:56:44Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "apartments", - "dormitory", - "terrace", - "house", - "yes", - "roof" - ], - "addr:street": [ - "Kapelstraat" - ], - "addr:housenumber": [ - "21;23" - ], - "source:geometry:ref": [ - "Gbg/2335353", - "Gbg/5835866", - "Gbg/2335361", - "Gbg/2335360", - "Gbg/2335352", - "Gbg/2335351" - ], - "source:geometry:date": [ - "2010-01-25", - "2017-01-30", - "2015-08-25" - ] - }, - "create": 40, - "modify": 87, - "delete": 0, - "area": 0.00000109556850000018, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 81, - "theme": "grb", - "import": 5, - "locale": "nl", - "imagery": "osm", - "conflation": 12 - }, - "id": 121271259 - } - }, - { - "id": 121270915, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4189223, - 50.9062879 - ], - [ - 5.4274778, - 50.9062879 - ], - [ - 5.4274778, - 50.9102882 - ], - [ - 5.4189223, - 50.9102882 - ], - [ - 5.4189223, - 50.9062879 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-21T07:43:22Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "police", - "community_centre", - "pub" - ], - "landuse": [ - "retail", - "residential" - ], - "building": [ - "dormitory", - "house", - "apartments", - "yes", - "warehouse", - "roof" - ], - "addr:street": [ - "Wijkstraat" - ], - "addr:housenumber": [ - "27;29;31;33;35;27A;29A-29B;33A;35A" - ], - "source:geometry:ref": [ - "Gbg/2335417", - "Gbg/2335723", - "Gbg/7024546", - "Gbg/2335446", - "Gbg/5739972", - "Gbg/2335896", - "Gbg/2335891", - "Gbg/2335892", - "Gbg/2335893", - "Gbg/5290368", - "Gbg/5289944", - "Gbg/2335338", - "Gbg/2335340", - "Gbg/6780787", - "Gbg/2335342", - "Gbg/5740035", - "Gbg/2335349", - "Gbg/5740000", - "Gbg/2335942", - "Gbg/6259040", - "Gbg/2335936", - "Gbg/4708888", - "Gbg/2335348", - "Gbg/2336368", - "Gbg/5289936", - "Gbg/2335898", - "Gbg/4709620", - "Gbg/2335899", - "Gbg/2335343", - "Gbg/4708971", - "Gbg/4708966", - "Gbg/4709331", - "Gbg/4709156", - "Gbg/2335902", - "Gbg/2335903", - "Gbg/2335180", - "Gbg/3174803", - "Gbg/5835869", - "Gbg/7024545", - "Gbg/7023810", - "Gbg/7024547", - "Gbg/2335398", - "Gbg/2335909", - "Gbg/5834118" - ], - "source:geometry:date": [ - "2014-05-27", - "2010-01-25", - "2020-02-25", - "2017-01-30", - "2015-08-25", - "2020-04-30", - "2016-11-09", - "2018-05-10" - ] - }, - "create": 192, - "modify": 475, - "delete": 1, - "area": 0.00003422456664995, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 438, - "theme": "grb", - "delete": 1, - "import": 33, - "locale": "nl", - "imagery": "osm", - "conflation": 88 - }, - "id": 121270915 - } - }, - { - "id": 121270634, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4193292, - 50.9077781 - ], - [ - 5.4231047, - 50.9077781 - ], - [ - 5.4231047, - 50.9094892 - ], - [ - 5.4193292, - 50.9094892 - ], - [ - 5.4193292, - 50.9077781 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-21T07:30:56Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes", - "apartments", - "house", - "roof" - ], - "addr:street": [ - "Dorpsstraat" - ], - "addr:housenumber": [ - "7" - ], - "source:geometry:ref": [ - "Gbg/2335245", - "Gbg/2335247", - "Gbg/5289940", - "Gbg/5836243", - "Gbg/2335248", - "Gbg/2335249", - "Gbg/2335251", - "Gbg/2335253", - "Gbg/2335254", - "Gbg/2335255", - "Gbg/5289943", - "Gbg/2335257", - "Gbg/5836162", - "Gbg/2335259", - "Gbg/2335260", - "Gbg/2335262", - "Gbg/5835904", - "Gbg/2335244", - "Gbg/2335242", - "Gbg/2335233", - "Gbg/2335234", - "Gbg/5836256", - "Gbg/2335232", - "Gbg/2335230", - "Gbg/2335229", - "Gbg/4709390", - "Gbg/2335227", - "Gbg/2335228", - "Gbg/2335226", - "Gbg/2335225", - "Gbg/2335223", - "Gbg/2335224", - "Gbg/2335345", - "Gbg/2335252", - "Gbg/2335250" - ], - "source:geometry:date": [ - "2015-08-25", - "2017-01-30", - "2010-01-25", - "2018-08-07" - ] - }, - "create": 176, - "modify": 368, - "delete": 10, - "area": 0.00000646025805000482, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 337, - "theme": "grb", - "delete": 10, - "import": 27, - "locale": "nl", - "imagery": "osm", - "conflation": 70 - }, - "id": 121270634 - } - }, - { - "id": 121268941, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7631077, - 50.8042553 - ], - [ - 3.7631077, - 50.8042553 - ], - [ - 3.7631077, - 50.8042553 - ], - [ - 3.7631077, - 50.8042553 - ], - [ - 3.7631077, - 50.8042553 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-21T06:23:47Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/rKvhOH9.jpg" - ], - "amenity": [ - "bicycle_parking" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "AGIV", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 121268941 - } - }, - { - "id": 121268750, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7549083, - 50.8035912 - ], - [ - 3.7564759, - 50.8035912 - ], - [ - 3.7564759, - 50.8041731 - ], - [ - 3.7549083, - 50.8041731 - ], - [ - 3.7549083, - 50.8035912 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-21T06:15:22Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "image": [ - "https://i.imgur.com/avpWhuz.jpg" - ], - "access": [ - "yes" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "playground" - ], - "surface": [ - "grass" - ], - "operator": [ - "Gemeente Brakel" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 9.12186440000387e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 7, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "add-image": 1, - "change_over_5000m": 1, - "change_within_50m": 6, - "change_within_100m": 2 - }, - "id": 121268750 - } - }, - { - "id": 121268623, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3941226, - 50.7889562 - ], - [ - 5.3995653, - 50.7889562 - ], - [ - 5.3995653, - 50.7916949 - ], - [ - 5.3941226, - 50.7916949 - ], - [ - 5.3941226, - 50.7889562 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-21T06:09:16Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes", - "roof" - ] - }, - "create": 906, - "modify": 0, - "delete": 0, - "area": 0.0000149059224900093, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "theme": "grb", - "import": 110, - "locale": "nl", - "imagery": "osm" - }, - "id": 121268623 - } - }, - { - "id": 121267812, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9935839, - 51.1553967 - ], - [ - 4.9935839, - 51.1553967 - ], - [ - 4.9935839, - 51.1553967 - ], - [ - 4.9935839, - 51.1553967 - ], - [ - 4.9935839, - 51.1553967 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-21T05:31:01Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "picnic_table" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "add-image": 1, - "change_over_5000m": 1, - "change_within_5000m": 1 - }, - "id": 121267812 - } - }, - { - "id": 121267574, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9934681, - 51.1547796 - ], - [ - 4.9934681, - 51.1547796 - ], - [ - 4.9934681, - 51.1547796 - ], - [ - 4.9934681, - 51.1547796 - ], - [ - 4.9934681, - 51.1547796 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-21T05:18:23Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "add-image": 1, - "change_over_5000m": 1, - "change_within_5000m": 3 - }, - "id": 121267574 - } - }, - { - "id": 121264626, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7328001, - 51.0720753 - ], - [ - 3.7328383, - 51.0720753 - ], - [ - 3.7328383, - 51.072133 - ], - [ - 3.7328001, - 51.072133 - ], - [ - 3.7328001, - 51.0720753 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #fitness_station", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-21T00:48:35Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "fitness_station" - ] - }, - "create": 4, - "modify": 0, - "delete": 0, - "area": 2.20413999997793e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "fitness_station", - "create": 4, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 121264626 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-22.json b/Docs/Tools/stats/stats.2022-5-22.json deleted file mode 100644 index d699a8f60a..0000000000 --- a/Docs/Tools/stats/stats.2022-5-22.json +++ /dev/null @@ -1,1851 +0,0 @@ -{ - "features": [ - { - "id": 121339529, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -72.6196963, - -38.7405529 - ], - [ - -72.6196963, - -38.7405529 - ], - [ - -72.6196963, - -38.7405529 - ], - [ - -72.6196963, - -38.7405529 - ], - [ - -72.6196963, - -38.7405529 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-22T23:47:25Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/9TBWx4q.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osm", - "add-image": 1 - }, - "id": 121339529 - } - }, - { - "id": 121338817, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RobJN", - "uid": "411244", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #uk_addresses", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-22T23:05:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/uk_addresses.html", - "theme": "uk_addresses", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 121338817 - } - }, - { - "id": 121337368, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.6565749, - 45.2285865 - ], - [ - 11.6565749, - 45.2285865 - ], - [ - 11.6565749, - 45.2285865 - ], - [ - 11.6565749, - 45.2285865 - ], - [ - 11.6565749, - 45.2285865 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Mappilo", - "uid": "4763621", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-22T21:53:21Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "fast_food" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "create": 1, - "locale": "it", - "imagery": "osm" - }, - "id": 121337368 - } - }, - { - "id": 121336893, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.7576135, - -33.6315724 - ], - [ - -70.6879783, - -33.6315724 - ], - [ - -70.6879783, - -33.5538183 - ], - [ - -70.7576135, - -33.5538183 - ], - [ - -70.7576135, - -33.6315724 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Camilo Nuñez Castro", - "uid": "5143819", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-22T21:30:20Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Tercera Compañía del Cuerpo de Bomberos del Maipo", - "3ra Compañía de Bomberos de Calera de Tango", - "Base Bomberos FACH" - ], - "amenity": [ - "fire_station" - ], - "building": [ - "yes" - ] - }, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0.00541442230432058, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "answer": 5, - "create": 1, - "locale": "en", - "imagery": "HDM_HOT" - }, - "id": 121336893 - } - }, - { - "id": 121333914, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.28407, - 51.1074911 - ], - [ - 3.3012553, - 51.1074911 - ], - [ - 3.3012553, - 51.1187341 - ], - [ - 3.28407, - 51.1187341 - ], - [ - 3.28407, - 51.1074911 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-22T19:42:03Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "foot" - ], - "survey:date": [ - "2022-05-21", - "2020-11-15", - "2021-10-02", - "2020-11-23" - ] - }, - "create": 0, - "modify": 12, - "delete": 0, - "area": 0.000193214327900005, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "answer": 12, - "locale": "en", - "imagery": "osm" - }, - "id": 121333914 - } - }, - { - "id": 121330118, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -97.1191789, - 33.2184522 - ], - [ - -97.1191789, - 33.2184522 - ], - [ - -97.1191789, - 33.2184522 - ], - [ - -97.1191789, - 33.2184522 - ], - [ - -97.1191789, - 33.2184522 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "BubbleGuppies", - "uid": "1426091", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #schools", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-22T18:05:53Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "school" - ], - "website": [ - "https://www.facebook.com/pages/Sullivan-Keller-Early-Childhood-Center/146217585402621" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "schools", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 121330118 - } - }, - { - "id": 121329433, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2913809, - 51.1044572 - ], - [ - 3.2956616, - 51.1044572 - ], - [ - 3.2956616, - 51.117016 - ], - [ - 3.2913809, - 51.117016 - ], - [ - 3.2913809, - 51.1044572 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-22T17:49:21Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/YfkY2u0.jpg", - "https://i.imgur.com/JsJ3wJ2.jpg" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000537604551600008, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "locale": "en", - "imagery": "osm", - "add-image": 2 - }, - "id": 121329433 - } - }, - { - "id": 121328566, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7082415, - 51.0339384 - ], - [ - 3.7082415, - 51.0339384 - ], - [ - 3.7082415, - 51.0339384 - ], - [ - 3.7082415, - 51.0339384 - ], - [ - 3.7082415, - 51.0339384 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-22T17:28:10Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "bicycle_parking" - ], - "covered": [ - "no" - ], - "bicycle_parking": [ - "stands" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 3, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_25m": 3 - }, - "id": 121328566 - } - }, - { - "id": 121327494, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2913923, - 51.1088723 - ], - [ - 3.3145908, - 51.1088723 - ], - [ - 3.3145908, - 51.1106009 - ], - [ - 3.2913923, - 51.1106009 - ], - [ - 3.2913923, - 51.1088723 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-22T16:57:59Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/U4C8VHY.jpg", - "https://i.imgur.com/EUEqDjz.jpg", - "https://i.imgur.com/QGiWjDP.jpg", - "https://i.imgur.com/71n3pj3.jpg", - "https://i.imgur.com/Ue38tGD.jpg" - ], - "amenity": [ - "toilets" - ], - "image:0": [ - "https://i.imgur.com/KevTwOy.jpg" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 1, - "modify": 7, - "delete": 0, - "area": 0.0000401009270999965, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 7 - }, - "id": 121327494 - } - }, - { - "id": 121323947, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6087851, - 50.8417731 - ], - [ - 3.6087851, - 50.8417731 - ], - [ - 3.6087851, - 50.8417731 - ], - [ - 3.6087851, - 50.8417731 - ], - [ - 3.6087851, - 50.8417731 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-22T15:28:21Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/8siPumb.jpg" - ], - "tourism": [ - "artwork" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 121323947 - } - }, - { - "id": 121317921, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.3304968, - 48.1897023 - ], - [ - 16.3304968, - 48.1897023 - ], - [ - 16.3304968, - 48.1897023 - ], - [ - 16.3304968, - 48.1897023 - ], - [ - 16.3304968, - 48.1897023 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "znrgl", - "uid": "9486229", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-22T13:14:40Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "public_bookcase" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases", - "theme": "bookcases", - "create": 1, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 121317921 - } - }, - { - "id": 121317585, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6900422, - 50.904145 - ], - [ - 3.6900422, - 50.904145 - ], - [ - 3.6900422, - 50.904145 - ], - [ - 3.6900422, - 50.904145 - ], - [ - 3.6900422, - 50.904145 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-22T13:05:57Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 7, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 7 - }, - "id": 121317585 - } - }, - { - "id": 121317140, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6896608, - 50.9039389 - ], - [ - 3.6902574, - 50.9039389 - ], - [ - 3.6902574, - 50.9042559 - ], - [ - 3.6896608, - 50.9042559 - ], - [ - 3.6896608, - 50.9039389 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-22T12:53:00Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house" - ], - "historic": [ - "yes" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 1.89122200001584e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 2, - "create": 2, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 4 - }, - "id": 121317140 - } - }, - { - "id": 121313270, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6089696, - 50.841846 - ], - [ - 3.6089696, - 50.841846 - ], - [ - 3.6089696, - 50.841846 - ], - [ - 3.6089696, - 50.841846 - ], - [ - 3.6089696, - 50.841846 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-22T10:57:19Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "public_bookcase" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 121313270 - } - }, - { - "id": 121313064, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8923358, - 50.2196764 - ], - [ - 4.8923358, - 50.2196764 - ], - [ - 4.8923358, - 50.2196764 - ], - [ - 4.8923358, - 50.2196764 - ], - [ - 4.8923358, - 50.2196764 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-22T10:50:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/climbing.html", - "theme": "climbing", - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 121313064 - } - }, - { - "id": 121312696, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6029334, - 50.8390776 - ], - [ - 3.6042326, - 50.8390776 - ], - [ - 3.6042326, - 50.8421399 - ], - [ - 3.6029334, - 50.8421399 - ], - [ - 3.6029334, - 50.8390776 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-22T10:38:01Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "bicycle_repair_station" - ], - "leisure": [ - "playground", - "picnic_table" - ], - "service:bicycle:pump:operational_status": [ - "operational" - ] - }, - "create": 5, - "modify": 3, - "delete": 0, - "area": 0.00000397854015999536, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 5, - "create": 5, - "locale": "nl", - "imagery": "AGIV", - "add-image": 2, - "change_over_5000m": 5, - "change_within_25m": 6, - "change_within_100m": 1 - }, - "id": 121312696 - } - }, - { - "id": 121312559, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6048239, - 50.8387506 - ], - [ - 3.6049926, - 50.8387506 - ], - [ - 3.6049926, - 50.8389149 - ], - [ - 3.6048239, - 50.8389149 - ], - [ - 3.6048239, - 50.8387506 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-22T10:33:38Z", - "reviewed_features": [], - "tag_changes": { - "bus": [ - "no" - ], - "hgv": [ - "no" - ], - "image": [ - "https://i.imgur.com/JEcBSLK.jpg" - ], - "access": [ - "yes" - ], - "amenity": [ - "charging_station" - ], - "image:0": [ - "https://i.imgur.com/K5o13m1.jpg" - ], - "network": [ - "Blue Corner" - ], - "scooter": [ - "no" - ], - "capacity": [ - "2" - ], - "motorcar": [ - "yes" - ], - "payment:app": [ - "no" - ], - "payment:cash": [ - "no" - ], - "socket:type2": [ - "2" - ], - "opening_hours": [ - "24/7" - ], - "payment:cards": [ - "no" - ], - "brand:wikidata": [ - "Q106902344" - ], - "payment:membership_card": [ - "yes" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 2.7717410000285e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 9, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "add-image": 2, - "change_within_25m": 2, - "change_within_100m": 9 - }, - "id": 121312559 - } - }, - { - "id": 121312094, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3808917, - 50.8556571 - ], - [ - 4.3834483, - 50.8556571 - ], - [ - 4.3834483, - 50.8577383 - ], - [ - 4.3808917, - 50.8577383 - ], - [ - 4.3808917, - 50.8556571 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-22T10:17:30Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/x6hopap.jpg" - ], - "amenity": [ - "bicycle_parking" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000053207959199983, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 4 - }, - "id": 121312094 - } - }, - { - "id": 121311050, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8941485, - 50.2200668 - ], - [ - 4.9033517, - 50.2200668 - ], - [ - 4.9033517, - 50.2384788 - ], - [ - 4.8941485, - 50.2384788 - ], - [ - 4.8941485, - 50.2200668 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-22T09:46:06Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/Rhj5GXo.jpg", - "https://i.imgur.com/1FhkZbk.jpg" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "playground" - ], - "backrest": [ - "yes" - ], - "material": [ - "wood" - ], - "direction": [ - "45" - ] - }, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0.000169449318400045, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 1, - "change_within_25m": 9, - "move:node/9727746215": "improve_accuracy" - }, - "id": 121311050 - } - }, - { - "id": 121310706, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1084569, - 38.83635 - ], - [ - 0.1084569, - 38.83635 - ], - [ - 0.1084569, - 38.83635 - ], - [ - 0.1084569, - 38.83635 - ], - [ - 0.1084569, - 38.83635 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-22T09:36:54Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "sports" - ], - "service:bicycle:rental": [ - "no" - ], - "service:bicycle:repair": [ - "no" - ], - "service:bicycle:retail": [ - "no" - ], - "service:bicycle:cleaning": [ - "no" - ], - "service:bicycle:second_hand": [ - "no" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 5, - "locale": "ca", - "imagery": "CartoDB.Voyager", - "change_within_500m": 5 - }, - "id": 121310706 - } - }, - { - "id": 121310527, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.0291029, - 43.8067524 - ], - [ - 1.0291029, - 43.8067524 - ], - [ - 1.0291029, - 43.8067524 - ], - [ - 1.0291029, - 43.8067524 - ], - [ - 1.0291029, - 43.8067524 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-22T09:33:19Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "drinking_water" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 121310527 - } - }, - { - "id": 121307630, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2912773, - 51.1156159 - ], - [ - 3.2912773, - 51.1156159 - ], - [ - 3.2912773, - 51.1156159 - ], - [ - 3.2912773, - 51.1156159 - ], - [ - 3.2912773, - 51.1156159 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-22T07:58:08Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/GHoVLf1.jpg" - ], - "amenity": [ - "bench" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 121307630 - } - }, - { - "id": 121307467, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7585692, - 50.7714988 - ], - [ - 3.8797927, - 50.7714988 - ], - [ - 3.8797927, - 50.8045836 - ], - [ - 3.7585692, - 50.8045836 - ], - [ - 3.7585692, - 50.7714988 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-22T07:51:44Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/WCe2tW6.jpg" - ], - "access": [ - "yes" - ], - "amenity": [ - "bicycle_parking", - "bench" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0.00401065525279968, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "add-image": 2, - "change_over_5000m": 3, - "change_within_1000m": 6 - }, - "id": 121307467 - } - }, - { - "id": 121307375, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.8692926, - 49.8150087 - ], - [ - 9.8692926, - 49.8150087 - ], - [ - 9.8692926, - 49.8150087 - ], - [ - 9.8692926, - 49.8150087 - ], - [ - 9.8692926, - 49.8150087 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "onkelben866", - "uid": "14063915", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-22T07:48:10Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "denotation": [ - "garden" - ], - "leaf_cycle": [ - "evergreen", - "semi_evergreen" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 121307375 - } - }, - { - "id": 121306907, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7643086, - 50.7914863 - ], - [ - 3.9160905, - 50.7914863 - ], - [ - 3.9160905, - 50.8047406 - ], - [ - 3.7643086, - 50.8047406 - ], - [ - 3.7643086, - 50.7914863 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-22T07:31:37Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "foot" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 4, - "modify": 5, - "delete": 0, - "area": 0.00201176283716997, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 6, - "create": 4, - "locale": "nl", - "imagery": "AGIV", - "add-image": 5, - "change_over_5000m": 8, - "change_within_5000m": 6 - }, - "id": 121306907 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-23.json b/Docs/Tools/stats/stats.2022-5-23.json deleted file mode 100644 index cfb9d27c92..0000000000 --- a/Docs/Tools/stats/stats.2022-5-23.json +++ /dev/null @@ -1,1136 +0,0 @@ -{ - "features": [ - { - "id": 121392001, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2352805, - 50.7351815 - ], - [ - 4.2358945, - 50.7351815 - ], - [ - 4.2358945, - 50.7358029 - ], - [ - 4.2352805, - 50.7358029 - ], - [ - 4.2352805, - 50.7351815 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9765595739", - "name": "9 Levens", - "osm_id": 9765595739, - "reasons": [ - 43 - ], - "version": 3, - "primary_tags": { - "shop": "Books" - } - } - ], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-23T22:11:36Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "Books", - "baby_goods" - ] - }, - "create": 1, - "modify": 2, - "delete": 1, - "area": 3.81539599999792e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm", - "deletion": 1, - "deletion:node/5713813873": "shop_closed" - }, - "id": 121392001 - } - }, - { - "id": 121385909, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3918154, - 50.8376257 - ], - [ - 4.4356963, - 50.8376257 - ], - [ - 4.4356963, - 50.8526747 - ], - [ - 4.3918154, - 50.8526747 - ], - [ - 4.3918154, - 50.8376257 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-23T18:55:20Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/xxKeeI8.jpg" - ], - "amenity": [ - "bicycle_parking" - ], - "leisure": [ - "park" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.000660363664100215, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 2 - }, - "id": 121385909 - } - }, - { - "id": 121384724, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.6083824, - 37.1717355 - ], - [ - -3.6062007, - 37.1717355 - ], - [ - -3.6062007, - 37.1725831 - ], - [ - -3.6083824, - 37.1725831 - ], - [ - -3.6083824, - 37.1717355 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pipeton", - "uid": "11969052", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-23T18:25:36Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "tertiary" - ], - "name:etymology:wikidata": [ - "Q443403" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00000184920892000033, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 5, - "locale": "en", - "imagery": "osm" - }, - "id": 121384724 - } - }, - { - "id": 121383029, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.721699, - 51.0268317 - ], - [ - 3.7218979, - 51.0268317 - ], - [ - 3.7218979, - 51.0269374 - ], - [ - 3.721699, - 51.0269374 - ], - [ - 3.721699, - 51.0268317 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-23T17:48:43Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/bkv8RSR.jpg" - ], - "amenity": [ - "fast_food" - ], - "building": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 2.10237299997767e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/food.html", - "theme": "food", - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 121383029 - } - }, - { - "id": 121371568, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.4802162, - -34.5087352 - ], - [ - -58.4801737, - -34.5087352 - ], - [ - -58.4801737, - -34.5087156 - ], - [ - -58.4802162, - -34.5087156 - ], - [ - -58.4802162, - -34.5087352 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AgusQui", - "uid": "331218", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-23T14:01:52Z", - "reviewed_features": [], - "tag_changes": { - "railway": [ - "level_crossing" - ], - "supervised": [ - "yes" - ], - "crossing:saltire": [ - "yes" - ], - "crossing:activation": [ - "automatic" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 8.3299999975503e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "answer": 8, - "locale": "en", - "imagery": "osm", - "change_within_25m": 8 - }, - "id": 121371568 - } - }, - { - "id": 121369283, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1416751, - 50.89331 - ], - [ - 4.1476815, - 50.89331 - ], - [ - 4.1476815, - 50.8962939 - ], - [ - 4.1416751, - 50.8962939 - ], - [ - 4.1416751, - 50.89331 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-23T13:12:22Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "shed", - "yes", - "garage", - "roof" - ], - "source:geometry:ref": [ - "Gbg/1885933", - "Gbg/6345501", - "Gbg/1885896", - "Gbg/1885885", - "Gbg/1885869", - "Gbg/1885863", - "Gbg/1885855", - "Gbg/6723315", - "Gbg/1885834", - "Gbg/1885829", - "Gbg/1885825", - "Gbg/5608664", - "Gbg/6345500", - "Gbg/6345499", - "Gbg/1885978", - "Gbg/1885990", - "Gbg/1886001", - "Gbg/1886011", - "Gbg/1886025", - "Gbg/1886034", - "Gbg/1886046", - "Gbg/1886056", - "Gbg/1885874", - "Gbg/1885912" - ], - "source:geometry:date": [ - "2010-06-11", - "2018-05-14", - "2021-07-29", - "2015-08-12" - ] - }, - "create": 1335, - "modify": 142, - "delete": 2, - "area": 0.0000179224969600241, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 130, - "theme": "grb", - "answer": 2, - "delete": 2, - "import": 182, - "locale": "en", - "imagery": "AGIV", - "conflation": 48 - }, - "id": 121369283 - } - }, - { - "id": 121365723, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6014409, - 51.1471348 - ], - [ - 5.6014409, - 51.1471348 - ], - [ - 5.6014409, - 51.1471348 - ], - [ - 5.6014409, - 51.1471348 - ], - [ - 5.6014409, - 51.1471348 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FW28", - "uid": "16061422", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-23T11:56:21Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 5, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_500m": 5 - }, - "id": 121365723 - } - }, - { - "id": 121359961, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3904106, - 50.7868258 - ], - [ - 5.4155563, - 50.7868258 - ], - [ - 5.4155563, - 50.7924624 - ], - [ - 5.3904106, - 50.7924624 - ], - [ - 5.3904106, - 50.7868258 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-23T10:05:19Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "bus", - "car" - ], - "amenity": [ - "parking" - ], - "building": [ - "detached", - "house", - "farm", - "roof", - "yes" - ], - "source:geometry:ref": [ - "Gbg/4054022", - "Gbg/4054015", - "Gbg/5603354", - "Gbg/4054017", - "Gbg/6605847", - "Gbg/4054329", - "Gbg/4054330", - "Gbg/6605843" - ], - "source:geometry:date": [ - "2013-01-18", - "2016-06-14", - "2019-03-04", - "2020-10-21" - ] - }, - "create": 1087, - "modify": 90, - "delete": 0, - "area": 0.000141736252619887, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 84, - "theme": "grb", - "import": 140, - "locale": "nl", - "imagery": "AGIV", - "conflation": 16, - "change_over_5000m": 66 - }, - "id": 121359961 - } - }, - { - "id": 121354132, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2840876, - 51.1108327 - ], - [ - 3.2841054, - 51.1108327 - ], - [ - 3.2841054, - 51.1109236 - ], - [ - 3.2840876, - 51.1109236 - ], - [ - 3.2840876, - 51.1108327 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-23T08:11:54Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/PNmxxHS.jpg" - ], - "leisure": [ - "picnic_table" - ], - "material": [ - "wood" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.6180199999531e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 3 - }, - "id": 121354132 - } - }, - { - "id": 121352814, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3963045, - 50.791227 - ], - [ - 5.4014939, - 50.791227 - ], - [ - 5.4014939, - 50.7950311 - ], - [ - 5.3963045, - 50.7950311 - ], - [ - 5.3963045, - 50.791227 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-23T07:49:53Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "garage", - "shed", - "yes", - "roof" - ], - "source:geometry:ref": [ - "Gbg/4054340", - "Gbg/4054486", - "Gbg/4054488" - ], - "source:geometry:date": [ - "2013-01-18", - "2013-04-15" - ] - }, - "create": 585, - "modify": 19, - "delete": 0, - "area": 0.0000197409965400179, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 16, - "theme": "grb", - "import": 75, - "locale": "nl", - "imagery": "AGIV", - "conflation": 6 - }, - "id": 121352814 - } - }, - { - "id": 121352705, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.278106, - 51.1025116 - ], - [ - 3.3148448, - 51.1025116 - ], - [ - 3.3148448, - 51.1191878 - ], - [ - 3.278106, - 51.1191878 - ], - [ - 3.278106, - 51.1025116 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-23T07:48:24Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "hiking", - "foot" - ], - "survey:date": [ - "2022-05-21", - "2021-02-21", - "2022-01-22", - "2021-10-02", - "2020-11-15", - "2020-11-23", - "2020-11-22" - ] - }, - "create": 0, - "modify": 20, - "delete": 0, - "area": 0.000612663576559964, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "answer": 21, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 21 - }, - "id": 121352705 - } - }, - { - "id": 121352599, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3987226, - 50.7921843 - ], - [ - 5.4007316, - 50.7921843 - ], - [ - 5.4007316, - 50.7933438 - ], - [ - 5.3987226, - 50.7933438 - ], - [ - 5.3987226, - 50.7921843 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-23T07:46:57Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes", - "roof" - ] - }, - "create": 181, - "modify": 0, - "delete": 0, - "area": 0.00000232943550000013, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "theme": "grb", - "import": 17, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 121352599 - } - }, - { - "id": 121352312, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0033394, - 51.1249236 - ], - [ - 5.0050642, - 51.1249236 - ], - [ - 5.0050642, - 51.1251606 - ], - [ - 5.0033394, - 51.1251606 - ], - [ - 5.0033394, - 51.1249236 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-23T07:43:01Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/9Akaeya.jpg", - "https://i.imgur.com/h3xnTIb.jpg" - ], - "colour": [ - "brown" - ], - "amenity": [ - "bench" - ], - "material": [ - "wood" - ], - "direction": [ - "158" - ], - "survey:date": [ - "2022-05-22" - ] - }, - "create": 0, - "modify": 8, - "delete": 0, - "area": 4.0877759999736e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 9, - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 121352312 - } - }, - { - "id": 121347641, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.6425134, - 52.0112151 - ], - [ - 14.6542087, - 52.0112151 - ], - [ - 14.6542087, - 52.0188356 - ], - [ - 14.6425134, - 52.0188356 - ], - [ - 14.6425134, - 52.0112151 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "PaulSembten", - "uid": "13999064", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-23T06:02:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 0.0000891240336500149, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 121347641 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-24.json b/Docs/Tools/stats/stats.2022-5-24.json deleted file mode 100644 index cd9ffd7ab4..0000000000 --- a/Docs/Tools/stats/stats.2022-5-24.json +++ /dev/null @@ -1,1536 +0,0 @@ -{ - "features": [ - { - "id": 121446476, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 19.9340122, - 60.0983841 - ], - [ - 19.9386358, - 60.0983841 - ], - [ - 19.9386358, - 60.0998745 - ], - [ - 19.9340122, - 60.0998745 - ], - [ - 19.9340122, - 60.0983841 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Walkingmage", - "uid": "124870", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-24T21:47:11Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "yes", - "no" - ], - "highway": [ - "path", - "footway", - "cycleway" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.00000689101344000514, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 5, - "locale": "en", - "imagery": "osm" - }, - "id": 121446476 - } - }, - { - "id": 121431456, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.736217, - 53.1458223 - ], - [ - 6.7693697, - 53.1458223 - ], - [ - 6.7693697, - 53.1638418 - ], - [ - 6.736217, - 53.1638418 - ], - [ - 6.736217, - 53.1458223 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-24T15:39:04Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "library", - "school" - ], - "highway": [ - "unclassified", - "primary", - "residential", - "cycleway", - "path", - "service", - "tertiary", - "secondary", - "footway" - ], - "building": [ - "school" - ], - "name:etymology:wikidata": [ - "Q463478", - "Q13894", - "Q320014", - "Q45095", - "Q146149", - "Q14169641", - "Q951705", - "Q254", - "Q7349", - "Q1511", - "Q7312", - "Q7317", - "Q1268", - "Q123829", - "Q7294", - "Q156907", - "Q127849", - "Q25239", - "Q81666", - "Q42292", - "Q124969", - "Q25243", - "Q182509", - "Q380970", - "Q358629", - "Q560714", - "Q319", - "Q308", - "Q193", - "Q1917464", - "Q9256", - "Q13029", - "Q944997", - "Q10914484", - "Q332", - "Q111", - "Q10478", - "Q3030", - "Q239522", - "Q1932984", - "Q3409", - "Q10580", - "Q313", - "Q324", - "Q782615", - "Q380956", - "Q1339", - "Q3002", - "Q129324", - "Q8865", - "Q469652", - "Q920312", - "Q10413", - "Q2158218", - "Q255", - "Q1673766", - "Q1375304", - "Q1375186", - "Q46151", - "Q2384352", - "Q154211", - "Q43499", - "Q127348", - "Q78454", - "Q13008", - "Q8866", - "Q10406", - "Q3427", - "Q8918", - "Q10535", - "Q131113", - "Q780144", - "Q2574405", - "Q560649", - "Q194654", - "Q1375247", - "Q33036816" - ] - }, - "create": 0, - "modify": 239, - "delete": 0, - "area": 0.000597395077650048, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 320, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 320 - }, - "id": 121431456 - } - }, - { - "id": 121429294, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6049926, - 50.7441724 - ], - [ - 4.3078879, - 50.7441724 - ], - [ - 4.3078879, - 50.8389149 - ], - [ - 3.6049926, - 50.8389149 - ], - [ - 3.6049926, - 50.7441724 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-24T14:57:51Z", - "reviewed_features": [], - "tag_changes": { - "bus": [ - "no" - ], - "hgv": [ - "no" - ], - "amenity": [ - "charging_station" - ], - "bicycle": [ - "no" - ], - "scooter": [ - "no" - ], - "capacity": [ - "6" - ], - "motorcar": [ - "yes" - ], - "payment:app": [ - "no" - ], - "payment:cash": [ - "no" - ], - "socket:type2": [ - "2", - "1" - ], - "socket:typee": [ - "6" - ], - "opening_hours": [ - "24/7" - ], - "payment:cards": [ - "no" - ], - "payment:membership_card": [ - "yes" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.0665940579602517, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 10, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "change_over_5000m": 4, - "change_within_500m": 1, - "change_within_5000m": 5 - }, - "id": 121429294 - } - }, - { - "id": 121428525, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3602318, - 50.8125745 - ], - [ - 4.3602318, - 50.8125745 - ], - [ - 4.3602318, - 50.8125745 - ], - [ - 4.3602318, - 50.8125745 - ], - [ - 4.3602318, - 50.8125745 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "LivingwithLulu", - "uid": "16075299", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-24T14:43:01Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 4, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 121428525 - } - }, - { - "id": 121427908, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1118555, - 50.7952225 - ], - [ - 4.1178046, - 50.7952225 - ], - [ - 4.1178046, - 50.7995312 - ], - [ - 4.1118555, - 50.7995312 - ], - [ - 4.1118555, - 50.7952225 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-24T14:31:35Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "bicycle" - ], - "rental": [ - "city_bike" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0.0000256328871699767, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 121427908 - } - }, - { - "id": 121420964, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4137481, - 50.9064885 - ], - [ - 5.4195734, - 50.9064885 - ], - [ - 5.4195734, - 50.9101345 - ], - [ - 5.4137481, - 50.9101345 - ], - [ - 5.4137481, - 50.9064885 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "way-749185072", - "osm_id": 749185072, - "reasons": [ - 43 - ], - "version": 4, - "primary_tags": { - "building": "government" - } - } - ], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-24T12:14:47Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "library", - "community_centre", - "dentist" - ], - "highway": [ - "pedestrian" - ], - "building": [ - "house", - "apartments", - "yes", - "shed", - "government", - "roof" - ], - "addr:street": [ - "Servaasplein", - "Dr.J.Grouwelsstraat", - "Poststraat", - "Nanofstraat" - ], - "addr:housenumber": [ - "24", - "12A", - "39", - "22" - ], - "source:geometry:ref": [ - "Gbg/4708882", - "Gbg/2335205", - "Gbg/2335204", - "Gbg/2335203", - "Gbg/2335200", - "Gbg/2335199", - "Gbg/4708975", - "Gbg/2335201", - "Gbg/5836297", - "Gbg/5739948", - "Gbg/4708889", - "Gbg/5739950", - "Gbg/5835868", - "Gbg/2335215", - "Gbg/2335772", - "Gbg/4709509", - "Gbg/4709511", - "Gbg/4709653", - "Gbg/2335383", - "Gbg/2335747", - "Gbg/2335739", - "Gbg/2335738", - "Gbg/2338615", - "Gbg/4708874", - "Gbg/2335787", - "Gbg/5290350", - "Gbg/5289950", - "Gbg/3174703", - "Gbg/3174704", - "Gbg/3174705", - "Gbg/3174706", - "Gbg/4709675", - "Gbg/4709643", - "Gbg/4709635", - "Gbg/3174708", - "Gbg/2335788", - "Gbg/2335790", - "Gbg/2335216", - "Gbg/2335405", - "Gbg/2335406", - "Gbg/5740021", - "Gbg/2335735", - "Gbg/2335771", - "Gbg/4709603", - "Gba/372596", - "Gbg/5290349", - "Gbg/5290369", - "Gbg/5289951", - "Gbg/2335768", - "Gbg/2335394", - "Gbg/6451130", - "Gbg/2338754", - "Gbg/4709487", - "Gbg/4709573", - "Gbg/4709590", - "Gbg/4709303", - "Gbg/4709414", - "Gbg/2335197", - "Gbg/2335195", - "Gbg/2335196", - "Gbg/4709374", - "Gbg/2335791", - "Gbg/2335194", - "Gbg/2335192", - "Gbg/2335193", - "Gbg/2335191", - "Gbg/2335189", - "Gbg/2335190", - "Gbg/2335734", - "Gbg/4709668", - "Gbg/4709608", - "Gbg/4709679", - "Gbg/4709662", - "Gbg/4709078", - "Gbg/2335184", - "Gbg/5290011", - "Gbg/4709670" - ], - "source:geometry:date": [ - "2017-05-22", - "2017-01-30", - "2010-01-25", - "2015-08-25", - "2014-05-27", - "2016-11-09", - "2019-07-05", - "2018-08-07", - "2010-05-10" - ] - }, - "create": 413, - "modify": 699, - "delete": 19, - "area": 0.0000212390437999771, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 634, - "theme": "grb", - "delete": 19, - "import": 78, - "locale": "nl", - "imagery": "osm", - "conflation": 154 - }, - "id": 121420964 - } - }, - { - "id": 121420899, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4175587, - 50.9069572 - ], - [ - 5.418769, - 50.9069572 - ], - [ - 5.418769, - 50.9075377 - ], - [ - 5.4175587, - 50.9075377 - ], - [ - 5.4175587, - 50.9069572 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-24T12:13:45Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "library", - "community_centre" - ], - "building": [ - "yes", - "house" - ], - "source:geometry:ref": [ - "Gbg/5835861" - ], - "source:geometry:date": [ - "2018-08-07" - ] - }, - "create": 11, - "modify": 14, - "delete": 1, - "area": 7.02579149997888e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 13, - "theme": "grb", - "delete": 1, - "import": 2, - "locale": "nl", - "imagery": "osm", - "conflation": 2 - }, - "id": 121420899 - } - }, - { - "id": 121420579, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4007276, - 50.8911054 - ], - [ - 3.4621538, - 50.8911054 - ], - [ - 3.4621538, - 50.9382694 - ], - [ - 3.4007276, - 50.9382694 - ], - [ - 3.4007276, - 50.8911054 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "GertjanReynaert", - "uid": "15664631", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-24T12:08:26Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "bicycle" - ], - "phone": [ - "+32 56 60 22 70", - "+32 9 281 00 41" - ], - "amenity": [ - "bicycle_repair_station" - ], - "website": [ - "https://fietsenminne.be" - ], - "opening_hours": [ - "Mo 13:30-18:30; Tu-We 08:30-12:00, 13:30-18:30; Fr 08:30-12:00, 13:30-18:30; Sa 08:30-12:00, 13:30-16:00" - ], - "service:bicycle:repair": [ - "yes" - ], - "service:bicycle:retail": [ - "yes" - ], - "service:bicycle:second_hand": [ - "yes" - ] - }, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.00289710529680012, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix", - "move": 1, - "theme": "cyclofix", - "answer": 8, - "locale": "en", - "imagery": "CartoDB.Voyager", - "move:node/9688724314": "improve_accuracy" - }, - "id": 121420579 - } - }, - { - "id": 121420125, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4159968, - 50.9073577 - ], - [ - 5.4194592, - 50.9073577 - ], - [ - 5.4194592, - 50.909399 - ], - [ - 5.4159968, - 50.909399 - ], - [ - 5.4159968, - 50.9073577 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-24T12:01:20Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "library" - ], - "building": [ - "warehouse", - "yes", - "apartments", - "house", - "terrace", - "roof" - ], - "source:geometry:ref": [ - "Gbg/2335198", - "Gbg/2335758", - "Gbg/2335214", - "Gbg/4709379", - "Gbg/2335778", - "Gbg/2335970", - "Gbg/2335776", - "Gbg/2335775", - "Gbg/4709201", - "Gbg/5289933", - "Gbg/2335736", - "Gbg/2336356", - "Gbg/2335737", - "Gbg/2335217", - "Gbg/4708986", - "Gbg/4709686", - "Gbg/4709098", - "Gbg/2335222", - "Gbg/4708922", - "Gbg/2336364", - "Gbg/2335784", - "Gbg/2335780", - "Gbg/2335781", - "Gbg/2335779", - "Gbg/3174712", - "Gba/480868", - "Gbg/4708905", - "Gbg/4708918", - "Gbg/3174715", - "Gbg/3174713", - "Gbg/2335760", - "Gbg/2335761", - "GRB", - "Gbg/2335762", - "Gbg/2335764", - "Gbg/2335763", - "Gbg/2335765", - "Gbg/4709014", - "Gbg/4709604", - "Gbg/4709617" - ], - "source:geometry:date": [ - "2016-11-09", - "2010-01-25", - "2014-05-27", - "2015-08-25", - "2017-01-30", - "2012-03-14", - "2022-05-22" - ] - }, - "create": 134, - "modify": 381, - "delete": 5, - "area": 0.0000070677971200068, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 349, - "theme": "grb", - "delete": 5, - "import": 24, - "locale": "nl", - "imagery": "osm", - "conflation": 80 - }, - "id": 121420125 - } - }, - { - "id": 121418878, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4149821, - 50.9077824 - ], - [ - 5.4252713, - 50.9077824 - ], - [ - 5.4252713, - 50.9112624 - ], - [ - 5.4149821, - 50.9112624 - ], - [ - 5.4149821, - 50.9077824 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-24T11:38:22Z", - "reviewed_features": [], - "tag_changes": { - "power": [ - "substation" - ], - "highway": [ - "service" - ], - "building": [ - "apartments", - "house", - "yes", - "garage", - "dormitory", - "roof" - ], - "addr:street": [ - "Spoorstraat" - ], - "addr:housenumber": [ - "11" - ], - "source:geometry:ref": [ - "Gbg/2335570", - "Gbg/2335377", - "Gbg/4708907", - "Gbg/5835877", - "Gbg/2335947", - "Gbg/2335381", - "Gbg/2335380", - "Gbg/2335376", - "Gbg/4513070", - "Gbg/2335375", - "Gbg/2335374", - "Gbg/4709080", - "Gbg/2335364", - "Gbg/2335362", - "Gbg/2335350", - "Gbg/3174716", - "Gbg/2335944", - "Gbg/5836127", - "Gbg/2335367", - "Gbg/2335369", - "Gbg/2335370", - "Gbg/2335371", - "Gbg/5835958", - "Gbg/4708990", - "Gbg/5740015", - "Gbg/5836279", - "Gbg/5836276", - "Gbg/5740012", - "Gbg/5836282", - "Gbg/5740010", - "Gbg/5740009", - "Gbg/5836277", - "Gbg/5740017", - "Gbg/5740016", - "Gbg/2335901", - "Gbg/6715623", - "Gbg/6780785", - "Gbg/6780786", - "Gbg/6715625", - "Gbg/6931516", - "Gbg/2335946", - "Gbg/2335773", - "Gbg/2338758", - "Gbg/2338731", - "Gbg/2338658", - "Gba/170832", - "Gbg/2335379", - "Gbg/2335711" - ], - "source:geometry:date": [ - "2014-05-27", - "2010-01-25", - "2017-01-30", - "2015-08-25", - "2020-04-30", - "2018-08-07", - "2020-02-25", - "2021-10-07", - "2021-04-20", - "2010-05-10" - ] - }, - "create": 370, - "modify": 499, - "delete": 4, - "area": 0.0000358064159999631, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 470, - "theme": "grb", - "delete": 4, - "import": 66, - "locale": "nl", - "imagery": "osm", - "conflation": 96 - }, - "id": 121418878 - } - }, - { - "id": 121418036, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8626318, - 51.1799077 - ], - [ - 4.8634312, - 51.1799077 - ], - [ - 4.8634312, - 51.18033 - ], - [ - 4.8626318, - 51.18033 - ], - [ - 4.8626318, - 51.1799077 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Stinus_Clasius", - "uid": "1086503", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-24T11:18:34Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes" - ] - }, - "create": 55, - "modify": 0, - "delete": 0, - "area": 3.37586619997418e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "theme": "grb", - "import": 6, - "locale": "nl", - "imagery": "AGIVFlandersGRB" - }, - "id": 121418036 - } - }, - { - "id": 121417526, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9023028, - 50.2369649 - ], - [ - 4.9054381, - 50.2369649 - ], - [ - 4.9054381, - 50.2387152 - ], - [ - 4.9023028, - 50.2387152 - ], - [ - 4.9023028, - 50.2369649 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-24T11:07:27Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "school", - "yes" - ], - "source:geometry:ref": [ - "Picc/1002662", - "Picc/575159" - ], - "source:geometry:date": [ - "2016-06-24" - ] - }, - "create": 401, - "modify": 24, - "delete": 0, - "area": 0.00000548771559001386, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 22, - "theme": "grb", - "import": 12, - "locale": "en", - "imagery": "osm", - "conflation": 4, - "change_over_5000m": 12 - }, - "id": 121417526 - } - }, - { - "id": 121415391, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6693115, - 50.5641607 - ], - [ - 4.7033152, - 50.5641607 - ], - [ - 4.7033152, - 50.5716721 - ], - [ - 4.6693115, - 50.5716721 - ], - [ - 4.6693115, - 50.5641607 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-24T10:21:52Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/jAvBOjp.jpg" - ], - "amenity": [ - "bicycle_parking" - ] - }, - "create": 3, - "modify": 7, - "delete": 0, - "area": 0.000255415392179946, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 13, - "create": 3, - "locale": "en", - "imagery": "SPW_ORTHO_LAST", - "add-image": 1 - }, - "id": 121415391 - } - }, - { - "id": 121409434, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6874687, - 50.557346 - ], - [ - 4.6987581, - 50.557346 - ], - [ - 4.6987581, - 50.5726865 - ], - [ - 4.6874687, - 50.5726865 - ], - [ - 4.6874687, - 50.557346 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-24T08:34:36Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "bicycle" - ], - "amenity": [ - "bicycle_parking" - ] - }, - "create": 10, - "modify": 15, - "delete": 0, - "area": 0.000173185040700006, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 38, - "create": 10, - "locale": "en", - "imagery": "SPW_ORTHO_LAST", - "add-image": 1 - }, - "id": 121409434 - } - }, - { - "id": 121395081, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.2122024, - 37.8117886 - ], - [ - -122.212202, - 37.8117886 - ], - [ - -122.212202, - 37.8117886 - ], - [ - -122.2122024, - 37.8117886 - ], - [ - -122.2122024, - 37.8117886 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "jabrad0", - "uid": "2426778", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-24T01:31:07Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "bicycle" - ] - }, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 6, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 121395081 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-25.json b/Docs/Tools/stats/stats.2022-5-25.json deleted file mode 100644 index 4730255a1f..0000000000 --- a/Docs/Tools/stats/stats.2022-5-25.json +++ /dev/null @@ -1,742 +0,0 @@ -{ - "features": [ - { - "id": 121491888, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -46.6898366, - -23.5327703 - ], - [ - -46.6896214, - -23.5327703 - ], - [ - -46.6896214, - -23.5327365 - ], - [ - -46.6898366, - -23.5327365 - ], - [ - -46.6898366, - -23.5327703 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "homeroff", - "uid": "445668", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-25T20:19:10Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 7.27376000012149e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 2, - "create": 2, - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 121491888 - } - }, - { - "id": 121491116, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -49.2326157, - -25.4592628 - ], - [ - -49.2326157, - -25.4592628 - ], - [ - -49.2326157, - -25.4592628 - ], - [ - -49.2326157, - -25.4592628 - ], - [ - -49.2326157, - -25.4592628 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Kauê de Moraes Vestena", - "uid": "2052228", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-25T19:55:13Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "veterinary" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 121491116 - } - }, - { - "id": 121491040, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -49.2312813, - -25.4613879 - ], - [ - -49.2312813, - -25.4613879 - ], - [ - -49.2312813, - -25.4613879 - ], - [ - -49.2312813, - -25.4613879 - ], - [ - -49.2312813, - -25.4613879 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Kauê de Moraes Vestena", - "uid": "2052228", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-25T19:53:35Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_disposal" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 121491040 - } - }, - { - "id": 121490689, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -49.2313738, - -25.4612081 - ], - [ - -49.2313168, - -25.4612081 - ], - [ - -49.2313168, - -25.4611966 - ], - [ - -49.2313738, - -25.4611966 - ], - [ - -49.2313738, - -25.4612081 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Kauê de Moraes Vestena", - "uid": "2052228", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-25T19:40:21Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 6.55499999944329e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "create": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 121490689 - } - }, - { - "id": 121485997, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3906636, - 51.0715768 - ], - [ - 3.3906636, - 51.0715768 - ], - [ - 3.3906636, - 51.0715768 - ], - [ - 3.3906636, - 51.0715768 - ], - [ - 3.3906636, - 51.0715768 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-25T17:23:25Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 4, - "create": 1, - "locale": "en", - "imagery": "AGIV", - "change_over_5000m": 1, - "change_within_5000m": 4 - }, - "id": 121485997 - } - }, - { - "id": 121485747, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3906408, - 51.0715958 - ], - [ - 3.3906408, - 51.0715958 - ], - [ - 3.3906408, - 51.0715958 - ], - [ - 3.3906408, - 51.0715958 - ], - [ - 3.3906408, - 51.0715958 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-25T17:15:42Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "public_bookcase" - ] - }, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 4, - "create": 1, - "locale": "en", - "imagery": "AGIV", - "add-image": 1, - "change_over_5000m": 1, - "change_within_5000m": 5 - }, - "id": 121485747 - } - }, - { - "id": 121479693, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7530381, - 50.8628307 - ], - [ - 3.7530381, - 50.8628307 - ], - [ - 3.7530381, - 50.8628307 - ], - [ - 3.7530381, - 50.8628307 - ], - [ - 3.7530381, - 50.8628307 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "BBO1", - "uid": "6159261", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-25T14:47:10Z", - "reviewed_features": [], - "tag_changes": { - "seats": [ - "4" - ], - "amenity": [ - "bench" - ], - "backrest": [ - "yes" - ], - "material": [ - "houtpaletten" - ], - "direction": [ - "59" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 4, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 121479693 - } - }, - { - "id": 121478703, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7106243, - 51.0332678 - ], - [ - 3.7107396, - 51.0332678 - ], - [ - 3.7107396, - 51.0337907 - ], - [ - 3.7106243, - 51.0337907 - ], - [ - 3.7106243, - 51.0332678 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "velosophe", - "uid": "477861", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-25T14:23:47Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 6.02903700000203e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 4, - "create": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 121478703 - } - }, - { - "id": 121472054, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1957978, - 48.6772682 - ], - [ - 9.1957978, - 48.6772682 - ], - [ - 9.1957978, - 48.6772682 - ], - [ - 9.1957978, - 48.6772682 - ], - [ - 9.1957978, - 48.6772682 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-25T11:51:02Z", - "reviewed_features": [], - "tag_changes": { - "bus": [ - "no" - ], - "hgv": [ - "no" - ], - "image": [ - "https://i.imgur.com/dEpfVBs.jpg" - ], - "access": [ - "yes" - ], - "amenity": [ - "charging_station" - ], - "bicycle": [ - "no" - ], - "scooter": [ - "no" - ], - "motorcar": [ - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_5000m": 3 - }, - "id": 121472054 - } - }, - { - "id": 121459068, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9773688, - 51.1091876 - ], - [ - 4.9773688, - 51.1091876 - ], - [ - 4.9773688, - 51.1091876 - ], - [ - 4.9773688, - 51.1091876 - ], - [ - 4.9773688, - 51.1091876 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-25T07:05:53Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/CwoOjPt.jpg" - ], - "colour": [ - "black" - ], - "amenity": [ - "bench" - ], - "direction": [ - "330" - ], - "survey:date": [ - "2022-05-25" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 4 - }, - "id": 121459068 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-26.json b/Docs/Tools/stats/stats.2022-5-26.json deleted file mode 100644 index 86d17c6d0d..0000000000 --- a/Docs/Tools/stats/stats.2022-5-26.json +++ /dev/null @@ -1,2181 +0,0 @@ -{ - "features": [ - { - "id": 121546262, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1006019, - 51.1113613 - ], - [ - 5.1078293, - 51.1113613 - ], - [ - 5.1078293, - 51.1129348 - ], - [ - 5.1006019, - 51.1129348 - ], - [ - 5.1006019, - 51.1113613 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-26T21:20:12Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "farm", - "farm_auxiliary", - "yes", - "roof" - ], - "addr:street": [ - "Vennestraat" - ], - "addr:housenumber": [ - "7" - ], - "source:geometry:ref": [ - "Gbg/1038513", - "Gbg/1037644", - "Gbg/1037838", - "Gbg/1038512", - "Gbg/5774612", - "Gbg/1038404", - "Gbg/1039170", - "Gbg/1038612", - "Gbg/1037992", - "Gbg/1037990", - "Gbg/1038889", - "Gbg/6454782", - "Gbg/1038888", - "Gbg/5773024", - "Gbg/6455524", - "Gbg/1037836", - "Gbg/1039186", - "Gbg/1038357", - "Gbg/5773318" - ], - "source:geometry:date": [ - "2015-07-13", - "2009-03-02", - "2016-11-21", - "2018-08-29", - "2020-04-20", - "2020-09-28" - ] - }, - "create": 39, - "modify": 178, - "delete": 2, - "area": 0.0000113723138999939, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 161, - "theme": "grb", - "delete": 2, - "import": 2, - "locale": "nl", - "imagery": "osm", - "conflation": 38 - }, - "id": 121546262 - } - }, - { - "id": 121542290, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1901383, - 50.8398813 - ], - [ - 3.1937378, - 50.8398813 - ], - [ - 3.1937378, - 50.8411756 - ], - [ - 3.1901383, - 50.8411756 - ], - [ - 3.1901383, - 50.8398813 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-26T19:14:38Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/DmsBtCX.jpg", - "https://i.imgur.com/s6uZtIp.jpg" - ], - "leisure": [ - "picnic_table" - ], - "material": [ - "wood" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.00000465883284999227, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 5, - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 121542290 - } - }, - { - "id": 121539596, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3984885, - 52.5316204 - ], - [ - 13.3984885, - 52.5316204 - ], - [ - 13.3984885, - 52.5316204 - ], - [ - 13.3984885, - 52.5316204 - ], - [ - 13.3984885, - 52.5316204 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "kjon", - "uid": "44217", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #hackerspaces", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-26T18:04:06Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "hackerspace" - ], - "hackerspace": [ - "makerspace" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hackerspaces.html", - "theme": "hackerspaces", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 121539596 - } - }, - { - "id": 121538549, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 76.8649321, - 9.5103999 - ], - [ - 80.2664784, - 9.5103999 - ], - [ - 80.2664784, - 13.138441 - ], - [ - 76.8649321, - 13.138441 - ], - [ - 76.8649321, - 9.5103999 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 87, - "name": "Irrelevant tags on highway" - } - ], - "tags": [], - "features": [ - { - "url": "way-837717490", - "name": "Tiruvalluvar Street", - "osm_id": 837717490, - "reasons": [ - 87 - ], - "version": 4, - "primary_tags": { - "highway": "primary" - } - }, - { - "url": "way-837717489", - "name": "Tiruvalluvar Street", - "osm_id": 837717489, - "reasons": [ - 87 - ], - "version": 2, - "primary_tags": { - "highway": "primary" - } - }, - { - "url": "way-26480972", - "name": "Tiruvalluvar Street", - "osm_id": 26480972, - "reasons": [ - 87 - ], - "version": 11, - "primary_tags": { - "highway": "primary" - } - }, - { - "url": "way-26480973", - "name": "Kamarajar Salai", - "osm_id": 26480973, - "reasons": [ - 87 - ], - "version": 15, - "primary_tags": { - "highway": "primary" - } - } - ], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-26T17:35:51Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "college", - "school", - "university" - ], - "highway": [ - "tertiary", - "unclassified", - "living_street", - "residential", - "secondary", - "primary", - "road", - "service", - "trunk" - ], - "leisure": [ - "stadium", - "park" - ], - "building": [ - "yes" - ], - "name:etymology:wikidata": [ - "Q522048", - "Q2353373", - "Q1535227", - "Q231690", - "Q1001", - "Q156349", - "Q1047", - "Q464318", - "Q888293", - "Q7809411", - "Q2153", - "Q3411606", - "Q492527" - ] - }, - "create": 0, - "modify": 106, - "delete": 0, - "area": 12.3409497799529, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 131, - "locale": "en", - "imagery": "osm" - }, - "id": 121538549 - } - }, - { - "id": 121536762, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.10833, - 38.8374023 - ], - [ - 0.10833, - 38.8374023 - ], - [ - 0.10833, - 38.8374023 - ], - [ - 0.10833, - 38.8374023 - ], - [ - 0.10833, - 38.8374023 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-26T16:49:45Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "yes" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "answer": 1, - "create": 1, - "locale": "ca", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_500m": 1 - }, - "id": 121536762 - } - }, - { - "id": 121536619, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.3803311, - 43.6559703 - ], - [ - 1.3803848, - 43.6559703 - ], - [ - 1.3803848, - 43.6561333 - ], - [ - 1.3803311, - 43.6561333 - ], - [ - 1.3803311, - 43.6559703 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-26T16:46:30Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 8.75310000003851e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "theme": "waste_basket", - "answer": 2, - "create": 2, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 2 - }, - "id": 121536619 - } - }, - { - "id": 121536484, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.3801514, - 43.6559538 - ], - [ - 1.3803224, - 43.6559538 - ], - [ - 1.3803224, - 43.6562046 - ], - [ - 1.3801514, - 43.6562046 - ], - [ - 1.3801514, - 43.6559538 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-26T16:43:40Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 4, - "modify": 0, - "delete": 0, - "area": 4.28868000006237e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 4, - "create": 4, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 4, - "change_within_25m": 3, - "change_within_50m": 1 - }, - "id": 121536484 - } - }, - { - "id": 121536427, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.3805373, - 43.6554633 - ], - [ - 1.380771, - 43.6554633 - ], - [ - 1.380771, - 43.6560085 - ], - [ - 1.3805373, - 43.6560085 - ], - [ - 1.3805373, - 43.6554633 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-26T16:42:27Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 1.27413239999402e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "move": 1, - "theme": "benches", - "answer": 4, - "create": 2, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 1, - "change_within_100m": 4, - "move:node/4374375909": "improve_accuracy" - }, - "id": 121536427 - } - }, - { - "id": 121534586, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0353372, - 51.1117575 - ], - [ - 5.1155488, - 51.1117575 - ], - [ - 5.1155488, - 51.1310172 - ], - [ - 5.0353372, - 51.1310172 - ], - [ - 5.0353372, - 51.1117575 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-26T16:03:12Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/UWhuPJg.jpg" - ], - "colour": [ - "gray" - ], - "amenity": [ - "bench", - "toilets" - ], - "backrest": [ - "yes" - ], - "material": [ - "concrete" - ], - "direction": [ - "308", - "167" - ], - "survey:date": [ - "2022-05-26", - "2020-05-06 12:26:57.139008" - ] - }, - "create": 2, - "modify": 11, - "delete": 0, - "area": 0.00154485135251994, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 2, - "theme": "toerisme_vlaanderen", - "answer": 19, - "create": 1, - "import": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "move:node/9677061297": "improve_accuracy", - "move:node/9677061338": "improve_accuracy", - "import:node/9773056032": "source: https://osm.org/note/3143560" - }, - "id": 121534586 - } - }, - { - "id": 121533236, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ltrlg", - "uid": "5035134", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-26T15:37:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/index.html", - "theme": "bookcases", - "locale": "fr", - "add-image": 1 - }, - "id": 121533236 - } - }, - { - "id": 121532256, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.975936, - 49.8462657 - ], - [ - 4.975936, - 49.8462657 - ], - [ - 4.975936, - 49.8462657 - ], - [ - 4.975936, - 49.8462657 - ], - [ - 4.975936, - 49.8462657 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-26T15:18:49Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "caravan_site" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/campersite.html", - "theme": "campersite", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 121532256 - } - }, - { - "id": 121531215, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.3794269, - 43.6554745 - ], - [ - 1.3798785, - 43.6554745 - ], - [ - 1.3798785, - 43.6557292 - ], - [ - 1.3794269, - 43.6557292 - ], - [ - 1.3794269, - 43.6554745 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-26T14:59:44Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 4, - "modify": 3, - "delete": 0, - "area": 1.15022520002909e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "move": 1, - "theme": "benches", - "answer": 4, - "create": 4, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 4, - "change_within_25m": 3, - "change_within_50m": 2, - "move:node/9772878554": "improve_accuracy" - }, - "id": 121531215 - } - }, - { - "id": 121530935, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.3795245, - 43.6554725 - ], - [ - 1.3799965, - 43.6554725 - ], - [ - 1.3799965, - 43.6556511 - ], - [ - 1.3795245, - 43.6556511 - ], - [ - 1.3795245, - 43.6554725 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-26T14:54:58Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 4, - "modify": 0, - "delete": 0, - "area": 8.42991999991277e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "theme": "waste_basket", - "answer": 4, - "create": 4, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 4, - "change_within_25m": 3, - "change_within_50m": 1 - }, - "id": 121530935 - } - }, - { - "id": 121530792, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.3812357, - 43.6556947 - ], - [ - 1.3813484, - 43.6556947 - ], - [ - 1.3813484, - 43.6559897 - ], - [ - 1.3812357, - 43.6559897 - ], - [ - 1.3812357, - 43.6556947 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-26T14:52:26Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 3.32465000001653e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 2, - "create": 2, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_50m": 1, - "change_within_100m": 1 - }, - "id": 121530792 - } - }, - { - "id": 121530415, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.3802004, - 43.6553677 - ], - [ - 1.3802004, - 43.6553677 - ], - [ - 1.3802004, - 43.6553677 - ], - [ - 1.3802004, - 43.6553677 - ], - [ - 1.3802004, - 43.6553677 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-26T14:46:43Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 121530415 - } - }, - { - "id": 121529765, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3465029, - 52.5230288 - ], - [ - 13.3469221, - 52.5230288 - ], - [ - 13.3469221, - 52.5234786 - ], - [ - 13.3465029, - 52.5234786 - ], - [ - 13.3465029, - 52.5230288 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "kjon", - "uid": "44217", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-26T14:36:06Z", - "reviewed_features": [], - "tag_changes": { - "door": [ - "hinged" - ], - "entrance": [ - "main", - "yes", - "secondary" - ], - "automatic_door": [ - "no" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 1.88556159999154e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/entrances.html", - "theme": "entrances", - "answer": 9, - "locale": "de", - "imagery": "osm" - }, - "id": 121529765 - } - }, - { - "id": 121528477, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.3538071, - 48.8798823 - ], - [ - 2.3568919, - 48.8798823 - ], - [ - 2.3568919, - 48.8819557 - ], - [ - 2.3538071, - 48.8819557 - ], - [ - 2.3538071, - 48.8798823 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "retiolus", - "uid": "11291363", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-26T14:16:28Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "train_station" - ], - "man_made": [ - "surveillance" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0.00000639602432000115, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance", - "theme": "surveillance", - "answer": 4, - "create": 2, - "locale": "en", - "imagery": "osm", - "change_within_25m": 2, - "change_within_50m": 4 - }, - "id": 121528477 - } - }, - { - "id": 121526458, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9879452, - 51.3611379 - ], - [ - 4.9879452, - 51.3611379 - ], - [ - 4.9879452, - 51.3611379 - ], - [ - 4.9879452, - 51.3611379 - ], - [ - 4.9879452, - 51.3611379 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-26T13:33:34Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "add-image": 1, - "change_over_5000m": 2 - }, - "id": 121526458 - } - }, - { - "id": 121526004, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9651826, - 51.356967 - ], - [ - 4.9880257, - 51.356967 - ], - [ - 4.9880257, - 51.3611274 - ], - [ - 4.9651826, - 51.3611274 - ], - [ - 4.9651826, - 51.356967 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-26T13:26:10Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 0.0000950364332400773, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "import": 2, - "locale": "nl", - "imagery": "AGIV", - "add-image": 2, - "import:node/9772722990": "source: https://osm.org/note/3143438", - "import:node/9772727020": "source: https://osm.org/note/3143527" - }, - "id": 121526004 - } - }, - { - "id": 121521094, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.3923723, - 43.6634561 - ], - [ - 1.3930549, - 43.6634561 - ], - [ - 1.3930549, - 43.6639368 - ], - [ - 1.3923723, - 43.6639368 - ], - [ - 1.3923723, - 43.6634561 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-26T12:04:22Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 4, - "modify": 1, - "delete": 0, - "area": 3.28125820002976e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 4, - "create": 5, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 5, - "change_within_25m": 4 - }, - "id": 121521094 - } - }, - { - "id": 121518153, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.3877642, - 43.6625611 - ], - [ - 1.3915273, - 43.6625611 - ], - [ - 1.3915273, - 43.6660924 - ], - [ - 1.3877642, - 43.6660924 - ], - [ - 1.3877642, - 43.6625611 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-26T11:12:41Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "backrest": [ - "yes" - ] - }, - "create": 9, - "modify": 3, - "delete": 0, - "area": 0.0000132886350299955, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 11, - "create": 9, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 9, - "change_within_25m": 11 - }, - "id": 121518153 - } - }, - { - "id": 121516891, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.3910573, - 43.6653939 - ], - [ - 1.3912055, - 43.6653939 - ], - [ - 1.3912055, - 43.6655031 - ], - [ - 1.3910573, - 43.6655031 - ], - [ - 1.3910573, - 43.6653939 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-26T10:52:26Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "backrest": [ - "yes" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 1.61834400006467e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "move": 2, - "theme": "benches", - "answer": 2, - "locale": "en", - "imagery": "fr.ign.bdortho", - "change_within_25m": 4, - "move:node/9236402773": "improve_accuracy", - "move:node/9236402774": "improve_accuracy" - }, - "id": 121516891 - } - }, - { - "id": 121516757, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.3911317, - 43.6656054 - ], - [ - 1.3911317, - 43.6656054 - ], - [ - 1.3911317, - 43.6656054 - ], - [ - 1.3911317, - 43.6656054 - ], - [ - 1.3911317, - 43.6656054 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-26T10:49:19Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "theme": "waste_basket", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 121516757 - } - }, - { - "id": 121516566, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "kjon", - "uid": "44217", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-26T10:44:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 121516566 - } - }, - { - "id": 121516177, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.3929205, - 43.6636889 - ], - [ - 1.3929205, - 43.6636889 - ], - [ - 1.3929205, - 43.6636889 - ], - [ - 1.3929205, - 43.6636889 - ], - [ - 1.3929205, - 43.6636889 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-26T10:35:50Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ] - }, - "create": 0, - "modify": 0, - "delete": 1, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "locale": "en", - "imagery": "osm", - "deletion": 1, - "change_within_25m": 1, - "deletion:node/5559482055": "duplicate" - }, - "id": 121516177 - } - }, - { - "id": 121516104, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9947544, - 48.5019688 - ], - [ - 8.9950595, - 48.5019688 - ], - [ - 8.9950595, - 48.5024474 - ], - [ - 8.9947544, - 48.5024474 - ], - [ - 8.9947544, - 48.5019688 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-26T10:34:13Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ], - "support": [ - "pole" - ], - "light:lit": [ - "dusk-dawn" - ], - "light:count": [ - "1" - ], - "light:colour": [ - "white" - ], - "light:method": [ - "LED" - ], - "light:direction": [ - "252" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 1.46020860000438e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 8, - "locale": "de", - "imagery": "osm", - "change_within_25m": 8 - }, - "id": 121516104 - } - }, - { - "id": 121515698, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.3911358, - 43.6654337 - ], - [ - 1.3913114, - 43.6654337 - ], - [ - 1.3913114, - 43.6655972 - ], - [ - 1.3911358, - 43.6655972 - ], - [ - 1.3911358, - 43.6654337 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-26T10:25:47Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "lit": [ - "no" - ], - "image": [ - "https://i.imgur.com/zFq4D4m.jpg" - ], - "access": [ - "yes" - ], - "leisure": [ - "playground" - ], - "surface": [ - "woodchips" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 2.87105999998707e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 3, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 4 - }, - "id": 121515698 - } - }, - { - "id": 121508615, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8940134, - 49.8826473 - ], - [ - 4.8940134, - 49.8826473 - ], - [ - 4.8940134, - 49.8826473 - ], - [ - 4.8940134, - 49.8826473 - ], - [ - 4.8940134, - 49.8826473 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-26T08:12:02Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "SPW_ORTHO_LAST", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 5 - }, - "id": 121508615 - } - }, - { - "id": 121504630, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8497061, - 49.8960247 - ], - [ - 4.8497061, - 49.8960247 - ], - [ - 4.8497061, - 49.8960247 - ], - [ - 4.8497061, - 49.8960247 - ], - [ - 4.8497061, - 49.8960247 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-26T06:43:25Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "picnic_table" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "fr.ign.bdortho", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 121504630 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-27.json b/Docs/Tools/stats/stats.2022-5-27.json deleted file mode 100644 index 09b2be0fd0..0000000000 --- a/Docs/Tools/stats/stats.2022-5-27.json +++ /dev/null @@ -1,1758 +0,0 @@ -{ - "features": [ - { - "id": 121595516, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.4910229, - 43.589965 - ], - [ - 1.4918261, - 43.589965 - ], - [ - 1.4918261, - 43.590555 - ], - [ - 1.4910229, - 43.590555 - ], - [ - 1.4910229, - 43.589965 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-27T22:34:18Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/R9EX6u3.jpg", - "https://i.imgur.com/G5lz3Pr.jpg" - ], - "access": [ - "public" - ], - "image:0": [ - "https://i.imgur.com/D93FCzc.jpg" - ], - "leisure": [ - "pitch" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 4.73888000002037e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "answer": 2, - "locale": "en", - "imagery": "osm", - "add-image": 3 - }, - "id": 121595516 - } - }, - { - "id": 121595067, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.3800915, - 43.5894064 - ], - [ - 1.4914621, - 43.5894064 - ], - [ - 1.4914621, - 43.6561886 - ], - [ - 1.3800915, - 43.6561886 - ], - [ - 1.3800915, - 43.5894064 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-27T22:08:18Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/PyOPcPa.jpg", - "https://i.imgur.com/rGTlJX9.jpg" - ], - "leisure": [ - "playground" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00743757368331984, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "locale": "en", - "imagery": "osm", - "add-image": 2 - }, - "id": 121595067 - } - }, - { - "id": 121594460, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.241668, - -39.8295339 - ], - [ - -73.241668, - -39.8295339 - ], - [ - -73.241668, - -39.8295339 - ], - [ - -73.241668, - -39.8295339 - ], - [ - -73.241668, - -39.8295339 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-27T21:37:03Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "artwork" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 121594460 - } - }, - { - "id": 121594410, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2420511, - -39.8294596 - ], - [ - -73.2420511, - -39.8294596 - ], - [ - -73.2420511, - -39.8294596 - ], - [ - -73.2420511, - -39.8294596 - ], - [ - -73.2420511, - -39.8294596 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-27T21:34:50Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/xeq0Dhb.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "HDM_HOT", - "add-image": 1 - }, - "id": 121594410 - } - }, - { - "id": 121585213, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7896861, - 50.87463 - ], - [ - 4.7896861, - 50.87463 - ], - [ - 4.7896861, - 50.87463 - ], - [ - 4.7896861, - 50.87463 - ], - [ - 4.7896861, - 50.87463 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Koenraad Van Coppenolle", - "uid": "12352906", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-27T16:38:44Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "picnic_table" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 121585213 - } - }, - { - "id": 121582081, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.7912353, - 49.8497599 - ], - [ - 5.7912353, - 49.8497599 - ], - [ - 5.7912353, - 49.8497599 - ], - [ - 5.7912353, - 49.8497599 - ], - [ - 5.7912353, - 49.8497599 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "ClarissaWAM", - "uid": "13745921", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-27T15:21:17Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "public_bookcase" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases", - "theme": "bookcases", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 121582081 - } - }, - { - "id": 121576635, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1517694, - 48.6780261 - ], - [ - 2.1532149, - 48.6780261 - ], - [ - 2.1532149, - 48.6797994 - ], - [ - 2.1517694, - 48.6797994 - ], - [ - 2.1517694, - 48.6780261 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paulrbr", - "uid": "12447319", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-27T13:21:58Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "url": [ - "https://www.camptocamp.org/waypoints/102840/fr/viaduc-des-fauvettes" - ], - "rock": [ - "Gritstone" - ], - "image": [ - "https://i.imgur.com/vNozUQG.jpg" - ], - "access": [ - "yes" - ], - "building": [ - "yes" - ], - "climbing": [ - "crag" - ], - "man_made": [ - "bridge" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00000256330515000508, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/climbing.html", - "theme": "climbing", - "answer": 5, - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 121576635 - } - }, - { - "id": 121576404, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.447357, - 51.3886118 - ], - [ - 4.4747186, - 51.3886118 - ], - [ - 4.4747186, - 51.4084981 - ], - [ - 4.447357, - 51.4084981 - ], - [ - 4.447357, - 51.3886118 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "tissie", - "uid": "11544291", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-27T13:16:36Z", - "reviewed_features": [], - "tag_changes": { - "seats": [ - "3" - ], - "amenity": [ - "bench", - "toilets", - "bicycle_rental" - ], - "leisure": [ - "playground" - ], - "material": [ - "wood" - ], - "direction": [ - "11", - "258" - ], - "wheelchair": [ - "yes" - ], - "survey:date": [ - "2022-04-30" - ] - }, - "create": 2, - "modify": 9, - "delete": 0, - "area": 0.000544120986080083, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 13, - "create": 1, - "import": 1, - "locale": "nl", - "imagery": "osm", - "import:node/9775033593": "source: https://osm.org/note/3161461" - }, - "id": 121576404 - } - }, - { - "id": 121571643, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2198591, - 50.5575216 - ], - [ - 4.2398483, - 50.5575216 - ], - [ - 4.2398483, - 50.6433495 - ], - [ - 4.2198591, - 50.6433495 - ], - [ - 4.2198591, - 50.5575216 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Mizuna", - "uid": "12496737", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-27T11:35:08Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 9, - "modify": 8, - "delete": 0, - "area": 0.00171563105868, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 19, - "create": 9, - "locale": "nl", - "imagery": "SPW_ORTHO_LAST", - "change_over_5000m": 9, - "change_within_25m": 18, - "change_within_50m": 1 - }, - "id": 121571643 - } - }, - { - "id": 121569052, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2223871, - 50.6055974 - ], - [ - 4.2302595, - 50.6055974 - ], - [ - 4.2302595, - 50.7100815 - ], - [ - 4.2223871, - 50.7100815 - ], - [ - 4.2223871, - 50.6055974 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Mizuna", - "uid": "12496737", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-27T10:43:17Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 4, - "modify": 4, - "delete": 1, - "area": 0.000822540628840016, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 8, - "create": 4, - "locale": "nl", - "imagery": "osm", - "deletion": 1, - "change_over_5000m": 4, - "change_within_25m": 7, - "change_within_50m": 2, - "deletion:node/4512748291": "not found" - }, - "id": 121569052 - } - }, - { - "id": 121568785, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0026899, - 51.1264179 - ], - [ - 5.0026899, - 51.1264179 - ], - [ - 5.0026899, - 51.1264179 - ], - [ - 5.0026899, - 51.1264179 - ], - [ - 5.0026899, - 51.1264179 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-27T10:37:26Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/EmDkTG8.jpg" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_5000m": 1 - }, - "id": 121568785 - } - }, - { - "id": 121566441, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 76.6427638, - 9.8978631 - ], - [ - 80.2623655, - 9.8978631 - ], - [ - 80.2623655, - 13.1402693 - ], - [ - 76.6427638, - 13.1402693 - ], - [ - 76.6427638, - 9.8978631 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 87, - "name": "Irrelevant tags on highway" - } - ], - "tags": [], - "features": [ - { - "url": "way-34159383", - "name": "Gandhi Main Road", - "osm_id": 34159383, - "reasons": [ - 87 - ], - "version": 8, - "primary_tags": { - "highway": "residential" - } - }, - { - "url": "way-34159389", - "name": "Thanthai Periyar Street", - "osm_id": 34159389, - "reasons": [ - 87 - ], - "version": 5, - "primary_tags": { - "highway": "residential" - } - }, - { - "url": "way-34159388", - "name": "Aringar Anna Street", - "osm_id": 34159388, - "reasons": [ - 87 - ], - "version": 4, - "primary_tags": { - "highway": "residential" - } - } - ], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-27T09:50:04Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "bus", - "road" - ], - "highway": [ - "residential", - "service", - "unclassified", - "primary", - "secondary", - "tertiary", - "living_street", - "trunk_link" - ], - "name:etymology:wikidata": [ - "Q2153", - "Q138765", - "Q181878", - "Q1001", - "Q737280" - ] - }, - "create": 0, - "modify": 51, - "delete": 0, - "area": 11.7362189936106, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 73, - "locale": "en", - "imagery": "osm" - }, - "id": 121566441 - } - }, - { - "id": 121565136, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.2808198, - 52.4877944 - ], - [ - 13.3220174, - 52.4877944 - ], - [ - 13.3220174, - 52.5048901 - ], - [ - 13.2808198, - 52.5048901 - ], - [ - 13.2808198, - 52.4877944 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-27T09:27:58Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "theatre", - "school", - "hospital" - ], - "barrier": [ - "fence" - ], - "highway": [ - "elevator", - "service" - ], - "building": [ - "school", - "yes" - ], - "name:etymology:wikidata": [ - "Q939583", - "Q1401339", - "Q800476", - "Q12735", - "Q72384", - "Q123490", - "Q57674", - "Q62512", - "Q135645", - "Q152384", - "Q60095", - "Q651009", - "Q1670522", - "Q9554", - "Q112138469", - "Q8023" - ] - }, - "create": 0, - "modify": 25, - "delete": 0, - "area": 0.000704301810319952, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 27, - "locale": "de", - "imagery": "osm" - }, - "id": 121565136 - } - }, - { - "id": 121564744, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1821974, - 50.8401972 - ], - [ - 3.18224, - 50.8401972 - ], - [ - 3.18224, - 50.8402328 - ], - [ - 3.1821974, - 50.8402328 - ], - [ - 3.1821974, - 50.8401972 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-27T09:20:27Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/Km7You4.jpg" - ], - "amenity": [ - "bicycle_parking" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.51656000016671e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 121564744 - } - }, - { - "id": 121564333, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-27T09:12:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "move": 1, - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "move:node/-1": "improve_accuracy", - "change_within_25m": 1 - }, - "id": 121564333 - } - }, - { - "id": 121564020, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1935282, - 50.8398022 - ], - [ - 3.1935455, - 50.8398022 - ], - [ - 3.1935455, - 50.8398285 - ], - [ - 3.1935282, - 50.8398285 - ], - [ - 3.1935282, - 50.8398022 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-27T09:05:28Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/ga0iFu5.jpg" - ], - "barrier": [ - "lift_gate" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 4.54990000034194e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 121564020 - } - }, - { - "id": 121563754, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1918522, - 50.8404509 - ], - [ - 3.1921043, - 50.8404509 - ], - [ - 3.1921043, - 50.8406286 - ], - [ - 3.1918522, - 50.8406286 - ], - [ - 3.1918522, - 50.8404509 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-27T08:59:38Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/sAf8J9Y.jpg", - "https://i.imgur.com/cmP0JW1.jpg" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ], - "survey:date": [ - "2022-05-26" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 4.47981700004585e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "add-image": 3 - }, - "id": 121563754 - } - }, - { - "id": 121563722, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3077264, - 52.4535105 - ], - [ - 13.308048, - 52.4535105 - ], - [ - 13.308048, - 52.4543358 - ], - [ - 13.3077264, - 52.4543358 - ], - [ - 13.3077264, - 52.4535105 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-27T08:59:05Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "no" - ], - "highway": [ - "footway", - "street_lamp" - ], - "surface": [ - "paving_stones" - ] - }, - "create": 4, - "modify": 3, - "delete": 0, - "area": 2.65416480000364e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 11, - "create": 4, - "locale": "nl", - "imagery": "Berlin-2020-TrueDOP", - "change_over_5000m": 4, - "change_within_25m": 6, - "change_within_50m": 5 - }, - "id": 121563722 - } - }, - { - "id": 121563538, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2365336, - 49.7766509 - ], - [ - 5.2374931, - 49.7766509 - ], - [ - 5.2374931, - 49.77733 - ], - [ - 5.2365336, - 49.77733 - ], - [ - 5.2365336, - 49.7766509 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-27T08:56:12Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "yes", - "no" - ], - "image": [ - "https://i.imgur.com/mg0Q1Yv.jpg" - ], - "image:0": [ - "https://i.imgur.com/K3hRxj5.jpg" - ], - "image:1": [ - "https://i.imgur.com/DemBCfS.jpg" - ], - "tourism": [ - "caravan_site" - ], - "internet_access": [ - "yes" - ], - "permanent_camping": [ - "no" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 6.51596449999599e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/campersite.html", - "theme": "campersite", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "add-image": 3, - "change_within_50m": 6 - }, - "id": 121563538 - } - }, - { - "id": 121563172, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.306522, - 52.4530697 - ], - [ - 13.3081502, - 52.4530697 - ], - [ - 13.3081502, - 52.4547541 - ], - [ - 13.306522, - 52.4547541 - ], - [ - 13.306522, - 52.4530697 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-27T08:49:16Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "no" - ], - "amenity": [ - "bench", - "waste_basket" - ], - "highway": [ - "footway" - ], - "surface": [ - "fine_gravel", - "paving_stones", - "asphalt" - ] - }, - "create": 3, - "modify": 4, - "delete": 0, - "area": 0.00000274254008000456, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "move": 3, - "theme": "waste", - "answer": 9, - "create": 3, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 3, - "change_within_25m": 12, - "move:node/9774517148": "improve_accuracy" - }, - "id": 121563172 - } - }, - { - "id": 121563026, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3047062, - 52.4530696 - ], - [ - 13.3081227, - 52.4530696 - ], - [ - 13.3081227, - 52.454746 - ], - [ - 13.3047062, - 52.454746 - ], - [ - 13.3047062, - 52.4530696 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-27T08:45:58Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "no" - ], - "amenity": [ - "bench" - ], - "highway": [ - "footway" - ], - "surface": [ - "fine_gravel", - "paving_stones", - "asphalt" - ] - }, - "create": 4, - "modify": 5, - "delete": 0, - "area": 0.00000572742060000337, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "move": 1, - "theme": "benches", - "answer": 24, - "create": 4, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 4, - "change_within_25m": 21, - "change_within_500m": 4, - "move:node/9774555889": "improve_accuracy" - }, - "id": 121563026 - } - }, - { - "id": 121553183, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 75.9823671, - 9.444339 - ], - [ - 80.2605656, - 9.444339 - ], - [ - 80.2605656, - 13.1103711 - ], - [ - 75.9823671, - 13.1103711 - ], - [ - 75.9823671, - 9.444339 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-27T04:27:07Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "theatre", - "college" - ], - "highway": [ - "residential", - "unclassified", - "tertiary", - "living_street", - "primary", - "trunk", - "footway", - "service", - "secondary" - ], - "natural": [ - "grassland" - ], - "boundary": [ - "local_authority" - ], - "building": [ - "yes" - ], - "name:etymology:wikidata": [ - "Q256286", - "Q47478", - "Q3534483", - "Q9513", - "Q1570759", - "Q60429", - "Q745268", - "Q30547", - "Q127868", - "Q715607", - "Q250165" - ] - }, - "create": 0, - "modify": 68, - "delete": 0, - "area": 15.6840130311719, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 78, - "locale": "en", - "imagery": "osm" - }, - "id": 121553183 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-28.json b/Docs/Tools/stats/stats.2022-5-28.json deleted file mode 100644 index c93c3f74cc..0000000000 --- a/Docs/Tools/stats/stats.2022-5-28.json +++ /dev/null @@ -1,2455 +0,0 @@ -{ - "features": [ - { - "id": 121635305, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0494433, - 14.7010168 - ], - [ - 121.0515282, - 14.7010168 - ], - [ - 121.0515282, - 14.7057593 - ], - [ - 121.0494433, - 14.7057593 - ], - [ - 121.0494433, - 14.7010168 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mikko_tamura", - "uid": "2258022", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-28T23:19:41Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "recycling" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000988763825006819, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "move": 2, - "theme": "waste", - "locale": "en", - "imagery": "osm", - "move:node/7543489085": "improve_accuracy", - "move:node/7547431985": "improve_accuracy" - }, - "id": 121635305 - } - }, - { - "id": 121635205, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mikko_tamura", - "uid": "2258022", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #lgbtmap", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-28T23:11:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "lgbtmap", - "answer": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 121635205 - } - }, - { - "id": 121634200, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.0765944, - 51.9028681 - ], - [ - -2.0765944, - 51.9028681 - ], - [ - -2.0765944, - 51.9028681 - ], - [ - -2.0765944, - 51.9028681 - ], - [ - -2.0765944, - 51.9028681 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "InsertUser", - "uid": "89098", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-28T22:05:35Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "surveillance" - ], - "camera:mount": [ - "wall" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance", - "theme": "surveillance", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_5000m": 1 - }, - "id": 121634200 - } - }, - { - "id": 121631519, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0967807, - 38.8264996 - ], - [ - 0.0967807, - 38.8264996 - ], - [ - 0.0967807, - 38.8264996 - ], - [ - 0.0967807, - 38.8264996 - ], - [ - 0.0967807, - 38.8264996 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9777790419", - "osm_id": 9777790419, - "reasons": [ - 43 - ], - "version": 2, - "primary_tags": { - "tourism": "map" - } - } - ], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #maps", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-28T20:19:00Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "map" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maps.html", - "theme": "maps", - "create": 1, - "locale": "ca", - "imagery": "PNOA-Spain", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 121631519 - } - }, - { - "id": 121631032, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3468577, - 49.6363809 - ], - [ - 5.3468577, - 49.6363809 - ], - [ - 5.3468577, - 49.6363809 - ], - [ - 5.3468577, - 49.6363809 - ], - [ - 5.3468577, - 49.6363809 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-28T20:07:36Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 7, - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 121631032 - } - }, - { - "id": 121630944, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3950094, - 50.8672881 - ], - [ - 4.3950094, - 50.8672881 - ], - [ - 4.3950094, - 50.8672881 - ], - [ - 4.3950094, - 50.8672881 - ], - [ - 4.3950094, - 50.8672881 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-28T20:04:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 2 - }, - "id": 121630944 - } - }, - { - "id": 121629949, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0495104, - 14.7057321 - ], - [ - 121.0495225, - 14.7057321 - ], - [ - 121.0495225, - 14.7057593 - ], - [ - 121.0495104, - 14.7057593 - ], - [ - 121.0495104, - 14.7057321 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mikko_tamura", - "uid": "2258022", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-28T19:24:24Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "recycling" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 3.29119999786225e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "move": 1, - "theme": "waste", - "locale": "en", - "imagery": "osm", - "move:node/7547431985": "improve_accuracy" - }, - "id": 121629949 - } - }, - { - "id": 121621932, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7034722, - 50.7428389 - ], - [ - 4.7407106, - 50.7428389 - ], - [ - 4.7407106, - 50.7730193 - ], - [ - 4.7034722, - 50.7730193 - ], - [ - 4.7034722, - 50.7428389 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Salambre", - "uid": "15272429", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-28T15:23:16Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 10, - "modify": 0, - "delete": 0, - "area": 0.00112386980735995, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 4, - "create": 10, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 10, - "change_within_25m": 1, - "change_within_5000m": 3 - }, - "id": 121621932 - } - }, - { - "id": 121620119, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.2406021, - 43.5973782 - ], - [ - 1.2406021, - 43.5973782 - ], - [ - 1.2406021, - 43.5973782 - ], - [ - 1.2406021, - 43.5973782 - ], - [ - 1.2406021, - 43.5973782 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-28T14:39:10Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "pitch" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 121620119 - } - }, - { - "id": 121619492, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-28T14:24:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 121619492 - } - }, - { - "id": 121619476, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-28T14:23:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 2 - }, - "id": 121619476 - } - }, - { - "id": 121619396, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.2355515, - 43.5984912 - ], - [ - 1.2355515, - 43.5984912 - ], - [ - 1.2355515, - 43.5984912 - ], - [ - 1.2355515, - 43.5984912 - ], - [ - 1.2355515, - 43.5984912 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-28T14:21:48Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "drinking_water" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "drinking_water", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_100m": 1 - }, - "id": 121619396 - } - }, - { - "id": 121619343, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8286229, - 50.7402858 - ], - [ - 4.8286229, - 50.7402858 - ], - [ - 4.8286229, - 50.7402858 - ], - [ - 4.8286229, - 50.7402858 - ], - [ - 4.8286229, - 50.7402858 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-28T14:20:41Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Bisous Bisous", - "Atelier Mélin" - ], - "amenity": [ - "cafe" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 121619343 - } - }, - { - "id": 121619321, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.2355515, - 43.5984912 - ], - [ - 1.2355515, - 43.5984912 - ], - [ - 1.2355515, - 43.5984912 - ], - [ - 1.2355515, - 43.5984912 - ], - [ - 1.2355515, - 43.5984912 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-28T14:20:08Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "drinking_water" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_100m": 1 - }, - "id": 121619321 - } - }, - { - "id": 121619305, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.694637, - 50.8257857 - ], - [ - 5.694651, - 50.8257857 - ], - [ - 5.694651, - 50.8257934 - ], - [ - 5.694637, - 50.8257934 - ], - [ - 5.694637, - 50.8257857 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-28T14:19:46Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 1.0780000006744e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 7, - "move:node/9776842243": "improve_accuracy" - }, - "id": 121619305 - } - }, - { - "id": 121619298, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8276037, - 50.739086 - ], - [ - 4.8296538, - 50.739086 - ], - [ - 4.8296538, - 50.7415327 - ], - [ - 4.8276037, - 50.7415327 - ], - [ - 4.8276037, - 50.739086 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-28T14:19:36Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes", - "farm_auxiliary" - ] - }, - "create": 457, - "modify": 0, - "delete": 0, - "area": 0.00000501597967000014, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "theme": "grb", - "import": 71, - "locale": "nl", - "imagery": "SPW_PICC", - "change_within_25m": 8, - "change_within_50m": 29, - "change_within_100m": 25, - "change_within_500m": 9 - }, - "id": 121619298 - } - }, - { - "id": 121617131, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.3561102, - 51.6776295 - ], - [ - 14.3621435, - 51.6776295 - ], - [ - 14.3621435, - 51.6791083 - ], - [ - 14.3561102, - 51.6791083 - ], - [ - 14.3561102, - 51.6776295 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "zepelindererste", - "uid": "504008", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-28T13:23:10Z", - "reviewed_features": [], - "tag_changes": { - "note": [ - "Flachspiegelbrunnen. Ca. 200l/min" - ], - "fire_hydrant:type": [ - "underground" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000892204404000656, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 121617131 - } - }, - { - "id": 121615815, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6837552, - 50.8354643 - ], - [ - 5.6843753, - 50.8354643 - ], - [ - 5.6843753, - 50.8364223 - ], - [ - 5.6837552, - 50.8364223 - ], - [ - 5.6837552, - 50.8354643 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-28T12:52:39Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "access": [ - "yes" - ], - "colour": [ - "red" - ], - "amenity": [ - "bench", - "toilets" - ], - "image:0": [ - "https://i.imgur.com/L430MhX.jpg" - ], - "backrest": [ - "yes" - ], - "material": [ - "wood" - ], - "direction": [ - "327" - ], - "wheelchair": [ - "yes" - ], - "survey:date": [ - "2022-05-28" - ], - "changing_table": [ - "no" - ], - "toilets:position": [ - "seated" - ], - "toilets:handwashing": [ - "yes" - ], - "toilets:paper_supplied": [ - "yes" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 5.9405580000253e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 12, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 13 - }, - "id": 121615815 - } - }, - { - "id": 121613158, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6851394, - 50.8163013 - ], - [ - 5.6862672, - 50.8163013 - ], - [ - 5.6862672, - 50.8312674 - ], - [ - 5.6851394, - 50.8312674 - ], - [ - 5.6851394, - 50.8163013 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-28T11:44:56Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/GADiNQM.jpg" - ], - "colour": [ - "brown" - ], - "amenity": [ - "bench" - ], - "backrest": [ - "yes" - ], - "material": [ - "wood" - ], - "direction": [ - "311" - ], - "survey:date": [ - "2022-05-28" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000168787675800011, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 7, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 8 - }, - "id": 121613158 - } - }, - { - "id": 121612756, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.341431, - 49.7722838 - ], - [ - 6.341431, - 49.7722838 - ], - [ - 6.341431, - 49.7722838 - ], - [ - 6.341431, - 49.7722838 - ], - [ - 6.341431, - 49.7722838 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-28T11:32:15Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/ItP2zSw.jpg" - ], - "access": [ - "yes" - ], - "manual": [ - "yes" - ], - "amenity": [ - "bicycle_repair_station" - ], - "manometer": [ - "yes" - ], - "service:bicycle:chain_tool": [ - "yes" - ], - "service:bicycle:pump:operational_status": [ - "operational" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 5, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 6 - }, - "id": 121612756 - } - }, - { - "id": 121610567, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6792569, - 50.8468277 - ], - [ - 5.6792877, - 50.8468277 - ], - [ - 5.6792877, - 50.8468593 - ], - [ - 5.6792569, - 50.8468593 - ], - [ - 5.6792569, - 50.8468277 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-28T10:32:03Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 9.73279999972664e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "move": 1, - "theme": "benches", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_100m": 5, - "move:node/9776596769": "improve_accuracy" - }, - "id": 121610567 - } - }, - { - "id": 121610108, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8537642, - 50.908502 - ], - [ - 4.8537642, - 50.908502 - ], - [ - 4.8537642, - 50.908502 - ], - [ - 4.8537642, - 50.908502 - ], - [ - 4.8537642, - 50.908502 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-28T10:17:53Z", - "reviewed_features": [], - "tag_changes": { - "bus": [ - "no" - ], - "fee": [ - "no" - ], - "hgv": [ - "no" - ], - "image": [ - "https://i.imgur.com/p6qvHdW.jpg" - ], - "access": [ - "yes" - ], - "amenity": [ - "charging_station" - ], - "bicycle": [ - "yes" - ], - "scooter": [ - "no" - ], - "motorcar": [ - "no" - ], - "socket:typee": [ - "1" - ], - "opening_hours": [ - "24/7" - ], - "authentication:none": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 5, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 6 - }, - "id": 121610108 - } - }, - { - "id": 121610053, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8537308, - 50.9038752 - ], - [ - 4.8574966, - 50.9038752 - ], - [ - 4.8574966, - 50.9085451 - ], - [ - 4.8537308, - 50.9085451 - ], - [ - 4.8537308, - 50.9038752 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-28T10:15:58Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "bicycle" - ], - "amenity": [ - "vending_machine" - ] - }, - "create": 2, - "modify": 1, - "delete": 0, - "area": 0.0000175859094199856, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", - "theme": "cyclofix", - "answer": 4, - "create": 2, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 2, - "change_within_25m": 5 - }, - "id": 121610053 - } - }, - { - "id": 121609020, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.8388174, - 43.3189397 - ], - [ - -1.8388174, - 43.3189397 - ], - [ - -1.8388174, - 43.3189397 - ], - [ - -1.8388174, - 43.3189397 - ], - [ - -1.8388174, - 43.3189397 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "mirenbz", - "uid": "224679", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-28T09:44:43Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "AC Txingudi" - ], - "tourism": [ - "caravan_site" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/campersite", - "theme": "campersite", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 121609020 - } - }, - { - "id": 121608882, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.3947265, - 48.9928873 - ], - [ - 8.3947265, - 48.9928873 - ], - [ - 8.3947265, - 48.9928873 - ], - [ - 8.3947265, - 48.9928873 - ], - [ - 8.3947265, - 48.9928873 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-28T09:40:15Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "no" - ], - "image": [ - "https://i.imgur.com/msps0js.jpg" - ], - "leisure": [ - "playground" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 1, - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 121608882 - } - }, - { - "id": 121608864, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.9763045, - 51.7606305 - ], - [ - 13.9918157, - 51.7606305 - ], - [ - 13.9918157, - 51.7789001 - ], - [ - 13.9763045, - 51.7789001 - ], - [ - 13.9763045, - 51.7606305 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "EnricoP71", - "uid": "15704807", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-28T09:39:46Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/nnUxbUD.jpg" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0.000283383419520066, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 121608864 - } - }, - { - "id": 121608618, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.3962192, - 48.9932595 - ], - [ - 8.3962732, - 48.9932595 - ], - [ - 8.3962732, - 48.9933359 - ], - [ - 8.3962192, - 48.9933359 - ], - [ - 8.3962192, - 48.9932595 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-28T09:32:51Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/qP4nZYw.jpg" - ], - "amenity": [ - "bicycle_parking" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 4.12559999976494e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 121608618 - } - }, - { - "id": 121608313, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.3413744, - 43.6160225 - ], - [ - 1.341484, - 43.6160225 - ], - [ - 1.341484, - 43.6160853 - ], - [ - 1.3413744, - 43.6160853 - ], - [ - 1.3413744, - 43.6160225 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-28T09:25:13Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 6.88288000021101e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "theme": "waste_basket", - "answer": 2, - "create": 2, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 2 - }, - "id": 121608313 - } - }, - { - "id": 121608170, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.3412279, - 43.6159569 - ], - [ - 1.3414861, - 43.6159569 - ], - [ - 1.3414861, - 43.6163472 - ], - [ - 1.3412279, - 43.6163472 - ], - [ - 1.3412279, - 43.6159569 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-28T09:21:37Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 5, - "modify": 0, - "delete": 0, - "area": 1.0077545999984e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 5, - "create": 5, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 5, - "change_within_25m": 5 - }, - "id": 121608170 - } - }, - { - "id": 121608127, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.3409644, - 43.6160123 - ], - [ - 1.3411662, - 43.6160123 - ], - [ - 1.3411662, - 43.6162103 - ], - [ - 1.3409644, - 43.6162103 - ], - [ - 1.3409644, - 43.6160123 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-28T09:20:22Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 2, - "modify": 1, - "delete": 0, - "area": 3.9956399999475e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "theme": "waste_basket", - "answer": 2, - "create": 2, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 2 - }, - "id": 121608127 - } - }, - { - "id": 121607986, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.3957818, - 48.9934055 - ], - [ - 8.395849, - 48.9934055 - ], - [ - 8.395849, - 48.9934254 - ], - [ - 8.3957818, - 48.9934254 - ], - [ - 8.3957818, - 48.9934055 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-28T09:16:27Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/8Qvi1kc.jpg" - ], - "amenity": [ - "toilets" - ], - "building": [ - "toilets" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.33727999987369e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 121607986 - } - }, - { - "id": 121607531, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.3994013, - 47.3048655 - ], - [ - 9.6461811, - 47.3048655 - ], - [ - 9.6461811, - 47.7124306 - ], - [ - 9.3994013, - 47.7124306 - ], - [ - 9.3994013, - 47.3048655 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mcliquid", - "uid": "1213571", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #hackerspaces", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-28T09:03:32Z", - "reviewed_features": [], - "tag_changes": { - "phone": [ - "+49 7544 9667222", - "+49 7544 9049499" - ], - "office": [ - "yes" - ], - "landuse": [ - "residential" - ], - "leisure": [ - "hackerspace" - ], - "building": [ - "industrial" - ], - "start_date": [ - "2016-05-01", - "2014-04-29" - ], - "opening_hours": [ - "Th 19:00-22:00" - ], - "drink:club-mate": [ - "yes" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.10057883386498, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hackerspaces.html", - "theme": "hackerspaces", - "answer": 5, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 5 - }, - "id": 121607531 - } - }, - { - "id": 121607290, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7559053, - 50.9459465 - ], - [ - 4.7559053, - 50.9459465 - ], - [ - 4.7559053, - 50.9459465 - ], - [ - 4.7559053, - 50.9459465 - ], - [ - 4.7559053, - 50.9459465 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-28T08:58:27Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "picnic_table" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "import": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 1, - "import:node/9776441170": "source: https://osm.org/note/3090222" - }, - "id": 121607290 - } - }, - { - "id": 121607064, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4334027, - 52.107181 - ], - [ - 13.4334027, - 52.107181 - ], - [ - 13.4334027, - 52.107181 - ], - [ - 13.4334027, - 52.107181 - ], - [ - 13.4334027, - 52.107181 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ebihardy", - "uid": "263464", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-28T08:52:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 121607064 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-29.json b/Docs/Tools/stats/stats.2022-5-29.json deleted file mode 100644 index 38f88dfea2..0000000000 --- a/Docs/Tools/stats/stats.2022-5-29.json +++ /dev/null @@ -1,2845 +0,0 @@ -{ - "features": [ - { - "id": 121680655, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.9104819, - 48.2783052 - ], - [ - 11.9104819, - 48.2783052 - ], - [ - 11.9104819, - 48.2783052 - ], - [ - 11.9104819, - 48.2783052 - ], - [ - 11.9104819, - 48.2783052 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ThirdChild", - "uid": "9447503", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #postboxes", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-29T22:45:36Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "post_box" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/postboxes.html", - "theme": "postboxes", - "create": 1, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 121680655 - } - }, - { - "id": 121680369, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.8892294, - 48.3085175 - ], - [ - 11.8892294, - 48.3085175 - ], - [ - 11.8892294, - 48.3085175 - ], - [ - 11.8892294, - 48.3085175 - ], - [ - 11.8892294, - 48.3085175 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ThirdChild", - "uid": "9447503", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-29T22:29:47Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "surveillance" - ] - }, - "create": 1, - "modify": 6, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 4, - "create": 1, - "locale": "de", - "imagery": "osm", - "add-image": 4 - }, - "id": 121680369 - } - }, - { - "id": 121680292, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.9137689, - 48.278054 - ], - [ - 11.9137689, - 48.278054 - ], - [ - 11.9137689, - 48.278054 - ], - [ - 11.9137689, - 48.278054 - ], - [ - 11.9137689, - 48.278054 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ThirdChild", - "uid": "9447503", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-29T22:25:49Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 1, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 121680292 - } - }, - { - "id": 121680166, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.7840615, - 48.9169958 - ], - [ - 8.7840615, - 48.9169958 - ], - [ - 8.7840615, - 48.9169958 - ], - [ - 8.7840615, - 48.9169958 - ], - [ - 8.7840615, - 48.9169958 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ThirdChild", - "uid": "9447503", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-29T22:19:16Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "public_bookcase" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 5, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 121680166 - } - }, - { - "id": 121679920, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.8944584, - 48.2725368 - ], - [ - 11.9079035, - 48.2725368 - ], - [ - 11.9079035, - 48.2931315 - ], - [ - 11.8944584, - 48.2931315 - ], - [ - 11.8944584, - 48.2725368 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ThirdChild", - "uid": "9447503", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-29T22:08:28Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "mall" - ], - "building": [ - "retail", - "yes", - "commercial", - "apartments" - ] - }, - "create": 6, - "modify": 9, - "delete": 0, - "area": 0.000276897800970055, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/entrances.html", - "theme": "entrances", - "answer": 3, - "create": 12, - "locale": "de", - "imagery": "osm" - }, - "id": 121679920 - } - }, - { - "id": 121679771, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.9076667, - 48.2783187 - ], - [ - 11.9116927, - 48.2783187 - ], - [ - 11.9116927, - 48.2817495 - ], - [ - 11.9076667, - 48.2817495 - ], - [ - 11.9076667, - 48.2783187 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ThirdChild", - "uid": "9447503", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-29T22:00:12Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "yes", - "no" - ], - "highway": [ - "residential", - "track" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000138124007999856, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 4, - "locale": "de", - "imagery": "Mapbox" - }, - "id": 121679771 - } - }, - { - "id": 121677447, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4694808, - 51.3946486 - ], - [ - 3.4789976, - 51.3946486 - ], - [ - 3.4789976, - 51.3955096 - ], - [ - 3.4694808, - 51.3955096 - ], - [ - 3.4694808, - 51.3946486 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 42, - "name": "Invalid tag modification" - } - ], - "tags": [], - "features": [ - { - "url": "node-3528575436", - "osm_id": 3528575436, - "reasons": [ - 42 - ], - "version": 4, - "primary_tags": { - "leisure": "picnic_table" - } - } - ], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-29T20:29:39Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/pwh0uR7.jpg", - "https://i.imgur.com/T7xbsck.jpg", - "https://i.imgur.com/2dtSgkl.jpg" - ], - "seats": [ - "3" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table", - "playground" - ], - "surface": [ - "sand" - ], - "tourism": [ - "picnic_site" - ], - "backrest": [ - "yes" - ], - "material": [ - "wood" - ], - "survey:date": [ - "2022-05-29" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.00000819396480000432, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 5, - "locale": "nl", - "imagery": "osm", - "add-image": 3 - }, - "id": 121677447 - } - }, - { - "id": 121677201, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4688743, - 51.3941811 - ], - [ - 3.4688743, - 51.3941811 - ], - [ - 3.4688743, - 51.3941811 - ], - [ - 3.4688743, - 51.3941811 - ], - [ - 3.4688743, - 51.3941811 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-29T20:21:24Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/WY34Ayr.jpg" - ], - "survey:date": [ - "2022-05-29" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "answer": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 121677201 - } - }, - { - "id": 121667744, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2529937, - -39.7949935 - ], - [ - -73.2529655, - -39.7949935 - ], - [ - -73.2529655, - -39.7946596 - ], - [ - -73.2529937, - -39.7946596 - ], - [ - -73.2529937, - -39.7949935 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-29T16:22:18Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 2, - "modify": 4, - "delete": 0, - "area": 9.41598000073184e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 2, - "create": 2, - "locale": "es", - "imagery": "Mapbox", - "add-image": 3, - "change_over_5000m": 2, - "change_within_25m": 5 - }, - "id": 121667744 - } - }, - { - "id": 121660626, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7081439, - 51.0273397 - ], - [ - 3.7218937, - 51.0273397 - ], - [ - 3.7218937, - 51.0338093 - ], - [ - 3.7081439, - 51.0338093 - ], - [ - 3.7081439, - 51.0273397 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "velosophe", - "uid": "477861", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-29T14:11:01Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bar", - "cafe" - ] - }, - "create": 1, - "modify": 5, - "delete": 1, - "area": 0.0000889557060800349, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 6, - "create": 1, - "locale": "en", - "imagery": "AGIV", - "deletion": 1, - "deletion:node/5807358349": "shop_closed" - }, - "id": 121660626 - } - }, - { - "id": 121659160, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5587436, - 52.996223 - ], - [ - 6.5587436, - 52.996223 - ], - [ - 6.5587436, - 52.996223 - ], - [ - 6.5587436, - 52.996223 - ], - [ - 6.5587436, - 52.996223 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-29T13:48:02Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 121659160 - } - }, - { - "id": 121658639, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.705307, - 51.0273818 - ], - [ - 3.7189476, - 51.0273818 - ], - [ - 3.7189476, - 51.0381502 - ], - [ - 3.705307, - 51.0381502 - ], - [ - 3.705307, - 51.0273818 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "velosophe", - "uid": "477861", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-29T13:39:51Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes", - "private" - ], - "amenity": [ - "bicycle_parking" - ], - "covered": [ - "no" - ], - "cargo_bike": [ - "yes" - ], - "bicycle_parking": [ - "stands" - ] - }, - "create": 1, - "modify": 9, - "delete": 0, - "area": 0.00014688743703995, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 13, - "create": 1, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 121658639 - } - }, - { - "id": 121658394, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.7056033, - 50.1645421 - ], - [ - 5.7060516, - 50.1645421 - ], - [ - 5.7060516, - 50.1647188 - ], - [ - 5.7056033, - 50.1647188 - ], - [ - 5.7056033, - 50.1645421 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-29T13:35:23Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "cafe" - ], - "building": [ - "yes" - ], - "wheelchair": [ - "no" - ], - "payment:cash": [ - "yes" - ], - "payment:cards": [ - "yes" - ], - "service:electricity": [ - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 7.92146100020252e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 3 - }, - "id": 121658394 - } - }, - { - "id": 121658110, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.142755, - 50.6919925 - ], - [ - 3.142755, - 50.6919925 - ], - [ - 3.142755, - 50.6919925 - ], - [ - 3.142755, - 50.6919925 - ], - [ - 3.142755, - 50.6919925 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "eiryelio", - "uid": "831652", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-29T13:29:42Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "surveillance" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 2, - "create": 1, - "locale": "fr", - "imagery": "osm" - }, - "id": 121658110 - } - }, - { - "id": 121657979, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7068652, - 51.0294657 - ], - [ - 3.7072192, - 51.0294657 - ], - [ - 3.7072192, - 51.0296782 - ], - [ - 3.7068652, - 51.0296782 - ], - [ - 3.7068652, - 51.0294657 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "velosophe", - "uid": "477861", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-29T13:27:29Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 4, - "modify": 8, - "delete": 0, - "area": 7.52249999986697e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "move": 1, - "theme": "benches", - "answer": 15, - "create": 4, - "locale": "nl", - "imagery": "osm", - "move:node/9779253472": "improve_accuracy" - }, - "id": 121657979 - } - }, - { - "id": 121656427, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4353967, - 50.7394197 - ], - [ - 4.4353967, - 50.7394197 - ], - [ - 4.4353967, - 50.7394197 - ], - [ - 4.4353967, - 50.7394197 - ], - [ - 4.4353967, - 50.7394197 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-29T12:58:59Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/2yO6RCF.jpg" - ], - "leisure": [ - "picnic_table" - ], - "material": [ - "wood" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 121656427 - } - }, - { - "id": 121656414, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.235992, - 50.7351196 - ], - [ - 4.235992, - 50.7351196 - ], - [ - 4.235992, - 50.7351196 - ], - [ - 4.235992, - 50.7351196 - ], - [ - 4.235992, - 50.7351196 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-29T12:58:43Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Press Shop" - ], - "shop": [ - "newsagent" - ], - "payment:cash": [ - "yes" - ], - "payment:cards": [ - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 121656414 - } - }, - { - "id": 121653230, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5006126, - 50.7020877 - ], - [ - 4.5008406, - 50.7020877 - ], - [ - 4.5008406, - 50.7022882 - ], - [ - 4.5006126, - 50.7022882 - ], - [ - 4.5006126, - 50.7020877 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-29T11:53:17Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "yes", - "deli" - ] - }, - "create": 2, - "modify": 4, - "delete": 0, - "area": 4.57139999995848e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/shops.html", - "theme": "shops", - "answer": 6, - "create": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 2, - "change_within_25m": 8 - }, - "id": 121653230 - } - }, - { - "id": 121651143, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9333741, - 51.3263126 - ], - [ - 4.9333741, - 51.3263126 - ], - [ - 4.9333741, - 51.3263126 - ], - [ - 4.9333741, - 51.3263126 - ], - [ - 4.9333741, - 51.3263126 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-29T11:08:08Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/m2PHxzO.jpg" - ], - "amenity": [ - "bicycle_parking" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 121651143 - } - }, - { - "id": 121650362, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9072394, - 51.3200747 - ], - [ - 4.9332246, - 51.3200747 - ], - [ - 4.9332246, - 51.3263246 - ], - [ - 4.9072394, - 51.3263246 - ], - [ - 4.9072394, - 51.3200747 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-29T10:51:22Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/I8kXkFv.jpg" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.000162404901480007, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 7 - }, - "id": 121650362 - } - }, - { - "id": 121649798, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3564265, - 52.5209182 - ], - [ - 13.3564265, - 52.5209182 - ], - [ - 13.3564265, - 52.5209182 - ], - [ - 13.3564265, - 52.5209182 - ], - [ - 13.3564265, - 52.5209182 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-29T10:37:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "HDM_HOT", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 121649798 - } - }, - { - "id": 121649762, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3936039, - 51.344577 - ], - [ - 4.3936039, - 51.344577 - ], - [ - 4.3936039, - 51.344577 - ], - [ - 4.3936039, - 51.344577 - ], - [ - 4.3936039, - 51.344577 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "QuercE", - "uid": "551808", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-29T10:36:25Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "import": 1, - "locale": "nl", - "imagery": "osm", - "import:node/9778990747": "source: https://osm.org/note/3143441" - }, - "id": 121649762 - } - }, - { - "id": 121648974, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.0294986, - 50.0539115 - ], - [ - 6.0294986, - 50.0539115 - ], - [ - 6.0294986, - 50.0539115 - ], - [ - 6.0294986, - 50.0539115 - ], - [ - 6.0294986, - 50.0539115 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-29T10:15:50Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "restaurant" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_50m": 3 - }, - "id": 121648974 - } - }, - { - "id": 121648266, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6133834, - 50.6350135 - ], - [ - 4.6133834, - 50.6350135 - ], - [ - 4.6133834, - 50.6350135 - ], - [ - 4.6133834, - 50.6350135 - ], - [ - 4.6133834, - 50.6350135 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-29T09:56:45Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "public_bookcase" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/bookcases.html", - "theme": "bookcases", - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 121648266 - } - }, - { - "id": 121647882, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.3444539, - 43.5660541 - ], - [ - 1.3444539, - 43.5660541 - ], - [ - 1.3444539, - 43.5660541 - ], - [ - 1.3444539, - 43.5660541 - ], - [ - 1.3444539, - 43.5660541 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-29T09:46:52Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/V7pf18I.jpg" - ], - "leisure": [ - "pitch" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_within_50m": 1 - }, - "id": 121647882 - } - }, - { - "id": 121647662, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.3456582, - 43.5657164 - ], - [ - 1.3457548, - 43.5657164 - ], - [ - 1.3457548, - 43.5657164 - ], - [ - 1.3456582, - 43.5657164 - ], - [ - 1.3456582, - 43.5657164 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-29T09:41:41Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 6, - "create": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 2, - "change_within_25m": 6 - }, - "id": 121647662 - } - }, - { - "id": 121646954, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.0310504, - 50.0536863 - ], - [ - 6.0310504, - 50.0536863 - ], - [ - 6.0310504, - 50.0536863 - ], - [ - 6.0310504, - 50.0536863 - ], - [ - 6.0310504, - 50.0536863 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-29T09:24:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 5 - }, - "id": 121646954 - } - }, - { - "id": 121646892, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.029868, - 50.053556 - ], - [ - 6.029868, - 50.053556 - ], - [ - 6.029868, - 50.053556 - ], - [ - 6.029868, - 50.053556 - ], - [ - 6.029868, - 50.053556 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-29T09:22:35Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "yes" - ], - "access": [ - "yes" - ], - "amenity": [ - "charging_station" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 2 - }, - "id": 121646892 - } - }, - { - "id": 121646658, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.3428989, - 43.5679562 - ], - [ - 1.3428989, - 43.5679562 - ], - [ - 1.3428989, - 43.5679562 - ], - [ - 1.3428989, - 43.5679562 - ], - [ - 1.3428989, - 43.5679562 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-29T09:16:09Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 121646658 - } - }, - { - "id": 121646086, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.0765944, - 51.9028681 - ], - [ - -2.0765944, - 51.9028681 - ], - [ - -2.0765944, - 51.9028681 - ], - [ - -2.0765944, - 51.9028681 - ], - [ - -2.0765944, - 51.9028681 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "InsertUser", - "uid": "89098", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-29T09:04:22Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "surveillance" - ], - "surveillance": [ - "outdoor" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance", - "theme": "surveillance", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_5000m": 1 - }, - "id": 121646086 - } - }, - { - "id": 121645920, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.353078, - 52.5157983 - ], - [ - 13.3591431, - 52.5157983 - ], - [ - 13.3591431, - 52.5168236 - ], - [ - 13.353078, - 52.5168236 - ], - [ - 13.353078, - 52.5157983 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-29T09:00:54Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench", - "waste_basket" - ], - "leisure": [ - "pitch" - ], - "check_date": [ - "2022-05-29" - ], - "fire_hydrant:position": [ - "green" - ] - }, - "create": 4, - "modify": 1, - "delete": 0, - "area": 0.00000621854703001289, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 8, - "create": 4, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 4, - "change_within_25m": 8 - }, - "id": 121645920 - } - }, - { - "id": 121645550, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3518577, - 52.5155056 - ], - [ - 13.3518577, - 52.5155056 - ], - [ - 13.3518577, - 52.5155056 - ], - [ - 13.3518577, - 52.5155056 - ], - [ - 13.3518577, - 52.5155056 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9778880545", - "osm_id": 9778880545, - "reasons": [ - 43 - ], - "version": 1, - "primary_tags": { - "tourism": "map" - } - } - ], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #maps", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-29T08:54:04Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "map" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maps.html", - "theme": "maps", - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 121645550 - } - }, - { - "id": 121645402, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-29T08:49:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 2 - }, - "id": 121645402 - } - }, - { - "id": 121645285, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3519909, - 52.5151991 - ], - [ - 13.3574139, - 52.5151991 - ], - [ - 13.3574139, - 52.5165319 - ], - [ - 13.3519909, - 52.5165319 - ], - [ - 13.3519909, - 52.5151991 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-29T08:46:43Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench", - "waste_basket" - ] - }, - "create": 9, - "modify": 1, - "delete": 0, - "area": 0.00000722777439999889, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 18, - "create": 9, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 9, - "change_within_25m": 18 - }, - "id": 121645285 - } - }, - { - "id": 121645212, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3519245, - 52.5151293 - ], - [ - 13.3521696, - 52.5151293 - ], - [ - 13.3521696, - 52.5153536 - ], - [ - 13.3519245, - 52.5153536 - ], - [ - 13.3519245, - 52.5151293 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-29T08:45:18Z", - "reviewed_features": [], - "tag_changes": { - "colour": [ - "green" - ], - "amenity": [ - "bench" - ], - "material": [ - "wood" - ], - "direction": [ - "61" - ], - "survey:date": [ - "2022-05-29" - ] - }, - "create": 2, - "modify": 4, - "delete": 0, - "area": 5.49759299996012e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "move": 2, - "theme": "benches", - "answer": 8, - "create": 2, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 6, - "change_within_50m": 4, - "move:node/4994905293": "improve_accuracy", - "move:node/9778872504": "improve_accuracy" - }, - "id": 121645212 - } - }, - { - "id": 121645156, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.7143255, - 46.8025602 - ], - [ - 6.7143255, - 46.8025602 - ], - [ - 6.7143255, - 46.8025602 - ], - [ - 6.7143255, - 46.8025602 - ], - [ - 6.7143255, - 46.8025602 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "habi", - "uid": "15671", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-29T08:43:47Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "sanitary_dump_station" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/campersite.html", - "theme": "campersite", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_500m": 3 - }, - "id": 121645156 - } - }, - { - "id": 121644610, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 120.9907472, - 14.6414205 - ], - [ - 120.9907472, - 14.6414205 - ], - [ - 120.9907472, - 14.6414205 - ], - [ - 120.9907472, - 14.6414205 - ], - [ - 120.9907472, - 14.6414205 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mikko_tamura", - "uid": "2258022", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #lgbtmap", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-29T08:29:05Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bar" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "lgbtmap", - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 121644610 - } - }, - { - "id": 121642445, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.1579269, - 47.0470742 - ], - [ - 7.1598993, - 47.0470742 - ], - [ - 7.1598993, - 47.0483829 - ], - [ - 7.1579269, - 47.0483829 - ], - [ - 7.1579269, - 47.0470742 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "habi", - "uid": "15671", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-29T07:27:11Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "caravan_site" - ], - "permanent_camping": [ - "only" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.00000258127988000606, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/campersite.html", - "theme": "campersite", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 121642445 - } - }, - { - "id": 121636023, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.0255584, - 51.44416 - ], - [ - -0.0210667, - 51.44416 - ], - [ - -0.0210667, - 51.4445081 - ], - [ - -0.0255584, - 51.4445081 - ], - [ - -0.0255584, - 51.44416 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Firefishy", - "uid": "3560", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-29T00:03:46Z", - "reviewed_features": [], - "tag_changes": { - "waste": [ - "trash" - ], - "amenity": [ - "waste_basket", - "recycling" - ], - "not:vending": [ - "dog_excrement_bag" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0.00000156356077001629, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 121636023 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-30.json b/Docs/Tools/stats/stats.2022-5-30.json deleted file mode 100644 index 5b303ed452..0000000000 --- a/Docs/Tools/stats/stats.2022-5-30.json +++ /dev/null @@ -1,1986 +0,0 @@ -{ - "features": [ - { - "id": 121740761, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.10833, - 38.8374023 - ], - [ - 0.10833, - 38.8374023 - ], - [ - 0.10833, - 38.8374023 - ], - [ - 0.10833, - 38.8374023 - ], - [ - 0.10833, - 38.8374023 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-30T22:51:41Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "pet", - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "answer": 1, - "locale": "ca", - "imagery": "osm", - "change_within_500m": 1 - }, - "id": 121740761 - } - }, - { - "id": 121740734, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-30T22:49:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 121740734 - } - }, - { - "id": 121740733, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.269453, - 53.2213882 - ], - [ - 6.269453, - 53.2213882 - ], - [ - 6.269453, - 53.2213882 - ], - [ - 6.269453, - 53.2213882 - ], - [ - 6.269453, - 53.2213882 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-30T22:49:38Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "waste", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 121740733 - } - }, - { - "id": 121740394, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2626188, - 53.2341393 - ], - [ - 6.2626188, - 53.2341393 - ], - [ - 6.2626188, - 53.2341393 - ], - [ - 6.2626188, - 53.2341393 - ], - [ - 6.2626188, - 53.2341393 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-30T22:27:34Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "leaf_cycle": [ - "deciduous" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS" - }, - "id": 121740394 - } - }, - { - "id": 121740372, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.277287, - 53.2137197 - ], - [ - 6.277287, - 53.2137197 - ], - [ - 6.277287, - 53.2137197 - ], - [ - 6.277287, - 53.2137197 - ], - [ - 6.277287, - 53.2137197 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-30T22:25:53Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "bicycle_parking" - ], - "covered": [ - "no" - ], - "cargo_bike": [ - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 5, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 121740372 - } - }, - { - "id": 121740344, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2610765, - 53.2345798 - ], - [ - 6.2610765, - 53.2345798 - ], - [ - 6.2610765, - 53.2345798 - ], - [ - 6.2610765, - 53.2345798 - ], - [ - 6.2610765, - 53.2345798 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-30T22:24:38Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 121740344 - } - }, - { - "id": 121739992, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.26237, - 53.2176402 - ], - [ - 6.2761572, - 53.2176402 - ], - [ - 6.2761572, - 53.233224 - ], - [ - 6.26237, - 53.233224 - ], - [ - 6.26237, - 53.2176402 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-30T22:01:38Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 9, - "modify": 6, - "delete": 0, - "area": 0.000214856967360029, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 28, - "create": 9, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS" - }, - "id": 121739992 - } - }, - { - "id": 121738583, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2511205, - -39.7961613 - ], - [ - -73.2511205, - -39.7961613 - ], - [ - -73.2511205, - -39.7961613 - ], - [ - -73.2511205, - -39.7961613 - ], - [ - -73.2511205, - -39.7961613 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-30T20:54:47Z", - "reviewed_features": [], - "tag_changes": { - "image:0": [ - "https://i.imgur.com/EK9A37v.jpg" - ], - "image:1": [ - "https://i.imgur.com/SQi8nmm.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "Mapbox", - "add-image": 2 - }, - "id": 121738583 - } - }, - { - "id": 121737729, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6688421, - 51.0347628 - ], - [ - 3.6688421, - 51.0347628 - ], - [ - 3.6688421, - 51.0347628 - ], - [ - 3.6688421, - 51.0347628 - ], - [ - 3.6688421, - 51.0347628 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "velosophe", - "uid": "477861", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-30T20:21:41Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/5G8kXw8.jpg" - ], - "image:0": [ - "https://i.imgur.com/JV9sRkM.jpg" - ], - "tourism": [ - "information" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/nature.html", - "theme": "nature", - "answer": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 121737729 - } - }, - { - "id": 121736044, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.269453, - 53.2213882 - ], - [ - 6.269453, - 53.2213882 - ], - [ - 6.269453, - 53.2213882 - ], - [ - 6.269453, - 53.2213882 - ], - [ - 6.269453, - 53.2213882 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-30T19:28:16Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 121736044 - } - }, - { - "id": 121732398, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2573881, - 53.2286856 - ], - [ - 6.2573881, - 53.2286856 - ], - [ - 6.2573881, - 53.2286856 - ], - [ - 6.2573881, - 53.2286856 - ], - [ - 6.2573881, - 53.2286856 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-30T17:40:49Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "picnic_table" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 5, - "create": 1, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "change_over_5000m": 1, - "change_within_25m": 5 - }, - "id": 121732398 - } - }, - { - "id": 121732379, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-30T17:40:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 121732379 - } - }, - { - "id": 121732087, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.264015, - 53.2121552 - ], - [ - 6.264015, - 53.2121552 - ], - [ - 6.264015, - 53.2121552 - ], - [ - 6.264015, - 53.2121552 - ], - [ - 6.264015, - 53.2121552 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-30T17:32:32Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "public_bookcase" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 121732087 - } - }, - { - "id": 121728923, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5150016, - 51.2285778 - ], - [ - 4.5976811, - 51.2285778 - ], - [ - 4.5976811, - 51.2683531 - ], - [ - 4.5150016, - 51.2683531 - ], - [ - 4.5150016, - 51.2285778 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "pi11", - "uid": "12066190", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-30T16:22:20Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "school" - ], - "highway": [ - "tertiary", - "cycleway", - "residential", - "track", - "secondary", - "living_street", - "path", - "footway" - ], - "tourism": [ - "museum" - ], - "name:etymology:wikidata": [ - "Q27914585", - "Q3914", - "Q2747279", - "Q835090", - "Q2288294", - "Q112177134", - "Q44265", - "Q732775", - "Q132543", - "Q754395", - "Q160835", - "Q243778", - "Q112177387", - "Q5715793", - "Q112176646", - "Q112175663", - "Q25243", - "Q2234703", - "Q2686049", - "Q146149", - "Q112177501", - "Q44494", - "Q693513", - "Q159857", - "Q527808", - "Q25385", - "Q159834", - "Q12004", - "Q21744", - "Q9482", - "Q23390", - "Q131734", - "Q1678302", - "Q1714828", - "Q5079636", - "Q291708" - ] - }, - "create": 0, - "modify": 126, - "delete": 0, - "area": 0.0032886019163502, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 185, - "locale": "nl", - "imagery": "osm" - }, - "id": 121728923 - } - }, - { - "id": 121722150, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4114647, - 51.1516799 - ], - [ - 4.5724382, - 51.1516799 - ], - [ - 4.5724382, - 51.2632325 - ], - [ - 4.4114647, - 51.2632325 - ], - [ - 4.4114647, - 51.1516799 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "pi11", - "uid": "12066190", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-30T14:36:31Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "university" - ], - "highway": [ - "residential" - ], - "name:etymology:wikidata": [ - "Q27106649", - "Q724055", - "Q44265", - "Q469580", - "Q2703293", - "Q2715321", - "Q336591", - "Q68631", - "Q219477", - "Q277589", - "Q359165", - "Q17035103", - "Q380360" - ] - }, - "create": 0, - "modify": 39, - "delete": 0, - "area": 0.0179570124561005, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 55, - "locale": "en", - "imagery": "osm" - }, - "id": 121722150 - } - }, - { - "id": 121721508, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5141759, - -34.5388194 - ], - [ - -58.4670985, - -34.5388194 - ], - [ - -58.4670985, - -34.4713879 - ], - [ - -58.5141759, - -34.4713879 - ], - [ - -58.5141759, - -34.5388194 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AgusQui", - "uid": "331218", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-30T14:27:19Z", - "reviewed_features": [], - "tag_changes": { - "railway": [ - "level_crossing", - "crossing", - "switch" - ], - "crossing:bell": [ - "yes" - ], - "crossing:light": [ - "yes" - ], - "crossing:barrier": [ - "half", - "no" - ], - "crossing:chicane": [ - "yes" - ], - "crossing:saltire": [ - "yes" - ], - "crossing:activation": [ - "automatic" - ], - "railway:turnout_side": [ - "left" - ], - "railway:switch:electric": [ - "no" - ], - "railway:switch:local_operated": [ - "no" - ] - }, - "create": 0, - "modify": 26, - "delete": 0, - "area": 0.00317449969809984, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "answer": 43, - "locale": "en", - "imagery": "osm", - "change_within_25m": 28, - "change_within_50m": 2, - "change_within_100m": 13 - }, - "id": 121721508 - } - }, - { - "id": 121719232, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.233405, - 60.287199 - ], - [ - 5.233405, - 60.287199 - ], - [ - 5.233405, - 60.287199 - ], - [ - 5.233405, - 60.287199 - ], - [ - 5.233405, - 60.287199 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "‎Rem", - "uid": "11021936", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-30T13:51:04Z", - "reviewed_features": [], - "tag_changes": { - "seats": [ - "2" - ], - "amenity": [ - "bench" - ], - "backrest": [ - "no" - ], - "material": [ - "concrete" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 121719232 - } - }, - { - "id": 121714365, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.5640706, - 46.0452467 - ], - [ - 14.5640706, - 46.0452467 - ], - [ - 14.5640706, - 46.0452467 - ], - [ - 14.5640706, - 46.0452467 - ], - [ - 14.5640706, - 46.0452467 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "stepc", - "uid": "13911774", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-30T12:32:55Z", - "reviewed_features": [], - "tag_changes": { - "bottle": [ - "yes" - ], - "amenity": [ - "drinking_water" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 121714365 - } - }, - { - "id": 121714130, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.5403048, - 46.049454 - ], - [ - 14.5478069, - 46.049454 - ], - [ - 14.5478069, - 46.0548716 - ], - [ - 14.5403048, - 46.0548716 - ], - [ - 14.5403048, - 46.049454 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "stepc", - "uid": "13911774", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-30T12:29:59Z", - "reviewed_features": [], - "tag_changes": { - "barrier": [ - "bollard" - ], - "bicycle": [ - "yes" - ], - "highway": [ - "crossing" - ], - "crossing": [ - "uncontrolled", - "marked" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000406433769600091, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 4, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 121714130 - } - }, - { - "id": 121711834, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.5436859, - 46.0556194 - ], - [ - 14.544749, - 46.0556194 - ], - [ - 14.544749, - 46.0563105 - ], - [ - 14.5436859, - 46.0563105 - ], - [ - 14.5436859, - 46.0556194 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "stepc", - "uid": "13911774", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-30T11:51:31Z", - "reviewed_features": [], - "tag_changes": { - "bus": [ - "no" - ], - "hgv": [ - "no" - ], - "amenity": [ - "charging_station" - ], - "bicycle": [ - "no" - ], - "scooter": [ - "no" - ], - "motorcar": [ - "yes" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 7.34708410004539e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "move": 1, - "theme": "charging_stations", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "move:node/5094130791": "improve_accuracy" - }, - "id": 121711834 - } - }, - { - "id": 121711267, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.9094077, - 48.281617 - ], - [ - 11.9094077, - 48.281617 - ], - [ - 11.9094077, - 48.281617 - ], - [ - 11.9094077, - 48.281617 - ], - [ - 11.9094077, - 48.281617 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ThirdChild", - "uid": "9447503", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-30T11:41:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "answer": 1, - "create": 1, - "locale": "de", - "imagery": "HDM_HOT", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 121711267 - } - }, - { - "id": 121708268, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.8922595, - 48.2838994 - ], - [ - 11.9180855, - 48.2838994 - ], - [ - 11.9180855, - 48.3090325 - ], - [ - 11.8922595, - 48.3090325 - ], - [ - 11.8922595, - 48.2838994 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ThirdChild", - "uid": "9447503", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-30T10:46:19Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential", - "unclassified", - "living_street", - "footway", - "service" - ], - "name:etymology:wikidata": [ - "Q57065", - "Q9021", - "Q22670", - "Q5879", - "Q75889", - "Q40904", - "Q937", - "Q43523", - "Q37193" - ] - }, - "create": 0, - "modify": 29, - "delete": 0, - "area": 0.000649087440599955, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 42, - "locale": "de", - "imagery": "osm" - }, - "id": 121708268 - } - }, - { - "id": 121707614, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.9088796, - 48.2840051 - ], - [ - 11.909509, - 48.2840051 - ], - [ - 11.909509, - 48.284522 - ], - [ - 11.9088796, - 48.284522 - ], - [ - 11.9088796, - 48.2840051 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ThirdChild", - "uid": "9447503", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-30T10:34:06Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/T6NCl9U.jpg" - ], - "access": [ - "public" - ], - "image:0": [ - "https://i.imgur.com/ecLMc15.jpg" - ], - "leisure": [ - "pitch" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 3.25336860000242e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "answer": 1, - "locale": "de", - "imagery": "osm", - "add-image": 2 - }, - "id": 121707614 - } - }, - { - "id": 121707585, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.909126, - 48.2843191 - ], - [ - 11.909126, - 48.2843191 - ], - [ - 11.909126, - 48.2843191 - ], - [ - 11.909126, - 48.2843191 - ], - [ - 11.909126, - 48.2843191 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ThirdChild", - "uid": "9447503", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-30T10:33:39Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "waste", - "answer": 2, - "create": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 121707585 - } - }, - { - "id": 121699079, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.052361, - 50.9264326 - ], - [ - 4.052361, - 50.9264326 - ], - [ - 4.052361, - 50.9264326 - ], - [ - 4.052361, - 50.9264326 - ], - [ - 4.052361, - 50.9264326 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "philippec", - "uid": "76884", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-30T07:52:16Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/LUbftFg.jpg" - ], - "image:0": [ - "https://i.imgur.com/NGXRvBI.jpg" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 121699079 - } - }, - { - "id": 121691387, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -89.3662825, - 43.0905808 - ], - [ - -89.3658527, - 43.0905808 - ], - [ - -89.3658527, - 43.0906827 - ], - [ - -89.3662825, - 43.0906827 - ], - [ - -89.3662825, - 43.0905808 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Seaviator", - "uid": "9649188", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-30T05:32:51Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 2, - "modify": 3, - "delete": 0, - "area": 4.37966200009972e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees", - "theme": "trees", - "answer": 4, - "create": 2, - "locale": "en", - "imagery": "Mapbox" - }, - "id": 121691387 - } - }, - { - "id": 121685539, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2510992, - -39.7961176 - ], - [ - -73.2510992, - -39.7961176 - ], - [ - -73.2510992, - -39.7961176 - ], - [ - -73.2510992, - -39.7961176 - ], - [ - -73.2510992, - -39.7961176 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-30T02:34:10Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/Nv3vSup.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osm", - "add-image": 1 - }, - "id": 121685539 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-5-31.json b/Docs/Tools/stats/stats.2022-5-31.json deleted file mode 100644 index 16ae9634a2..0000000000 --- a/Docs/Tools/stats/stats.2022-5-31.json +++ /dev/null @@ -1,2076 +0,0 @@ -{ - "features": [ - { - "id": 121786773, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0745608, - 38.8071178 - ], - [ - 0.0754854, - 38.8071178 - ], - [ - 0.0754854, - 38.8084354 - ], - [ - 0.0745608, - 38.8084354 - ], - [ - 0.0745608, - 38.8071178 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-31T22:12:57Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "service" - ], - "name:etymology:wikidata": [ - "Q432741" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000121825296000013, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 3, - "locale": "ca", - "imagery": "osm", - "change_over_5000m": 3 - }, - "id": 121786773 - } - }, - { - "id": 121786221, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.5572506, - -33.0393257 - ], - [ - -71.5549348, - -33.0393257 - ], - [ - -71.5549348, - -33.0364578 - ], - [ - -71.5572506, - -33.0364578 - ], - [ - -71.5572506, - -33.0393257 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-31T21:48:35Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/0fOW279.jpg", - "https://i.imgur.com/bLDvlCV.jpg", - "https://i.imgur.com/fOKCmHx.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00000664148282001087, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osm", - "add-image": 4 - }, - "id": 121786221 - } - }, - { - "id": 121781233, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2413194, - -39.8343216 - ], - [ - -73.2164607, - -39.8343216 - ], - [ - -73.2164607, - -39.8331935 - ], - [ - -73.2413194, - -39.8331935 - ], - [ - -73.2413194, - -39.8343216 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-31T19:05:00Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/aKkCxNR.jpg", - "https://i.imgur.com/Vy1BXUT.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000280430994700579, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osm", - "add-image": 2 - }, - "id": 121781233 - } - }, - { - "id": 121776368, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7025535, - 50.5612412 - ], - [ - 4.7025535, - 50.5612412 - ], - [ - 4.7025535, - 50.5612412 - ], - [ - 4.7025535, - 50.5612412 - ], - [ - 4.7025535, - 50.5612412 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-31T16:30:37Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ] - }, - "create": 1, - "modify": 5, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 6, - "create": 1, - "locale": "en", - "imagery": "SPW_ORTHO_LAST" - }, - "id": 121776368 - } - }, - { - "id": 121772762, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2874701, - 53.2165877 - ], - [ - 6.2882609, - 53.2165877 - ], - [ - 6.2882609, - 53.216653 - ], - [ - 6.2874701, - 53.216653 - ], - [ - 6.2874701, - 53.2165877 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9785819818", - "osm_id": 9785819818, - "reasons": [ - 43 - ], - "version": 1, - "primary_tags": { - "tourism": "map" - } - }, - { - "url": "node-9785819817", - "osm_id": 9785819817, - "reasons": [ - 43 - ], - "version": 1, - "primary_tags": { - "tourism": "map" - } - } - ], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #maps", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-31T15:00:35Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "map" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 5.16392400022227e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maps.html", - "theme": "maps", - "create": 2, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "change_over_5000m": 2 - }, - "id": 121772762 - } - }, - { - "id": 121771802, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6589498, - 50.5364451 - ], - [ - 4.6918541, - 50.5364451 - ], - [ - 4.6918541, - 50.5638179 - ], - [ - 4.6589498, - 50.5638179 - ], - [ - 4.6589498, - 50.5364451 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-31T14:38:09Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ], - "covered": [ - "yes", - "no" - ], - "capacity": [ - "6", - "10" - ], - "bicycle_parking": [ - "stands", - "wall_loops" - ] - }, - "create": 3, - "modify": 6, - "delete": 0, - "area": 0.000900682823039813, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 17, - "create": 3, - "locale": "en", - "imagery": "SPW_ORTHO_LAST" - }, - "id": 121771802 - } - }, - { - "id": 121770718, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5653206, - 53.2109057 - ], - [ - 6.5653206, - 53.2109057 - ], - [ - 6.5653206, - 53.2109057 - ], - [ - 6.5653206, - 53.2109057 - ], - [ - 6.5653206, - 53.2109057 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-31T14:11:49Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "toilets" - ], - "toilets:position": [ - "seated;urinal" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "change_within_500m": 2 - }, - "id": 121770718 - } - }, - { - "id": 121770242, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Binnette", - "uid": "918586", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-31T14:00:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_500m": 1 - }, - "id": 121770242 - } - }, - { - "id": 121768954, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6643242, - 50.5599471 - ], - [ - 4.6977416, - 50.5599471 - ], - [ - 4.6977416, - 50.5619296 - ], - [ - 4.6643242, - 50.5619296 - ], - [ - 4.6643242, - 50.5599471 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-31T13:29:40Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/aRvw3mU.jpg", - "https://i.imgur.com/3WyViYd.jpg", - "https://i.imgur.com/qJmqduT.jpg" - ], - "amenity": [ - "bicycle_parking" - ] - }, - "create": 3, - "modify": 6, - "delete": 0, - "area": 0.0000662499954998948, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 14, - "create": 3, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 5, - "change_over_5000m": 3, - "change_within_500m": 16, - "change_within_5000m": 3 - }, - "id": 121768954 - } - }, - { - "id": 121768882, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-31T13:28:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_500m": 1 - }, - "id": 121768882 - } - }, - { - "id": 121768873, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-31T13:27:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_500m": 1 - }, - "id": 121768873 - } - }, - { - "id": 121768854, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-31T13:27:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_500m": 1 - }, - "id": 121768854 - } - }, - { - "id": 121768850, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-31T13:27:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_500m": 2 - }, - "id": 121768850 - } - }, - { - "id": 121768842, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-31T13:27:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_500m": 1 - }, - "id": 121768842 - } - }, - { - "id": 121768770, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.696704, - 50.562178 - ], - [ - 4.696704, - 50.562178 - ], - [ - 4.696704, - 50.562178 - ], - [ - 4.696704, - 50.562178 - ], - [ - 4.696704, - 50.562178 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-31T13:25:35Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 5, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 1, - "change_within_500m": 6 - }, - "id": 121768770 - } - }, - { - "id": 121768063, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.4142691, - -34.6086874 - ], - [ - -58.409965, - -34.6086874 - ], - [ - -58.409965, - -34.608503 - ], - [ - -58.4142691, - -34.608503 - ], - [ - -58.4142691, - -34.6086874 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AgusQui", - "uid": "331218", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-31T13:09:24Z", - "reviewed_features": [], - "tag_changes": { - "ref": [ - "0 4", - "O 12", - "A 12" - ], - "railway": [ - "signal" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 7.93676040008268e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "answer": 6, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 6 - }, - "id": 121768063 - } - }, - { - "id": 121767695, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.4471123, - -34.6206531 - ], - [ - -58.4471123, - -34.6206531 - ], - [ - -58.4471123, - -34.6206531 - ], - [ - -58.4471123, - -34.6206531 - ], - [ - -58.4471123, - -34.6206531 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AgusQui", - "uid": "331218", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-31T13:00:42Z", - "reviewed_features": [], - "tag_changes": { - "railway": [ - "switch" - ], - "railway:turnout_side": [ - "right" - ], - "railway:switch:electric": [ - "no" - ], - "railway:switch:local_operated": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "answer": 3, - "locale": "en", - "imagery": "osm", - "change_within_25m": 3 - }, - "id": 121767695 - } - }, - { - "id": 121765066, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6952391, - 50.5583978 - ], - [ - 4.6977416, - 50.5583978 - ], - [ - 4.6977416, - 50.5619296 - ], - [ - 4.6952391, - 50.5619296 - ], - [ - 4.6952391, - 50.5583978 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-31T12:00:08Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "bicycle_parking" - ], - "capacity": [ - "4" - ], - "cargo_bike": [ - "yes" - ], - "capacity:cargo_bike": [ - "4" - ] - }, - "create": 2, - "modify": 4, - "delete": 0, - "area": 0.00000883832949999173, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 16, - "create": 2, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 121765066 - } - }, - { - "id": 121764271, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2655383, - 53.2053579 - ], - [ - 6.2655383, - 53.2053579 - ], - [ - 6.2655383, - 53.2053579 - ], - [ - 6.2655383, - 53.2053579 - ], - [ - 6.2655383, - 53.2053579 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9785317531", - "osm_id": 9785317531, - "reasons": [ - 43 - ], - "version": 1, - "primary_tags": { - "tourism": "map" - } - } - ], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #maps", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-31T11:43:43Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "map" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maps.html", - "theme": "maps", - "create": 1, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "change_over_5000m": 1 - }, - "id": 121764271 - } - }, - { - "id": 121764147, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2635859, - 53.2048097 - ], - [ - 6.2635859, - 53.2048097 - ], - [ - 6.2635859, - 53.2048097 - ], - [ - 6.2635859, - 53.2048097 - ], - [ - 6.2635859, - 53.2048097 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-31T11:40:56Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "change_over_5000m": 1, - "change_within_500m": 2 - }, - "id": 121764147 - } - }, - { - "id": 121764113, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.263392, - 53.2048723 - ], - [ - 6.263577, - 53.2048723 - ], - [ - 6.263577, - 53.2048875 - ], - [ - 6.263392, - 53.2048875 - ], - [ - 6.263392, - 53.2048723 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-31T11:40:09Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 2.81200000000025e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 5, - "create": 2, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "change_over_5000m": 2, - "change_within_500m": 5 - }, - "id": 121764113 - } - }, - { - "id": 121760604, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2363372, - 50.7396603 - ], - [ - 4.2363372, - 50.7396603 - ], - [ - 4.2363372, - 50.7396603 - ], - [ - 4.2363372, - 50.7396603 - ], - [ - 4.2363372, - 50.7396603 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-31T10:20:00Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "public_bookcase" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases", - "theme": "bookcases", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 121760604 - } - }, - { - "id": 121757751, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6958255, - 50.5633418 - ], - [ - 4.6966804, - 50.5633418 - ], - [ - 4.6966804, - 50.5639924 - ], - [ - 4.6958255, - 50.5639924 - ], - [ - 4.6958255, - 50.5633418 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-31T09:27:36Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ] - }, - "create": 2, - "modify": 5, - "delete": 0, - "area": 5.56197939994208e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/", - "theme": "cyclofix", - "answer": 8, - "create": 2, - "locale": "en", - "add-image": 3 - }, - "id": 121757751 - } - }, - { - "id": 121757710, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-31T09:26:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 121757710 - } - }, - { - "id": 121757701, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-31T09:26:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 121757701 - } - }, - { - "id": 121756893, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6941689, - 50.5616893 - ], - [ - 4.6974234, - 50.5616893 - ], - [ - 4.6974234, - 50.5694227 - ], - [ - 4.6941689, - 50.5694227 - ], - [ - 4.6941689, - 50.5616893 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-31T09:09:54Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/J2ncENL.jpg", - "https://i.imgur.com/3XcLgVy.jpg", - "https://i.imgur.com/XKJSJsz.jpg" - ], - "amenity": [ - "bicycle_parking" - ], - "cargo_bike": [ - "yes" - ], - "capacity:cargo_bike": [ - "1" - ] - }, - "create": 2, - "modify": 5, - "delete": 0, - "area": 0.0000251683502999956, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 5, - "create": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 3 - }, - "id": 121756893 - } - }, - { - "id": 121756868, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.4892489, - 44.9027052 - ], - [ - -0.488266, - 44.9027052 - ], - [ - -0.488266, - 44.9034454 - ], - [ - -0.4892489, - 44.9034454 - ], - [ - -0.4892489, - 44.9027052 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-31T09:09:21Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "sports" - ], - "building": [ - "yes" - ], - "man_made": [ - "surveillance" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 7.27542580002704e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 4, - "create": 2, - "locale": "fr", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 7 - }, - "id": 121756868 - } - }, - { - "id": 121756160, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2282714, - 50.7313349 - ], - [ - 4.2396822, - 50.7313349 - ], - [ - 4.2396822, - 50.7427775 - ], - [ - 4.2282714, - 50.7427775 - ], - [ - 4.2282714, - 50.7313349 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-05-31T08:53:20Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "material": [ - "wood" - ], - "direction": [ - "109" - ] - }, - "create": 27, - "modify": 19, - "delete": 0, - "area": 0.000130569220080028, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 69, - "create": 27, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "change_over_5000m": 1, - "change_within_5000m": 3 - }, - "id": 121756160 - } - }, - { - "id": 121754924, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1979668, - 50.9121613 - ], - [ - 4.198232, - 50.9121613 - ], - [ - 4.198232, - 50.9132137 - ], - [ - 4.1979668, - 50.9132137 - ], - [ - 4.1979668, - 50.9121613 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-31T08:30:09Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "yes" - ], - "highway": [ - "residential" - ], - "surface": [ - "asphalt" - ], - "cycleway": [ - "no" - ], - "smoothness": [ - "excellent" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 2.79096480000037e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 4, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 121754924 - } - }, - { - "id": 121746554, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.544749, - 46.0556194 - ], - [ - 14.544749, - 46.0556194 - ], - [ - 14.544749, - 46.0556194 - ], - [ - 14.544749, - 46.0556194 - ], - [ - 14.544749, - 46.0556194 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "stepc", - "uid": "13911774", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-05-31T05:09:15Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "yes" - ], - "image": [ - "https://i.imgur.com/k5G9zzj.jpg" - ], - "phone": [ - "+386 1 471 46 66" - ], - "access": [ - "yes" - ], - "charge": [ - "0.25€/kwh (full registration), 0.30€/kwh (temporary registration), extra charge of 0.07€/min after 180min" - ], - "amenity": [ - "charging_station" - ], - "maxstay": [ - "unlimited" - ], - "network": [ - "OneCharge" - ], - "parking:fee": [ - "no" - ], - "payment:app": [ - "yes" - ], - "payment:cash": [ - "no" - ], - "socket:type2": [ - "1" - ], - "opening_hours": [ - "24/7" - ], - "payment:cards": [ - "no" - ], - "socket:type2:output": [ - "22 kW" - ], - "payment:membership_card": [ - "yes" - ] - }, - "create": 0, - "modify": 12, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 13, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 121746554 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-01.json b/Docs/Tools/stats/stats.2022-6-01.json deleted file mode 100644 index 23d98db7c5..0000000000 --- a/Docs/Tools/stats/stats.2022-6-01.json +++ /dev/null @@ -1,1162 +0,0 @@ -{ - "features": [ - { - "id": 121830828, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.4773602, - -34.6312868 - ], - [ - -58.4762827, - -34.6312868 - ], - [ - -58.4762827, - -34.6309174 - ], - [ - -58.4773602, - -34.6309174 - ], - [ - -58.4773602, - -34.6312868 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AgusQui", - "uid": "331218", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-01T23:59:45Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "train", - "tracks" - ], - "railway": [ - "level_crossing", - "crossing" - ], - "crossing:activation": [ - "automatic" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 3.98028499996844e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "answer": 4, - "locale": "en", - "imagery": "osm", - "change_within_25m": 2, - "change_within_500m": 2 - }, - "id": 121830828 - } - }, - { - "id": 121826070, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4016342, - 50.8594183 - ], - [ - 4.4016342, - 50.8594183 - ], - [ - 4.4016342, - 50.8594183 - ], - [ - 4.4016342, - 50.8594183 - ], - [ - 4.4016342, - 50.8594183 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-01T19:58:41Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/Ur0dzMf.jpg" - ], - "amenity": [ - "bicycle_parking" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 121826070 - } - }, - { - "id": 121823684, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.32204, - 50.8315324 - ], - [ - 4.32204, - 50.8315324 - ], - [ - 4.32204, - 50.8315324 - ], - [ - 4.32204, - 50.8315324 - ], - [ - 4.32204, - 50.8315324 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-01T18:47:58Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/VrkSpQA.jpg" - ], - "amenity": [ - "bicycle_parking" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 121823684 - } - }, - { - "id": 121822540, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3021159, - 50.9728771 - ], - [ - 4.9006386, - 50.9728771 - ], - [ - 4.9006386, - 51.1353962 - ], - [ - 4.3021159, - 51.1353962 - ], - [ - 4.3021159, - 50.9728771 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wegspotter", - "uid": "428001", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 4, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-01T18:08:14Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "foot", - "bus" - ], - "amenity": [ - "toilets", - "bench" - ], - "highway": [ - "path", - "secondary_link", - "tertiary", - "cycleway", - "service", - "secondary" - ], - "leisure": [ - "park", - "picnic_table" - ], - "boundary": [ - "administrative", - "postal_code" - ], - "man_made": [ - "bridge" - ] - }, - "create": 26, - "modify": 11, - "delete": 0, - "area": 0.0972713705335725, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 31, - "create": 2, - "import": 24, - "locale": "nl", - "imagery": "osm", - "import:node/-10": "source: https://osm.org/note/3143578", - "import:node/-11": "source: https://osm.org/note/3090173", - "import:node/-12": "source: https://osm.org/note/3090150", - "import:node/-14": "source: https://osm.org/note/3143504", - "import:node/-15": "source: https://osm.org/note/3143576", - "import:node/-17": "source: https://osm.org/note/3143507", - "import:node/-18": "source: https://osm.org/note/3143515", - "import:node/-19": "source: https://osm.org/note/3143509", - "import:node/-20": "source: https://osm.org/note/3143409", - "import:node/-21": "source: https://osm.org/note/3143412", - "import:node/-22": "source: https://osm.org/note/3143427", - "import:node/-23": "source: https://osm.org/note/3143548", - "import:node/-24": "source: https://osm.org/note/3143575", - "import:node/-25": "source: https://osm.org/note/3143408", - "import:node/-26": "source: https://osm.org/note/3022987", - "import:node/9788854260": "source: https://osm.org/note/3143537", - "import:node/9788865814": "source: https://osm.org/note/3143506", - "import:node/9788885168": "source: https://osm.org/note/3023067", - "import:node/9788885181": "source: https://osm.org/note/3022925", - "import:node/9788891455": "source: https://osm.org/note/3023072", - "import:node/9788917843": "source: https://osm.org/note/3143519", - "import:node/9788922775": "source: https://osm.org/note/3143539", - "import:node/9788930923": "source: https://osm.org/note/3143554", - "import:node/9788933325": "source: https://osm.org/note/3143551" - }, - "id": 121822540 - } - }, - { - "id": 121822375, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.401792, - 51.0429294 - ], - [ - 3.401792, - 51.0429294 - ], - [ - 3.401792, - 51.0429294 - ], - [ - 3.401792, - 51.0429294 - ], - [ - 3.401792, - 51.0429294 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Driesvr", - "uid": "4757701", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 1, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-01T18:02:32Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 121822375 - } - }, - { - "id": 121821532, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-01T17:34:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_25m": 1 - }, - "id": 121821532 - } - }, - { - "id": 121821529, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-01T17:34:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 3, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_25m": 3 - }, - "id": 121821529 - } - }, - { - "id": 121821519, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-01T17:34:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 121821519 - } - }, - { - "id": 121821510, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-01T17:34:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_25m": 1 - }, - "id": 121821510 - } - }, - { - "id": 121820311, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4401348, - 50.984066 - ], - [ - 4.4401348, - 50.984066 - ], - [ - 4.4401348, - 50.984066 - ], - [ - 4.4401348, - 50.984066 - ], - [ - 4.4401348, - 50.984066 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Driesvr", - "uid": "4757701", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-01T16:53:04Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 121820311 - } - }, - { - "id": 121818377, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.1618575, - 49.6176337 - ], - [ - 6.1618575, - 49.6176337 - ], - [ - 6.1618575, - 49.6176337 - ], - [ - 6.1618575, - 49.6176337 - ], - [ - 6.1618575, - 49.6176337 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "ClarissaWAM", - "uid": "13745921", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-01T15:54:23Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "public_bookcase" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases", - "theme": "bookcases", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 121818377 - } - }, - { - "id": 121815682, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7602277, - 51.1617329 - ], - [ - 4.7617097, - 51.1617329 - ], - [ - 4.7617097, - 51.1653178 - ], - [ - 4.7602277, - 51.1653178 - ], - [ - 4.7602277, - 51.1617329 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Stinus_Clasius", - "uid": "1086503", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-01T14:43:13Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes" - ] - }, - "create": 23, - "modify": 0, - "delete": 0, - "area": 0.00000531282180000057, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "theme": "grb", - "import": 3, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 121815682 - } - }, - { - "id": 121813712, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5498025, - -34.639664 - ], - [ - -58.5498025, - -34.639664 - ], - [ - -58.5498025, - -34.639664 - ], - [ - -58.5498025, - -34.639664 - ], - [ - -58.5498025, - -34.639664 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AgusQui", - "uid": "331218", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-01T13:49:15Z", - "reviewed_features": [], - "tag_changes": { - "ref": [ - "A 86" - ], - "railway": [ - "signal" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_100m": 1 - }, - "id": 121813712 - } - }, - { - "id": 121813330, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6946945, - 50.8257843 - ], - [ - 5.6946945, - 50.8257843 - ], - [ - 5.6946945, - 50.8257843 - ], - [ - 5.6946945, - 50.8257843 - ], - [ - 5.6946945, - 50.8257843 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-01T13:38:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 6 - }, - "id": 121813330 - } - }, - { - "id": 121810416, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.5084333, - 35.9073316 - ], - [ - 14.5120114, - 35.9073316 - ], - [ - 14.5120114, - 35.9083098 - ], - [ - 14.5084333, - 35.9083098 - ], - [ - 14.5084333, - 35.9073316 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "nevborg", - "uid": "2457325", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-01T12:22:19Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ] - }, - "create": 2, - "modify": 1, - "delete": 0, - "area": 0.00000350009741999573, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix", - "theme": "cyclofix", - "answer": 2, - "create": 2, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 121810416 - } - }, - { - "id": 121807731, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2346053, - 50.7367357 - ], - [ - 4.2356423, - 50.7367357 - ], - [ - 4.2356423, - 50.736828 - ], - [ - 4.2346053, - 50.736828 - ], - [ - 4.2346053, - 50.7367357 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-01T11:20:47Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "bicycle_parking" - ], - "image:0": [ - "https://i.imgur.com/2s2ZVR5.jpg" - ], - "capacity": [ - "6", - "4" - ], - "cargo_bike": [ - "yes" - ], - "bicycle_parking": [ - "stands", - "rack" - ], - "capacity:cargo_bike": [ - "1" - ] - }, - "create": 1, - "modify": 4, - "delete": 0, - "area": 9.57151000059347e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 10, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "add-image": 2, - "change_over_5000m": 1, - "change_within_25m": 12 - }, - "id": 121807731 - } - }, - { - "id": 121797249, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2626188, - 53.2341393 - ], - [ - 6.2626188, - 53.2341393 - ], - [ - 6.2626188, - 53.2341393 - ], - [ - 6.2626188, - 53.2341393 - ], - [ - 6.2626188, - 53.2341393 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-01T07:23:35Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "denotation": [ - "natural_monument" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 121797249 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-02.json b/Docs/Tools/stats/stats.2022-6-02.json deleted file mode 100644 index 64c60c694b..0000000000 --- a/Docs/Tools/stats/stats.2022-6-02.json +++ /dev/null @@ -1,1267 +0,0 @@ -{ - "features": [ - { - "id": 121871323, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.232757, - -39.8306165 - ], - [ - -73.232254, - -39.8306165 - ], - [ - -73.232254, - -39.8296762 - ], - [ - -73.232757, - -39.8296762 - ], - [ - -73.232757, - -39.8306165 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-02T23:26:18Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/z8NeOOg.jpg", - "https://i.imgur.com/ESDLEgV.jpg", - "https://i.imgur.com/dIKf1IX.jpg", - "https://i.imgur.com/82Epx0k.jpg", - "https://i.imgur.com/Im4ZNF5.jpg", - "https://i.imgur.com/45nNiqD.jpg", - "https://i.imgur.com/kTjyUoo.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 0, - "modify": 7, - "delete": 0, - "area": 4.72970900006645e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osm", - "add-image": 7 - }, - "id": 121871323 - } - }, - { - "id": 121871141, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0212511, - 14.5628527 - ], - [ - 121.0212511, - 14.5628527 - ], - [ - 121.0212511, - 14.5628527 - ], - [ - 121.0212511, - 14.5628527 - ], - [ - 121.0212511, - 14.5628527 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "GOwin", - "uid": "1041828", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-02T23:13:01Z", - "reviewed_features": [], - "tag_changes": { - "fixme": [ - "Freeform used on 'bicycle_parking'-tag: possibly a wrong value" - ], - "image": [ - "https://i.imgur.com/GX18j1a.jpg" - ], - "access": [ - "customers" - ], - "amenity": [ - "bicycle_parking" - ], - "bicycle_parking": [ - "yes", - "railing" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 3, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 121871141 - } - }, - { - "id": 121869884, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.232186, - -39.8307888 - ], - [ - -73.2316372, - -39.8307888 - ], - [ - -73.2316372, - -39.8302944 - ], - [ - -73.232186, - -39.8302944 - ], - [ - -73.232186, - -39.8307888 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-02T21:57:14Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/tEBP5sA.jpg", - "https://i.imgur.com/kQLuXLT.jpg", - "https://i.imgur.com/u2FaKpJ.jpg", - "https://i.imgur.com/P7pmNMT.jpg", - "https://i.imgur.com/cgwp2vh.jpg", - "https://i.imgur.com/tmdcU9B.jpg" - ], - "image:0": [ - "https://i.imgur.com/RQ7Mus2.jpg" - ], - "image:1": [ - "https://i.imgur.com/X4Wx2f3.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 0, - "modify": 8, - "delete": 0, - "area": 2.71326720002584e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osm", - "add-image": 8 - }, - "id": 121869884 - } - }, - { - "id": 121868369, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2317231, - -39.83117 - ], - [ - -73.2315383, - -39.83117 - ], - [ - -73.2315383, - -39.8309504 - ], - [ - -73.2317231, - -39.8309504 - ], - [ - -73.2317231, - -39.83117 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-02T20:53:47Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/Mc2W3Qr.jpg", - "https://i.imgur.com/wJqDbr9.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 4.05820800001224e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osm", - "add-image": 2 - }, - "id": 121868369 - } - }, - { - "id": 121863141, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.0961074, - 48.8408778 - ], - [ - 10.0961074, - 48.8408778 - ], - [ - 10.0961074, - 48.8408778 - ], - [ - 10.0961074, - 48.8408778 - ], - [ - 10.0961074, - 48.8408778 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-02T18:03:39Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/Tgyr9mE.jpg" - ], - "amenity": [ - "toilets" - ], - "payment:cash": [ - "yes" - ], - "payment:cards": [ - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 1, - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 121863141 - } - }, - { - "id": 121859599, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6643242, - 50.5601827 - ], - [ - 4.695168, - 50.5601827 - ], - [ - 4.695168, - 50.5642614 - ], - [ - 4.6643242, - 50.5642614 - ], - [ - 4.6643242, - 50.5601827 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9790984738", - "osm_id": 9790984738, - "reasons": [ - 43 - ], - "version": 1, - "primary_tags": { - "amenity": "bicycle_library" - } - } - ], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-02T16:27:50Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/wpOxkw1.jpg" - ], - "amenity": [ - "bicycle_parking", - "bicycle_library", - "bicycle_repair_station" - ] - }, - "create": 8, - "modify": 22, - "delete": 1, - "area": 0.000125802607060025, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 32, - "create": 8, - "locale": "en", - "imagery": "CartoDB.Voyager", - "deletion": 1, - "add-image": 8, - "change_over_5000m": 9, - "change_within_25m": 40, - "deletion:node/9785604436": "duplicate" - }, - "id": 121859599 - } - }, - { - "id": 121856741, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6141915, - 43.1816863 - ], - [ - 5.6141915, - 43.1816863 - ], - [ - 5.6141915, - 43.1816863 - ], - [ - 5.6141915, - 43.1816863 - ], - [ - 5.6141915, - 43.1816863 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "WinstonSmith", - "uid": "36030", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-02T15:22:41Z", - "reviewed_features": [], - "tag_changes": { - "bottle": [ - "yes" - ], - "amenity": [ - "drinking_water" - ], - "operational_status": [ - "broken" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 2, - "locale": "it", - "imagery": "CartoDB.Voyager", - "change_within_50m": 2 - }, - "id": 121856741 - } - }, - { - "id": 121855658, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9371133, - 50.9687189 - ], - [ - 4.9685405, - 50.9687189 - ], - [ - 4.9685405, - 50.9963481 - ], - [ - 4.9371133, - 50.9963481 - ], - [ - 4.9371133, - 50.9687189 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Frans_Napaters", - "uid": "3574538", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-02T14:55:04Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "email": [ - "sportenjeugd@scherpenheuvel-zichem.be" - ], - "phone": [ - "+32 13 39 14 40" - ], - "access": [ - "yes" - ], - "leisure": [ - "playground" - ], - "website": [ - "https://www.scherpenheuvel-zichem.be/toerisme-en-vrije-tijd/kinderen-en-jongeren/speelterreinen/speelterrein-planetenwijk-scherpenheuvel", - "https://www.scherpenheuvel-zichem.be/speelterrein-vossenberg-keiberg", - "https://www.scherpenheuvel-zichem.be/speelterrein-merellaan-lijsterlaan-schoonderbuken" - ], - "operator": [ - "Gemeente Scherpenheuvel-Zichem" - ] - }, - "create": 1, - "modify": 18, - "delete": 0, - "area": 0.000868308394239981, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 21, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 121855658 - } - }, - { - "id": 121854064, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.5339336, - 51.1539547 - ], - [ - 5.5593288, - 51.1539547 - ], - [ - 5.5593288, - 51.1745414 - ], - [ - 5.5339336, - 51.1745414 - ], - [ - 5.5339336, - 51.1539547 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "ToerBocholt", - "uid": "16178470", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-02T14:16:00Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "charging_station" - ], - "leisure": [ - "playground" - ] - }, - "create": 3, - "modify": 2, - "delete": 0, - "area": 0.00052280336384007, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 3, - "create": 3, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 121854064 - } - }, - { - "id": 121853404, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1523533, - 50.7597604 - ], - [ - 4.1523533, - 50.7597604 - ], - [ - 4.1523533, - 50.7597604 - ], - [ - 4.1523533, - 50.7597604 - ], - [ - 4.1523533, - 50.7597604 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/VerkeerdeBordenDatabank/VerkeerdeBordenDatabank.json", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-02T13:58:20Z", - "reviewed_features": [], - "tag_changes": { - "traffic_sign:issue": [ - "Dit zou een C3 moeten zijn", - "Dit zou een C3 moeten zijn; er zou 50 meter verder nog een bord moeten zijn" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/VerkeerdeBordenDatabank/VerkeerdeBordenDatabank.json", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 121853404 - } - }, - { - "id": 121850761, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6622172, - 50.5596732 - ], - [ - 4.6622172, - 50.5596732 - ], - [ - 4.6622172, - 50.5596732 - ], - [ - 4.6622172, - 50.5596732 - ], - [ - 4.6622172, - 50.5596732 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-02T12:45:09Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 6, - "create": 1, - "locale": "en", - "imagery": "cyclosm", - "add-image": 1, - "change_over_5000m": 8 - }, - "id": 121850761 - } - }, - { - "id": 121850677, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-02T12:42:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "en", - "imagery": "cyclosm", - "change_over_5000m": 2 - }, - "id": 121850677 - } - }, - { - "id": 121850656, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-02T12:42:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "en", - "imagery": "cyclosm", - "change_over_5000m": 1 - }, - "id": 121850656 - } - }, - { - "id": 121849906, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2186376, - 51.2072158 - ], - [ - 3.2199645, - 51.2072158 - ], - [ - 3.2199645, - 51.2076978 - ], - [ - 3.2186376, - 51.2076978 - ], - [ - 3.2186376, - 51.2072158 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-02T12:19:25Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes" - ], - "addr:street": [ - "Wulfhagestraat" - ], - "addr:housenumber": [ - "12" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 6.39565799997482e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "theme": "grb", - "answer": 2, - "import": 2, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "change_within_500m": 4 - }, - "id": 121849906 - } - }, - { - "id": 121847347, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.7841905, - 48.4156942 - ], - [ - 9.7841905, - 48.4156942 - ], - [ - 9.7841905, - 48.4156942 - ], - [ - 9.7841905, - 48.4156942 - ], - [ - 9.7841905, - 48.4156942 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-02T11:07:45Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/KcY5Cca.jpg" - ], - "access": [ - "yes" - ], - "indoor": [ - "no", - "yes" - ], - "survey:date": [ - "2022-06-02" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 3, - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 121847347 - } - }, - { - "id": 121844176, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.786001, - 48.4132021 - ], - [ - 9.786001, - 48.4132021 - ], - [ - 9.786001, - 48.4132021 - ], - [ - 9.786001, - 48.4132021 - ], - [ - 9.786001, - 48.4132021 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-02T09:46:39Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/YIyPeie.jpg" - ], - "amenity": [ - "toilets" - ], - "toilets:position": [ - "seated;urinal" - ], - "toilets:handwashing": [ - "yes" - ], - "toilets:paper_supplied": [ - "yes" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 3, - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 121844176 - } - }, - { - "id": 121838532, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6970093, - 50.567331 - ], - [ - 4.6973258, - 50.567331 - ], - [ - 4.6973258, - 50.5675694 - ], - [ - 4.6970093, - 50.5675694 - ], - [ - 4.6970093, - 50.567331 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.19.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-02T07:24:25Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ] - }, - "create": 2, - "modify": 4, - "delete": 0, - "area": 7.54535999978069e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 11, - "create": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 2, - "change_over_5000m": 2, - "change_within_25m": 13 - }, - "id": 121838532 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-03.json b/Docs/Tools/stats/stats.2022-6-03.json deleted file mode 100644 index bb9d908fb8..0000000000 --- a/Docs/Tools/stats/stats.2022-6-03.json +++ /dev/null @@ -1,1797 +0,0 @@ -{ - "features": [ - { - "id": 121911414, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.1456337, - 52.4187189 - ], - [ - 14.1456337, - 52.4187189 - ], - [ - 14.1456337, - 52.4187189 - ], - [ - 14.1456337, - 52.4187189 - ], - [ - 14.1456337, - 52.4187189 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Casi1980", - "uid": "13989376", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-03T19:01:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 121911414 - } - }, - { - "id": 121908433, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.049599, - -36.8139974 - ], - [ - -73.049599, - -36.8139974 - ], - [ - -73.049599, - -36.8139974 - ], - [ - -73.049599, - -36.8139974 - ], - [ - -73.049599, - -36.8139974 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-03T18:01:33Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "heritage": [ - "yes" - ], - "denotation": [ - "natural_monument", - "street" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 2, - "locale": "es", - "imagery": "osm" - }, - "id": 121908433 - } - }, - { - "id": 121908299, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 18.941501, - 53.4371697 - ], - [ - 18.9422106, - 53.4371697 - ], - [ - 18.9422106, - 53.437546 - ], - [ - 18.941501, - 53.437546 - ], - [ - 18.941501, - 53.4371697 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "macaddr", - "uid": "13378425", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-03T17:58:17Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "no" - ], - "barrier": [ - "fence" - ], - "leisure": [ - "playground" - ], - "surface": [ - "grass" - ], - "opening_hours": [ - "24/7" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 2.67022479999604e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 5, - "locale": "en", - "imagery": "osm" - }, - "id": 121908299 - } - }, - { - "id": 121907674, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6630242, - 50.5601629 - ], - [ - 4.6657722, - 50.5601629 - ], - [ - 4.6657722, - 50.5617783 - ], - [ - 4.6630242, - 50.5617783 - ], - [ - 4.6630242, - 50.5601629 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-03T17:42:37Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 0.00000443911919999683, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 12, - "create": 2, - "locale": "en", - "imagery": "HDM_HOT", - "change_over_5000m": 2, - "change_within_5000m": 12 - }, - "id": 121907674 - } - }, - { - "id": 121903206, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.2802261, - 47.7961281 - ], - [ - -4.2801718, - 47.7961281 - ], - [ - -4.2801718, - 47.796142 - ], - [ - -4.2802261, - 47.796142 - ], - [ - -4.2802261, - 47.7961281 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "TedScouGV", - "uid": "75300", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-03T16:02:25Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/PWO9PCf.jpg", - "https://i.imgur.com/DU4k6Jj.jpg" - ], - "amenity": [ - "recycling" - ], - "opening_hours": [ - "24/7" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 7.54770000337672e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 3, - "locale": "en", - "imagery": "osm", - "add-image": 2, - "change_within_25m": 3, - "change_within_500m": 2 - }, - "id": 121903206 - } - }, - { - "id": 121903039, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.2780006, - 47.7959265 - ], - [ - -4.2779533, - 47.7959265 - ], - [ - -4.2779533, - 47.7959512 - ], - [ - -4.2780006, - 47.7959512 - ], - [ - -4.2780006, - 47.7959265 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "TedScouGV", - "uid": "75300", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-03T15:58:50Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/yp5fZki.jpg" - ], - "amenity": [ - "toilets" - ], - "building": [ - "yes" - ], - "opening_hours": [ - "24/7" - ], - "changing_table": [ - "no" - ], - "toilets:position": [ - "seated" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.16830999988097e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 5, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 6 - }, - "id": 121903039 - } - }, - { - "id": 121902864, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7053571, - 51.0278079 - ], - [ - 3.7053571, - 51.0278079 - ], - [ - 3.7053571, - 51.0278079 - ], - [ - 3.7053571, - 51.0278079 - ], - [ - 3.7053571, - 51.0278079 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "velosophe", - "uid": "477861", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-03T15:55:07Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "surveillance" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 6, - "create": 1, - "locale": "en", - "imagery": "AGIV" - }, - "id": 121902864 - } - }, - { - "id": 121902857, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.277912, - 47.7960841 - ], - [ - -4.277912, - 47.7960841 - ], - [ - -4.277912, - 47.7960841 - ], - [ - -4.277912, - 47.7960841 - ], - [ - -4.277912, - 47.7960841 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "TedScouGV", - "uid": "75300", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-03T15:54:59Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/8ANOSVX.jpg" - ], - "amenity": [ - "fast_food" - ], - "wheelchair": [ - "limited" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1, - "change_within_50m": 1 - }, - "id": 121902857 - } - }, - { - "id": 121902736, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.2776398, - 47.7960467 - ], - [ - -4.2776398, - 47.7960467 - ], - [ - -4.2776398, - 47.7960467 - ], - [ - -4.2776398, - 47.7960467 - ], - [ - -4.2776398, - 47.7960467 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "TedScouGV", - "uid": "75300", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-03T15:52:38Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/Mp4WiZk.jpg" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "answer": 1, - "locale": "en", - "imagery": "Cadastre", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 121902736 - } - }, - { - "id": 121902216, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.786211, - 48.413471 - ], - [ - 9.786211, - 48.413471 - ], - [ - 9.786211, - 48.413471 - ], - [ - 9.786211, - 48.413471 - ], - [ - 9.786211, - 48.413471 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-03T15:42:09Z", - "reviewed_features": [], - "tag_changes": { - "bus": [ - "no" - ], - "fee": [ - "yes" - ], - "hgv": [ - "no" - ], - "image": [ - "https://i.imgur.com/HsBSbRW.jpg" - ], - "amenity": [ - "charging_station" - ], - "bicycle": [ - "no" - ], - "scooter": [ - "no" - ], - "motorcar": [ - "yes" - ], - "parking:fee": [ - "no" - ], - "opening_hours": [ - "24/7" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 4, - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 121902216 - } - }, - { - "id": 121899091, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 18.7502487, - 53.435716 - ], - [ - 18.9390591, - 53.435716 - ], - [ - 18.9390591, - 53.4904115 - ], - [ - 18.7502487, - 53.4904115 - ], - [ - 18.7502487, - 53.435716 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "macaddr", - "uid": "13378425", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-03T14:32:45Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "surveillance" - ], - "camera:direction": [ - "130" - ], - "surveillance:zone": [ - "parking" - ] - }, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0.0103270792332003, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 9, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 121899091 - } - }, - { - "id": 121898826, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 18.9419333, - 53.4380603 - ], - [ - 18.9419333, - 53.4380603 - ], - [ - 18.9419333, - 53.4380603 - ], - [ - 18.9419333, - 53.4380603 - ], - [ - 18.9419333, - 53.4380603 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "macaddr", - "uid": "13378425", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-03T14:26:38Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ], - "support": [ - "pole" - ], - "lamp_mount": [ - "bent_mast" - ], - "light:count": [ - "1" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 6, - "locale": "en", - "imagery": "osm" - }, - "id": 121898826 - } - }, - { - "id": 121898273, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2431303, - 51.2060932 - ], - [ - 3.2431303, - 51.2060932 - ], - [ - 3.2431303, - 51.2060932 - ], - [ - 3.2431303, - 51.2060932 - ], - [ - 3.2431303, - 51.2060932 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-03T14:14:21Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "sports_centre" - ], - "opening_hours": [ - "Mo-Fr 07:45-22:00; Sa 08:00-18:00; Su 08:00-13:00;PH off", - "Mo-Fr 08:00-23:00; Sa 08:00-22:00; Su 08:00-16:00" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/climbing.html", - "theme": "climbing", - "answer": 2, - "locale": "en", - "imagery": "osm", - "change_within_100m": 2 - }, - "id": 121898273 - } - }, - { - "id": 121898202, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 18.7497059, - 53.4788636 - ], - [ - 18.7530143, - 53.4788636 - ], - [ - 18.7530143, - 53.4902106 - ], - [ - 18.7497059, - 53.4902106 - ], - [ - 18.7497059, - 53.4788636 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "macaddr", - "uid": "13378425", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-03T14:12:46Z", - "reviewed_features": [], - "tag_changes": { - "door": [ - "hinged" - ], - "building": [ - "yes" - ], - "entrance": [ - "secondary", - "yes" - ], - "automatic_door": [ - "no" - ] - }, - "create": 1, - "modify": 13, - "delete": 0, - "area": 0.000037540414800021, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/entrances.html", - "theme": "entrances", - "answer": 14, - "create": 2, - "locale": "en", - "imagery": "Geoportal2-PL-aerial_image_WMTS" - }, - "id": 121898202 - } - }, - { - "id": 121895716, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1149699, - 45.0119662 - ], - [ - 0.1153946, - 45.0119662 - ], - [ - 0.1153946, - 45.01234 - ], - [ - 0.1149699, - 45.01234 - ], - [ - 0.1149699, - 45.0119662 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-03T13:24:17Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes" - ], - "man_made": [ - "surveillance" - ] - }, - "create": 1, - "modify": 4, - "delete": 0, - "area": 1.58752859999331e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 4, - "create": 2, - "locale": "fr", - "imagery": "osm", - "add-image": 1, - "change_within_50m": 2, - "change_within_100m": 5 - }, - "id": 121895716 - } - }, - { - "id": 121893784, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.7841748, - 48.4157049 - ], - [ - 9.7841748, - 48.4157049 - ], - [ - 9.7841748, - 48.4157049 - ], - [ - 9.7841748, - 48.4157049 - ], - [ - 9.7841748, - 48.4157049 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-03T12:46:40Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/uw09UPb.jpg" - ], - "amenity": [ - "toilets" - ], - "toilets:position": [ - "seated;urinal" - ], - "toilets:handwashing": [ - "yes" - ], - "toilets:paper_supplied": [ - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 3, - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1 - }, - "id": 121893784 - } - }, - { - "id": 121893009, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2919769, - 50.9934448 - ], - [ - 5.2919769, - 50.9934448 - ], - [ - 5.2919769, - 50.9934448 - ], - [ - 5.2919769, - 50.9934448 - ], - [ - 5.2919769, - 50.9934448 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mjans", - "uid": "5199038", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-03T12:30:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "import": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 1, - "import:node/9792436412": "source: https://osm.org/note/3044405" - }, - "id": 121893009 - } - }, - { - "id": 121891827, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8092803, - 43.9475412 - ], - [ - 4.8092803, - 43.9475412 - ], - [ - 4.8092803, - 43.9475412 - ], - [ - 4.8092803, - 43.9475412 - ], - [ - 4.8092803, - 43.9475412 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "WinstonSmith", - "uid": "36030", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-03T12:06:28Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "drinking_water" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "create": 1, - "locale": "it", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 121891827 - } - }, - { - "id": 121890920, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0031754, - 50.9143032 - ], - [ - 5.0031754, - 50.9143032 - ], - [ - 5.0031754, - 50.9143032 - ], - [ - 5.0031754, - 50.9143032 - ], - [ - 5.0031754, - 50.9143032 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-03T11:48:19Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "charging_station" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "link-image": 1 - }, - "id": 121890920 - } - }, - { - "id": 121888941, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.7128895, - 41.2184252 - ], - [ - 1.7128895, - 41.2184252 - ], - [ - 1.7128895, - 41.2184252 - ], - [ - 1.7128895, - 41.2184252 - ], - [ - 1.7128895, - 41.2184252 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "yopaseopor", - "uid": "500572", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-03T11:04:02Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "parking_space" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 121888941 - } - }, - { - "id": 121882456, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0385858, - 50.9221514 - ], - [ - 4.0772923, - 50.9221514 - ], - [ - 4.0772923, - 50.9346099 - ], - [ - 4.0385858, - 50.9346099 - ], - [ - 4.0385858, - 50.9221514 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Vincent Van Heghe", - "uid": "4624802", - "editor": "MapComplete 0.0.8f", - "comment": "Adding data with #MapComplete for theme #buurtnatuur", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-03T08:23:25Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Somergembos", - "Parktuin Schelfhout" - ], - "access": [ - "yes" - ], - "landuse": [ - "forest" - ], - "leisure": [ - "park" - ], - "boundary": [ - "protected_area" - ], - "operator": [ - "Natuurpunt" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.00048222493025004, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 121882456 - } - }, - { - "id": 121879671, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3006821, - 50.8071335 - ], - [ - 4.3006821, - 50.8071335 - ], - [ - 4.3006821, - 50.8071335 - ], - [ - 4.3006821, - 50.8071335 - ], - [ - 4.3006821, - 50.8071335 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-03T07:20:02Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "charging_station" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "add-image": 2 - }, - "id": 121879671 - } - }, - { - "id": 121876090, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.7128895, - 41.2184252 - ], - [ - 1.7128895, - 41.2184252 - ], - [ - 1.7128895, - 41.2184252 - ], - [ - 1.7128895, - 41.2184252 - ], - [ - 1.7128895, - 41.2184252 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "yopaseopor", - "uid": "500572", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-03T05:37:35Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "parking_space" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/main/parkingspaces.json", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 121876090 - } - }, - { - "id": 121872925, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.514267, - -34.4713306 - ], - [ - -58.5142478, - -34.4713306 - ], - [ - -58.5142478, - -34.4713223 - ], - [ - -58.514267, - -34.4713223 - ], - [ - -58.514267, - -34.4713306 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AgusQui", - "uid": "331218", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-03T02:18:36Z", - "reviewed_features": [], - "tag_changes": { - "railway": [ - "signal" - ], - "railway:signal:position": [ - "left" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 1.59360000063877e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "answer": 6, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 7 - }, - "id": 121872925 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-04.json b/Docs/Tools/stats/stats.2022-6-04.json deleted file mode 100644 index d44fdfe8a7..0000000000 --- a/Docs/Tools/stats/stats.2022-6-04.json +++ /dev/null @@ -1,2331 +0,0 @@ -{ - "features": [ - { - "id": 121955897, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 120.9417057, - 14.4756233 - ], - [ - 121.2054562, - 14.4756233 - ], - [ - 121.2054562, - 14.7494825 - ], - [ - 120.9417057, - 14.7494825 - ], - [ - 120.9417057, - 14.4756233 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mikko_tamura", - "uid": "2258022", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #lgbtmap", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-04T22:56:10Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "PRIDE Binangonan", - "PRIDE BInangonan" - ], - "lgbtq": [ - "welcome", - "friendly" - ], - "office": [ - "association" - ], - "amenity": [ - "social_facility", - "bar" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0.0722305009295998, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "lgbtmap", - "answer": 5, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 121955897 - } - }, - { - "id": 121955635, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.8509143, - -27.4812184 - ], - [ - -58.8172702, - -27.4812184 - ], - [ - -58.8172702, - -27.4694499 - ], - [ - -58.8509143, - -27.4694499 - ], - [ - -58.8509143, - -27.4812184 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jmourglia", - "uid": "1814226", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-04T22:37:02Z", - "reviewed_features": [], - "tag_changes": { - "fixme": [ - "Freeform field used for artwork type - doublecheck the value" - ], - "image": [ - "https://i.imgur.com/UajpE81.jpg", - "https://i.imgur.com/3JV4xN5.jpg", - "https://i.imgur.com/5KpRxi3.jpg", - "https://i.imgur.com/ddvruc7.jpg" - ], - "image:0": [ - "https://i.imgur.com/jjlUuM4.jpg", - "https://i.imgur.com/GBwXLdh.jpg" - ], - "image:1": [ - "https://i.imgur.com/hW1xHmm.jpg" - ], - "tourism": [ - "artwork" - ], - "artist_name": [ - "kura" - ] - }, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.000395940590849917, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 3, - "locale": "en", - "imagery": "osm", - "add-image": 7 - }, - "id": 121955635 - } - }, - { - "id": 121954681, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mikko_tamura", - "uid": "2258022", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #lgbtmap", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-04T21:43:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "lgbtmap", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 121954681 - } - }, - { - "id": 121954424, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4504297, - 50.8688095 - ], - [ - 4.4506651, - 50.8688095 - ], - [ - 4.4506651, - 50.869087 - ], - [ - 4.4504297, - 50.869087 - ], - [ - 4.4504297, - 50.8688095 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-04T21:33:05Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/xSR5pVy.jpg" - ], - "image:0": [ - "https://i.imgur.com/JJq2zMm.jpg" - ], - "leisure": [ - "playground" - ], - "surface": [ - "sand" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 6.53235000007239e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 121954424 - } - }, - { - "id": 121952098, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0301882, - 14.6234142 - ], - [ - 121.0303851, - 14.6234142 - ], - [ - 121.0303851, - 14.6235816 - ], - [ - 121.0301882, - 14.6235816 - ], - [ - 121.0301882, - 14.6234142 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mikko_tamura", - "uid": "2258022", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #lgbtmap", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-04T20:01:21Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bar" - ], - "building": [ - "yes" - ], - "contact:facebook": [ - "https://www.facebook.com/fahrenheitclubmanila/" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 3.29610600010895e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "lgbtmap", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 121952098 - } - }, - { - "id": 121951074, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.1023868, - 14.6034278 - ], - [ - 121.1023868, - 14.6034278 - ], - [ - 121.1023868, - 14.6034278 - ], - [ - 121.1023868, - 14.6034278 - ], - [ - 121.1023868, - 14.6034278 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mikko_tamura", - "uid": "2258022", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-04T19:29:17Z", - "reviewed_features": [], - "tag_changes": { - "email": [ - "delete@g.com" - ], - "amenity": [ - "fast_food" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 121951074 - } - }, - { - "id": 121949177, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3233021, - 50.9978061 - ], - [ - 3.3233021, - 50.9978061 - ], - [ - 3.3233021, - 50.9978061 - ], - [ - 3.3233021, - 50.9978061 - ], - [ - 3.3233021, - 50.9978061 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RubOSM", - "uid": "2096650", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-04T18:21:08Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "playground" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 121949177 - } - }, - { - "id": 121949096, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.2774142, - 47.7977984 - ], - [ - -4.2774142, - 47.7977984 - ], - [ - -4.2774142, - 47.7977984 - ], - [ - -4.2774142, - 47.7977984 - ], - [ - -4.2774142, - 47.7977984 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "TedScouGV", - "uid": "75300", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-04T18:17:59Z", - "reviewed_features": [], - "tag_changes": { - "level": [ - "0" - ], - "access": [ - "yes" - ], - "wheelchair": [ - "yes" - ], - "defibrillator:location:en": [ - "In the hall, on the left, near exit emergency" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 4, - "locale": "en", - "imagery": "osm", - "change_within_500m": 4 - }, - "id": 121949096 - } - }, - { - "id": 121949028, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0301882, - 14.6234142 - ], - [ - 121.0377205, - 14.6234142 - ], - [ - 121.0377205, - 14.672904 - ], - [ - 121.0301882, - 14.672904 - ], - [ - 121.0301882, - 14.6234142 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mikko_tamura", - "uid": "2258022", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #lgbtmap", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-04T18:14:39Z", - "reviewed_features": [], - "tag_changes": { - "email": [ - "fclubphilippines@yahoo.com" - ], - "office": [ - "ngo", - "association" - ], - "amenity": [ - "bar" - ], - "building": [ - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.000372772020540422, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "lgbtmap", - "answer": 2, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_5000m": 1 - }, - "id": 121949028 - } - }, - { - "id": 121948749, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3231027, - 50.9973437 - ], - [ - 3.3240883, - 50.9973437 - ], - [ - 3.3240883, - 50.9985594 - ], - [ - 3.3231027, - 50.9985594 - ], - [ - 3.3231027, - 50.9973437 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RubOSM", - "uid": "2096650", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-04T18:05:18Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench", - "waste_basket" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 7, - "modify": 0, - "delete": 0, - "area": 0.0000011981939199959, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "theme": "waste_basket", - "answer": 7, - "create": 7, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 7, - "change_within_25m": 7 - }, - "id": 121948749 - } - }, - { - "id": 121948514, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3235095, - 50.9982068 - ], - [ - 3.3241702, - 50.9982068 - ], - [ - 3.3241702, - 50.9986443 - ], - [ - 3.3235095, - 50.9986443 - ], - [ - 3.3235095, - 50.9982068 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RubOSM", - "uid": "2096650", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-04T17:58:56Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "bicycle" - ], - "highway": [ - "footway" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 2.89056250002584e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/nature.html", - "theme": "entrances", - "create": 4, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 4 - }, - "id": 121948514 - } - }, - { - "id": 121948508, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RubOSM", - "uid": "2096650", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-04T17:58:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/entrances.html", - "theme": "entrances", - "create": 2, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 2 - }, - "id": 121948508 - } - }, - { - "id": 121948441, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3235043, - 50.9986135 - ], - [ - 3.3235043, - 50.9986135 - ], - [ - 3.3235043, - 50.9986135 - ], - [ - 3.3235043, - 50.9986135 - ], - [ - 3.3235043, - 50.9986135 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RubOSM", - "uid": "2096650", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-04T17:55:46Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "artwork" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 121948441 - } - }, - { - "id": 121948275, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3231141, - 50.9974306 - ], - [ - 3.3241433, - 50.9974306 - ], - [ - 3.3241433, - 50.9986071 - ], - [ - 3.3231141, - 50.9986071 - ], - [ - 3.3231141, - 50.9974306 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RubOSM", - "uid": "2096650", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-04T17:49:32Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "bicycle" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 8, - "modify": 7, - "delete": 0, - "area": 0.00000121085379999923, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 43, - "create": 7, - "import": 1, - "locale": "nl", - "imagery": "AGIV", - "change_over_5000m": 8, - "change_within_25m": 43, - "import:node/9795328273": "source: https://osm.org/note/3156394" - }, - "id": 121948275 - } - }, - { - "id": 121945314, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3526206, - 50.8515168 - ], - [ - 4.3526581, - 50.8515168 - ], - [ - 4.3526581, - 50.8515898 - ], - [ - 4.3526206, - 50.8515898 - ], - [ - 4.3526206, - 50.8515168 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Moh glk", - "uid": "16199465", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-04T16:19:18Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "bicycle_parking" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 2.73750000004231e-9, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "move": 1, - "theme": "cyclofix", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_25m": 2, - "move:node/7376270730": "improve_accuracy" - }, - "id": 121945314 - } - }, - { - "id": 121944895, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8537228, - 50.90854 - ], - [ - 4.8537308, - 50.90854 - ], - [ - 4.8537308, - 50.9085451 - ], - [ - 4.8537228, - 50.9085451 - ], - [ - 4.8537228, - 50.90854 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-04T16:07:31Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "vending_machine" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 4.07999999663752e-11, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix", - "move": 1, - "theme": "cyclofix", - "locale": "en", - "imagery": "AGIVFlandersGRB", - "move:node/9776597335": "improve_accuracy" - }, - "id": 121944895 - } - }, - { - "id": 121943875, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8106191, - 51.1862576 - ], - [ - 2.8106264, - 51.1862576 - ], - [ - 2.8106264, - 51.1862581 - ], - [ - 2.8106191, - 51.1862581 - ], - [ - 2.8106191, - 51.1862576 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-04T15:39:17Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "cafe" - ] - }, - "create": 1, - "modify": 1, - "delete": 1, - "area": 3.65000004267595e-12, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "deletion": 1, - "change_over_5000m": 1, - "change_within_25m": 2, - "deletion:node/1545762872": "shop_closed" - }, - "id": 121943875 - } - }, - { - "id": 121943858, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-04T15:38:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "locale": "nl", - "imagery": "osm", - "deletion": 1, - "change_within_25m": 1, - "deletion:node/1545762872": "shop_closed" - }, - "id": 121943858 - } - }, - { - "id": 121943283, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.2912086, - 48.3005377 - ], - [ - 14.2950152, - 48.3005377 - ], - [ - 14.2950152, - 48.3039445 - ], - [ - 14.2912086, - 48.3039445 - ], - [ - 14.2912086, - 48.3005377 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "mapper75474", - "uid": "8581722", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-04T15:23:53Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "bicycle_repair_station" - ], - "opening_hours": [ - "24/7" - ], - "service:bicycle:tools": [ - "yes" - ], - "service:bicycle:pump:operational_status": [ - "broken" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000129683248800045, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 8, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 121943283 - } - }, - { - "id": 121942826, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3215027, - 50.8323484 - ], - [ - 4.3215027, - 50.8323484 - ], - [ - 4.3215027, - 50.8323484 - ], - [ - 4.3215027, - 50.8323484 - ], - [ - 4.3215027, - 50.8323484 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-04T15:12:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/climbing.html", - "theme": "climbing", - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 121942826 - } - }, - { - "id": 121942799, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-04T15:11:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/climbing.html", - "theme": "climbing", - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 121942799 - } - }, - { - "id": 121941839, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0301882, - 14.6234142 - ], - [ - 121.0303851, - 14.6234142 - ], - [ - 121.0303851, - 14.6235816 - ], - [ - 121.0301882, - 14.6235816 - ], - [ - 121.0301882, - 14.6234142 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mikko_tamura", - "uid": "2258022", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #lgbtmap", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-04T14:44:06Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bar" - ], - "building": [ - "yes" - ], - "opening_hours": [ - "Mo 00:00-01:00, 16:00-00:00; Tu-Fr 16:00-00:00; Sa-Su 00:00-01:00, 16:00-00:00", - "Fr-Sa 19:00-04:00" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 3.29610600010895e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "lgbtmap", - "answer": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 121941839 - } - }, - { - "id": 121940844, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1090121, - 50.7861001 - ], - [ - 4.1090121, - 50.7861001 - ], - [ - 4.1090121, - 50.7861001 - ], - [ - 4.1090121, - 50.7861001 - ], - [ - 4.1090121, - 50.7861001 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-04T14:12:22Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "charging_station" - ] - }, - "create": 1, - "modify": 6, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 8, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 9 - }, - "id": 121940844 - } - }, - { - "id": 121938289, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0000378, - 14.6150336 - ], - [ - 121.0000378, - 14.6150336 - ], - [ - 121.0000378, - 14.6150336 - ], - [ - 121.0000378, - 14.6150336 - ], - [ - 121.0000378, - 14.6150336 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mikko_tamura", - "uid": "2258022", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #lgbtmap", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-04T13:00:21Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "social_facility" - ], - "opening_hours": [ - "We-Su 09:00-15:30" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "lgbtmap", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 121938289 - } - }, - { - "id": 121937771, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2201007, - 51.1974825 - ], - [ - 3.2201007, - 51.1974825 - ], - [ - 3.2201007, - 51.1974825 - ], - [ - 3.2201007, - 51.1974825 - ], - [ - 3.2201007, - 51.1974825 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-04T12:44:40Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "bicycle_repair_station" - ], - "service:bicycle:pump:operational_status": [ - "operational" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_25m": 2 - }, - "id": 121937771 - } - }, - { - "id": 121937100, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5754289, - 51.0642306 - ], - [ - 3.5754289, - 51.0642306 - ], - [ - 3.5754289, - 51.0642306 - ], - [ - 3.5754289, - 51.0642306 - ], - [ - 3.5754289, - 51.0642306 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-04T12:20:16Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_rental" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "import": 1, - "locale": "en", - "imagery": "AGIV", - "import:node/9794675533": "source: https://osm.org/note/3161429" - }, - "id": 121937100 - } - }, - { - "id": 121935902, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0301882, - 14.5629968 - ], - [ - 121.0340718, - 14.5629968 - ], - [ - 121.0340718, - 14.6235816 - ], - [ - 121.0301882, - 14.6235816 - ], - [ - 121.0301882, - 14.5629968 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mikko_tamura", - "uid": "2258022", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #lgbtmap", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-04T11:42:49Z", - "reviewed_features": [], - "tag_changes": { - "office": [ - "ngo" - ], - "amenity": [ - "bar" - ], - "building": [ - "yes" - ], - "opening_hours": [ - "Mo-Fr 09:00-17:00", - "Fr-Sa 19:00-04:00", - "Su-Th 19:00-3:00; Fr-Sa 19:00-4:00" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.000235287129280534, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "lgbtmap", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 121935902 - } - }, - { - "id": 121935343, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0509915, - 14.7044834 - ], - [ - 121.0509915, - 14.7044834 - ], - [ - 121.0509915, - 14.7044834 - ], - [ - 121.0509915, - 14.7044834 - ], - [ - 121.0509915, - 14.7044834 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mikko_tamura", - "uid": "2258022", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-04T11:23:28Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "restaurant" - ], - "opening_hours": [ - "Mo 09:00-22:00; Tu-Sa 10:00-22:00; Su 10:00-17:00" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 121935343 - } - }, - { - "id": 121935001, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1377728, - 51.1669491 - ], - [ - 4.1382167, - 51.1669491 - ], - [ - 4.1382167, - 51.1670929 - ], - [ - 4.1377728, - 51.1670929 - ], - [ - 4.1377728, - 51.1669491 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-04T11:14:15Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/07wgs8s.jpg" - ], - "amenity": [ - "charging_station" - ], - "capacity": [ - "6" - ], - "socket:typee": [ - "6", - "1" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 6.38328200016606e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "en", - "imagery": "AGIV", - "add-image": 1, - "change_within_25m": 3, - "change_within_50m": 1, - "move:node/9685459856": "improve_accuracy" - }, - "id": 121935001 - } - }, - { - "id": 121934603, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1307145, - 51.1687748 - ], - [ - 4.1307145, - 51.1687748 - ], - [ - 4.1307145, - 51.1687748 - ], - [ - 4.1307145, - 51.1687748 - ], - [ - 4.1307145, - 51.1687748 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-04T11:01:48Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "bicycle" - ] - }, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", - "theme": "cyclofix", - "answer": 7, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 8 - }, - "id": 121934603 - } - }, - { - "id": 121929503, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5476008, - 51.2103174 - ], - [ - 4.5476008, - 51.2103174 - ], - [ - 4.5476008, - 51.2103174 - ], - [ - 4.5476008, - 51.2103174 - ], - [ - 4.5476008, - 51.2103174 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-04T08:25:36Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "charging_station" - ] - }, - "create": 1, - "modify": 6, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 5, - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 6 - }, - "id": 121929503 - } - }, - { - "id": 121924774, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8587278, - 51.141416 - ], - [ - 4.8624193, - 51.141416 - ], - [ - 4.8624193, - 51.143177 - ], - [ - 4.8587278, - 51.143177 - ], - [ - 4.8587278, - 51.141416 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-04T05:36:24Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "restaurant", - "pharmacy" - ], - "building": [ - "yes", - "house", - "garages", - "roof" - ], - "source:geometry:ref": [ - "Gbg/4047428", - "Gbg/4050111", - "Gbg/4047568", - "Gbg/4047420", - "Gbg/4047393", - "Gbg/4047394", - "Gbg/4047496", - "Gbg/4047430", - "Gbg/4047431", - "Gba/311592", - "Gbg/4047433" - ], - "source:geometry:date": [ - "2017-03-01", - "2017-03-30", - "2013-01-16", - "2015-11-24", - "2020-09-16", - "2013-02-20", - "2014-12-04" - ] - }, - "create": 226, - "modify": 76, - "delete": 0, - "area": 0.00000650073150000772, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 69, - "theme": "grb", - "import": 26, - "locale": "nl", - "imagery": "AGIV", - "conflation": 22 - }, - "id": 121924774 - } - }, - { - "id": 121924745, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8589092, - 51.1425534 - ], - [ - 4.8595015, - 51.1425534 - ], - [ - 4.8595015, - 51.1427674 - ], - [ - 4.8589092, - 51.1427674 - ], - [ - 4.8589092, - 51.1425534 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-04T05:35:38Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house" - ], - "source:geometry:ref": [ - "Gbg/4047427", - "Gbg/4047426", - "Gbg/4047425" - ], - "source:geometry:date": [ - "2017-03-01", - "2013-01-16", - "2014-05-02" - ] - }, - "create": 20, - "modify": 15, - "delete": 0, - "area": 1.26752199999852e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 12, - "theme": "grb", - "locale": "nl", - "imagery": "AGIV", - "conflation": 6 - }, - "id": 121924745 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-05.json b/Docs/Tools/stats/stats.2022-6-05.json deleted file mode 100644 index a7a2ed10b6..0000000000 --- a/Docs/Tools/stats/stats.2022-6-05.json +++ /dev/null @@ -1,1268 +0,0 @@ -{ - "features": [ - { - "id": 121997486, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -85.5893592, - 10.2721269 - ], - [ - -85.5889646, - 10.2721269 - ], - [ - -85.5889646, - 10.2724262 - ], - [ - -85.5893592, - 10.2724262 - ], - [ - -85.5893592, - 10.2721269 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "0xwabi", - "uid": "16159140", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-05T23:26:04Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Deco Autos", - "Tire Kingdom" - ], - "shop": [ - "tyres" - ], - "building": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.18103780002101e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_5000m": 1 - }, - "id": 121997486 - } - }, - { - "id": 121994667, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -85.5897019, - 10.2586071 - ], - [ - -85.5862933, - 10.2586071 - ], - [ - -85.5862933, - 10.2732369 - ], - [ - -85.5897019, - 10.2732369 - ], - [ - -85.5897019, - 10.2586071 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "0xwabi", - "uid": "16159140", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-05T21:01:23Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "La Golondrina", - "Las Golondrina" - ], - "image": [ - "https://i.imgur.com/i4pIgWp.jpg" - ], - "amenity": [ - "restaurant" - ], - "building": [ - "yes" - ], - "diet:vegetarian": [ - "no" - ] - }, - "create": 2, - "modify": 4, - "delete": 0, - "area": 0.0000498671362800023, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 4, - "create": 2, - "locale": "en", - "imagery": "osm", - "add-image": 3, - "change_over_5000m": 2, - "change_within_5000m": 7 - }, - "id": 121994667 - } - }, - { - "id": 121994556, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -99.1637305, - 19.4288488 - ], - [ - -99.1637305, - 19.4288488 - ], - [ - -99.1637305, - 19.4288488 - ], - [ - -99.1637305, - 19.4288488 - ], - [ - -99.1637305, - 19.4288488 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-05T20:57:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "cyclosm", - "add-image": 1 - }, - "id": 121994556 - } - }, - { - "id": 121992763, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3906408, - 51.0715958 - ], - [ - 3.3906408, - 51.0715958 - ], - [ - 3.3906408, - 51.0715958 - ], - [ - 3.3906408, - 51.0715958 - ], - [ - 3.3906408, - 51.0715958 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-05T20:01:15Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Boekenruilkast" - ], - "amenity": [ - "public_bookcase" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "bookcases", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_5000m": 1 - }, - "id": 121992763 - } - }, - { - "id": 121987730, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.14465, - 51.1645238 - ], - [ - 4.14465, - 51.1645238 - ], - [ - 4.14465, - 51.1645238 - ], - [ - 4.14465, - 51.1645238 - ], - [ - 4.14465, - 51.1645238 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-05T17:28:19Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "restaurant" - ] - }, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/food.html", - "theme": "food", - "answer": 5, - "create": 1, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "change_over_5000m": 6 - }, - "id": 121987730 - } - }, - { - "id": 121981335, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.2925717, - 47.9859552 - ], - [ - 16.2925717, - 47.9859552 - ], - [ - 16.2925717, - 47.9859552 - ], - [ - 16.2925717, - 47.9859552 - ], - [ - 16.2925717, - 47.9859552 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 42, - "name": "Invalid tag modification" - } - ], - "tags": [], - "features": [ - { - "url": "node-5368566323", - "name": "Bäckerei Krofnica", - "osm_id": 5368566323, - "reasons": [ - 42 - ], - "version": 4, - "primary_tags": { - "shop": "bakery" - } - } - ], - "user": "Bernhard Pranz", - "uid": "8164818", - "editor": "iD 2.20.4", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "basemap.at Orthofoto", - "date": "2022-06-05T14:56:37Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "bakery" - ], - "phone": [ - "+43 664 9179100" - ], - "amenity": [ - "fast_food" - ], - "cuisine": [ - "kebab" - ], - "operator": [ - "Krofnica GmbH" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://www.openstreetmap.org/edit", - "locale": "de", - "hashtags": "#MapComplete;#food", - "changesets_count": 2231 - }, - "id": 121981335 - } - }, - { - "id": 121981244, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.2925717, - 47.9859552 - ], - [ - 16.2925717, - 47.9859552 - ], - [ - 16.2925717, - 47.9859552 - ], - [ - 16.2925717, - 47.9859552 - ], - [ - 16.2925717, - 47.9859552 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Bernhard Pranz", - "uid": "8164818", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-05T14:54:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 121981244 - } - }, - { - "id": 121979382, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.2830465, - 47.9484447 - ], - [ - 16.2830465, - 47.9484447 - ], - [ - 16.2830465, - 47.9484447 - ], - [ - 16.2830465, - 47.9484447 - ], - [ - 16.2830465, - 47.9484447 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Bernhard Pranz", - "uid": "8164818", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-05T14:10:59Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "indoor": [ - "no" - ], - "wheelchair": [ - "limited" - ], - "survey:date": [ - "2022-06-05" - ], - "opening_hours": [ - "24/7" - ], - "defibrillator:location": [ - "an der Hauswand/on the wall" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 6, - "locale": "en", - "imagery": "osm" - }, - "id": 121979382 - } - }, - { - "id": 121979162, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1442449, - 51.1133272 - ], - [ - 4.1757032, - 51.1133272 - ], - [ - 4.1757032, - 51.1141564 - ], - [ - 4.1442449, - 51.1141564 - ], - [ - 4.1442449, - 51.1133272 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #fritures", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-05T14:04:48Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "fast_food" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 0.0000260852223599466, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/fritures.html", - "theme": "fritures", - "answer": 2, - "create": 2, - "locale": "nl", - "imagery": "AGIV", - "change_over_5000m": 4 - }, - "id": 121979162 - } - }, - { - "id": 121979123, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6107066, - 50.8179746 - ], - [ - 4.6242946, - 50.8179746 - ], - [ - 4.6242946, - 50.8269245 - ], - [ - 4.6107066, - 50.8269245 - ], - [ - 4.6107066, - 50.8179746 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Joostdeclercq", - "uid": "16204288", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-05T14:03:35Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench", - "charging_station" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 3, - "modify": 2, - "delete": 0, - "area": 0.000121611241199962, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 6, - "create": 3, - "locale": "nl", - "imagery": "osm" - }, - "id": 121979123 - } - }, - { - "id": 121977632, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3844626, - 50.8243706 - ], - [ - 4.4409759, - 50.8243706 - ], - [ - 4.4409759, - 50.8735345 - ], - [ - 4.3844626, - 50.8735345 - ], - [ - 4.3844626, - 50.8243706 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-05T13:31:39Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "yes" - ], - "image": [ - "https://i.imgur.com/eEmn5MK.jpg", - "https://i.imgur.com/3PZ3nue.jpg", - "https://i.imgur.com/BBXdYnO.jpg", - "https://i.imgur.com/ETMaTHG.jpg" - ], - "access": [ - "customers" - ], - "charge": [ - "60 EUR/year" - ], - "locked": [ - "yes" - ], - "amenity": [ - "bicycle_parking" - ], - "covered": [ - "yes" - ], - "capacity": [ - "5" - ], - "operator": [ - "parking.brussels" - ], - "operator:type": [ - "public" - ] - }, - "create": 0, - "modify": 8, - "delete": 0, - "area": 0.00277841422986978, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 8 - }, - "id": 121977632 - } - }, - { - "id": 121973478, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4262876, - 50.8499172 - ], - [ - 4.4262876, - 50.8499172 - ], - [ - 4.4262876, - 50.8499172 - ], - [ - 4.4262876, - 50.8499172 - ], - [ - 4.4262876, - 50.8499172 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-05T11:55:46Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/nD52Ozq.jpg" - ], - "amenity": [ - "public_bookcase" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 121973478 - } - }, - { - "id": 121973047, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3834744, - 50.8376257 - ], - [ - 4.4356963, - 50.8376257 - ], - [ - 4.4356963, - 50.8522751 - ], - [ - 4.3834744, - 50.8522751 - ], - [ - 4.3834744, - 50.8376257 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-05T11:42:36Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ], - "image:0": [ - "https://i.imgur.com/yyZZrQd.jpg" - ], - "landuse": [ - "residential" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.000765019501860172, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 2 - }, - "id": 121973047 - } - }, - { - "id": 121969284, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2177335, - 51.0948239 - ], - [ - 5.2177335, - 51.0948239 - ], - [ - 5.2177335, - 51.0948239 - ], - [ - 5.2177335, - 51.0948239 - ], - [ - 5.2177335, - 51.0948239 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mjans", - "uid": "5199038", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-05T10:01:25Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "import": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_50m": 1, - "import:node/9796328942": "source: https://osm.org/note/3044610" - }, - "id": 121969284 - } - }, - { - "id": 121968687, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.095636, - 52.447019 - ], - [ - 14.095636, - 52.447019 - ], - [ - 14.095636, - 52.447019 - ], - [ - 14.095636, - 52.447019 - ], - [ - 14.095636, - 52.447019 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Casi1980", - "uid": "13989376", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-05T09:48:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 121968687 - } - }, - { - "id": 121958553, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -75.457513, - 5.6134242 - ], - [ - -75.457513, - 5.6134242 - ], - [ - -75.457513, - 5.6134242 - ], - [ - -75.457513, - 5.6134242 - ], - [ - -75.457513, - 5.6134242 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-05T03:47:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osm", - "add-image": 1 - }, - "id": 121958553 - } - }, - { - "id": 121957028, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 120.9817766, - 14.5452059 - ], - [ - 121.0526418, - 14.5452059 - ], - [ - 121.0526418, - 14.6225629 - ], - [ - 120.9817766, - 14.6225629 - ], - [ - 120.9817766, - 14.5452059 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mikko_tamura", - "uid": "2258022", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #lgbtmap", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-05T00:40:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.00548191927640008, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "lgbtmap", - "answer": 6, - "locale": "en", - "imagery": "osm" - }, - "id": 121957028 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-06.json b/Docs/Tools/stats/stats.2022-6-06.json deleted file mode 100644 index ec31881407..0000000000 --- a/Docs/Tools/stats/stats.2022-6-06.json +++ /dev/null @@ -1,5074 +0,0 @@ -{ - "features": [ - { - "id": 122045776, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.20659, - 51.1862096 - ], - [ - 3.2068115, - 51.1862096 - ], - [ - 3.2068115, - 51.1864629 - ], - [ - 3.20659, - 51.1864629 - ], - [ - 3.20659, - 51.1862096 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-06T22:59:51Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/AIXKG6g.jpg" - ], - "leisure": [ - "pitch" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 5.61059500010178e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 122045776 - } - }, - { - "id": 122044896, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1896306, - 51.2037117 - ], - [ - 3.1920776, - 51.2037117 - ], - [ - 3.1920776, - 51.2043616 - ], - [ - 3.1896306, - 51.2043616 - ], - [ - 3.1896306, - 51.2037117 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-06T22:03:19Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential" - ], - "name:etymology:wikidata": [ - "Q7178", - "Q12091" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00000159030529999784, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "answer": 4, - "locale": "nl", - "imagery": "osm" - }, - "id": 122044896 - } - }, - { - "id": 122042046, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2333359, - 50.7377595 - ], - [ - 4.2390178, - 50.7377595 - ], - [ - 4.2390178, - 50.7380284 - ], - [ - 4.2333359, - 50.7380284 - ], - [ - 4.2333359, - 50.7377595 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-06T20:10:59Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "surveillance" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 0.00000152786290996979, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 7, - "create": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 122042046 - } - }, - { - "id": 122039704, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3344968, - 51.165771 - ], - [ - 3.3344968, - 51.165771 - ], - [ - 3.3344968, - 51.165771 - ], - [ - 3.3344968, - 51.165771 - ], - [ - 3.3344968, - 51.165771 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-06T19:03:34Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/FesTPeM.jpg" - ], - "barrier": [ - "bollard" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 122039704 - } - }, - { - "id": 122039407, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5783017, - 50.1969804 - ], - [ - 8.5783017, - 50.1969804 - ], - [ - 8.5783017, - 50.1969804 - ], - [ - 8.5783017, - 50.1969804 - ], - [ - 8.5783017, - 50.1969804 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "juschu", - "uid": "67523", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-06T18:55:12Z", - "reviewed_features": [], - "tag_changes": { - "barrier": [ - "cycle_barrier" - ], - "bicycle": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 122039407 - } - }, - { - "id": 122039073, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.0998057, - 52.3834331 - ], - [ - 10.0998057, - 52.3834331 - ], - [ - 10.0998057, - 52.3834331 - ], - [ - 10.0998057, - 52.3834331 - ], - [ - 10.0998057, - 52.3834331 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "eq9RxsEL", - "uid": "6337397", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-06T18:45:31Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ], - "support": [ - "pole" - ], - "light:lit": [ - "dusk-dawn" - ], - "lamp_mount": [ - "straight_mast" - ], - "light:colour": [ - "white" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 4, - "locale": "de", - "imagery": "osm" - }, - "id": 122039073 - } - }, - { - "id": 122038237, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3173243, - 51.1851439 - ], - [ - 3.3173243, - 51.1851439 - ], - [ - 3.3173243, - 51.1851439 - ], - [ - 3.3173243, - 51.1851439 - ], - [ - 3.3173243, - 51.1851439 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-06T18:20:39Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/TiJx7Hk.jpg" - ], - "survey:date": [ - "2022-06-06" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", - "answer": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 122038237 - } - }, - { - "id": 122037507, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3042992, - 51.1626279 - ], - [ - 3.3460929, - 51.1626279 - ], - [ - 3.3460929, - 51.1921715 - ], - [ - 3.3042992, - 51.1921715 - ], - [ - 3.3042992, - 51.1626279 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-06T17:57:50Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/SzDdfKR.jpg", - "https://i.imgur.com/FrdmtL1.jpg", - "https://i.imgur.com/fI3yccU.jpg", - "https://i.imgur.com/O0n1buh.jpg", - "https://i.imgur.com/N9kpuqh.jpg" - ], - "route": [ - "hiking", - "bicycle", - "mtb" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ], - "waterway": [ - "stream" - ], - "survey:date": [ - "2022-06-06" - ], - "expected_rwn_route_relations": [ - "3", - "4" - ] - }, - "create": 0, - "modify": 9, - "delete": 0, - "area": 0.00123473635532016, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "add-image": 6 - }, - "id": 122037507 - } - }, - { - "id": 122037277, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -85.5871686, - 10.2680671 - ], - [ - -85.5871686, - 10.2680671 - ], - [ - -85.5871686, - 10.2680671 - ], - [ - -85.5871686, - 10.2680671 - ], - [ - -85.5871686, - 10.2680671 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "0xwabi", - "uid": "16159140", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-06T17:50:17Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/cXzqBym.jpg" - ], - "amenity": [ - "restaurant" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 122037277 - } - }, - { - "id": 122036342, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3028261, - 51.1584451 - ], - [ - 3.3396979, - 51.1584451 - ], - [ - 3.3396979, - 51.1925423 - ], - [ - 3.3028261, - 51.1925423 - ], - [ - 3.3028261, - 51.1584451 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-06T17:27:19Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/4pEsAyW.jpg", - "https://i.imgur.com/SzDdfKR.jpg", - "https://i.imgur.com/FrdmtL1.jpg", - "https://i.imgur.com/09PBLbO.jpg", - "https://i.imgur.com/H8sPMBP.jpg", - "https://i.imgur.com/fI3yccU.jpg", - "https://i.imgur.com/RrshOcl.jpg" - ], - "route": [ - "hiking", - "bicycle", - "mtb" - ], - "waterway": [ - "stream" - ], - "survey:date": [ - "2022-06-06" - ], - "expected_rwn_route_relations": [ - "3", - "4" - ] - }, - "create": 0, - "modify": 10, - "delete": 0, - "area": 0.00125722513895993, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "answer": 10, - "locale": "en", - "imagery": "osm", - "add-image": 7 - }, - "id": 122036342 - } - }, - { - "id": 122033902, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -85.5881383, - 10.2591784 - ], - [ - -85.5827009, - 10.2591784 - ], - [ - -85.5827009, - 10.2874923 - ], - [ - -85.5881383, - 10.2874923 - ], - [ - -85.5881383, - 10.2591784 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "0xwabi", - "uid": "16159140", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-06T16:21:14Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Mini Super San Martin", - "Super San Martin" - ], - "shop": [ - "convenience", - "supermarket" - ], - "image": [ - "https://i.imgur.com/HKIlbXU.jpg", - "https://i.imgur.com/u7DSMgr.jpg" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.000153953999859749, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 1, - "locale": "en", - "imagery": "osm", - "add-image": 2 - }, - "id": 122033902 - } - }, - { - "id": 122033074, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.1406198, - 49.6753384 - ], - [ - 6.1406198, - 49.6753384 - ], - [ - 6.1406198, - 49.6753384 - ], - [ - 6.1406198, - 49.6753384 - ], - [ - 6.1406198, - 49.6753384 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "ClarissaWAM", - "uid": "13745921", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-06T16:00:48Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "public_bookcase" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases", - "theme": "bookcases", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 122033074 - } - }, - { - "id": 122030608, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3327975, - 51.8367842 - ], - [ - 5.647704, - 51.8367842 - ], - [ - 5.647704, - 52.0202659 - ], - [ - 4.3327975, - 52.0202659 - ], - [ - 4.3327975, - 51.8367842 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 83, - "name": "User has multiple blocks" - } - ], - "tags": [], - "features": [], - "user": "Friendly_Ghost", - "uid": "10875409", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-06T15:03:50Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "farm", - "caterer", - "flooring", - "hairdresser", - "motorcycle", - "seafood", - "catering", - "supermarket", - "clothes", - "survey", - "music", - "computer", - "convenience", - "houseware", - "leather", - "travel_agency", - "musical_instrument", - "books", - "furniture", - "sports", - "second_hand", - "florist", - "curtain", - "greengrocer", - "outdoor", - "hifi", - "art", - "charity", - "gift", - "chemist", - "tailor", - "locksmith", - "bag", - "massage", - "antiques", - "beauty", - "deli", - "butcher", - "toys", - "shoes", - "general", - "model", - "jewelry", - "casino", - "cheese", - "doityourself", - "garden_centre", - "newsagent", - "bakery", - "bed", - "agrarian", - "pet", - "car_repair", - "hardware", - "bicycle", - "interior_decoration", - "kitchen", - "bathroom_furnishing", - "stationery", - "car", - "copyshop", - "pastry", - "hearing_aids", - "funeral_directors", - "mobile_phone", - "baby_goods", - "electronics", - "tea", - "storage_rental", - "erotic", - "fabric", - "optician", - "perfumery", - "tobacco", - "military_surplus", - "herbalist", - "photo", - "spare_parts", - "chocolate", - "vacant", - "health_food", - "alcohol", - "confectionery", - "office_supplies", - "carpet", - "coffee", - "party", - "building_materials", - "car_parts", - "tyres", - "wholesale", - "nuts", - "pet_grooming", - "estate_agent", - "tattoo", - "scooter", - "wine", - "pottery", - "no", - "yes", - "shoe_repair", - "water_sports" - ], - "phone": [ - "+31 88 974 3000", - "+31 88 9743000", - "+31 15 887 1162", - "+31 15 8871162", - "+31 15 214 4998", - "+31 15 2144 998", - "+31 15 212 9533", - "+31 15 2129533", - "+31 15 213 5487", - "+31 15 2135487", - "+31 15 212 7014", - "+31 15 2127014", - "+31 15 214 3067", - "+31 15 2143067", - "+31 15 214 7770", - "+31 15 2147770", - "+31 15 214 7191", - "+31 15 2147191", - "+31 15 212 3886", - "+31 15 2123886", - "+31 6 16799022", - "+31 616799022", - "+31 15 241 1011", - "+31 15 2411011", - "+31 15 212 0610", - "+31 152120610", - "+31 6 20024460", - "+31 620024460", - "+31 15 212 5058", - "+31 15 2125058", - "+31 15 213 1000", - "+31152131000", - "+31 15 760 0320", - "015 760 0320", - "+31 6 23242094", - "+31 623242094", - "+31 15 213 0393", - "015-2130393", - "+31 15 212 4280", - "+31 15 2124280", - "+31 15 214 2972", - "+31 152142972", - "+31 15 212 8297", - "+31 15 2128297", - "+31 15 215 3434", - "+31 152153434", - "+31 6 46478874", - "+31646478874", - "+31 15 750 0848", - "015-7500848", - "+31 15 201 0275", - "+31 15 2010275", - "+31 15 213 7809", - "+31152137809", - "+31 15 214 7212", - "+31 15 2147212", - "+31 15 214 5496", - "+31 152145496", - "+31 15 214 8124", - "+31 15 2148124", - "+31 15 222 3147", - "+31 15 2223147", - "+31 15 212 1913", - "+31 15 2121913", - "+31 15 215 9552", - "+31 15 2159552", - "+31 15 364 6508", - "+31 153646508", - "+31 15 212 5582", - "+31 15 212 55 82", - "+31 15 214 2600", - "+31152142600", - "+31 15 214 5945", - "+31 15 2145945", - "+31 15 213 1194", - "+31152131194", - "+31 15 212 9895", - "+31152129895", - "+31 15 213 3311", - "+31 15 213 33 11", - "+31 15 212 1510", - "+31 15 2121510", - "+31 15 212 6243", - "+31 15 2126243", - "+31 15 820 0225", - "+31 15 82 00 225", - "+31 15 666 7700", - "+31 15 6667700", - "+31 15 212 2447", - "+31 15 212 24 47", - "+31 15 760 0200", - "+31 15 76 00 200", - "+31 15 213 2578", - "+31 15 213 25 78", - "+31 15 222 0022", - "+31152220022", - "+31 15 256 4034", - "+31152564034", - "+31 15 214 0091", - "+31 15 2140091", - "+31 15 737 0484", - "+31 15-7370484", - "+31 15 212 6107", - "+31152126107", - "+31 6 57831930", - "06-57831930", - "+31 15 219 0765", - "+31 15 219 07 65", - "+31 6 41051702", - "+31 641051702", - "+31 6 41102615", - "+31 641102615", - "+31 15 271 6250", - "+31 15 2716250", - "+31 15 364 7443", - "+31 15 3647 443", - "+31 15 260 8715", - "+31 152608715", - "+31 15 214 7773", - "+31 15 214 77 73", - "+31 15 887 4185", - "+31 15 8874185", - "+31 15 214 6852", - "+31 15 2146852", - "+31 6 14790713", - "+31 06 1479 0713", - "+31 15 219 1650", - "+31152191650", - "+31 15 215 0025", - "+31 15 215 00 25", - "+31 15 213 4619", - "+31 15 2134619", - "+31 15 214 6451", - "+31 15 2146451", - "+31 15 260 8108", - "+31 15 2608108", - "+31 6 19653347", - "+316 1965 3347", - "+31 15 212 7511", - "+31(0)152127511", - "+31 6 54356046", - "+31 (6) 54356046", - "+31 15 213 1782", - "+31 15-213 1782", - "+31 15 257 1803", - "+31152571803", - "+31 70 820 0532", - "+31708200532", - "+31 15 889 1093", - "+31 15 8891093", - "+31 15 887 6008", - "+31 15 887 60 08", - "+31 15 212 3777", - "+31 152123777", - "+31 6 38114647", - "+31 638114647", - "+31 15 364 3065", - "+31 15 364 30 65", - "+31 15 215 8948", - "+31 15 2158948", - "+31 15 785 1161", - "+31 (0)15 7851161", - "+31 15 889 7175", - "+31158897175", - "+31 15 213 3226", - "+31 15 21 33 226", - "+31 15 284 0140", - "+31 15 2840140", - "+31 15 215 1690", - "+31 15 215 16 90", - "+31 6 42074441", - "+31642074441", - "+31 15 212 3321", - "+31 (0)15 2123321", - "+31 6 18512918", - "+31618512918", - "+31 15 215 5249", - "+31 15 2155249", - "+31 15 251 6565", - "+31 152516565", - "+31 15 200 2181", - "+31 15 2002181", - "+31 15 212 4852", - "+31 152124852", - "+31 15 212 0504", - "+31 (0)15 2120504", - "+31 15 213 0698", - "+31 152130698", - "+31 6 11808143", - "+31 611808143", - "+31 15 767 6010", - "+31157676010", - "+31 15 213 7048", - "+31 15 2137048", - "+31 15 257 8778", - "+31152578778", - "+31 15 214 5100", - "+31152145100", - "+31 15 302 0000", - "+31 15 3020000", - "+31 6 41464390", - "+31 641464390", - "+31 15 215 1715", - "+31152151715", - "+31 15 212 4582", - "+31152124582", - "+31 15 213 9892", - "+31 (0)15 2139892", - "+31 15 212 1712", - "015 2121712", - "+31 15 213 8204", - "+31 15 2138204", - "+31 15 212 1122", - "015 212 1122", - "+31 15 213 5929", - "+31 152135929", - "+31 15 737 0147", - "015 737 0147", - "+31 15 820 0970", - "+31 15 8200970", - "+31 15 212 1878", - "+31 15 2121878", - "+31 15 219 5560", - "+31 15 2195560", - "+31 15 303 0750", - "+31 153030750", - "+31 15 364 9190", - "+31 153649190", - "+31 6 39001688", - "+31-6-39001688", - "+31 10 521 6655", - "+31 10 521 66 55", - "+31 10 521 4262", - "+31 10 5214262", - "+31 10 521 42 62", - "+31 183 635 578", - "+31-183-635578", - "+31 10 411 5300", - "+31 10 4115300", - "+31 10 414 4206", - "010 - 414 42 06", - "+31 10 233 0922", - "010 – 233 09 22", - "+31 10 214 0836", - "+31102140836", - "+31 10 436 6177", - "+31 10 436 61 77", - "+31 10 846 3052", - "+31-10-846 30 52", - "+31 10 436 6599", - "+31-10–4366599", - "+31 10 280 9121", - "0031102809121", - "+31 10 223 0535", - "+31-10-22 30 535", - "+31 10 201 9075", - "010-201 90 75", - "+31 10 413 4423", - "010-4134423", - "+31 10 260 0039", - "+3110-2600039", - "+31 10 433 0592", - "+31-10 4330592", - "+31 10 737 0708", - "+31-10-7370708", - "+31 10 202 0131", - "+31 10 20 20 131", - "+31 10 240 9402", - "010-2409402", - "+31 10 307 0926", - "+31103070926", - "+31 10 845 3239", - "+3110-8453239", - "+31 10 412 0812", - "+31 10 412 0812.", - "+31 88 588 5861", - "088 588 5861", - "+31 10 413 0804", - "+31-10-4130804", - "+31 10 282 9100", - "010-2829100", - "+31 10 201 2000", - "+31 10 201 20 00", - "+31 10 236 7548", - "010 236 75 48", - "+31 10 414 6819", - "+31-10-414 68 19", - "+31 10 404 7901", - "+31 10 404 79 01", - "+31 10 411 3590", - "+31-10-4113590", - "+31 10 229 9689", - "+31102299689", - "+31 10 411 8349", - "+3110–4118349", - "+31 10 414 5591", - "+31 (0)10-414 55 91", - "+31 10 412 5563", - "+31-10-4125563", - "+31 10 414 4514", - "+31-10-414 4514", - "+31 10 433 2582", - "+31-10-433 25 82", - "+31 10 214 0909", - "+31-10-2140909", - "+31 10 224 6703", - "+31 10 224 67 03", - "+31 10 404 7909", - "+31-010–404 79 09", - "+31 10 233 2022", - "010 233 2022", - "+31 10 414 2834", - "+31 10 4142834", - "+31 6 39605650", - "0639605650", - "+31 10 413 0840", - "+31-10-413 0840", - "+31 10 223 2256", - "+31-10-2232256", - "+31 10 412 3607", - "+31-10-4123607", - "+31 23 727 1002", - "+31-23-7271002", - "+31 10 213 4543", - "+31-10-213 4543", - "+31 10 415 4565", - "+31-10-4154565", - "+31 10 411 0370", - "+31 10 4110370", - "+31 10 240 9317", - "+31 10 240 93 17", - "+31 10 414 5606", - "+31 (0)10 41 45 606", - "+31 10 413 2161", - "+31-10-4132161", - "+31 10 413 3513", - "010 - 413 35 13", - "+31 10 411 9473", - "+31 10 – 411 94 73", - "+31 10 413 8105", - "010-4138105", - "+31 10 433 3055", - "+31104333055", - "+31 10 404 9951", - "+31-10–4049951", - "+31 10 240 0099", - "010-2400099", - "+31 10 412 1823", - "+31-10-4121823", - "+31 10 413 1312", - "+31-10-4131312", - "+31 10 466 3012", - "+31104663012", - "+31 10 411 6615", - "+31-10-411 66 15", - "+31 6 24734939", - "+316 24734939", - "+31 10 414 5503", - "010 414 5503", - "+31 10 236 1086", - "+31 10 2361086", - "+31 10 412 0777", - "+31.10.4120777", - "+31 10 213 6801", - "+31 (0) 102 136 801", - "+31 10 433 4551", - "+31-10-4334551", - "+31 10 233 1129", - "0102331129", - "+31 10 414 3301", - "+31-10–4143301", - "+31 10 412 5614", - "+31-10-4125614", - "+31 10 214 0496", - "+31(0)102140496", - "+31 10 433 1935", - "+31-10-4331935", - "+31 10 477 8977", - "+31 10 477 89 77", - "+31 10 414 4188", - "010-4144188", - "+31 10 785 2311", - "+31 010 785 2311", - "+31 10 436 4210", - "010 4364210", - "+31 10 414 5855", - "010 - 414 5855", - "+31 10 436 4780", - "+31-10-4364780", - "+31 10 404 7900", - "+31 10 404 79 00", - "+31 10 436 6505", - "+31-10-4366505", - "+31 6 42444407", - "06-42444407", - "+31 6 81461217", - "+31681461217", - "+31 10 404 6888", - "+31 10 404 68 88", - "+31 10 436 5873", - "+31-10-4365873", - "+31 10 737 1083", - "+31-10-737 1083", - "+31 10 436 5999", - "+31 (0)104365999", - "+31 10 413 2608", - "+31-10-4132608", - "+31 10 414 7204", - "+31-10-4147204", - "+31 10 436 4607", - "010-436 46 07", - "+31 10 414 0303", - "010 4140303", - "+31 10 413 8644", - "+31-10-4138644", - "+31 10 230 6090", - "+31102306090", - "+31 10 483 4662", - "+31104834662", - "+31 183 582 501", - "0183-582501", - "+31 88 280 0900", - "+31 88 280 09 00", - "+31 15 256 7254", - "+31 15 2567254", - "+31 6 51352696", - "+31 6 5135 2696", - "+31 15 361 7851", - "015-3617851", - "+31 15 201 0525", - "015-2010525", - "+31 6 27881552", - "06-27881552", - "+31 6 41624670", - "06-41624670", - "+31 15 364 0433", - "015-3640433", - "+31 15 737 0086", - "015-7370086", - "+31 15 870 1139", - "015-8701139", - "+31 15 369 2361", - "0153692361", - "+31 180 699 600", - "+31 180 69 96 00", - "+31 15 361 0296", - "0153610296", - "+31 10 226 6705", - "+31102266705", - "+31 15 301 4130", - "+31 15 3014130", - "+31 78 202 0208", - "+31 782020208", - "+31 85 020 8690", - "+3185 020 86 90", - "+31 184 417 066", - "+31184417066", - "+31 184 647 777", - "+31184647777", - "+31 184 642 085", - "+31184642085", - "+31 184 642 112", - "+31184642112", - "+31 184 691 379", - "+31184691379", - "+31 10 453 5905", - "010-453 59 05", - "+31 180 420 996", - "+31 180 42 09 96", - "+31 180 425 077", - "+31180425077", - "+31 180 499 845", - "+31 180 499845", - "+31 180 433 902", - "+31 180 433902", - "+31 180 418 952", - "+31 (0)180-418952", - "+31 88 337 7202", - "+31883377202", - "+31 180 462 371", - "+31 (0)180 462371", - "+31 180 487 638", - "+31 (0) 180 48 76 38", - "+31 6 18401641", - "+31618401641", - "+31 180 463 652", - "+31-180 463652", - "+31 180 444 283", - "+31 (0)180 44 42 83", - "+31 180 423 302", - "+31 180 42 33 02", - "+31 180 422 654", - "+31 180 422654", - "+31 88 313 4735", - "+3188-313 4735", - "+31 184 641 409", - "+31184 641409", - "+31 184 641 669", - "+31 184 641669", - "+31 184 601 558", - "0184601558", - "+31 184 785 047", - "+31184785047", - "+31 183 588 088", - "(+31)183 588088", - "+31 183 581 229", - "+31 183 581229", - "+31 183 581 386", - "+31 183-581386", - "+31 15 380 9381", - "+31153809381", - "+31 15 380 8767", - "+31 15 380 87 67", - "+31 78 681 2138", - "+31786812138", - "+31 78 681 2450", - "+31 786 812 450", - "+31 78 683 2211", - "+31786832211", - "+31 6 40589906", - "+31 6 405 899 06", - "+31 78 681 2239", - "+31-786812239", - "+31 6 36106766", - "+31-636106766", - "+31 10 292 2011", - "+31-10-2922011", - "+31 10 486 8600", - "+31-10-4868600", - "+31 10 479 3819", - "+31-10-4793819", - "+31 10 292 0050", - "+31-10-2920050", - "+31 10 483 8833", - "+31104838833", - "+31 10 482 6990", - "+31104826990", - "+31 180 616 277", - "+31-180-616277", - "+31 180 444 352", - "+31 180 44 43 52", - "+31 180 691 818", - "+31 180 69 18 18", - "+31 180 619 722", - "+31180 – 619 722", - "+31 180 623 906", - "+31 180 623906", - "+31 180 439 004", - "+31 180 439004", - "+31 180 692 929", - "+31 180 69 29 29", - "+31 180 616 391", - "+31 180 61 63 91", - "+31 180 620 050", - "0180-620050", - "+31 180 690 279", - "+31180690279", - "+31 88 313 4725", - "+31(0)88-3134725", - "+31 180 690 751", - "+31 180 690751", - "+31 88 007 0288", - "+31(0)88-0070288", - "+31 180 623 826", - "+31(0)180-623826", - "+31 180 620 991", - "+31(0)180-620991", - "+31 180 444 075", - "+31(0)180-444075", - "+31 180 623 960", - "+31(0)180-623960", - "+31 180 627 938", - "+31(0)180-627938", - "+31 180 767 278", - "+31(0)180-767278", - "+31 180 618 733", - "+31(0)180-618733", - "+31 180 547 630", - "+31(0)180-547630", - "+31 88 400 9585", - "+31 88 4009 585", - "+31 180 656 250", - "0180 656 250", - "+31 180 845 184", - "+31-180-845184", - "+31 6 48366993", - "+31 6 483 669 93", - "+31 181 611 919", - "0181611919", - "+31 181 614 427", - "0181614427", - "+31 10 419 2822", - "+31-10-4192822", - "+31 15 262 3720", - "015-2623720", - "+31 180 328 008", - "+31 180 32 80 08", - "+31 180 632 383", - "0180632383", - "+31 180 632 688", - "+31 180 632688", - "+31 180 634 556", - "+31 180 634556", - "+31 10 438 1032", - "+31 10 438 10 32", - "+31 85 400 0052", - "+31 85 400 00 52", - "+31 10 416 8020", - "+31 10 416 80 20", - "+31 10 416 0888", - "+31 10 416 08 88", - "+31 10 237 3391", - "+31 (0)10-2373391", - "+31 10 416 5661", - "+31 ( 0)10 4165661", - "+31 10 223 2422", - "010 – 223 2422", - "+31 10 767 0089", - "+31 (0)10 7670089", - "+31 10 501 7410", - "+31 10 501 74 10", - "+31 10 410 0862", - "+31104100862", - "+31 10 501 7884", - "+31 10 501 78 84", - "+31 10 501 2034", - "+31 10 5012034", - "+31 10 501 7330", - "+31 10 5017330", - "+31 10 737 0865", - "+31-10-7370865", - "+31 140182", - "14 0182", - "+31 182 743 400", - "+31(0)182-743400", - "+31 10 222 2657", - "+31102222657", - "+31 183 567 802", - "0183-567802", - "+31 183 216 600", - "+31183216600", - "+31 10 455 6256", - "+31104556256", - "+31 10 709 5039", - "+31-10-7095039", - "+31 10 455 3472", - "+31 10 4553472", - "+31 10 210 8630", - "+31102108630", - "+31 6 58816146", - "+31 6 58 81 61 46", - "+31 182 686 800", - "+31182686800", - "+31 88 253 1950", - "+31 88 2531950", - "+31 6 51879161", - "+31 6 51 87 91 61", - "+31 10 220 7513", - "+31 10 2207513", - "+31 900 0933", - "+31 900 – 0933", - "+31 10 484 8307", - "+31 10 4848307", - "+31 10 435 0750", - "+31(0)10 - 435 07 50", - "+31 10 232 7100", - "+31-10-2327100", - "+31 10 460 2050", - "+3110 460 2050", - "+31 10 495 1877", - "+31 10 4951877", - "+31 88 712 6500", - "+31 88 - 712 65 00", - "+31 10 294 0857", - "+31 10 294 08 57", - "+31 10 490 5757", - "+31-10-490 5757", - "+31 10 351 0051", - "0103510051", - "+31 10 434 2162", - "+31 10 4342162", - "+31 10 435 3060", - "010-4353060", - "+31 10 434 2093", - "+31 10 434 20 93", - "+31 10 470 7263", - "+31 10 470 72 63", - "+31 10 313 0067", - "+31 10 3130067", - "+31 10 474 5964", - "+31 104 745 964", - "+31 10 785 8302", - "+31 10 7858302", - "+31 10 470 5492", - "+31 10 470 54 92", - "+31 88 244 1857", - "+31 88-2441857", - "+31 182 532 000", - "+31 (0)182 532000", - "+31 10 455 6677", - "+31104556677", - "+31 10 229 8901", - "0102298901", - "+31 10 474 2646", - "+31 10 4742646", - "+31 10 261 3260", - "+31 10 2613260", - "+31 10 474 0800", - "+31 10 4740800", - "+31 10 474 5193", - "+31 10 4745193", - "+31 70 315 2500", - "+31-703152500", - "+31 10 450 8962", - "+31104508962", - "+31 10 284 0584", - "+31102840584", - "+31 10 227 0288", - "+31102270288", - "+31 10 288 9939", - "+3110 288 99 39", - "+31 6 23955535", - "+31623955535", - "+31 10 458 2740", - "+3110 - 4582740", - "+31 10 458 1293", - "+31104581293", - "+31 10 202 5846", - "010-2025846", - "+31 10 288 1111", - "+31 10 2881111", - "+31 10 202 1402", - "010-2021402", - "+31 10 284 9466", - "010-2849466", - "+31 10 288 0461", - "010-2880461", - "+31 10 226 1962", - "010-2261962", - "+31 88 664 3856", - "088-6643856", - "+31 10 226 3868", - "010-2263868", - "+31 10 244 9052", - "010-2449052", - "+31 10 412 3369", - "010-4123369", - "+31 10 303 0833", - "010-3030833", - "+31 10 303 4000", - "010-3034000", - "+31 10 413 0755", - "010-4130755", - "+31 10 206 4700", - "010-2064700", - "+31 10 242 1620", - "+31 10 2421620", - "+31 10 451 2200", - "010-4512200", - "+31 88 324 5460", - "088-3245460", - "+31 10 240 2111", - "+31 10 2402111", - "+31 10 822 2379", - "+31 10 822 23 79", - "+31 10 242 5007", - "010-2425007", - "+31 10 458 1144", - "010-4581144", - "+31 6 44504578", - "06-44504578", - "+31 10 442 4000", - "010-4424000", - "+31 10 451 2113", - "010-4512113", - "+31 10 235 4446", - "010-2354446", - "+31 10 820 2240", - "010 820 2240", - "+31 10 447 9900", - "+31 10 447 99 00", - "+31 10 409 0060", - "010-4090060", - "+31 6 16618209", - "06-16618209", - "+31 10 447 3013", - "+31104473013", - "+31 10 202 0534", - "+31 10 2020534", - "+31 10 440 8800", - "+31104408800", - "+31 10 286 3999", - "+31102863999", - "+31 10 455 7670", - "+31104557670", - "+31 10 455 5750", - "+31 10 4555750", - "+31 10 202 2257", - "+31102022257", - "+31 800 4446676", - "0800-4446676", - "+31 10 470 8110", - "+31 10 4708110", - "+31 10 247 7003", - "+31 10 2477003", - "+31 10 470 5894", - "+31 10 4705894", - "+31 10 449 2222", - "+31 10 4492222", - "+31 10 470 3141", - "+31 10 4703141", - "+31 10 220 3119", - "+31(0)10-2203119", - "+31 73 518 7084", - "+31(0)73-5187084", - "+31 10 455 9376", - "+31(0)10-4559376", - "+31 10 251 9709", - "+31(0)102519709", - "+31 10 251 8519", - "+31(0)10-2518519", - "+31 10 455 9435", - "+31(0)10-4559435", - "+31 10 455 9405", - "+31(0)10-4559405", - "+31 10 420 3911", - "+31(0)104203911", - "+31 10 210 9211", - "+31(0)10-2109211", - "+31 10 720 0956", - "+31(0)10-7200956", - "+31 10 228 0836", - "+31-10-2280836", - "+31 10 209 4636", - "010-209 46 36", - "+31 10 286 6060", - "010 - 2866060", - "+31 88 028 0304", - "088-0280304", - "+31 10 456 1299", - "010 - 4561299", - "+31 10 286 0469", - "+31 10 2860469", - "+31 900 0555", - "0900-0555", - "+31 10 455 2000", - "010 - 4552000", - "+31 10 286 0964", - "010- 286 0964", - "+31 10 307 6200", - "+31 103076200", - "+31 10 286 3888", - "010 - 2863888", - "+31 10 456 3529", - "010-456 35 29", - "+31 900 1988", - "0900-1988", - "+31 88 655 0320", - "+31 (0)88 6550320", - "+31 88 183 2001", - "+31 88 183 20 01", - "+31 10 421 0704", - "+31(0)10-4210704", - "+31 88 348 9000", - "+31 88 348 90 00", - "+31 88 008 8188", - "+31 (0)88 0088188", - "+31 85 077 0707", - "+31 85 0770707", - "+31 10 208 5555", - "+31 (0)10 – 208 5555", - "+31 10 262 3053", - "+31 102623053", - "+31 10 470 2017", - "+31 10 4702017", - "+31 10 247 0226", - "+31 10 247 02 26", - "+31 10 470 0868", - "+31 10 4700868", - "+31 10 471 4626", - "+31 10 4714626", - "+31 10 247 7204", - "+31 10 2477204", - "+31 10 227 1922", - "+3110 227 1922", - "+31 10 442 5444", - "+31 (0) 10 442 54 44", - "+31 10 442 3775", - "+31 10 4423775", - "+31 10 473 4454", - "+31 10 473 44 54", - "+31 10 893 8210", - "+31 10 893 82 10", - "+31 10 245 3555", - "+31 10 2453555", - "+31 10 246 8888", - "+31 10 246 88 88", - "+31 10 473 0600", - "+31 10 4730600", - "+31 10 473 6183", - "+31 10 4736183", - "+31 10 246 5555", - "+31 10 2465555", - "085-400 00 52", - "+31 10 442 4232", - "+31104424232", - "+31 10 442 0600", - "+31104420600", - "+31 10 458 9719", - "+31 010 458 9719", - "+31 10 441 2171", - "010-4412171", - "+31 10 427 0700", - "+31 10 427 07 00", - "+31 900 1238226", - "09001238226", - "+31 180 513 540", - "+31 180 513540", - "+31 182 322 456", - "+31(0)182-322456", - "+31 182 513 415", - "+31(0)182- 513415", - "+31 10 483 8782", - "+31104838782", - "+31 10 483 6400", - "+31 10 483 64 00", - "+31 10 419 5289", - "+31-10-419 52 89", - "+31 10 419 4166", - "+31-10-419 4166", - "+31 10 495 2791", - "+31-10-4952791", - "+31 10 229 1240", - "+31102291240", - "+31 10 481 0308", - "+31 10 4810308", - "+31 10 484 4393", - "+31-10-4844393", - "+31 10 429 0178", - "+31 10 429 01 78", - "+31 10 481 0973", - "+31 10 4810973", - "+31 10 480 7206", - "+31 10 4807206", - "+31 10 842 4987", - "+31-10-842 49 87", - "+31 10 481 3803", - "+31 10 4813803", - "+31 10 410 1467", - "+31 10 410 14 67", - "+31 10 237 2214", - "+31 10 2372214", - "+31 10 480 5236", - "+31 10 480 52 36", - "+31 10 481 3997", - "+31-10- 481 39 97", - "+31 10 481 5149", - "+31 10 481 51 49", - "+31 10 481 9090", - "+31 10 4819090", - "+31 10 481 4577", - "+31104814577", - "+31 10 481 7695", - "+31-10-4817695", - "+31 6 42325706", - "+31 6 423 25 706", - "+31 10 843 0309", - "+31 10 8430309", - "+31 10 870 0800", - "+31 10 870 08 00", - "+31 10 481 3189", - "+31 10 4813189", - "+31 10 485 1648", - "+31-10-485 16 48", - "+31 6 45076044", - "+31-6-450 760 44", - "+31 10 795 4714", - "+31-10-79 54 714", - "+31 10 303 1364", - "+31-10-3031364", - "+31 10 230 6157", - "+31-10-230 61 57", - "+31 10 452 0914", - "+31-10-4520914", - "+31 10 484 9303", - "+31 10 4849303", - "+31 10 450 0080", - "0104500080", - "+31 10 451 2512", - "+31104512512", - "+31 10 750 7435", - "010-7507435", - "+31 10 451 2683", - "+31104512683", - "+31 10 737 0366", - "+31107370366", - "+31 10 450 8968", - "+31104508968", - "+31 10 458 3266", - "010-458 32 66", - "+31 10 286 5959", - "+31102865959", - "+31 10 450 7840", - "+31104507840", - "+31 182 507 418", - "0182-507418", - "+31 182 511 785", - "+31(0)182-511785", - "+31 182 511 120", - "+31(0)182-511120", - "+31 182 581 188", - "+31(0)182-581188", - "+31 182 752 134", - "+31(0)182-752134", - "+31 182 521 811", - "+31(0)182-521811", - "+31 182 769 015", - "+31(0)182-769015", - "+31 182 516 414", - "+31(0)182-516414", - "+31 88 770 6068", - "088 - 7706068", - "+31 182 582 749", - "+31(0)182-582749", - "+31 182 523 992", - "+31(0)182-523992", - "+31 182 687 231", - "+31(0)182-687231", - "+31 182 605 695", - "+31(0)182-605695", - "+31 182 785 392", - "+31(0)182-785392", - "+31 182 689 633", - "+31(0)182689633", - "+31 182 786 338", - "+31(0)182-786338", - "+31 182 518 741", - "+31(0)182-518741", - "+31 182 518 736", - "+31(0)182-518736", - "+31 182 521 127", - "+31 (0)182 521127", - "+31 182 516 613", - "+31(0)182-516613", - "+31 182 523 334", - "+31 (0) 182523334", - "+31 182 516 033", - "+31(0)182-516033", - "+31 182 514 110", - "+31(0)182514110", - "+31 182 513 217", - "+31 182513217", - "+31 180 523 356", - "+31 (0)180 523356", - "+31 6 22992694", - "06-22992694", - "+31 182 512 391", - "+31(0)182-512391", - "+31 182 516 082", - "+31(0)182-516082", - "+31 182 512 576", - "+31(0)182-512576", - "+31 182 788 112", - "+31 (0)182 788112", - "+31 182 528 097", - "0182-528097", - "+31 182 599 573", - "+31(0)182-599573", - "+31 182 549 805", - "+31(0)182-549 805", - "+31 182 507 184", - "+31(0)182-507184", - "+31 182 820 389", - "+31(0)182-820389", - "+31 182 711 590", - "+31(0)182-711590", - "+31 182 689 056", - "+31(0)182-689056", - "+31 182 512 360", - "+31(0)182-512360", - "+31 6 15386063", - "+31 (0)6 15386063", - "+31 182 523 120", - "+31(0)182-523120", - "+31 182 672 499", - "+31(0)182-672499", - "+31 182 581 980", - "+31 (0)182 581980", - "+31 6 24750842", - "+31(0)6-24750842", - "+31 182 514 269", - "+31(0)182-514269", - "+31 182 752 006", - "+31(0)182-752006", - "+31 182 527 644", - "+31(0)182-527644", - "+31 6 10833582", - "06-10833582", - "+31 182 518 320", - "+31(0)182-518320", - "+31 182 359 039", - "+31(0)182-359039", - "+31 182 686 976", - "+31 182 686976", - "+31 182 232 024", - "+31 (0)182 – 23 20 24", - "+31 182 605 844", - "+31(0)182-605844", - "+31 182 523 053", - "+31 182 523053", - "+31 182 605 177", - "+31(0)182-605177", - "+31 182 515 888", - "+31(0)182-515888", - "+31 182 507 265", - "+31(0)182-507265", - "+31 182 232 036", - "+31(0)182-232036", - "+31 182 512 593", - "+31(0)182-512 593", - "+31 182 670 650", - "+31(0)182-670650", - "+31 182 504 411", - "+31(0)182-504411", - "+31 182 512 421", - "+31(0)182-512421", - "+31 182 599 787", - "+31 (0)182 599787", - "+31 182 769 066", - "+31(0)182-769066", - "+31 182 527 168", - "+31 (0)182 527168", - "+31 6 14579535", - "+31(0)6-14579535", - "+31 182 529 733", - "+31(0)182-529733", - "+31 182 769 103", - "+31 (0)182 769103", - "+31 182 729 112", - "+31(0)182-729112", - "+31 88 322 5139", - "+31(0)88-3225139", - "+31 182 528 007", - "+31(0)182-528007", - "+31 182 580 313", - "+31(0)182-580313", - "+31 182 599 495", - "+31(0)182-599495", - "+31 182 525 900", - "+31(0)182-525900", - "+31 182 515 192", - "+31(0)182 515192", - "+31 182 860 004", - "+31(0)182-860004", - "+31 6 49423660", - "+31(0)6-49423660", - "+31 182 550 822", - "+31(0)182 55 08 22", - "+31 182 767 004", - "+31(0)182-767004", - "+31 182 599 866", - "+31(0)182-599866", - "+31 182 551 333", - "+31(0)182-551333", - "+31 182 752 003", - "+31(0)18-2752003", - "+31 182 581 958", - "+31 (0)182 581958", - "+31 182 524 894", - "+31(0)182-524894", - "+31 182 785 714", - "+31(0)182 785 714", - "+31 182 605 655", - "+31 (0)182 605655", - "+31 182 769 105", - "+31(0)182-769105", - "+31 182 516 595", - "+31(0)182-516595", - "+31 182 603 085", - "0182 60 30 85", - "+31 182 602 994", - "+31(0)182 602 994", - "+31 182 528 470", - "+31(0)182 - 52 84 70", - "+31 182 687 216", - "+31(0)182-687216", - "+31 182 760 176", - "+31(0)182-760176", - "+31 182 528 738", - "+31(0)182-528738", - "+31 182 811 812", - "+31(0)182-811812", - "+31 182 585 657", - "+31(0)182-585657", - "+31 182 529 870", - "+31(0)182-529870", - "+31 182 752 129", - "+31(0)182-752129", - "+31 182 517 126", - "+31(0)182-517126", - "+31 182 515 196", - "+31(0)182-515196", - "+31 182 582 718", - "+31(0)182-582718", - "+31 182 527 969", - "+31(0)182-527969", - "+31 182 513 017", - "+31(0)182-513017", - "+31 182 522 819", - "+31(0)182-522819", - "+31 182 769 147", - "+31(0)182-769147", - "+31 182 522 433", - "+31(0)182-522433", - "+31 182 583 011", - "+31 (0)182 583011", - "+31 182 521 074", - "+31 (0)182 521074", - "+31 182 513 862", - "+31(0)182-513862", - "+31 182 549 626", - "+31 (0)182 549626", - "+31 182 599 995", - "+31(0)182 599 995", - "+31 182 518 100", - "+31(0)182-518100", - "+31 182 524 466", - "+31(0)182-524466", - "+31 182 581 429", - "+31(0)182-581429", - "+31 182 514 131", - "+31(0)182-514131", - "+31 182 513 260", - "+31182513260", - "+31 10 290 7732", - "+31 10 2907732", - "+31 10 290 8008", - "+31 10 2908008", - "+31 182 751 859", - "+31 (0)182 751859", - "+31 182 510 523", - "0182 - 510 523", - "+31 10 291 6161", - "+31102916161", - "+31 10 240 4600", - "+31-10-2404600", - "+31 6 23852381", - "+31623852381", - "+31 10 210 3254", - "+31102103254", - "+31 10 410 2300", - "+31104102300", - "+31 10 229 3915", - "+31102293915", - "+31 6 34009311", - "+31634009311", - "+31 10 341 4428", - "+31103414428", - "+31 10 737 0614", - "+31107370614", - "+31 10 737 1941", - "+31107371941", - "+31 10 481 1055", - "+31104811055", - "+31 10 480 0781", - "+31104800781", - "+31 10 480 4305", - "+31104804305", - "+31 10 210 2913", - "+31102102913", - "+31 10 481 6698", - "+31104816698", - "+31 10 481 1650", - "+31 10 48 11 650", - "+31 10 480 8763", - "+31 10 4808763", - "+31 10 751 2445", - "+31 10 751 24 45", - "+31 10 210 3536", - "+31 10 2103536", - "+31 6 41174371", - "+31641174371", - "+31 6 36422725", - "+31636422725", - "+31 10 245 7145", - "+31102457145", - "+31 10 458 0008", - "+31 10 4580008", - "+31 10 291 6770", - "+31 10 2916770", - "+31 10 419 2884", - "+31 10 4192884", - "+31 10 415 8805", - "(010) 415 88 05", - "+31 10 462 0010", - "+31 104 620 010", - "+31 10 737 0239", - "+31 10 7370239", - "+31 10 245 1800", - "010 - 245 1800", - "+31 10 415 4422", - "+31 10 415 44 22", - "+31 10 269 6302", - "010-2696302", - "+31 10 429 1525", - "+31 10 4291525", - "+31 10 437 1016", - "+31(0)10-4371016", - "+31 10 450 3015", - "+31104503015", - "+31 10 451 7107", - "+31104517107", - "+31 10 451 2336", - "+31104512336", - "+31 6 47898182", - "+31647898182", - "+31 10 450 6066", - "+31104506066", - "+31 10 226 3802", - "010 226 3802", - "+31 6 51799199", - "+31 651 799 199", - "+31 6 53285383", - "+31 6 53 28 53 83", - "+31 10 273 4106", - "+31102734106", - "+31 6 28337154", - "+31628337154", - "+31 10 432 4955", - "+31 10 432 49 55", - "+31 6 24768557", - "+31-6-24768557", - "+31 6 87360204", - "+31-6-87 360 204", - "+31 6 51842373", - "+31 651842373", - "+31 10 741 0420", - "+31 10 7410420", - "+31 10 419 6679", - "+31-10-4196679", - "+31 10 417 4000", - "+31 10 4174000", - "+31 10 760 0065", - "+31 10 760 00 65", - "+31 10 766 1766", - "010 766 1766", - "+31 88 810 0899", - "+31 88 810 08 99", - "+31 10 483 1441", - "+31 10 483 14 41", - "+31 10 483 0110", - "+31 10 4830110", - "+31 10 482 1423", - "+31 10 48 21 423", - "+31 10 479 9631", - "+31 10 479 96 31", - "+31 10 292 3630", - "+31 10 292 36 30", - "+31 10 479 7800", - "+31 10 479 78 00", - "+31 6 17167242", - "+31617167242", - "+31 10 479 0500", - "+31 10 4790500", - "+31 10 482 6427", - "+31 10 48 26 427", - "+31 10 437 3582", - "+31 10 4373582", - "+31 10 479 3853", - "+31104793853", - "+31 10 292 7523", - "+31 10 2927523", - "+31 6 38933334", - "+31 6 389 3333 4", - "+31 10 483 6363", - "+31104836363", - "+31 10 483 1044", - "+31104831044", - "+31 10 482 6228", - "+31104826228", - "+31 10 479 4502", - "+31104794502", - "+31 10 482 2766", - "+31104822766", - "+31 10 310 6282", - "+31103106282", - "+31 6 22255101", - "0622255101", - "+31 182 300 383", - "+31 (0)182 300383", - "+31 10 466 1066", - "010-4661066", - "+31 10 413 2625", - "+31 10 413 26 25", - "+31 10 300 7135", - "+31 10 300 71 35", - "+31 10 244 5777", - "+31 10 24 45 777", - "+31 10 717 1805", - "+31107171805", - "+31 10 476 3015", - "0104763015", - "+31 10 307 3142", - "+31103073142", - "+31 10 484 4400", - "010 484 4400", - "+31 10 433 2241", - "0104332241", - "+31 10 213 6300", - "010 213 6300", - "+31 180 757 171", - "+31180757171", - "+31 182 519 339", - "0182-519339", - "+31 182 518 995", - "0182-518995", - "+31 182 525 215", - "+31 (0)182 525215", - "+31 183 712 911", - "+31 183 712911", - "+31 182 397 160", - "0182 397160", - "+31 10 415 8388", - "010 - 4158388", - "+31 10 476 5558", - "0104765558", - "+31 182 516 349", - "+31 182 516349", - "+31 182 541 800", - "+31(0)182-541800", - "+31 182 372 623", - "+31(0)182 372623", - "+31 182 686 807", - "+31(0)182 686807", - "+31 182 541 599", - "+31(0)182 541599", - "+31 182 820 100", - "+31 (0)182 820100", - "+31 182 684 888", - "+31(0)182 684888", - "+31 183 564 557", - "0031183564557", - "+31 182 379 375", - "+31 (0) 182 379 375", - "+31 10 425 7579", - "010 - 425 75 79", - "+31 10 477 2395", - "+31-10-4772395", - "+31 10 476 4141", - "+31 010 476 4141", - "+31 10 440 1660", - "+31 10 440 16 60", - "+31 183 589 524", - "+31 183589524", - "+31 183 581 308", - "+31 183 58 13 08", - "+31 184 659 011", - "+31 184659011", - "+31 184 654 127", - "+31184654127", - "+31 180 312 706", - "0180312706", - "+31 10 242 9910", - "+31102429910", - "+31 10 224 8500", - "+31 (0) 10 2248500", - "+31 88 811 6600", - "+31 (0) 88 811 6600", - "+31 900 8844", - "09008844", - "+31 10 240 9999", - "+31 (0)10 2409999", - "+31 10 212 1665", - "+31102121665", - "+31 10 412 3598", - "+31 10 4123598", - "+31 182 526 373", - "+31(0)182-526373", - "+31 10 453 7200", - "+31 10 4537200", - "+31 10 225 0705", - "+31102250705", - "+31 10 413 5454", - "+31-10-4135454", - "+31 10 452 2704", - "+31 10 452 27 04", - "+31 10 411 0755", - "+31 10 411 07 55", - "+31 10 414 2692", - "+31 10 4142692", - "+31 10 412 6910", - "+31 10 4126910", - "+31 10 412 4431", - "+31 10 4124431", - "+31 10 414 1404", - "+31 010 414 1404", - "+31 10 503 6327", - "+31 10 503 63 27", - "+31 10 236 1389", - "+31 (0)102361389", - "+31 10 466 0486", - "+31104660486", - "+31 6 87286120", - "+31 6 87 28 61 20", - "+31 10 411 1411", - "+3110 411 1411", - "+31 10 466 9630", - "+31104669630", - "+31 10 422 0000", - "+31104220000", - "+31 10 737 1383", - "+31 10 737 13 83", - "+31 10 841 7961", - "+31 10-8417961", - "+31 10 422 7855", - "010-4227855", - "+31 10 422 2148", - "+31104222148", - "+31 10 418 1500", - "+31 10 4181500", - "+31 10 422 7477", - "+31104227477", - "+31 10 422 4375", - "010-4224375", - "+31 10 418 1883", - "+31 10 4181883", - "+31 10 300 7193", - "+31 10 300 71 93", - "+31 10 418 1364", - "+31 10 418 13 64", - "+31 180 516 233", - "+31 18 0516 233", - "+31 180 511 755", - "0180-511755", - "+31 182 743 061", - "0182-743061", - "+31 182 351 331", - "+31 182 351331", - "+31 180 661 551", - "+31-180-661551", - "+31 6 26739190", - "+31626739190", - "+31 180 665 644", - "+31-180-665644", - "+31 6 30037885", - "+31-6-3003 7885", - "+31 6 51261768", - "06 51261768", - "+31 78 691 2294", - "+31 78 6912294", - "+31 78 693 1777", - "+31786931777", - "+31 78 691 3488", - "+31 78 6913488", - "+31 78 691 8050", - "+31 78 691 80 50", - "+31 78 615 3531", - "+31 78 6153531", - "+31 180 472 657", - "0180472657", - "+31 800 8702020", - "08008702020", - "+31 78 691 7656", - "+31 786917656", - "+31 10 249 0632", - "+31 10 2490632", - "+31 10 316 0548", - "+31 10 3160548", - "+31 6 41224634", - "+31 6 4122 4634", - "+31 182 381 001", - "0182-381001", - "+31 182 382 371", - "+31 182 382371", - "+31 182 383 099", - "+31182 383099", - "+31 182 786 967", - "+31182786967", - "+31 88 007 0172", - "+31880070172", - "+31 182 382 959", - "+31182 382959", - "+31 78 693 4525", - "+31786934525", - "+31 78 691 8653", - "+31786918653", - "+31 182 351 617", - "0182 351 617", - "+31 182 346 600", - "+31 (0)182 346600", - "+31 182 342 548", - "+31 (0)182 342548", - "+31 180 681 607", - "31-180-681607", - "+31 180 681 581", - "+31 180 681581", - "+31 180 681 992", - "+31 180 681992", - "+31 6 14762739", - "06 1476 2739", - "+31 180 660 970", - "0180 - 660 970", - "+31 183 582 175", - "+31 183 582175", - "+31 10 223 7860", - "+31 10 - 223 78 60", - "+31 10 790 0130", - "+31 10 - 79 00 130", - "+31 10 477 5802", - "+31104775802", - "+31 10 444 5690", - "0031 (0)10 4445690", - "+31 10 762 0711", - "+31107620711", - "+31 10 213 0853", - "+31-10-213 08 53", - "+31 15 256 4330", - "+31(0)15-2564330", - "+31 6 28364838", - "0628364838", - "+31 10 203 8923", - "010 203 89 23", - "+31 10 307 3474", - "010 - 3073474", - "+31 6 84350641", - "0684350641", - "+31 10 414 4698", - "010-4144698", - "+31 10 213 0200", - "010-2130200", - "+31 6 12899656", - "+31-6-12899656", - "+31 10 414 7479", - "+31-10-414 74 79", - "+31 10 213 3846", - "+31-10-213 38 46", - "+31 10 414 0326", - "010 414 0326", - "+31 10 213 2687", - "010 - 21 326 87", - "+31 10 413 3000", - "010-4133000", - "+31 10 206 5151", - "010 2065151", - "+31 10 413 9770", - "010-4139770", - "+31 10 473 7674", - "+31 10 4737674", - "+31 6 42123398", - "+31642123398", - "+31 15 760 0090", - "+31157600090", - "+31 10 249 9028", - "+31 10 2499028", - "+31 10 474 8491", - "+31 10 4748491", - "+31 10 474 3822", - "+31 10 4743822", - "+31 15 212 9277", - "+31 15 212 92 77", - "+31 15 212 1568", - "+31 15 2121568", - "+31 6 45467545", - "+31 6 45 46 75 45", - "+31 6 26012827", - "+31 6 2601 2827", - "+31 15 214 6523", - "+31 15 2146523", - "+31 15 213 5616", - "+31 15 - 213 56 16", - "+31 15 285 2125", - "+31 15 285 21 25", - "+31 6 24136805", - "+31 6 241 36 805", - "+31 15 219 0190", - "+31 15 2190190", - "+31 15 212 3689", - "+31 15 212 36 89", - "+31 6 40566262", - "+ 31 6 40 56 6262", - "+31 15 750 5142", - "+31 15 7505142", - "+31 6 18508270", - "+31 618508270", - "+31 88 269 3150", - "+31 88 269 31 50", - "+31 15 212 6959", - "+31 15 2126959", - "+31 15 257 5542", - "+31 15 2575542", - "+31 10 720 0945", - "+31-10-7200945", - "+31 10 414 0025", - "+31-10-4140025", - "+31 10 413 8465", - "+31-10-413 84 65", - "+31 15 213 4548", - "+31 15 2134548", - "+31 15 369 9541", - "0153699541", - "+31 15 369 3832", - "+31 15 3693832", - "+31 10 229 2614", - "+31 10 229 26 14", - "+31 6 14884345", - "+31-6-14884345", - "+31 10 471 1920", - "+31104711920", - "+31 15 820 0269", - "+31 15 8200 269", - "+31 10 483 1575", - "+31-10-4831575", - "+31 184 678 043", - "+31184678043", - "+31 6 50670495", - "06 506 704 95", - "+31 10 438 1744", - "+31 10 438 17 44", - "+31 10 479 0857", - "+31-10-4790857", - "+31 10 483 2293", - "+31-10-4832293", - "+31 10 482 0867", - "+31-10-4820867", - "+31 10 444 4603", - "+31-10-4444603", - "+31 10 482 8422", - "+31-10-4828422", - "+31 10 482 6464", - "+31-10–4826464", - "+31 10 482 7369", - "+31-10-4827369", - "+31 10 763 1251", - "0107631251", - "+31 15 212 3565", - "+31 15 2123565", - "+31 10 752 3079", - "+31 10 752 30 79", - "+31 180 518 929", - "+31180518929", - "+31 15 213 1426", - "+31 15 2131426", - "+31 15 222 0034", - "+31152220034", - "+31 10 462 7783", - "+31104627783", - "+31 10 737 1611", - "+31107371611", - "+31 182 383 282", - "+31(0)182-383282", - "+31 180 410 250", - "+31 180 410250", - "+31 10 450 2433", - "+31 10 4502433", - "+31 10 413 9656", - "+31 (0)10 413 9656", - "+31 180 412 570", - "+31 180 41 25 70", - "+31 10 420 0830", - "+31 (0) 10 4200 830", - "+31 10 495 1199", - "+31-10-495.11.99", - "+31 6 46421700", - "+31-6-46421700", - "+31 180 663 983", - "+31180663983", - "+31 10 485 9078", - "+31 10 48 59 078", - "+31 10 818 4392", - "+31 010 818 4392", - "+31 88 313 4625", - "+31 88 3134625", - "+31 10 202 5633", - "+31-10-2025633", - "+31 15 212 5760", - "+31 15 2125760", - "+31 15 285 5111", - "0152855111", - "+31 10 486 4100", - "+31 10 486 41 00", - "+31 88 256 9201", - "0031 882569201", - "+31 10 426 2584", - "+31 10 4262584", - "+31 15 257 0678", - "+31 15 2570678", - "+31 15 262 8160", - "+31152628160", - "+31 15 212 0162", - "+31 15 2120162", - "+31 10 436 0042", - "+31-10-436 00 42", - "+31 15 261 2442", - "+31 15 261 24 42", - "+31 88 007 0214", - "0880070214", - "+31 15 256 9050", - "0152569050", - "+31 184 681 500", - "+31 184 681500", - "+31 10 477 2071", - "+31 10 4772071", - "+31 10 476 9368", - "0104769368", - "+31 88 650 0000", - "+31886500000", - "+31 15 262 8089", - "0152628089", - "+31 10 765 0396", - "+31107650396", - "+31 10 416 2380", - "+31 (0)10 416 23 80", - "+33 1 52 51 19 30", - "+33 15 2511930", - "+31 6 84113997", - "+31684113997", - "+31 6 26666966", - "0031626666966", - "+31 180 437 778", - "+31180437778", - "+31 10 340 3039", - "+31103403039", - "+31 180 631 111", - "+31 (0)180 631111", - "+31 10 511 0545", - "+310105110545", - "+31 10 786 2909", - "010 786 2909", - "+31 10 741 0099", - "010 – 7410099", - "+31 10 413 9683", - "010 413 96 83", - "+31 10 414 0099", - "+31 (0)10 4140099", - "+31 10 226 5648", - "010-226 56 48", - "+31 15 369 2478", - "+31 15 3692478", - "+31 10 210 5547", - "010 - 210 5547", - "+31 10 236 4550", - "010-2364550", - "+31 10 237 3177", - "010 - 2 373 1 77", - "+31 10 203 6633", - "+31 10 203 66 33", - "+31 6 49887438", - "0649887438", - "+31 6 42019286", - "06 42019286", - "+31 10 310 7952", - "010-3107952", - "+31 6 44192218", - "0644192218", - "+31 6 23739970", - "0623739970", - "+31 10 236 3931", - "+31(0)10 - 236 39 31", - "+31 6 13733805", - "06-13733805", - "+31 10 414 4823", - "010-4144823", - "+31 10 230 7072", - "010- 2307072", - "+31 10 202 6244", - "010 202 62 44", - "+31 10 450 6555", - "+31 10 450 65 55", - "+31 10 258 3381", - "+31 10 2583381", - "+31 10 481 4197", - "+31 10 481 41 97", - "+31 10 425 9033", - "+31 10 4259033", - "+31 10 419 3581", - "+31 10 419 35 81", - "+31 10 419 1166", - "+31 10 419 11 66", - "+31 10 467 1222", - "+31 10 4671222", - "+31 10 222 9747", - "+31 10 2229747", - "+31 180 617 141", - "+31180617141", - "+31 15 261 2772", - "+31 15 2612772", - "+31 180 794 517", - "+31 18 079 4517", - "+31 15 257 1805", - "015 2571805", - "+31 10 261 5300", - "+31 10 2615300", - "+31 10 450 6428", - "0104506428", - "+31 10 410 0125", - "+31104100125", - "+31 15 212 5519", - "+31 (0)15-2125519", - "+31 15 887 9914", - "+31 15 8879914", - "+31 180 612 100", - "+31-180-612100", - "+31 6 81776621", - "+31 6 81 77 66 21", - "+31 180 623 167", - "+31(0)180-623167", - "+31 180 769 035", - "+31(0)180-769035", - "+31 10 413 1167", - "+31 10 4131167", - "+31 10 820 9784", - "0108209784", - "+31 182 514 551", - "+31(0)182-514551", - "+31 182 513 068", - "+31(0)182-513068", - "+31 15 887 1034", - "015 - 8871034", - "+31 10 413 3344", - "0104133344", - "+31 6 24902454", - "+31 624 902 454", - "+31 10 423 3233", - "+31 10 4233 233", - "+31 10 414 3142", - "010 414 31 42", - "+31 10 844 9140", - "+31108449140", - "+31 10 412 6658", - "+31-10-412 66 58", - "+31 6 82802060", - "+31 682802060", - "+31 78 691 9530", - "+31 78 6919530", - "+31 78 691 2428", - "+31 78 6912428", - "+31 10 465 6410", - "+31 10 465 64 10", - "+31 10 485 4015", - "+31104854015", - "+31 10 485 4096", - "+31 (0)10 4854096", - "+31 10 485 7900", - "+31 10 4857900", - "+31 6 24351927", - "+31 (0)6-24351927", - "+31 10 482 8333", - "+31 10 4828333", - "+31 180 511 437", - "+31 180 511437", - "+31 10 245 9455", - "+31 10 2459455", - "+31 10 737 1238", - "+31(0)10-7371238", - "+31 15 364 2016", - "015-3642016", - "+31 15 262 1616", - "015-2621616", - "+31 180 532 880", - "+31(0)180-532880", - "+31 15 364 3787", - "+31 15 36 437 87", - "+31 10 418 7700", - "010-4187700", - "+31 10 285 4141", - "+31102854141", - "+31 10 418 1017", - "010-4181017", - "+31 10 422 6026", - "010-4226026", - "+31 6 46151677", - "+31 6 46 15 16 77", - "+31 15 213 0527", - "+31 15 2130527", - "+31 15 720 0815", - "+31 15 7200815", - "+31 15 214 5335", - "+31 15 214 53 35", - "+31 182 515 457", - "+31(0)182 515457", - "+31 180 851 722", - "+310180851722", - "+31 10 220 6610", - "+31(0)10-2206610", - "+31 6 15118248", - "0615118248", - "+31 10 484 3401", - "+31104843401", - "+31 10 243 0638", - "+31(0)102430638", - "+31 10 226 1347", - "+31 (0)10 22 613 47", - "+31 6 12526790", - "+316 125 26 790", - "+31 10 477 1637", - "+31104771637", - "+31 10 414 7600", - "+31104147600", - "+31 10 293 7171", - "+31102937171", - "+31 10 411 3413", - "+31104113413", - "+31 10 222 3335", - "+31 10 2223335", - "+31 10 737 1219", - "+31 (0)10 737 12 19", - "+31 10 410 2192", - "+31(0)104102192", - "+31 10 237 3444", - "+31102373444", - "+31 10 495 5354", - "+31104955354", - "+31 10 485 5110", - "+31104855110", - "+31 10 419 2758", - "+31104192758", - "+31 10 484 5076", - "+31104845076", - "+31 10 484 5664", - "+31 10 484 56 64", - "+31 6 57477010", - "0031657477010", - "+31 10 414 9710", - "010 - 414 9710", - "+31 6 47214749", - "0647214749", - "+31 10 426 0822", - "+31104260822", - "+31 6 13142506", - "+31 06 1314 2506", - "+31 180 621 400", - "+31180621400", - "+31 180 532 361", - "+31180532361", - "+31 10 213 0995", - "+31 10 2130995", - "+31 6 51344771", - "06-51344771", - "+31 10 200 4069", - "010 200 4069", - "+31 182 581 730", - "+31 (0)182 581730", - "+31 10 850 0678", - "0108500678", - "+31 10 213 5308", - "+31 10 2135308", - "+31 10 213 6596", - "+31-10-2136596", - "+31 10 870 1810", - "+31(0)10-8701810", - "+31 10 420 7836", - "+31(0)10-4207836", - "+31 10 293 0808", - "+31102930808", - "+31 10 737 0031", - "+31-10-737 0031", - "+31 10 410 3208", - "+31 10 410 32 08", - "+31 10 304 6063", - "+31 (0) 10 304 6063", - "+31 10 419 0402", - "+31-10-4190402", - "+31 10 290 0381", - "010 29 00 381", - "+31 15 369 0632", - "+31 15 3690632", - "+31 10 310 6284", - "+31-10-3106284", - "+319001238226", - "+31 10 483 2511", - "+31 10 483 25 11", - "+31 10 206 7333", - "+31 10 206 73 33", - "+31 88 011 4000", - "+31 (0) 88 011 4000", - "+31 10 737 0011", - "010 - 7370011", - "+31 6 30759318", - "+31 6 3075 9318", - "+31 10 766 0077", - "+31 010-7660077", - "+31 10 474 6013", - "+31104746013", - "+31 10 474 5714", - "+31104745714", - "+31 10 447 0870", - "010 – 4470 870", - "+31 15 214 1799", - "+31 15 2141799", - "+31 10 480 3615", - "+31-10-480 36 15", - "+31 10 203 7920", - "0102037920", - "+31 184 651 407", - "+31 184 651407", - "+31 10 486 1102", - "+31 10 4861102", - "+31 182 605 665", - "+31 182 605665", - "+31 10 521 4183", - "+31 10 521 41 83", - "+31 10 742 1920", - "+31-10-7421920", - "+31 10 420 0430", - "+31-10-420 04 30", - "+31 800 2352249", - "+318002352249", - "+31 10 452 9912", - "+31 10 452 99 12", - "+31 10 483 8084", - "+31-10-4838084", - "+31 6 25237375", - "+31625237375", - "+31 15 303 0055", - "+31153030055", - "+31 15 256 5100", - "+31 15 256 51 00", - "+31 15 306 0125", - "015-3060125", - "+31 6 40963431", - "+31 (0)6 40963431", - "+31 15 213 5866", - "+31 15 2135866", - "+31 15 212 6012", - "+31 15 212 60 12", - "+31 88 798 5132", - "+31 88 7985132", - "+31 6 87971860", - "+31 687971860", - "+31 15 889 3041", - "+31 15 8893041", - "+31 15 261 5731", - "+31 15 2615731", - "+31 182 514 792", - "+31 (0)182 514792", - "+31 183 625 825", - "+31183625825", - "+31 6 19480499", - "+31 (0)6 19480499", - "+31 6 57198182", - "+31 (0)6 57198182", - "+31 15 212 9492", - "+31 15 2129492", - "+31 78 691 3054", - "+31 78 6913054", - "+31 180 660 200", - "+31-180-660200", - "+31 182 580 850", - "+31(0)182-580850", - "+31 10 473 4629", - "+31 10 4734629", - "+31 15 516 0905", - "+31 15 5160905", - "+31 10 486 6529", - "+31 10 4866529", - "+31 10 467 3747", - "+31 10 4673747", - "+31 6 84418496", - "+31 (0) 684 418 496", - "+31 6 81222281", - "+31 681 222 281", - "+31 10 426 7675", - "+31 104267675", - "+31 15 261 0277", - "+31 15 2610277", - "+31 6 41502971", - "+31 641502971", - "+31 10 237 4755", - "+31102374755", - "+31 10 268 8148", - "+31 10 2688148", - "+31 10 292 9379", - "+31-10-2929379", - "+31 15 284 1000", - "+31 15 2841000", - "+31 10 482 3466", - "+31 10 482 34 66", - "+31 6 31967042", - "+31 631967042", - "+31 181 442 244", - "+31181442244", - "+31 15 257 8617", - "+31 15 257 86 17", - "+31 10 214 1624", - "+31102141624", - "+31 10 310 6288", - "+31 10 3106288", - "+31 10 841 5666", - "+31 10 841 56 66", - "+31 10 737 1589", - "+31 10 737 15 89", - "+31 10 230 7177", - "+31 10 230 71 77", - "+31 78 620 3000", - "+31 78 6203000", - "+31 88 313 0000", - "+31 88 313 00 00", - "+31 15 213 3433", - "+31152133433", - "+31 183 581 855", - "+31 183 581855", - "+31 183 589 288", - "+31 183 589288", - "+31 183 581 578", - "+31 183 581578", - "+31 88 542 6363", - "+31885426363", - "+31 15 219 0092", - "+31 152190092", - "+31 184 692 770", - "+31 184 692770", - "+31 15 212 2793", - "+31152122793", - "+31 15 212 0948", - "+31 15 2120948", - "+31 78 684 6930", - "+31-78-6846930", - "+31 15 887 9727", - "+31 158879727", - "+31 78 615 1400", - "+31 78 6151400", - "+31 15 271 3050", - "015-2713050", - "+31 10 266 1111", - "010-2661111", - "+31 10 242 8811", - "010-2428811", - "+31 10 411 6330", - "010 4116330", - "+31 10 264 0440", - "010-2640440", - "+31 10 288 7358", - "010-2887358", - "+31 10 511 9555", - "010-5119555", - "+31 10 202 2182", - "010-2022182", - "+31 10 288 1128", - "010-2881128", - "+31 10 310 0701", - "+31103100701", - "+31 10 316 6610", - "+31 10 3166610", - "+31 10 240 9215", - "+31 10 2409215", - "+31 15 257 3488", - "+31 15 2573488", - "+31 15 361 0000", - "+31 15 3610000", - "+31 15 257 0625", - "+31 15 257 06 25", - "+31 15 256 9968", - "+31 15 2569968", - "+31 15 212 2125", - "+31 (0)15 2122125", - "+31 15 284 7999", - "+31152847999", - "+31 10 427 8199", - "+31 10 427 81 99", - "+31 15 278 2442", - "+31 15 278 24 42", - "+31 10 286 1770", - "+31 10 2861770", - "+31 10 413 5498", - "+31 (0)10 4135498", - "+31 15 215 8593", - "+31 15 2158593", - "+31 10 438 6965", - "+31 10 4386965", - "+31 10 438 2505", - "+31 10 4382505", - "+31 10 416 1488", - "+31 10 4161488", - "+31 10 310 7910", - "+31 10 3107910", - "+31 15 278 3042", - "+31 (0)15 2783042", - "+31 10 261 3338", - "+31102613338", - "+31 6 38937083", - "+31-6 38937083", - "+31 182 513 096", - "+31 182 513096", - "+31 6 39 60 56 50", - "+31 6 24571522", - "0624571522", - "+31 15 214 0177", - "+31 (0)15 214 01 77", - "+31 6 46105406", - "0646105406", - "+31 10 737 0845", - "010 7370845", - "+31 10 484 0200", - "+31 10 4840200", - "+31 10 427 0424", - "+31 10 4270424", - "+31 10 484 5724", - "+31 10 484 57 24", - "+31 10 265 7517", - "010 265 75 17", - "+31 6 84382677", - "+31 6 84 38 26 77", - "+31 10 402 6200", - "+31 10 4026200", - "+31 6 22346896", - "06-22346896", - "010 - 226 38 68", - "+31 6 28328713", - "+31 6 2832 8713", - "+31 6 22321349", - "+31 6 2232 1349", - "+31 183 581 214", - "+31 183 581214", - "+31 10 415 3247", - "+31 10 4153247", - "+31 88 775 5444", - "+31 8 8775 5444", - "+31 182 517 800", - "+31 182 517800", - "+31 182 210 211", - "+31182210211", - "+31 255 346 417", - "+31255346417", - "+31 10 262 1000", - "+31 10 2621000", - "+31 6 51873097", - "+31 651873097", - "+31 70 320 7071", - "+31 70 3207071", - "+31 6 51446858", - "+31 651446858", - "+31 85 303 2813", - "+31 85 3032 813", - "+31 6 26199977", - "+31626199977", - "+31 6 25389037", - "+310625389037", - "+31 10 224 6224", - "+31 10 2246224", - "+31 6 14378613", - "+31 6 143 78 613", - "+31 10 483 5578", - "+31 10 483 55 78", - "+31 10 818 4219", - "+31 10 818 42 19", - "+31 10 785 1945", - "+31-10-7851945", - "+31 10 438 1805", - "010-4381805", - "+31 10 438 8118", - "+31-10-4388118", - "+31 10 438 3999", - "+31-10-4383999", - "+31 182 221 018", - "+31 182-221018", - "+31 10 251 8076", - "+31 10 251 80 76", - "+31 10 422 3517", - "+31 10 4223517", - "+31 182 514 702", - "+31 (0)182 - 514 702", - "+31 182 513 359", - "0182-513359", - "+31 6 10928291", - "+31 6 109 28 291", - "+31 6 53857069", - "+31 6 53 857 069", - "+31 6 12032331", - "0031612032331", - "+31 10 280 0136", - "+31 10 2800136", - "+31 6 84618496", - "+31 684 618 496", - "+31 85 130 9264", - "+31 85 1309 264", - "+31 10 412 5484", - "+31 10 4125484", - "+31180472657", - "+31 182 583 162", - "+31(0)182-583162", - "+31 10 200 4498", - "010 200 44 98", - "+31 10 268 0905", - "010 268 0905", - "+31 10 200 4295", - "010-200 4295", - "+31 15 2131000", - "+31 10 475 5255", - "+31104755255", - "+31 10 285 9966", - "+31102859966", - "+31 85 020 0196", - "+31 850200196", - "+31 15 212 3574", - "+31 15 2123574", - "+31 15 214 3577", - "+31 152143577", - "+31 10 820 8787", - "010 820 8787", - "+31 10 450 3950", - "010 - 450 39 50", - "+31 85 784 7636", - "+31 85 7847636", - "+31 15 744 0130", - "+31157440130", - "+31 15 212 0619", - "+31 152120619", - "+31 15 212 2123", - "+31 15 21 22 123", - "+31 15 260 6227", - "+31 (0)15 260 6227", - "+31 15 251 2840", - "+31152512840", - "+31 152002181", - "+31 10 229 1425", - "010 229 1425", - "+31 79 763 2019", - "+31 79 7632019", - "+31 10 307 5801", - "+31.10.3075801" - ], - "route": [ - "bicycle" - ], - "office": [ - "estate_agent", - "it", - "company", - "government", - "travel_agent", - "employment_agency", - "diplomatic", - "advertising_agency", - "catering", - "accountant", - "therapist", - "lawyer", - "yes", - "engineering_consultancy", - "newspaper", - "architect", - "web_design", - "design", - "foundation", - "educational_institution", - "research", - "camping", - "association", - "union", - "coworking" - ], - "amenity": [ - "driving_school", - "fast_food", - "restaurant", - "cafe", - "dentist", - "doctors", - "social_facility", - "community_centre", - "school", - "bar", - "university", - "pharmacy", - "cinema", - "pub", - "casino", - "bicycle_parking", - "nightclub", - "theatre", - "stripclub", - "post_office", - "veterinary", - "car_wash", - "studio", - "townhall", - "bank", - "kindergarten", - "fuel", - "childcare", - "ice_cream", - "place_of_worship", - "food_court", - "car_rental", - "police", - "baby_hatch", - "office", - "charging_station", - "dancing_school", - "recycling", - "bench" - ], - "landuse": [ - "grass" - ], - "leisure": [ - "fitness_centre", - "adult_gaming_centre", - "sports_centre", - "pitch", - "playground", - "marina", - "miniature_golf", - "amusement_arcade" - ], - "natural": [ - "water" - ], - "tourism": [ - "hostel", - "hotel", - "museum", - "apartment", - "chalet", - "gallery", - "camp_site", - "guest_house", - "attraction" - ], - "building": [ - "house", - "yes", - "commercial", - "industrial" - ], - "man_made": [ - "works" - ] - }, - "create": 3, - "modify": 2, - "delete": 0, - "area": 0.241261279961052, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 5, - "create": 3, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 6 - }, - "id": 122030608 - } - }, - { - "id": 122028815, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8564201, - 51.1408666 - ], - [ - 4.871259, - 51.1408666 - ], - [ - 4.871259, - 51.1653003 - ], - [ - 4.8564201, - 51.1653003 - ], - [ - 4.8564201, - 51.1408666 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-06T14:23:43Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes", - "roof" - ], - "source:geometry:ref": [ - "Gbg/4046738", - "Gbg/4046987", - "Gbg/6508546", - "Gbg/4046992", - "Gbg/4047530", - "Gbg/4047067", - "Gbg/4047065", - "Gbg/4047066", - "Gbg/4046994", - "Gbg/4046993", - "Gbg/4046990", - "Gbg/4012884", - "Gbg/4011268", - "Gbg/4046989", - "Gbg/6757850", - "Gbg/4047005", - "Gbg/4047528", - "Gbg/4047529", - "Gbg/4011267", - "Gbg/1661766", - "Gbg/4011259", - "Gbg/4011257", - "Gbg/4011262", - "Gbg/1661425", - "Gbg/4011258", - "Gbg/4011260", - "Gbg/4011263" - ], - "source:geometry:date": [ - "2013-01-16", - "2018-10-24", - "2013-02-20", - "2013-01-07", - "2020-03-16", - "2015-11-24", - "2014-12-04", - "2017-03-01", - "2009-07-13" - ] - }, - "create": 221, - "modify": 162, - "delete": 2, - "area": 0.000362569230929939, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 135, - "theme": "grb", - "delete": 2, - "import": 19, - "locale": "nl", - "imagery": "AGIV", - "conflation": 54 - }, - "id": 122028815 - } - }, - { - "id": 122028580, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8564663, - 51.1431593 - ], - [ - 4.8587494, - 51.1431593 - ], - [ - 4.8587494, - 51.1442007 - ], - [ - 4.8564663, - 51.1442007 - ], - [ - 4.8564663, - 51.1431593 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-06T14:18:09Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes", - "apartments", - "roof" - ], - "source:geometry:ref": [ - "Gbg/4046947", - "Gbg/4046946", - "Gbg/5167725", - "Gbg/4046953", - "Gbg/4046933", - "Gbg/4046954", - "Gbg/5403716", - "Gbg/4046951", - "Gbg/4046952", - "Gbg/5403840", - "Gbg/4046932", - "Gbg/4046950", - "Gbg/5403771", - "Gbg/5403717", - "Gbg/4046945", - "Gbg/4046719", - "Gbg/4046985", - "Gbg/4046971" - ], - "source:geometry:date": [ - "2017-03-01", - "2013-02-20", - "2015-11-24", - "2018-10-24", - "2015-05-06", - "2013-01-16" - ] - }, - "create": 54, - "modify": 169, - "delete": 0, - "area": 0.00000237762033999576, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 153, - "theme": "grb", - "import": 6, - "locale": "nl", - "imagery": "AGIV", - "conflation": 36 - }, - "id": 122028580 - } - }, - { - "id": 122025572, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3273499, - 51.158443 - ], - [ - 3.3387447, - 51.158443 - ], - [ - 3.3387447, - 51.1700391 - ], - [ - 3.3273499, - 51.1700391 - ], - [ - 3.3273499, - 51.158443 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-06T13:16:46Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "hiking", - "foot" - ], - "highway": [ - "service", - "footway", - "cycleway", - "track", - "unclassified", - "tertiary" - ], - "survey:date": [ - "2022-06-06" - ] - }, - "create": 0, - "modify": 8, - "delete": 0, - "area": 0.000132135240279979, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "answer": 11, - "locale": "en", - "imagery": "osm" - }, - "id": 122025572 - } - }, - { - "id": 122024785, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7255707, - 51.0426904 - ], - [ - 3.7255707, - 51.0426904 - ], - [ - 3.7255707, - 51.0426904 - ], - [ - 3.7255707, - 51.0426904 - ], - [ - 3.7255707, - 51.0426904 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-06T13:01:48Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/DCrqlvQ.jpg" - ], - "amenity": [ - "toilets" - ], - "description": [ - "In parking Sint-Pietersplein" - ], - "changing_table": [ - "yes" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_500m": 3 - }, - "id": 122024785 - } - }, - { - "id": 122022132, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.2821246, - 47.7948169 - ], - [ - -4.2821246, - 47.7948169 - ], - [ - -4.2821246, - 47.7948169 - ], - [ - -4.2821246, - 47.7948169 - ], - [ - -4.2821246, - 47.7948169 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "TedScouGV", - "uid": "75300", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-06T12:08:58Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_500m": 1 - }, - "id": 122022132 - } - }, - { - "id": 122021602, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.5550015, - 46.0550267 - ], - [ - 14.5559456, - 46.0550267 - ], - [ - 14.5559456, - 46.0557296 - ], - [ - 14.5550015, - 46.0557296 - ], - [ - 14.5550015, - 46.0550267 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "stepc", - "uid": "13911774", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-06T11:59:03Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "pitch" - ], - "surface": [ - "sand" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 6.63607890000192e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 122021602 - } - }, - { - "id": 122021344, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7255707, - 51.0426904 - ], - [ - 3.7255707, - 51.0426904 - ], - [ - 3.7255707, - 51.0426904 - ], - [ - 3.7255707, - 51.0426904 - ], - [ - 3.7255707, - 51.0426904 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-06T11:54:03Z", - "reviewed_features": [], - "tag_changes": { - "level": [ - "-1" - ], - "access": [ - "yes" - ], - "amenity": [ - "toilets" - ], - "wheelchair": [ - "yes" - ], - "opening_hours": [ - "24/7" - ], - "toilets:position": [ - "seated;urinal" - ], - "toilets:handwashing": [ - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 6, - "locale": "nl", - "imagery": "osm", - "change_within_500m": 6 - }, - "id": 122021344 - } - }, - { - "id": 122020831, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.1419604, - 52.404133 - ], - [ - 14.1419604, - 52.404133 - ], - [ - 14.1419604, - 52.404133 - ], - [ - 14.1419604, - 52.404133 - ], - [ - 14.1419604, - 52.404133 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FFW OWS", - "uid": "16214974", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-06T11:43:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 122020831 - } - }, - { - "id": 122020359, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.7387959, - 48.9499483 - ], - [ - 16.7387959, - 48.9499483 - ], - [ - 16.7387959, - 48.9499483 - ], - [ - 16.7387959, - 48.9499483 - ], - [ - 16.7387959, - 48.9499483 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "kudlav", - "uid": "3272933", - "editor": "iD 2.20.4", - "comment": "Adding data with #MapComplete for theme #observation_towers", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Bing Maps Aerial", - "date": "2022-06-06T11:33:37Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "File:Rozhledna vinařství Altenberg Vini.jpg" - ], - "tourism": [ - "viewpoint" - ], - "man_made": [ - "tower" - ], - "wikimedia_commons": [ - "File:Rozhledna vinařství Altenberg Vini.jpg" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://www.openstreetmap.org/edit", - "locale": "cs", - "hashtags": "#MapComplete;#observation_towers", - "changesets_count": 1664 - }, - "id": 122020359 - } - }, - { - "id": 122020332, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.7387959, - 48.9499483 - ], - [ - 16.7387959, - 48.9499483 - ], - [ - 16.7387959, - 48.9499483 - ], - [ - 16.7387959, - 48.9499483 - ], - [ - 16.7387959, - 48.9499483 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "kudlav", - "uid": "3272933", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #observation_towers", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-06T11:33:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/observation_towers.html", - "theme": "observation_towers", - "locale": "en", - "imagery": "osm", - "link-image": 1 - }, - "id": 122020332 - } - }, - { - "id": 122020331, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2895791, - 49.8934254 - ], - [ - 2.2895791, - 49.8934254 - ], - [ - 2.2895791, - 49.8934254 - ], - [ - 2.2895791, - 49.8934254 - ], - [ - 2.2895791, - 49.8934254 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-06T11:33:07Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "manual": [ - "yes" - ], - "amenity": [ - "bicycle_repair_station" - ], - "service:bicycle:tools": [ - "no" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 3, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_within_25m": 3 - }, - "id": 122020331 - } - }, - { - "id": 122019338, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.5627204, - 46.0564451 - ], - [ - 14.5627204, - 46.0564451 - ], - [ - 14.5627204, - 46.0564451 - ], - [ - 14.5627204, - 46.0564451 - ], - [ - 14.5627204, - 46.0564451 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "stepc", - "uid": "13911774", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-06T11:10:50Z", - "reviewed_features": [], - "tag_changes": { - "phone": [ - "+386 41 571 797" - ], - "amenity": [ - "cafe" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 122019338 - } - }, - { - "id": 122017390, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8561849, - 51.1412927 - ], - [ - 4.8611186, - 51.1412927 - ], - [ - 4.8611186, - 51.1450713 - ], - [ - 4.8561849, - 51.1450713 - ], - [ - 4.8561849, - 51.1412927 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-06T10:25:38Z", - "reviewed_features": [], - "tag_changes": { - "office": [ - "insurance" - ], - "amenity": [ - "pub", - "restaurant" - ], - "building": [ - "yes", - "house", - "roof" - ], - "source:geometry:ref": [ - "Gbg/4047196", - "Gbg/4047198", - "Gbg/4046718", - "Gbg/4047195", - "Gbg/4047184", - "Gbg/4046895", - "Gbg/4047199", - "Gbg/4928287", - "Gbg/4047441", - "Gbg/6508595", - "Gbg/4047443", - "Gbg/5862290", - "Gbg/4047437", - "Gbg/4046988", - "Gbg/4047423", - "Gbg/4047432", - "Gbg/4047435", - "Gbg/6803191", - "Gbg/6803120", - "Gbg/5167711", - "Gbg/4046724", - "Gbg/4046735", - "Gbg/4046722", - "Gbg/4046721", - "Gbg/4046720", - "Gbg/4047033", - "Gbg/4047032" - ], - "source:geometry:date": [ - "2013-02-20", - "2015-11-24", - "2017-03-01", - "2018-10-24", - "2013-01-16", - "2014-12-04", - "2020-06-05" - ] - }, - "create": 264, - "modify": 156, - "delete": 0, - "area": 0.0000186424788199863, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 135, - "theme": "grb", - "import": 29, - "locale": "nl", - "imagery": "AGIV", - "conflation": 54 - }, - "id": 122017390 - } - }, - { - "id": 122012198, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4342187, - 50.8140204 - ], - [ - 4.4342187, - 50.8140204 - ], - [ - 4.4342187, - 50.8140204 - ], - [ - 4.4342187, - 50.8140204 - ], - [ - 4.4342187, - 50.8140204 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-06T08:43:04Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/ESQw2nL.jpg" - ], - "amenity": [ - "bicycle_parking" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 122012198 - } - }, - { - "id": 122011281, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.743345, - 51.1368258 - ], - [ - 2.743345, - 51.1368258 - ], - [ - 2.743345, - 51.1368258 - ], - [ - 2.743345, - 51.1368258 - ], - [ - 2.743345, - 51.1368258 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "thierydem", - "uid": "13422761", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-06T08:22:56Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/SDawbBJ.jpg" - ], - "image:0": [ - "https://i.imgur.com/yZdXM9j.jpg" - ], - "leisure": [ - "picnic_table" - ], - "material": [ - "Gemaakt uit hout en metaal" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 122011281 - } - }, - { - "id": 122009699, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3308996, - 50.9955922 - ], - [ - 3.3317836, - 50.9955922 - ], - [ - 3.3317836, - 50.9960695 - ], - [ - 3.3308996, - 50.9960695 - ], - [ - 3.3308996, - 50.9955922 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RubOSM", - "uid": "2096650", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 1, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-06T07:46:55Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "school" - ] - }, - "create": 1, - "modify": 4, - "delete": 0, - "area": 4.21933200000063e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 5, - "create": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 8 - }, - "id": 122009699 - } - }, - { - "id": 121999758, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0668139, - 14.5858935 - ], - [ - 121.0670321, - 14.5858935 - ], - [ - 121.0670321, - 14.5860848 - ], - [ - 121.0668139, - 14.5860848 - ], - [ - 121.0668139, - 14.5858935 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mikko_tamura", - "uid": "2258022", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #lgbtmap", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-06T01:38:39Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "nightclub" - ], - "building": [ - "yes" - ], - "opening_hours": [ - "Mo 00:00-06:00; We 22:00-00:00; Th-Su 00:00-06:00, 23:30-00:00", - "Th-Su 23:30-06:00" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 4.1741660001374e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "lgbtmap", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 121999758 - } - }, - { - "id": 121999500, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -118.3549412, - 33.8046779 - ], - [ - -118.3538743, - 33.8046779 - ], - [ - -118.3538743, - 33.8120849 - ], - [ - -118.3549412, - 33.8120849 - ], - [ - -118.3549412, - 33.8046779 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Devolved", - "uid": "663717", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-06T01:18:28Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "lit": [ - "yes" - ], - "access": [ - "yes" - ], - "leisure": [ - "playground" - ], - "surface": [ - "grass" - ], - "website": [ - "https://www.torranceca.gov/Home/Components/FacilityDirectory/FacilityDirectory/1062/1094", - "https://www.torranceca.gov/Home/Components/FacilityDirectory/FacilityDirectory/1034/1094" - ], - "wheelchair": [ - "yes" - ], - "opening_hours": [ - "sunrise-sunset" - ] - }, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.00000790252829998489, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 10, - "locale": "en", - "imagery": "osm" - }, - "id": 121999500 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-07.json b/Docs/Tools/stats/stats.2022-6-07.json deleted file mode 100644 index 7858886b44..0000000000 --- a/Docs/Tools/stats/stats.2022-6-07.json +++ /dev/null @@ -1,2291 +0,0 @@ -{ - "features": [ - { - "id": 122091476, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.327347, - 51.0025795 - ], - [ - 3.4001605, - 51.0025795 - ], - [ - 3.4001605, - 51.0409394 - ], - [ - 3.327347, - 51.0409394 - ], - [ - 3.327347, - 51.0025795 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-07T22:05:33Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "customers" - ], - "amenity": [ - "recycling", - "bicycle_parking" - ], - "barrier": [ - "bollard", - "block" - ], - "bicycle": [ - "yes" - ], - "bollard": [ - "fixed" - ], - "leisure": [ - "pitch" - ], - "surface": [ - "grass" - ], - "opening_hours": [ - "24/7" - ] - }, - "create": 0, - "modify": 9, - "delete": 0, - "area": 0.00279311857864972, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/personal.html", - "theme": "personal", - "answer": 30, - "create": 1, - "locale": "en", - "imagery": "AGIV", - "change_over_5000m": 2, - "change_within_500m": 1, - "change_within_1000m": 24 - }, - "id": 122091476 - } - }, - { - "id": 122091029, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2324725, - -39.8438323 - ], - [ - -73.2318097, - -39.8438323 - ], - [ - -73.2318097, - -39.8434581 - ], - [ - -73.2324725, - -39.8434581 - ], - [ - -73.2324725, - -39.8438323 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-07T21:41:43Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/LEOTNzQ.jpg", - "https://i.imgur.com/qHdNjIE.jpg", - "https://i.imgur.com/gvmYarL.jpg", - "https://i.imgur.com/m6eKenw.jpg" - ], - "image:0": [ - "https://i.imgur.com/ITXf7BT.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 2.4801976000229e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osm", - "add-image": 5, - "change_within_50m": 1, - "change_within_100m": 2 - }, - "id": 122091029 - } - }, - { - "id": 122090831, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8534166, - 51.1403898 - ], - [ - 4.8672537, - 51.1403898 - ], - [ - 4.8672537, - 51.1508842 - ], - [ - 4.8534166, - 51.1508842 - ], - [ - 4.8534166, - 51.1403898 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-07T21:31:24Z", - "reviewed_features": [], - "tag_changes": { - "uid": [ - "138772" - ], - "user": [ - "lodde1949" - ], - "amenity": [ - "restaurant" - ], - "version": [ - "1" - ], - "building": [ - "yes", - "house", - "industrial", - "school", - "apartments", - "roof" - ], - "changeset": [ - "31261231" - ], - "timestamp": [ - "2015-05-18T17:05:23Z" - ], - "addr:street": [ - "Tramstraat", - "Stadsestraat" - ], - "addr:housenumber": [ - "9", - "7", - "29", - "5", - "26", - "13" - ], - "source:geometry:ref": [ - "Gbg/5403772", - "Gbg/4047080", - "Gbg/6507758", - "Gbg/4047079", - "Gbg/4050185", - "Gbg/4046599", - "Gbg/4046661", - "Gbg/4047579", - "Gbg/4046595", - "Gbg/4046737", - "Gbg/4046598", - "Gbg/4928279", - "Gbg/4046596", - "Gbg/4047078", - "Gbg/4046716", - "Gbg/4678994", - "Gbg/4046926", - "Gbg/4047116", - "Gbg/4047011", - "Gbg/4047012", - "Gbg/5862462", - "Gbg/4047009", - "Gbg/4047006", - "Gbg/5403850", - "Gbg/4047030", - "Gbg/4047099", - "Gbg/4047028", - "Gbg/4047013", - "Gbg/4047025", - "Gbg/4045401", - "Gbg/6508515", - "Gbg/5862497", - "Gbg/4047523", - "Gbg/4048021", - "Gbg/4045400", - "Gbg/6507816", - "Gbg/5862468", - "Gbg/4047026", - "Gbg/5862458", - "Gbg/5862568", - "Gbg/4047014", - "Gbg/4047008", - "Gbg/4046584", - "Gbg/6508569", - "Gbg/5862507", - "Gbg/5862478", - "Gbg/4046618", - "Gbg/4047492", - "Gbg/4047046", - "Gbg/4047034", - "Gbg/4046972", - "Gbg/4047045", - "Gbg/4046970", - "Gbg/4047031", - "Gbg/4046969", - "Gbg/4046968", - "Gbg/4046966", - "Gbg/4046965", - "Gbg/4046897", - "Gbg/4046898", - "Gbg/4046927", - "Gbg/4047447", - "Gbg/4047444", - "Gbg/4047573", - "Gbg/4047445", - "Gbg/4045380", - "Gbg/4045379", - "Gbg/4045378", - "Gbg/5403729", - "Gbg/4047458", - "Gbg/4045386", - "Gbg/7020169", - "Gbg/4045405", - "Gbg/4045384", - "Gbg/4045404", - "Gbg/4045391", - "Gbg/4045402", - "Gbg/4928244", - "Gbg/4045403", - "Gbg/4045407", - "Gbg/4047453", - "Gbg/4928291", - "Gbg/4047500", - "Gbg/4047448", - "Gbg/4047499", - "Gbg/5748701", - "Gbg/5862526", - "Gbg/4045399", - "Gbg/4046664", - "Gbg/4928241", - "Gbg/4046577", - "Gbg/4046564", - "Gbg/4046675", - "Gbg/4046597", - "Gbg/4046662", - "Gbg/4046576", - "Gbg/4046563", - "Gbg/4046562", - "Gbg/4046580", - "Gbg/5862263", - "Gbg/5862303" - ], - "source:geometry:date": [ - "2015-11-24", - "2013-01-16", - "2021-09-10", - "2013-02-20", - "2014-12-04", - "2014-05-02", - "2017-03-01", - "2021-10-25", - "2018-10-24", - "2020-06-05", - "2019-09-04", - "2016-11-07" - ] - }, - "create": 875, - "modify": 626, - "delete": 8, - "area": 0.000145212062239984, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 524, - "theme": "grb", - "answer": 8, - "delete": 8, - "import": 65, - "locale": "nl", - "imagery": "osm", - "conflation": 202, - "change_over_5000m": 21 - }, - "id": 122090831 - } - }, - { - "id": 122090694, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8650895, - 51.1405746 - ], - [ - 4.8688227, - 51.1405746 - ], - [ - 4.8688227, - 51.141861 - ], - [ - 4.8650895, - 51.141861 - ], - [ - 4.8650895, - 51.1405746 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-07T21:25:03Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "roof", - "yes" - ], - "source:geometry:ref": [ - "Gbg/4045445", - "Gbg/4045395", - "Gbg/4045446", - "Gbg/4045396", - "Gbg/4045397", - "Gbg/4045398", - "Gbg/4048017", - "Gbg/4045410", - "Gbg/4047572", - "Gbg/4045409", - "Gbg/4045412", - "Gbg/4045390", - "Gbg/6666972" - ], - "source:geometry:date": [ - "2013-02-20", - "2013-01-16", - "2019-09-04", - "2020-06-05" - ] - }, - "create": 77, - "modify": 86, - "delete": 0, - "area": 0.00000480238847999234, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 73, - "theme": "grb", - "import": 8, - "locale": "nl", - "imagery": "osm", - "conflation": 26, - "change_over_5000m": 8 - }, - "id": 122090694 - } - }, - { - "id": 122089456, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.2875992, - 44.5145978 - ], - [ - 11.2875992, - 44.5145978 - ], - [ - 11.2875992, - 44.5145978 - ], - [ - 11.2875992, - 44.5145978 - ], - [ - 11.2875992, - 44.5145978 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "WinstonSmith", - "uid": "36030", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-07T20:44:33Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "drinking_water" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "create": 1, - "locale": "it", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_50m": 1 - }, - "id": 122089456 - } - }, - { - "id": 122088227, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.3832963, - 48.4612764 - ], - [ - 2.6650256, - 48.4612764 - ], - [ - 2.6650256, - 48.8665597 - ], - [ - 2.3832963, - 48.8665597 - ], - [ - 2.3832963, - 48.4612764 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "miggaz elquez", - "uid": "11237080", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-07T20:07:50Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "yes", - "no" - ], - "access": [ - "yes" - ], - "noname": [ - "yes" - ], - "landuse": [ - "forest" - ], - "leisure": [ - "sports_centre", - "pitch" - ], - "climbing": [ - "area" - ], - "climbing:speed": [ - "no" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.11418018041069, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/climbing", - "theme": "climbing", - "answer": 6, - "locale": "en", - "imagery": "osm" - }, - "id": 122088227 - } - }, - { - "id": 122087315, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2920195, - 50.8541295 - ], - [ - 3.2922748, - 50.8541295 - ], - [ - 3.2922748, - 50.8542807 - ], - [ - 3.2920195, - 50.8542807 - ], - [ - 3.2920195, - 50.8541295 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-07T19:42:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 10, - "delete": 1, - "area": 3.86013599994199e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 9, - "theme": "grb", - "delete": 1, - "locale": "nl", - "imagery": "osm", - "conflation": 2 - }, - "id": 122087315 - } - }, - { - "id": 122086838, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.6769297, - 49.5971426 - ], - [ - 0.6769297, - 49.5971426 - ], - [ - 0.6769297, - 49.5971426 - ], - [ - 0.6769297, - 49.5971426 - ], - [ - 0.6769297, - 49.5971426 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-07T19:29:01Z", - "reviewed_features": [], - "tag_changes": { - "defibrillator:location:en": [ - "Next to the main entrance" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/personal.html", - "theme": "personal", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 122086838 - } - }, - { - "id": 122085495, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.3895836, - 49.1273138 - ], - [ - 2.5713717, - 49.1273138 - ], - [ - 2.5713717, - 49.2033922 - ], - [ - 2.3895836, - 49.2033922 - ], - [ - 2.3895836, - 49.1273138 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LeTopographeFou", - "uid": "3178375", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-07T19:00:44Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "school", - "social_facility", - "hospital" - ], - "highway": [ - "secondary", - "primary", - "residential", - "tertiary", - "footway", - "service", - "pedestrian", - "track" - ], - "landuse": [ - "forest" - ], - "tourism": [ - "museum" - ], - "building": [ - "yes", - "school" - ], - "name:etymology:wikidata": [ - "Q680897", - "Q1052", - "Q752088", - "Q2042", - "Q940694", - "Q130272", - "Q518512", - "Q312391", - "Q535", - "Q179888", - "Q223274", - "Q752093", - "Q1332127", - "Q41269", - "Q126675", - "Q622365", - "Q331087", - "Q90", - "Q797108", - "Q2185", - "Q181269", - "Q27619343", - "Q49752", - "Q849", - "Q18420", - "Q191408", - "Q4700", - "Q182791", - "Q191305", - "Q501", - "Q735370", - "Q289801", - "Q462644", - "Q35548", - "Q675687", - "Q243212", - "Q207958", - "Q232972", - "Q236630", - "Q755", - "Q42247", - "Q126668", - "Q846750" - ] - }, - "create": 0, - "modify": 159, - "delete": 0, - "area": 0.01383014778704, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 205, - "locale": "fr", - "imagery": "osm" - }, - "id": 122085495 - } - }, - { - "id": 122084191, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8106191, - 51.1862576 - ], - [ - 2.8106191, - 51.1862576 - ], - [ - 2.8106191, - 51.1862576 - ], - [ - 2.8106191, - 51.1862576 - ], - [ - 2.8106191, - 51.1862576 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-07T18:32:50Z", - "reviewed_features": [], - "tag_changes": { - "email": [ - "tgenotmiddelkerke@gmail.com" - ], - "phone": [ - "+32 473 19 10 41" - ], - "amenity": [ - "cafe" - ], - "website": [ - "https://menucards.cc/tgenot" - ], - "payment:cash": [ - "yes" - ], - "payment:cards": [ - "yes" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 5, - "locale": "en", - "imagery": "osmfr" - }, - "id": 122084191 - } - }, - { - "id": 122083968, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7701384, - 51.150808 - ], - [ - 4.7827953, - 51.150808 - ], - [ - 4.7827953, - 51.1546206 - ], - [ - 4.7701384, - 51.1546206 - ], - [ - 4.7701384, - 51.150808 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Salambre", - "uid": "15272429", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-07T18:26:27Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 0.0000482556969400449, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 5, - "create": 2, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 2, - "change_within_50m": 3 - }, - "id": 122083968 - } - }, - { - "id": 122081062, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2072767, - 51.2087986 - ], - [ - 3.2203682, - 51.2087986 - ], - [ - 3.2203682, - 51.2147055 - ], - [ - 3.2072767, - 51.2147055 - ], - [ - 3.2072767, - 51.2087986 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #schools", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-07T16:57:42Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Kleuterschool Lenteweelde", - "KLeuterschool Lenteweelde" - ], - "email": [ - "info@basisschoolzandstraat.be" - ], - "phone": [ - "+32 50 31 69 02" - ], - "amenity": [ - "school", - "kindergarten" - ], - "website": [ - "https://basisschoolzandstraat.be/kleuterafdeling-lenteweelde/" - ], - "isced:2011:level": [ - "primary" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.0000773301813499908, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "http://127.0.0.1:1234/theme.html", - "theme": "schools", - "answer": 5, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 122081062 - } - }, - { - "id": 122080366, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2277688, - -39.8299036 - ], - [ - -73.2277688, - -39.8299036 - ], - [ - -73.2277688, - -39.8299036 - ], - [ - -73.2277688, - -39.8299036 - ], - [ - -73.2277688, - -39.8299036 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-07T16:34:08Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "artwork" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 122080366 - } - }, - { - "id": 122079812, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2406011, - -39.8348573 - ], - [ - -73.2398255, - -39.8348573 - ], - [ - -73.2398255, - -39.8299529 - ], - [ - -73.2406011, - -39.8299529 - ], - [ - -73.2406011, - -39.8348573 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-07T16:16:37Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/Yzee5xW.jpg", - "https://i.imgur.com/H1aLJ9W.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000380385264005673, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osmfr", - "add-image": 2 - }, - "id": 122079812 - } - }, - { - "id": 122079049, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7268178, - 50.9788521 - ], - [ - 3.7268178, - 50.9788521 - ], - [ - 3.7268178, - 50.9788521 - ], - [ - 3.7268178, - 50.9788521 - ], - [ - 3.7268178, - 50.9788521 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "sanbock", - "uid": "16217340", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-07T15:52:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 122079049 - } - }, - { - "id": 122074440, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.676549, - 49.597014 - ], - [ - 0.677171, - 49.597014 - ], - [ - 0.677171, - 49.59731 - ], - [ - 0.676549, - 49.59731 - ], - [ - 0.676549, - 49.597014 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-07T14:05:37Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 1.84111999999221e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 5, - "create": 2, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 2, - "change_within_50m": 5 - }, - "id": 122074440 - } - }, - { - "id": 122072244, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -76.817955, - 39.1908737 - ], - [ - -76.8174342, - 39.1908737 - ], - [ - -76.8174342, - 39.1930628 - ], - [ - -76.817955, - 39.1930628 - ], - [ - -76.817955, - 39.1908737 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "PlugInSites", - "uid": "10651792", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-07T13:08:16Z", - "reviewed_features": [], - "tag_changes": { - "bus": [ - "no" - ], - "hgv": [ - "no" - ], - "amenity": [ - "charging_station" - ], - "bicycle": [ - "no" - ], - "scooter": [ - "no" - ], - "capacity": [ - "8", - "10" - ], - "motorcar": [ - "yes" - ], - "socket:type1": [ - "6" - ], - "socket:chademo": [ - "1", - "2" - ], - "socket:type1_cable": [ - "1" - ], - "socket:type1_combo": [ - "1" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0.00000114008328000978, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations", - "move": 1, - "theme": "charging_stations", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "geodata.md.gov-MD_SixInchImagery", - "move:node/8306579613": "improve_accuracy" - }, - "id": 122072244 - } - }, - { - "id": 122071748, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2404072, - -39.8389723 - ], - [ - -73.2353665, - -39.8389723 - ], - [ - -73.2353665, - -39.8344011 - ], - [ - -73.2404072, - -39.8344011 - ], - [ - -73.2404072, - -39.8389723 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-07T12:55:57Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/dUqY2sQ.jpg", - "https://i.imgur.com/R7cciT3.jpg", - "https://i.imgur.com/tODrb7w.jpg" - ], - "image:0": [ - "https://i.imgur.com/NvqOaIc.jpg", - "https://i.imgur.com/wxFeFZk.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.0000230420478400466, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osmfr", - "add-image": 5 - }, - "id": 122071748 - } - }, - { - "id": 122070986, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.6258769, - 47.3026532 - ], - [ - 9.6582578, - 47.3026532 - ], - [ - 9.6582578, - 47.3134028 - ], - [ - 9.6258769, - 47.3134028 - ], - [ - 9.6258769, - 47.3026532 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mcliquid", - "uid": "1213571", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-07T12:36:14Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential", - "secondary" - ], - "maxspeed": [ - "40", - "60" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.000348081722639897, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/maxspeed.html", - "theme": "maxspeed", - "answer": 8, - "locale": "en", - "imagery": "osm" - }, - "id": 122070986 - } - }, - { - "id": 122070809, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.869787, - 51.1001285 - ], - [ - 4.9965656, - 51.1001285 - ], - [ - 4.9965656, - 51.169646 - ], - [ - 4.869787, - 51.169646 - ], - [ - 4.869787, - 51.1001285 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-07T12:32:07Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "guest_house" - ], - "building": [ - "yes", - "house", - "roof" - ], - "addr:street": [ - "Geelseweg" - ], - "addr:housenumber": [ - "6" - ], - "source:geometry:ref": [ - "Gbg/5860852", - "Gbg/4011757", - "Gbg/4011252", - "Gbg/4011255", - "Gbg/4011256", - "Gbg/4011808", - "Gbg/4011809", - "Gbg/5862436", - "Gbg/4011811", - "Gbg/4011261", - "Gbg/4011764", - "Gbg/4011765", - "Gbg/4011761", - "Gbg/6508584", - "Gbg/4011759", - "Gbg/5862322", - "Gbg/4011791", - "Gbg/5862332", - "Gbg/4011253", - "Gbg/4011767", - "Gbg/4011812", - "Gbg/4011859", - "Gbg/4011813", - "Gbg/4011858", - "Gbg/4011814", - "Gbg/4011857", - "Gbg/4011769", - "Gbg/4011251", - "Gbg/4011793", - "Gbg/4011768", - "Gbg/4011846", - "Gbg/4011794", - "Gbg/4011770", - "Gbg/4011795", - "Gbg/4011860", - "Gbg/3948439", - "Gbg/5862440", - "Gbg/3948441", - "Gbg/4011266", - "Gbg/4011265", - "Gbg/6989642", - "Gbg/4011826", - "Gbg/4011825", - "Gbg/4010930", - "Gbg/4010929", - "Gbg/4010891", - "Gbg/4010928", - "Gbg/4010890", - "Gbg/4011843", - "Gbg/4011839", - "Gbg/7019864" - ], - "source:geometry:date": [ - "2017-03-01", - "2013-01-07", - "2018-10-24", - "2020-06-05", - "2013-02-20", - "2012-11-15", - "2021-10-25", - "2021-09-10" - ] - }, - "create": 719, - "modify": 311, - "delete": 0, - "area": 0.00881333132550048, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 260, - "theme": "grb", - "import": 76, - "locale": "nl", - "imagery": "osm", - "conflation": 102 - }, - "id": 122070809 - } - }, - { - "id": 122070222, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8085759, - 51.060356 - ], - [ - 3.9005582, - 51.060356 - ], - [ - 3.9005582, - 51.1359634 - ], - [ - 3.8085759, - 51.1359634 - ], - [ - 3.8085759, - 51.060356 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Toerisme Lochristi", - "uid": "16225274", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-07T12:17:43Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets", - "bench", - "charging_station" - ] - }, - "create": 25, - "modify": 11, - "delete": 0, - "area": 0.00695454254902022, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 42, - "create": 25, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 122070222 - } - }, - { - "id": 122066667, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.4161362, - 54.7781596 - ], - [ - 9.4161362, - 54.7781596 - ], - [ - 9.4161362, - 54.7781596 - ], - [ - 9.4161362, - 54.7781596 - ], - [ - 9.4161362, - 54.7781596 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-07T10:58:28Z", - "reviewed_features": [], - "tag_changes": { - "bus": [ - "no" - ], - "hgv": [ - "no" - ], - "image": [ - "https://i.imgur.com/BXZUA4X.jpg" - ], - "phone": [ - "+49 7063 93 33333" - ], - "amenity": [ - "charging_station" - ], - "bicycle": [ - "no" - ], - "scooter": [ - "no" - ], - "motorcar": [ - "yes" - ], - "parking:fee": [ - "no" - ], - "socket:chademo": [ - "1" - ], - "socket:type2_cable": [ - "1" - ], - "socket:type2_combo": [ - "1" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 4, - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 122066667 - } - }, - { - "id": 122061460, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.800595, - 49.4297481 - ], - [ - 0.800595, - 49.4297481 - ], - [ - 0.800595, - 49.4297481 - ], - [ - 0.800595, - 49.4297481 - ], - [ - 0.800595, - 49.4297481 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-07T09:09:39Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "public_bookcase" - ] - }, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 5 - }, - "id": 122061460 - } - }, - { - "id": 122060732, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.9699054, - 43.2056138 - ], - [ - -3.9543808, - 43.2056138 - ], - [ - -3.9543808, - 43.2156776 - ], - [ - -3.9699054, - 43.2156776 - ], - [ - -3.9699054, - 43.2056138 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ninopiña10", - "uid": "11138282", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-07T08:58:13Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "drinking_water" - ] - }, - "create": 3, - "modify": 3, - "delete": 0, - "area": 0.000156236469479961, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 6, - "create": 3, - "locale": "en", - "imagery": "osm", - "add-image": 3, - "change_over_5000m": 3, - "change_within_25m": 9 - }, - "id": 122060732 - } - }, - { - "id": 122058595, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9055048, - 51.1054154 - ], - [ - 4.9055048, - 51.1054154 - ], - [ - 4.9055048, - 51.1054154 - ], - [ - 4.9055048, - 51.1054154 - ], - [ - 4.9055048, - 51.1054154 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Frans_Napaters", - "uid": "3574538", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-07T08:16:47Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "charging_station" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 7, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 122058595 - } - }, - { - "id": 122047161, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.2650738, - -32.9929502 - ], - [ - -71.2650738, - -32.9929502 - ], - [ - -71.2650738, - -32.9929502 - ], - [ - -71.2650738, - -32.9929502 - ], - [ - -71.2650738, - -32.9929502 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-07T01:00:20Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/MDUSqpW.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osm", - "add-image": 1 - }, - "id": 122047161 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-08.json b/Docs/Tools/stats/stats.2022-6-08.json deleted file mode 100644 index c3a3ef7731..0000000000 --- a/Docs/Tools/stats/stats.2022-6-08.json +++ /dev/null @@ -1,2680 +0,0 @@ -{ - "features": [ - { - "id": 122139207, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4370604, - 51.1943747 - ], - [ - 4.5055194, - 51.1943747 - ], - [ - 4.5055194, - 51.2494346 - ], - [ - 4.4370604, - 51.2494346 - ], - [ - 4.4370604, - 51.1943747 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "pi11", - "uid": "12066190", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-08T23:47:16Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "school" - ], - "highway": [ - "residential", - "tertiary", - "secondary_link", - "secondary", - "unclassified", - "service", - "path" - ], - "name:etymology:wikidata": [ - "Q79058", - "Q37340", - "Q112294580", - "Q108019", - "Q126916", - "Q3271482", - "Q194012", - "Q1863253", - "Q1150", - "Q2062015", - "Q469580", - "Q19835682", - "Q98793975", - "Q50411812", - "Q152457", - "Q60050545", - "Q97495842", - "Q95961727", - "Q112294248", - "Q818804", - "Q18575616", - "Q96654538", - "Q112295114", - "Q12091", - "Q364139", - "Q106851", - "Q270658", - "Q2029739", - "Q112295829", - "Q174353", - "Q2554516", - "Q2180803", - "Q2658124" - ] - }, - "create": 0, - "modify": 152, - "delete": 0, - "area": 0.00376934569410022, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 214, - "locale": "nl", - "imagery": "osm" - }, - "id": 122139207 - } - }, - { - "id": 122138896, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0551319, - 51.0268174 - ], - [ - 4.6881214, - 51.0268174 - ], - [ - 4.6881214, - 51.2051151 - ], - [ - 4.0551319, - 51.2051151 - ], - [ - 4.0551319, - 51.0268174 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #cyclestreets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-08T23:19:37Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential" - ], - "proposed:cyclestreet": [ - "yes" - ] - }, - "create": 1, - "modify": 7, - "delete": 0, - "area": 0.112860571974151, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclestreets.html", - "split": 2, - "theme": "cyclestreets", - "answer": 7, - "locale": "nl", - "imagery": "osm" - }, - "id": 122138896 - } - }, - { - "id": 122138772, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8092537, - 51.1859369 - ], - [ - 2.8092537, - 51.1859369 - ], - [ - 2.8092537, - 51.1859369 - ], - [ - 2.8092537, - 51.1859369 - ], - [ - 2.8092537, - 51.1859369 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-08T23:06:18Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 0, - "modify": 0, - "delete": 1, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/personal.html", - "theme": "personal", - "locale": "en", - "imagery": "AGIV", - "deletion": 1, - "change_over_5000m": 1, - "deletion:node/9804602914": "duplicate" - }, - "id": 122138772 - } - }, - { - "id": 122137360, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.5055717, - 49.3994916 - ], - [ - 9.5055717, - 49.3994916 - ], - [ - 9.5055717, - 49.3994916 - ], - [ - 9.5055717, - 49.3994916 - ], - [ - 9.5055717, - 49.3994916 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-08T21:48:23Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/UtFSq5G.jpg" - ], - "amenity": [ - "toilets" - ], - "changing_table": [ - "yes" - ], - "toilets:position": [ - "seated;urinal" - ], - "toilets:handwashing": [ - "yes" - ], - "changing_table:location": [ - "wheelchair_toilet" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 4, - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 5 - }, - "id": 122137360 - } - }, - { - "id": 122137291, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2361997, - 50.735887 - ], - [ - 4.2372955, - 50.735887 - ], - [ - 4.2372955, - 50.7365914 - ], - [ - 4.2361997, - 50.7365914 - ], - [ - 4.2361997, - 50.735887 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-08T21:45:48Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Cheers", - "Maurice Café" - ], - "shop": [ - "jewelry" - ], - "amenity": [ - "cafe", - "pub", - "bar" - ], - "website": [ - "https://www.isis-sieraden.be", - "https://mokkadis.be", - "http://users.telenet.be/mokkadis", - "https://www.bistro-servais.be", - "https://www.facebook.com/profile.php?id=100076154600869" - ] - }, - "create": 0, - "modify": 4, - "delete": 1, - "area": 7.71881520003855e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 4, - "locale": "en", - "imagery": "osm", - "deletion": 1, - "deletion:node/5578933391": "shop_closed" - }, - "id": 122137291 - } - }, - { - "id": 122137120, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.3853843, - 49.1836641 - ], - [ - 2.4627891, - 49.1836641 - ], - [ - 2.4627891, - 49.2259051 - ], - [ - 2.3853843, - 49.2259051 - ], - [ - 2.3853843, - 49.1836641 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LeTopographeFou", - "uid": "3178375", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-08T21:38:55Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "school" - ], - "highway": [ - "tertiary", - "secondary", - "residential", - "service", - "primary", - "unclassified", - "track", - "footway" - ], - "name:etymology:wikidata": [ - "Q2042", - "Q331087", - "Q675687", - "Q1335541", - "Q529", - "Q1631", - "Q449", - "Q5593", - "Q622365", - "Q253224", - "Q47162", - "Q18404", - "Q7327", - "Q152176", - "Q207958", - "Q493", - "Q1666", - "Q752088", - "Q1332424", - "Q150662", - "Q12688", - "Q658479", - "Q235863", - "Q3372335", - "Q44197" - ] - }, - "create": 0, - "modify": 46, - "delete": 0, - "area": 0.00326965615679978, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 56, - "locale": "fr", - "imagery": "osm" - }, - "id": 122137120 - } - }, - { - "id": 122136918, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2358517, - 50.7359498 - ], - [ - 4.2401831, - 50.7359498 - ], - [ - 4.2401831, - 50.7424454 - ], - [ - 4.2358517, - 50.7424454 - ], - [ - 4.2358517, - 50.7359498 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-08T21:30:15Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Sterckx Motors", - "Volvo", - "Eva!", - "Eva", - "Luc Lerinckx Juweelcreatie" - ], - "shop": [ - "bakery", - "car", - "computer", - "interior_decoration", - "clothes", - "jewelry", - "chocolate", - "alcohol" - ], - "website": [ - "https://josselocus.be", - "https://www.sterckx-desmet.be", - "https://www.bitz.be", - "https://www.evainterieur.be", - "https://www.headline-fashion.be", - "https://www.isis-sieraden.be", - "https://www.valentinobelgium.com" - ] - }, - "create": 1, - "modify": 12, - "delete": 0, - "area": 0.0000281350418400032, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "move": 1, - "theme": "shops", - "answer": 12, - "create": 1, - "locale": "en", - "imagery": "osm", - "move:node/5578933403": "relocated" - }, - "id": 122136918 - } - }, - { - "id": 122135851, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8588161, - 51.1446856 - ], - [ - 4.8592921, - 51.1446856 - ], - [ - 4.8592921, - 51.1448464 - ], - [ - 4.8588161, - 51.1448464 - ], - [ - 4.8588161, - 51.1446856 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-08T20:53:34Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes" - ], - "source:geometry:ref": [ - "Gbg/7020191" - ], - "source:geometry:date": [ - "2021-10-25" - ] - }, - "create": 0, - "modify": 14, - "delete": 0, - "area": 7.65407999981719e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 13, - "theme": "grb", - "locale": "nl", - "imagery": "osm", - "conflation": 2 - }, - "id": 122135851 - } - }, - { - "id": 122135850, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2960599, - 50.9337078 - ], - [ - 5.3320527, - 50.9337078 - ], - [ - 5.3320527, - 50.9469161 - ], - [ - 5.2960599, - 50.9469161 - ], - [ - 5.2960599, - 50.9337078 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-08T20:53:34Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "charging_station", - "bench" - ] - }, - "create": 7, - "modify": 12, - "delete": 0, - "area": 0.00047540370024008, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 4, - "theme": "toerisme_vlaanderen", - "answer": 25, - "create": 7, - "locale": "nl", - "imagery": "AGIV", - "move:node/9803297653": "improve_accuracy", - "move:node/9804784310": "improve_accuracy", - "move:node/9804798084": "improve_accuracy", - "move:node/9804809539": "improve_accuracy" - }, - "id": 122135850 - } - }, - { - "id": 122135797, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-08T20:51:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/", - "move": 13, - "theme": "grb", - "locale": "nl", - "conflation": 2 - }, - "id": 122135797 - } - }, - { - "id": 122135332, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2307223, - 50.724896 - ], - [ - 4.2562248, - 50.724896 - ], - [ - 4.2562248, - 50.7425791 - ], - [ - 4.2307223, - 50.7425791 - ], - [ - 4.2307223, - 50.724896 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-08T20:33:55Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential", - "primary", - "living_street", - "service", - "construction", - "pedestrian" - ], - "name:etymology:wikidata": [ - "Q19587858", - "Q106785062", - "Q2030421", - "Q152457", - "Q2568789", - "Q235186", - "Q312857", - "Q638560", - "Q231171", - "Q11120" - ] - }, - "create": 0, - "modify": 24, - "delete": 0, - "area": 0.000450963257749981, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 33, - "locale": "en", - "imagery": "osm" - }, - "id": 122135332 - } - }, - { - "id": 122135079, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1722494, - 50.789615 - ], - [ - 5.1806376, - 50.789615 - ], - [ - 5.1806376, - 50.8044022 - ], - [ - 5.1722494, - 50.8044022 - ], - [ - 5.1722494, - 50.789615 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jozin-belgium", - "uid": "1947314", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-08T20:26:02Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "florist" - ], - "office": [ - "security" - ], - "amenity": [ - "school", - "community_centre", - "car_wash", - "social_facility" - ], - "building": [ - "yes", - "house", - "castle", - "detached", - "school", - "warehouse", - "commercial", - "roof" - ], - "historic": [ - "castle" - ], - "addr:street": [ - "Naamsesteenweg", - "Montenakenweg", - "Bevingen-Centrum" - ], - "addr:housenumber": [ - "319", - "145", - "12" - ], - "source:geometry:ref": [ - "Gbg/4658946", - "Gbg/171909", - "Gbg/169774", - "Gbg/168389", - "Gbg/157160", - "Gbg/150585", - "Gbg/168404", - "Gbg/168427", - "Gbg/166438", - "Gbg/168405", - "Gbg/6459426", - "Gbg/170689", - "Gbg/5687010", - "Gbg/6459443", - "Gbg/165798", - "Gbg/171904", - "Gbg/157073", - "Gbg/165803", - "Gbg/4657798", - "Gbg/6459452", - "Gbg/153057", - "Gbg/4665355", - "Gbg/158638", - "Gbg/171893", - "Gbg/171771", - "Gbg/158653", - "Gbg/158658", - "Gbg/4664582", - "Gbg/6817319", - "Gbg/6461547", - "Gbg/170714", - "Gbg/165260", - "Gbg/165256", - "Gbg/158662", - "Gbg/153054", - "Gbg/151601", - "Gbg/171765", - "Gbg/165261", - "Gbg/4665773", - "Gbg/164924", - "Gbg/149787", - "Gbg/149786", - "Gbg/4664249", - "Gbg/165801", - "Gbg/4664000", - "Gbg/164910", - "Gbg/170599", - "Gbg/6461545", - "Gbg/6461546", - "Gbg/158648", - "Gbg/6459401", - "Gbg/165252", - "Gbg/158819", - "Gbg/170583", - "Gbg/164922", - "Gbg/164906", - "Gbg/163922", - "Gbg/170594", - "Gbg/170713", - "Gbg/159522", - "Gbg/151770", - "Gbg/164919", - "Gbg/4666627", - "Gbg/4666556", - "Gbg/4665881", - "Gbg/4665628", - "Gbg/4663722", - "Gbg/4664338", - "Gbg/165231", - "Gbg/165273", - "Gbg/164916", - "Gbg/164917", - "Gbg/171797", - "Gbg/155113", - "Gbg/4665589", - "Gbg/164915", - "Gbg/165234", - "Gbg/165246", - "Gbg/165223", - "Gbg/151777", - "Gbg/171798", - "Gbg/164918", - "Gbg/158644", - "Gbg/165251", - "Gbg/165305", - "Gbg/153062", - "Gbg/164925", - "Gbg/4665945", - "Gbg/165249", - "Gbg/5102480", - "Gbg/155115", - "Gbg/4665694", - "Gbg/3362867", - "Gbg/4663853", - "Gbg/151775", - "Gbg/4664884", - "Gbg/170591", - "Gbg/158815", - "Gbg/4665204", - "Gbg/4665853", - "Gbg/162744", - "Gbg/4665338", - "Gbg/170597", - "Gbg/159524", - "Gbg/165247", - "Gbg/165264", - "Gbg/165794", - "Gbg/171769", - "Gbg/4664618", - "Gbg/6459442", - "Gbg/168384", - "Gbg/166435", - "Gbg/168394", - "Gbg/166433", - "Gbg/4657729", - "Gbg/168385", - "Gbg/4657724", - "Gbg/152614", - "Gbg/166434", - "Gbg/168396", - "Gbg/154739", - "Gbg/154740", - "Gbg/168426", - "Gbg/168393", - "Gbg/168400", - "Gbg/154741", - "Gbg/168399", - "Gbg/168432", - "Gbg/166066", - "Gbg/168429", - "Gbg/168430", - "Gbg/168425", - "Gbg/6459424", - "Gbg/5686373", - "Gbg/4657851", - "Gbg/6459417", - "Gbg/5685396", - "Gbg/164911", - "Gbg/163923", - "Gbg/4664727", - "Gbg/4663763", - "Gbg/1675731", - "Gbg/4665303", - "Gbg/155111", - "Gbg/170593", - "Gbg/4663875", - "Gbg/4664776", - "Gbg/165229", - "Gbg/151766", - "Gbg/151765", - "Gbg/165230", - "Gbg/155112", - "Gbg/6933503", - "Gbg/170587", - "Gbg/170589", - "Gbg/170596", - "Gbg/170590" - ], - "source:geometry:date": [ - "2014-04-28", - "2015-03-04", - "2003-06-04", - "2002-11-20", - "2019-02-01", - "2016-09-16", - "2018-09-12", - "2020-06-30", - "2017-02-27", - "2020-03-06", - "2008-09-03", - "2012-06-19", - "2021-04-15" - ] - }, - "create": 1945, - "modify": 1148, - "delete": 9, - "area": 0.000124037991040002, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/grb.html", - "move": 1005, - "theme": "grb", - "delete": 9, - "import": 241, - "locale": "nl", - "imagery": "osm", - "conflation": 324 - }, - "id": 122135079 - } - }, - { - "id": 122134771, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2401776, - 50.7332319 - ], - [ - 4.2401776, - 50.7332319 - ], - [ - 4.2401776, - 50.7332319 - ], - [ - 4.2401776, - 50.7332319 - ], - [ - 4.2401776, - 50.7332319 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #postboxes", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-08T20:18:12Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "post_box" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/postboxes.html", - "theme": "postboxes", - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 122134771 - } - }, - { - "id": 122133216, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5404782, - 53.0068111 - ], - [ - 6.5404782, - 53.0068111 - ], - [ - 6.5404782, - 53.0068111 - ], - [ - 6.5404782, - 53.0068111 - ], - [ - 6.5404782, - 53.0068111 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #waste_assen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-08T19:36:21Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_assen.html", - "theme": "waste_assen", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_5000m": 2 - }, - "id": 122133216 - } - }, - { - "id": 122132348, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8092456, - 51.1859252 - ], - [ - 2.8092537, - 51.1859252 - ], - [ - 2.8092537, - 51.1859369 - ], - [ - 2.8092456, - 51.1859369 - ], - [ - 2.8092456, - 51.1859252 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-08T19:09:33Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 9.47700000147429e-11, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/personal.html", - "theme": "personal", - "create": 2, - "locale": "en", - "imagery": "AGIV", - "add-image": 1, - "change_over_5000m": 2, - "change_within_25m": 1 - }, - "id": 122132348 - } - }, - { - "id": 122132177, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5650606, - 53.0179937 - ], - [ - 6.5890172, - 53.0179937 - ], - [ - 6.5890172, - 53.0302306 - ], - [ - 6.5650606, - 53.0302306 - ], - [ - 6.5650606, - 53.0179937 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #waste_assen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-08T19:05:43Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 15, - "modify": 6, - "delete": 0, - "area": 0.000293154518540117, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_assen.html", - "theme": "waste_assen", - "answer": 30, - "create": 15, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 15, - "change_within_500m": 10, - "change_within_1000m": 6, - "change_within_5000m": 14 - }, - "id": 122132177 - } - }, - { - "id": 122129585, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8232621, - 51.1725686 - ], - [ - 4.8350242, - 51.1725686 - ], - [ - 4.8350242, - 51.1772723 - ], - [ - 4.8232621, - 51.1772723 - ], - [ - 4.8232621, - 51.1725686 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #cyclestreets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-08T18:00:21Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential", - "unclassified" - ], - "maxspeed": [ - "30" - ], - "cyclestreet": [ - "yes" - ], - "overtaking:motor_vehicle": [ - "no" - ] - }, - "create": 0, - "modify": 27, - "delete": 0, - "area": 0.0000553253897700052, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclestreets.html", - "theme": "cyclestreets", - "answer": 27, - "locale": "nl", - "imagery": "osm" - }, - "id": 122129585 - } - }, - { - "id": 122123900, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3945297, - 51.0354229 - ], - [ - 3.3945688, - 51.0354229 - ], - [ - 3.3945688, - 51.0355697 - ], - [ - 3.3945297, - 51.0355697 - ], - [ - 3.3945297, - 51.0354229 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-08T15:24:28Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/xFMacSL.jpg" - ], - "amenity": [ - "recycling", - "waste_basket" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 5.73988000011557e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/personal.html", - "theme": "personal", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 1, - "change_within_1000m": 3 - }, - "id": 122123900 - } - }, - { - "id": 122122133, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-08T14:45:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 1, - "locale": "de", - "imagery": "osm", - "change_within_500m": 1 - }, - "id": 122122133 - } - }, - { - "id": 122120290, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.6267417, - 45.4922516 - ], - [ - 9.645282, - 45.4922516 - ], - [ - 9.645282, - 45.5061411 - ], - [ - 9.6267417, - 45.5061411 - ], - [ - 9.6267417, - 45.4922516 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Mannivu", - "uid": "1950277", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-08T14:01:19Z", - "reviewed_features": [], - "tag_changes": { - "place": [ - "square" - ], - "amenity": [ - "school" - ], - "highway": [ - "tertiary", - "residential", - "pedestrian", - "unclassified", - "service" - ], - "leisure": [ - "park" - ], - "name:etymology:wikidata": [ - "Q2851732", - "Q267304", - "Q3614311", - "Q3725967", - "Q3069001", - "Q36488", - "Q964822", - "Q539", - "Q3742833", - "Q307", - "Q1377734", - "Q25106", - "Q1713223" - ] - }, - "create": 0, - "modify": 46, - "delete": 0, - "area": 0.000257515496849953, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 54, - "locale": "it", - "imagery": "osm", - "change_within_500m": 2, - "change_within_1000m": 34, - "change_within_5000m": 18 - }, - "id": 122120290 - } - }, - { - "id": 122119953, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.2657573, - -33.0041202 - ], - [ - -71.2657573, - -33.0041202 - ], - [ - -71.2657573, - -33.0041202 - ], - [ - -71.2657573, - -33.0041202 - ], - [ - -71.2657573, - -33.0041202 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-08T13:53:23Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/snIdbHn.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osm", - "add-image": 1 - }, - "id": 122119953 - } - }, - { - "id": 122117816, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.7658936, - 49.5279586 - ], - [ - 0.7659726, - 49.5279586 - ], - [ - 0.7659726, - 49.5280028 - ], - [ - 0.7658936, - 49.5280028 - ], - [ - 0.7658936, - 49.5279586 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-08T13:00:28Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "amenity": [ - "toilets" - ], - "building": [ - "yes" - ], - "wheelchair": [ - "yes" - ], - "toilets:position": [ - "seated;urinal" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 3.49180000039211e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "change_within_50m": 3 - }, - "id": 122117816 - } - }, - { - "id": 122117794, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.7659234, - 49.52796 - ], - [ - 0.7659234, - 49.52796 - ], - [ - 0.7659234, - 49.52796 - ], - [ - 0.7659234, - 49.52796 - ], - [ - 0.7659234, - 49.52796 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-08T12:59:53Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/T1jEjaU.jpg" - ], - "access": [ - "yes" - ], - "indoor": [ - "no" - ], - "wheelchair": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_50m": 4 - }, - "id": 122117794 - } - }, - { - "id": 122110716, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2138433, - 51.1896262 - ], - [ - 3.217567, - 51.1896262 - ], - [ - 3.217567, - 51.1951561 - ], - [ - 3.2138433, - 51.1951561 - ], - [ - 3.2138433, - 51.1896262 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-08T10:16:57Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ], - "highway": [ - "service" - ], - "building": [ - "school", - "university", - "yes", - "dormitory", - "roof", - "house" - ], - "addr:street": [ - "Groene-Poortdreef" - ], - "addr:housenumber": [ - "17A" - ], - "source:geometry:ref": [ - "Gbg/3086126", - "Gbg/3087368", - "Gbg/4559952", - "Gbg/4559792", - "Gbg/3087367", - "Gbg/3087383", - "Gbg/5585852", - "Gbg/3087382", - "Gbg/3087393", - "Gbg/3087991", - "Gbg/6489736", - "Gbg/3087381", - "Gbg/5261566", - "Gbg/6489341" - ], - "source:geometry:date": [ - "2017-04-14", - "2014-02-06", - "2011-05-09", - "2018-10-02", - "2015-07-09" - ] - }, - "create": 217, - "modify": 231, - "delete": 0, - "area": 0.0000205916886299947, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 217, - "theme": "grb", - "import": 9, - "locale": "en", - "imagery": "AGIV", - "conflation": 28, - "change_over_5000m": 9 - }, - "id": 122110716 - } - }, - { - "id": 122107836, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3378272, - 50.9326832 - ], - [ - 5.3378272, - 50.9326832 - ], - [ - 5.3378272, - 50.9326832 - ], - [ - 5.3378272, - 50.9326832 - ], - [ - 5.3378272, - 50.9326832 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-08T09:18:09Z", - "reviewed_features": [], - "tag_changes": { - "phone": [ - "+32 11 33 44 27" - ], - "amenity": [ - "fast_food" - ], - "diet:halal": [ - "no" - ], - "diet:vegan": [ - "limited" - ], - "wheelchair": [ - "yes" - ], - "payment:cash": [ - "yes" - ], - "payment:cards": [ - "yes" - ], - "diet:vegetarian": [ - "limited" - ], - "service:electricity": [ - "no" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 7, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 7 - }, - "id": 122107836 - } - }, - { - "id": 122107681, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8115141, - 51.1868906 - ], - [ - 2.8116784, - 51.1868906 - ], - [ - 2.8116784, - 51.1869799 - ], - [ - 2.8115141, - 51.1869799 - ], - [ - 2.8115141, - 51.1868906 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 42, - "name": "Invalid tag modification" - } - ], - "tags": [], - "features": [ - { - "url": "way-451400969", - "name": "Zeedijk casino west", - "osm_id": 451400969, - "reasons": [ - 42 - ], - "version": 3, - "primary_tags": { - "building": "yes" - } - } - ], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-08T09:15:05Z", - "reviewed_features": [], - "tag_changes": { - "fixme": [ - "A mapcomplete user marked this feature to be deleted (disused)" - ], - "amenity": [ - "toilets" - ], - "building": [ - "yes" - ], - "disused:amenity": [ - "toilets" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.4671989999828e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/personal.html", - "theme": "personal", - "locale": "nl", - "imagery": "osm", - "soft-delete": 1, - "change_within_25m": 1, - "soft-delete:way/451400969": "disused" - }, - "id": 122107681 - } - }, - { - "id": 122107613, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7869007, - 51.2707367 - ], - [ - 4.7869007, - 51.2707367 - ], - [ - 4.7869007, - 51.2707367 - ], - [ - 4.7869007, - 51.2707367 - ], - [ - 4.7869007, - 51.2707367 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #schools", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-08T09:13:32Z", - "reviewed_features": [], - "tag_changes": { - "email": [ - "info.kribbels@gmail.com" - ], - "phone": [ - "+32 470 63 55 95" - ], - "amenity": [ - "childcare" - ], - "website": [ - "https://kribbels.be/" - ], - "capacity": [ - "25" - ], - "opening_hours": [ - "Mo-Fr 07:00-18:00" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/feature/schools/schools.html", - "theme": "schools", - "answer": 10, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 10 - }, - "id": 122107613 - } - }, - { - "id": 122104382, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3211951, - 50.9385987 - ], - [ - 5.3211951, - 50.9385987 - ], - [ - 5.3211951, - 50.9385987 - ], - [ - 5.3211951, - 50.9385987 - ], - [ - 5.3211951, - 50.9385987 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-08T07:59:54Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "caravan_site" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/campersite.html", - "theme": "campersite", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 122104382 - } - }, - { - "id": 122103459, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.2954249, - 50.9462374 - ], - [ - 5.2960808, - 50.9462374 - ], - [ - 5.2960808, - 50.9468614 - ], - [ - 5.2954249, - 50.9468614 - ], - [ - 5.2954249, - 50.9462374 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-08T07:35:48Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 4.0928160000124e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "move": 2, - "theme": "waste", - "answer": 2, - "create": 2, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 4, - "move:node/9803248578": "improve_accuracy", - "move:node/9803265676": "improve_accuracy" - }, - "id": 122103459 - } - }, - { - "id": 122102126, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.29547, - 50.9337132 - ], - [ - 5.3489235, - 50.9337132 - ], - [ - 5.3489235, - 50.9469742 - ], - [ - 5.29547, - 50.9469742 - ], - [ - 5.29547, - 50.9337132 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-08T07:06:20Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets", - "bench", - "charging_station" - ], - "payment:cash": [ - "yes" - ], - "payment:cards": [ - "no" - ], - "toilets:paper_supplied": [ - "yes" - ], - "changing_table:location": [ - "wheelchair_toilet" - ] - }, - "create": 6, - "modify": 18, - "delete": 0, - "area": 0.000708846863499996, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 5, - "theme": "toerisme_vlaanderen", - "answer": 30, - "create": 2, - "import": 4, - "locale": "nl", - "imagery": "osm", - "add-image": 6, - "change_over_5000m": 6, - "change_within_25m": 38, - "change_within_50m": 3, - "move:node/9803202605": "improve_accuracy", - "move:node/9803234395": "improve_accuracy", - "move:node/9803251849": "improve_accuracy", - "move:node/9803325145": "improve_accuracy", - "move:node/9803327251": "improve_accuracy", - "import:node/9803202605": "source: https://osm.org/note/3044138", - "import:node/9803234395": "source: https://osm.org/note/3044372", - "import:node/9803251849": "source: https://osm.org/note/3044605", - "import:node/9803325145": "source: https://osm.org/note/3044722" - }, - "id": 122102126 - } - }, - { - "id": 122094629, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7059525, - 50.8814895 - ], - [ - 4.7059525, - 50.8814895 - ], - [ - 4.7059525, - 50.8814895 - ], - [ - 4.7059525, - 50.8814895 - ], - [ - 4.7059525, - 50.8814895 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #schools", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-08T01:55:57Z", - "reviewed_features": [], - "tag_changes": { - "phone": [ - "+32 16 24 81 44" - ], - "amenity": [ - "childcare", - "kindergarten" - ], - "website": [ - "https://www.zorgleuven.be/de-ketteflet" - ], - "capacity": [ - "60" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "http://127.0.0.1:1234/theme.html", - "theme": "schools", - "answer": 4, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 122094629 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-09.json b/Docs/Tools/stats/stats.2022-6-09.json deleted file mode 100644 index 2e6b69f179..0000000000 --- a/Docs/Tools/stats/stats.2022-6-09.json +++ /dev/null @@ -1,1624 +0,0 @@ -{ - "features": [ - { - "id": 122185440, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.8754132, - 53.1031751 - ], - [ - 6.8754686, - 53.1031751 - ], - [ - 6.8754686, - 53.103208 - ], - [ - 6.8754132, - 53.103208 - ], - [ - 6.8754132, - 53.1031751 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "the-wouter", - "uid": "16051141", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-09T22:26:11Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "path" - ], - "image:streetsign": [ - "https://i.imgur.com/cTCEpFn.jpg" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.82266000004081e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 122185440 - } - }, - { - "id": 122181171, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.5534107, - 47.2144086 - ], - [ - -1.5534107, - 47.2144086 - ], - [ - -1.5534107, - 47.2144086 - ], - [ - -1.5534107, - 47.2144086 - ], - [ - -1.5534107, - 47.2144086 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-09T19:47:11Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/eUvXSHj.jpg" - ], - "man_made": [ - "surveillance" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "locale": "fr", - "imagery": "osm", - "add-image": 1, - "change_within_100m": 1 - }, - "id": 122181171 - } - }, - { - "id": 122179854, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2409344, - -39.838186 - ], - [ - -73.2409344, - -39.838186 - ], - [ - -73.2409344, - -39.838186 - ], - [ - -73.2409344, - -39.838186 - ], - [ - -73.2409344, - -39.838186 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-09T19:02:54Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/0HeIoEj.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osm", - "add-image": 1 - }, - "id": 122179854 - } - }, - { - "id": 122175443, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3877842, - 51.0406256 - ], - [ - 3.3937737, - 51.0406256 - ], - [ - 3.3937737, - 51.0448744 - ], - [ - 3.3877842, - 51.0448744 - ], - [ - 3.3877842, - 51.0406256 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #education", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-09T17:01:31Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "De Kiem" - ], - "phone": [ - "+32 474 46 80 64" - ], - "amenity": [ - "childcare", - "school" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000254481875999954, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/feature/schools/education.html", - "theme": "education", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 122175443 - } - }, - { - "id": 122174009, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-09T16:24:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 122174009 - } - }, - { - "id": 122173872, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-09T16:21:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 3 - }, - "id": 122173872 - } - }, - { - "id": 122173749, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -76.6167004, - 39.3246027 - ], - [ - -76.6167004, - 39.3246027 - ], - [ - -76.6167004, - 39.3246027 - ], - [ - -76.6167004, - 39.3246027 - ], - [ - -76.6167004, - 39.3246027 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "pkoby", - "uid": "999995", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-09T16:17:44Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "surveillance" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 122173749 - } - }, - { - "id": 122170491, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.0998607, - 49.4405031 - ], - [ - 1.0998607, - 49.4405031 - ], - [ - 1.0998607, - 49.4405031 - ], - [ - 1.0998607, - 49.4405031 - ], - [ - 1.0998607, - 49.4405031 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-09T14:56:25Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/eLYIai2.jpg" - ], - "access": [ - "yes" - ], - "indoor": [ - "no" - ], - "defibrillator:location:en": [ - "In the public space, though there are doors that might close at night" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 4 - }, - "id": 122170491 - } - }, - { - "id": 122164228, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.824643, - 51.0435709 - ], - [ - 4.8248164, - 51.0435709 - ], - [ - 4.8248164, - 51.0437957 - ], - [ - 4.824643, - 51.0437957 - ], - [ - 4.824643, - 51.0435709 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Frans_Napaters", - "uid": "3574538", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-09T12:37:03Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "email": [ - "info@harmonie6.be" - ], - "access": [ - "customers" - ], - "leisure": [ - "playground" - ], - "surface": [ - "grass" - ], - "website": [ - "https://harmonie6.be/" - ], - "operator": [ - "Harmonie6" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 3.89803199995558e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 5, - "locale": "en", - "imagery": "osm" - }, - "id": 122164228 - } - }, - { - "id": 122163677, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.0887631, - 49.4393812 - ], - [ - 1.0887631, - 49.4393812 - ], - [ - 1.0887631, - 49.4393812 - ], - [ - 1.0887631, - 49.4393812 - ], - [ - 1.0887631, - 49.4393812 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-09T12:26:29Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ], - "toilets:position": [ - "seated" - ], - "toilets:paper_supplied": [ - "no" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "change_within_100m": 2 - }, - "id": 122163677 - } - }, - { - "id": 122161774, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5576502, - 51.2632364 - ], - [ - 4.5576502, - 51.2632364 - ], - [ - 4.5576502, - 51.2632364 - ], - [ - 4.5576502, - 51.2632364 - ], - [ - 4.5576502, - 51.2632364 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "pi11", - "uid": "12066190", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-09T11:50:03Z", - "reviewed_features": [], - "tag_changes": { - "barrier": [ - "bollard" - ], - "bicycle": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cycle_infra.html", - "theme": "cycle_infra", - "answer": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 122161774 - } - }, - { - "id": 122159995, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7053098, - 51.0493961 - ], - [ - 3.7053098, - 51.0493961 - ], - [ - 3.7053098, - 51.0493961 - ], - [ - 3.7053098, - 51.0493961 - ], - [ - 3.7053098, - 51.0493961 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-09T11:10:38Z", - "reviewed_features": [], - "tag_changes": { - "bus": [ - "no" - ], - "hgv": [ - "no" - ], - "image": [ - "https://i.imgur.com/PG33Cqj.jpg" - ], - "amenity": [ - "charging_station" - ], - "bicycle": [ - "yes" - ], - "scooter": [ - "no" - ], - "motorcar": [ - "no" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 122159995 - } - }, - { - "id": 122159985, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-09T11:10:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 122159985 - } - }, - { - "id": 122158920, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8496758, - 51.1434717 - ], - [ - 4.8526365, - 51.1434717 - ], - [ - 4.8526365, - 51.1448111 - ], - [ - 4.8496758, - 51.1448111 - ], - [ - 4.8496758, - 51.1434717 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-09T10:46:46Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "roof", - "yes" - ], - "source:geometry:ref": [ - "Gbg/4046287", - "Gbg/4046288", - "Gbg/4046406", - "Gbg/4046394", - "Gbg/4046405", - "Gbg/4679014", - "Gbg/4678991", - "Gbg/4928202", - "Gbg/4928285", - "Gbg/4928284", - "Gbg/4928354", - "Gbg/4046515", - "Gbg/4928353", - "Gbg/4928286", - "Gbg/4928352" - ], - "source:geometry:date": [ - "2013-01-16", - "2014-05-02", - "2014-12-04", - "2015-11-24" - ] - }, - "create": 162, - "modify": 86, - "delete": 0, - "area": 0.00000396556157999739, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 71, - "theme": "grb", - "import": 20, - "locale": "nl", - "imagery": "AGIV", - "conflation": 30 - }, - "id": 122158920 - } - }, - { - "id": 122157868, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-09T10:23:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 8, - "theme": "grb", - "answer": 2, - "locale": "nl", - "imagery": "AGIV", - "conflation": 4 - }, - "id": 122157868 - } - }, - { - "id": 122156656, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8232621, - 51.1725686 - ], - [ - 4.8293037, - 51.1725686 - ], - [ - 4.8293037, - 51.1762064 - ], - [ - 4.8232621, - 51.1762064 - ], - [ - 4.8232621, - 51.1725686 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #cyclestreets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-09T10:01:36Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential" - ], - "cyclestreet": [ - "yes" - ], - "proposed:cyclestreet": [ - "yes" - ] - }, - "create": 0, - "modify": 9, - "delete": 0, - "area": 0.0000219781324799982, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclestreets.html", - "theme": "cyclestreets", - "answer": 9, - "locale": "nl", - "imagery": "osm" - }, - "id": 122156656 - } - }, - { - "id": 122152916, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5403154, - 53.0062866 - ], - [ - 6.5419927, - 53.0062866 - ], - [ - 6.5419927, - 53.008672 - ], - [ - 6.5403154, - 53.008672 - ], - [ - 6.5403154, - 53.0062866 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #waste_assen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-09T08:44:34Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 5, - "modify": 0, - "delete": 0, - "area": 0.00000400103141999019, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_assen.html", - "theme": "waste_assen", - "answer": 10, - "create": 5, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 15 - }, - "id": 122152916 - } - }, - { - "id": 122152215, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8518876, - 51.1381527 - ], - [ - 4.8635753, - 51.1381527 - ], - [ - 4.8635753, - 51.1438597 - ], - [ - 4.8518876, - 51.1438597 - ], - [ - 4.8518876, - 51.1381527 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-09T08:32:04Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes", - "house", - "shed", - "roof" - ], - "addr:street": [ - "Kattebos", - "Noorderwijkseweg" - ], - "addr:housenumber": [ - "11", - "21", - "23", - "9", - "8" - ], - "source:geometry:ref": [ - "Gbg/4050877", - "Gbg/4050162", - "Gbg/4049610", - "Gbg/4050159", - "Gbg/6803213", - "Gbg/4046474", - "Gbg/4046473", - "Gbg/4049609", - "Gbg/4046485", - "Gbg/4046472", - "Gbg/4046467", - "Gbg/4046468", - "Gbg/4047081", - "Gbg/4046469", - "Gbg/4046470", - "Gbg/4046454", - "Gbg/4047068", - "Gbg/4047069", - "Gbg/7020155", - "Gbg/4047051", - "Gbg/4047053", - "Gbg/4047533", - "Gbg/4047532", - "Gbg/4047052", - "Gbg/4047531", - "Gbg/4047534", - "Gbg/4047054", - "Gbg/4047098", - "Gbg/4046973", - "Gbg/4046986", - "Gbg/4050788", - "Gbg/4047102", - "Gbg/7020158", - "Gbg/4050015", - "Gbg/4047096", - "Gbg/4050791", - "Gbg/4050878", - "Gbg/4050794", - "Gbg/4050879", - "Gbg/4046974", - "Gbg/4047479", - "Gbg/4047478", - "Gbg/4047477", - "Gbg/4047476", - "Gbg/4047474", - "Gbg/4046921", - "Gbg/4046922", - "Gbg/4046917", - "Gbg/6508543" - ], - "source:geometry:date": [ - "2013-02-20", - "2020-06-05", - "2018-10-24", - "2013-01-16", - "2021-10-25", - "2017-03-01" - ] - }, - "create": 421, - "modify": 287, - "delete": 1, - "area": 0.0000667017039000092, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 236, - "theme": "grb", - "answer": 2, - "delete": 1, - "import": 43, - "locale": "nl", - "imagery": "AGIV", - "conflation": 98 - }, - "id": 122152215 - } - }, - { - "id": 122149555, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8618612, - 51.1396283 - ], - [ - 4.8728473, - 51.1396283 - ], - [ - 4.8728473, - 51.1434947 - ], - [ - 4.8618612, - 51.1434947 - ], - [ - 4.8618612, - 51.1396283 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-09T07:32:54Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes", - "house", - "roof" - ], - "addr:housenumber": [ - "51H-51I", - "51E" - ], - "source:geometry:ref": [ - "Gbg/4050729", - "Gbg/4045411", - "Gbg/4045490", - "Gbg/4048324", - "Gbg/4045491", - "Gbg/4045489", - "Gbg/4045488", - "Gbg/4045487", - "Gbg/4045485", - "Gbg/4045371", - "Gbg/6757851", - "Gbg/4047463", - "Gbg/4047462", - "Gbg/4047461", - "Gbg/4047460", - "Gbg/4045377", - "Gbg/4045376", - "Gbg/4045375", - "Gbg/4045374", - "Gbg/4045373", - "Gbg/4045406", - "Gbg/4045392", - "Gbg/4045383", - "Gbg/4045382", - "Gbg/4045381", - "Gbg/4047449", - "Gbg/4047503", - "Gbg/4047504", - "Gbg/4047464", - "Gbg/4928209", - "Gbg/4047466", - "Gbg/4047451", - "Gbg/4047450", - "Gbg/4045370", - "Gbg/4045369", - "Gbg/4048323", - "Gbg/5403734" - ], - "source:geometry:date": [ - "2013-02-20", - "2013-01-16", - "2018-10-24", - "2014-12-04", - "2015-11-24", - "2020-03-16", - "2017-03-01" - ] - }, - "create": 509, - "modify": 213, - "delete": 2, - "area": 0.0000424766570399977, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 170, - "theme": "grb", - "answer": 4, - "delete": 2, - "import": 60, - "locale": "nl", - "imagery": "AGIV", - "conflation": 74 - }, - "id": 122149555 - } - }, - { - "id": 122142707, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -96.4009265, - 30.1727932 - ], - [ - -96.4007639, - 30.1727932 - ], - [ - -96.4007639, - 30.1728819 - ], - [ - -96.4009265, - 30.1728819 - ], - [ - -96.4009265, - 30.1727932 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "pmc_", - "uid": "9622052", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-09T04:18:38Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "amenity": [ - "toilets" - ], - "building": [ - "yes" - ], - "toilets:handwashing": [ - "yes" - ], - "toilets:paper_supplied": [ - "yes" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 1.44226199995009e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 6, - "locale": "en", - "imagery": "osm" - }, - "id": 122142707 - } - }, - { - "id": 122140479, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6200059, - -33.4148321 - ], - [ - -70.6200059, - -33.4148321 - ], - [ - -70.6200059, - -33.4148321 - ], - [ - -70.6200059, - -33.4148321 - ], - [ - -70.6200059, - -33.4148321 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-09T01:55:45Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/3d0JJSH.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "cyclosm", - "add-image": 1 - }, - "id": 122140479 - } - }, - { - "id": 122139690, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 43.85226, - 56.2639233 - ], - [ - 43.85226, - 56.2639233 - ], - [ - 43.85226, - 56.2639233 - ], - [ - 43.85226, - 56.2639233 - ], - [ - 43.85226, - 56.2639233 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "alexashh", - "uid": "9054103", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-09T00:33:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 1, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 1, - "create": 1, - "locale": "ru", - "imagery": "osm", - "deletion": 1, - "deletion:node/9805191833": "testing point" - }, - "id": 122139690 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-10.json b/Docs/Tools/stats/stats.2022-6-10.json deleted file mode 100644 index 781e9e2a95..0000000000 --- a/Docs/Tools/stats/stats.2022-6-10.json +++ /dev/null @@ -1,1979 +0,0 @@ -{ - "features": [ - { - "id": 122231328, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2450132, - -39.8149123 - ], - [ - -73.2450132, - -39.8149123 - ], - [ - -73.2450132, - -39.8149123 - ], - [ - -73.2450132, - -39.8149123 - ], - [ - -73.2450132, - -39.8149123 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-10T23:16:18Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "species:wikidata": [ - "Q158783" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "es", - "imagery": "osm" - }, - "id": 122231328 - } - }, - { - "id": 122230162, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 105.8424125, - 14.6225377 - ], - [ - 121.0229434, - 14.6225377 - ], - [ - 121.0229434, - 21.047906 - ], - [ - 105.8424125, - 21.047906 - ], - [ - 105.8424125, - 14.6225377 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mikko_tamura", - "uid": "2258022", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #lgbtmap", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-10T22:04:56Z", - "reviewed_features": [], - "tag_changes": { - "lgbtq": [ - "welcome", - "primary" - ], - "amenity": [ - "nightclub", - "doctors" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 97.5405020220305, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "move": 1, - "theme": "lgbtmap", - "answer": 1, - "locale": "en", - "imagery": "osm", - "move:node/7785286853": "improve_accuracy" - }, - "id": 122230162 - } - }, - { - "id": 122229746, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.1686859, - 57.1481249 - ], - [ - -2.0972841, - 57.1481249 - ], - [ - -2.0972841, - 57.1615556 - ], - [ - -2.1686859, - 57.1615556 - ], - [ - -2.1686859, - 57.1481249 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "FlawOfAverages", - "uid": "4988361", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-10T21:46:21Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential" - ], - "tourism": [ - "museum" - ], - "building": [ - "yes" - ], - "historic": [ - "house" - ], - "name:etymology:wikidata": [ - "Q333158", - "Q76096305" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.000958976155260047, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 5, - "locale": "en", - "imagery": "osm" - }, - "id": 122229746 - } - }, - { - "id": 122228138, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2407642, - -39.8384601 - ], - [ - -73.2406007, - -39.8384601 - ], - [ - -73.2406007, - -39.8378809 - ], - [ - -73.2407642, - -39.8378809 - ], - [ - -73.2407642, - -39.8384601 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-10T20:54:16Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/UNjl9HG.jpg", - "https://i.imgur.com/lSGkh5X.jpg", - "https://i.imgur.com/ssqWqTg.jpg", - "https://i.imgur.com/Z9tOrVZ.jpg", - "https://i.imgur.com/nr3cG0P.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 9.46991999991327e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osm", - "add-image": 6 - }, - "id": 122228138 - } - }, - { - "id": 122225738, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.5592003, - 47.2201371 - ], - [ - -1.5592003, - 47.2201371 - ], - [ - -1.5592003, - 47.2201371 - ], - [ - -1.5592003, - 47.2201371 - ], - [ - -1.5592003, - 47.2201371 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-10T19:37:58Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/qK9NyIF.jpg" - ], - "man_made": [ - "surveillance" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "locale": "fr", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 122225738 - } - }, - { - "id": 122222605, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2329093, - -39.8430851 - ], - [ - -73.2328892, - -39.8430851 - ], - [ - -73.2328892, - -39.8430166 - ], - [ - -73.2329093, - -39.8430166 - ], - [ - -73.2329093, - -39.8430851 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-10T18:12:24Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "artwork" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 1.37685000012245e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "move": 1, - "theme": "artwork", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "move:node/9809414573": "improve_accuracy" - }, - "id": 122222605 - } - }, - { - "id": 122220184, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7175367, - 51.0541085 - ], - [ - 3.7175367, - 51.0541085 - ], - [ - 3.7175367, - 51.0541085 - ], - [ - 3.7175367, - 51.0541085 - ], - [ - 3.7175367, - 51.0541085 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-10T17:06:09Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "musical_instrument" - ], - "image": [ - "https://i.imgur.com/v0TlWE9.jpg" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/shops.html", - "theme": "shops", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 122220184 - } - }, - { - "id": 122219073, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7003829, - 51.0569982 - ], - [ - 3.7003829, - 51.0569982 - ], - [ - 3.7003829, - 51.0569982 - ], - [ - 3.7003829, - 51.0569982 - ], - [ - 3.7003829, - 51.0569982 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-10T16:34:15Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "public_bookcase" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/food.html", - "theme": "bookcases", - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 122219073 - } - }, - { - "id": 122217937, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7004877, - 51.0539611 - ], - [ - 3.7181733, - 51.0539611 - ], - [ - 3.7181733, - 51.0580016 - ], - [ - 3.7004877, - 51.0580016 - ], - [ - 3.7004877, - 51.0539611 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 42, - "name": "Invalid tag modification" - } - ], - "tags": [], - "features": [ - { - "url": "way-451518902", - "name": "Fenix", - "osm_id": 451518902, - "reasons": [ - 42 - ], - "version": 5, - "primary_tags": { - "building": "house" - } - } - ], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-10T16:04:52Z", - "reviewed_features": [], - "tag_changes": { - "email": [ - "woestgent@gmail.com" - ], - "fixme": [ - "A mapcomplete user marked this feature to be deleted (shop_closed)" - ], - "image": [ - "https://i.imgur.com/FaHzHVC.jpg" - ], - "phone": [ - "+32 9 278 07 78" - ], - "amenity": [ - "restaurant", - "fast_food" - ], - "website": [ - "https://www.afoodaffair.be" - ], - "building": [ - "house" - ], - "takeaway": [ - "yes" - ], - "opening_hours": [ - "Tu-Sa 18:00-23:00;", - "Mo-Tu 10:00-22:00; We 10:00-15:00; Fr 15:00-22:00; Sa-Su 09:00-22:00" - ], - "disused:amenity": [ - "restaurant" - ] - }, - "create": 3, - "modify": 8, - "delete": 1, - "area": 0.000071458666799912, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/food.html", - "theme": "food", - "answer": 9, - "create": 3, - "locale": "nl", - "imagery": "osm", - "deletion": 1, - "add-image": 2, - "soft-delete": 1, - "change_over_5000m": 3, - "change_within_25m": 8, - "change_within_50m": 1, - "change_within_1000m": 4, - "deletion:node/3874321408": "not found", - "soft-delete:way/451518902": "shop_closed" - }, - "id": 122217937 - } - }, - { - "id": 122216870, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9947182, - 48.5009505 - ], - [ - 8.9972653, - 48.5009505 - ], - [ - 8.9972653, - 48.5016851 - ], - [ - 8.9947182, - 48.5016851 - ], - [ - 8.9947182, - 48.5009505 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-10T15:39:28Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "leaf_type": [ - "broadleaved" - ], - "denotation": [ - "avenue", - "garden" - ], - "leaf_cycle": [ - "deciduous" - ], - "species:wikidata": [ - "Q26899", - "Q128116", - "Q179729" - ] - }, - "create": 1, - "modify": 7, - "delete": 0, - "area": 0.00000187109966000394, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 13, - "create": 1, - "locale": "de", - "imagery": "Mapbox", - "change_over_5000m": 1, - "change_within_25m": 13 - }, - "id": 122216870 - } - }, - { - "id": 122213710, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3988523, - 51.0428931 - ], - [ - 3.3990562, - 51.0428931 - ], - [ - 3.3990562, - 51.043249 - ], - [ - 3.3988523, - 51.043249 - ], - [ - 3.3988523, - 51.0428931 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-10T14:25:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 5, - "modify": 0, - "delete": 5, - "area": 7.25680100004241e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/personal.html", - "theme": "personal", - "create": 5, - "locale": "en", - "imagery": "osm", - "deletion": 3, - "change_over_5000m": 4, - "change_within_1000m": 2, - "deletion:node/9808902593": "testing point", - "deletion:node/9808982539": "testing point", - "deletion:node/9808991733": "testing point" - }, - "id": 122213710 - } - }, - { - "id": 122213663, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-10T14:24:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/index.html", - "theme": "personal", - "create": 2, - "locale": "en", - "change_over_5000m": 2 - }, - "id": 122213663 - } - }, - { - "id": 122213659, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-10T14:24:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/personal.html", - "theme": "personal", - "create": 2, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 2 - }, - "id": 122213659 - } - }, - { - "id": 122213649, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-10T14:23:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/personal.html", - "theme": "personal", - "create": 2, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 2 - }, - "id": 122213649 - } - }, - { - "id": 122212270, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7039876, - 51.0531516 - ], - [ - 3.7049667, - 51.0531516 - ], - [ - 3.7049667, - 51.0533878 - ], - [ - 3.7039876, - 51.0533878 - ], - [ - 3.7039876, - 51.0531516 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-10T13:49:11Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "private" - ], - "leisure": [ - "pitch" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 2.31263420003257e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/sport_pitches.html", - "theme": "sport_pitches", - "answer": 2, - "locale": "en", - "imagery": "osm", - "change_within_100m": 2 - }, - "id": 122212270 - } - }, - { - "id": 122211833, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.2291585, - 49.4256414 - ], - [ - 0.2291585, - 49.4256414 - ], - [ - 0.2291585, - 49.4256414 - ], - [ - 0.2291585, - 49.4256414 - ], - [ - 0.2291585, - 49.4256414 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-10T13:36:59Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "customers" - ], - "amenity": [ - "toilets" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_500m": 1 - }, - "id": 122211833 - } - }, - { - "id": 122210761, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7297377, - 51.0494191 - ], - [ - 3.7297377, - 51.0494191 - ], - [ - 3.7297377, - 51.0494191 - ], - [ - 3.7297377, - 51.0494191 - ], - [ - 3.7297377, - 51.0494191 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "jade@imec", - "uid": "15978511", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-10T13:08:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 1, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 1, - "locale": "nl", - "imagery": "osm", - "deletion": 1, - "deletion:node/9808648106": "testing point" - }, - "id": 122210761 - } - }, - { - "id": 122210551, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.4674591, - -34.6283054 - ], - [ - -58.4408721, - -34.6283054 - ], - [ - -58.4408721, - -34.6179786 - ], - [ - -58.4674591, - -34.6179786 - ], - [ - -58.4674591, - -34.6283054 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AgusQui", - "uid": "331218", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-10T13:03:14Z", - "reviewed_features": [], - "tag_changes": { - "railway": [ - "signal" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 0.00027455863160003, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "answer": 14, - "create": 2, - "locale": "en", - "imagery": "EsriWorldImageryClarity", - "change_over_5000m": 2, - "change_within_25m": 10, - "change_within_500m": 4 - }, - "id": 122210551 - } - }, - { - "id": 122210523, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 28.9328599, - 41.0316444 - ], - [ - 28.950323, - 41.0316444 - ], - [ - 28.950323, - 41.0408105 - ], - [ - 28.9328599, - 41.0408105 - ], - [ - 28.9328599, - 41.0316444 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "asturksever", - "uid": "2111087", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-10T13:02:31Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "yes" - ], - "highway": [ - "residential", - "footway" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.000160068520910033, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 6, - "locale": "en", - "imagery": "osm" - }, - "id": 122210523 - } - }, - { - "id": 122206084, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.7722558, - 45.1082329 - ], - [ - 7.7757239, - 45.1082329 - ], - [ - 7.7757239, - 45.1133767 - ], - [ - 7.7722558, - 45.1133767 - ], - [ - 7.7722558, - 45.1082329 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "granduca67", - "uid": "1751359", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-10T11:19:24Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "playground" - ] - }, - "create": 3, - "modify": 6, - "delete": 0, - "area": 0.0000178392127800217, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 14, - "create": 3, - "locale": "it", - "imagery": "Mapbox" - }, - "id": 122206084 - } - }, - { - "id": 122203701, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5391031, - 52.9782414 - ], - [ - 6.5800242, - 52.9782414 - ], - [ - 6.5800242, - 53.0086999 - ], - [ - 6.5391031, - 53.0086999 - ], - [ - 6.5391031, - 52.9782414 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-10T10:19:20Z", - "reviewed_features": [], - "tag_changes": { - "bus": [ - "no" - ], - "fee": [ - "yes" - ], - "hgv": [ - "no" - ], - "access": [ - "yes" - ], - "amenity": [ - "charging_station" - ], - "bicycle": [ - "no" - ], - "maxstay": [ - "unlimited" - ], - "network": [ - "Allego" - ], - "scooter": [ - "no" - ], - "capacity": [ - "2" - ], - "motorcar": [ - "yes" - ], - "parking:fee": [ - "yes" - ], - "payment:app": [ - "yes" - ], - "payment:cash": [ - "no" - ], - "socket:type2": [ - "2" - ], - "opening_hours": [ - "24/7" - ], - "payment:cards": [ - "no" - ], - "brand:wikidata": [ - "Q75560554" - ], - "payment:membership_card": [ - "yes" - ] - }, - "create": 11, - "modify": 9, - "delete": 1, - "area": 0.00124639532435008, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 25, - "create": 11, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "deletion": 1, - "change_over_5000m": 11, - "change_within_5000m": 16, - "deletion:node/9808305816": "testing point" - }, - "id": 122203701 - } - }, - { - "id": 122203639, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3991782, - 51.0427633 - ], - [ - 3.3991911, - 51.0427633 - ], - [ - 3.3991911, - 51.0427702 - ], - [ - 3.3991782, - 51.0427702 - ], - [ - 3.3991782, - 51.0427633 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-10T10:17:45Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "recycling" - ] - }, - "create": 2, - "modify": 4, - "delete": 1, - "area": 8.90100000302656e-11, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/personal.html", - "theme": "personal", - "answer": 4, - "create": 2, - "locale": "nl", - "imagery": "osm", - "deletion": 1, - "add-image": 2, - "change_over_5000m": 2, - "change_within_25m": 7, - "deletion:node/9808316723": "testing point" - }, - "id": 122203639 - } - }, - { - "id": 122203568, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3933813, - 51.2121445 - ], - [ - 4.3973422, - 51.2121445 - ], - [ - 4.3973422, - 51.2142061 - ], - [ - 4.3933813, - 51.2142061 - ], - [ - 4.3933813, - 51.2121445 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "CDVSRGETHRJHR", - "uid": "16249063", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-10T10:16:03Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "apartments" - ], - "man_made": [ - "surveillance" - ] - }, - "create": 4, - "modify": 2, - "delete": 0, - "area": 0.0000081657914399904, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance", - "theme": "surveillance", - "answer": 6, - "create": 5, - "locale": "en", - "imagery": "osm" - }, - "id": 122203568 - } - }, - { - "id": 122200450, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.7269685, - 49.5209019 - ], - [ - 0.7274794, - 49.5209019 - ], - [ - 0.7274794, - 49.5211095 - ], - [ - 0.7269685, - 49.5211095 - ], - [ - 0.7269685, - 49.5209019 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-10T09:12:20Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/rBZaEir.jpg" - ], - "image:0": [ - "https://i.imgur.com/TpFZyRP.jpg" - ], - "image:1": [ - "https://i.imgur.com/6zCGvZf.jpg" - ], - "tourism": [ - "caravan_site" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 1.06062840001571e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/campersite.html", - "theme": "campersite", - "locale": "nl", - "imagery": "osm", - "add-image": 3, - "change_within_25m": 3 - }, - "id": 122200450 - } - }, - { - "id": 122194875, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.5523874, - 47.2451549 - ], - [ - -1.5523874, - 47.2451549 - ], - [ - -1.5523874, - 47.2451549 - ], - [ - -1.5523874, - 47.2451549 - ], - [ - -1.5523874, - 47.2451549 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-10T07:02:46Z", - "reviewed_features": [], - "tag_changes": { - "level": [ - "0" - ], - "access": [ - "yes" - ], - "indoor": [ - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 3, - "locale": "en", - "imagery": "osm", - "change_within_25m": 3 - }, - "id": 122194875 - } - }, - { - "id": 122191993, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.130819, - 50.9333265 - ], - [ - 3.1311877, - 50.9333265 - ], - [ - 3.1311877, - 50.9334467 - ], - [ - 3.130819, - 50.9334467 - ], - [ - 3.130819, - 50.9333265 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 132, - "name": "Mapbox: Other" - } - ], - "tags": [], - "features": [ - { - "url": "way-1068394199", - "note": "Duplicate", - "osm_id": 1068394199, - "reasons": [ - 132 - ], - "version": 1 - } - ], - "user": "Tim Couwelier", - "uid": "7246683", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-10T05:46:58Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house" - ] - }, - "create": 21, - "modify": 0, - "delete": 0, - "area": 4.43177399992001e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclestreets", - "theme": "grb", - "import": 3, - "locale": "nl", - "imagery": "osm" - }, - "id": 122191993 - } - }, - { - "id": 122187206, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2427978, - 50.7334942 - ], - [ - 4.2471698, - 50.7334942 - ], - [ - 4.2471698, - 50.7353737 - ], - [ - 4.2427978, - 50.7353737 - ], - [ - 4.2427978, - 50.7334942 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #education", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-10T00:46:25Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "school" - ], - "school:gender": [ - "mixed" - ], - "isced:2011:level": [ - "vocational_lower_secondary;vocational_upper_secondary" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000821717399997402, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/feature/schools/education.html", - "theme": "education", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 122187206 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-11.json b/Docs/Tools/stats/stats.2022-6-11.json deleted file mode 100644 index ffbe2bcdff..0000000000 --- a/Docs/Tools/stats/stats.2022-6-11.json +++ /dev/null @@ -1,1559 +0,0 @@ -{ - "features": [ - { - "id": 122262388, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "GHOSTsama", - "uid": "15422751", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-11T19:43:50Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/MkT1UEt.jpg" - ], - "natural": [ - "tree" - ], - "leaf_cycle": [ - "evergreen" - ] - }, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "es", - "imagery": "osm" - }, - "id": 122262388 - } - }, - { - "id": 122250140, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.1010462, - 51.8823722 - ], - [ - -2.1010462, - 51.8823722 - ], - [ - -2.1010462, - 51.8823722 - ], - [ - -2.1010462, - 51.8823722 - ], - [ - -2.1010462, - 51.8823722 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "InsertUser", - "uid": "89098", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-11T13:43:04Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "hairdresser" - ], - "phone": [ - "+44 7726612982" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_1000m": 1 - }, - "id": 122250140 - } - }, - { - "id": 122244324, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-11T10:47:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/charging_stations.html", - "theme": "cafes_and_pubs", - "answer": 20, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_500m": 20 - }, - "id": 122244324 - } - }, - { - "id": 122243633, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1419917, - 50.6924385 - ], - [ - 3.1460139, - 50.6924385 - ], - [ - 3.1460139, - 50.6926954 - ], - [ - 3.1419917, - 50.6926954 - ], - [ - 3.1419917, - 50.6924385 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "eiryelio", - "uid": "831652", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-11T10:27:36Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "surveillance" - ], - "operator": [ - "privée" - ], - "camera:type": [ - "fixed" - ], - "camera:mount": [ - "wall" - ], - "surveillance": [ - "outdoor" - ], - "camera:direction": [ - "179" - ], - "surveillance:type": [ - "camera" - ], - "surveillance:zone": [ - "entrance" - ] - }, - "create": 1, - "modify": 5, - "delete": 0, - "area": 0.00000103330317998608, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 8, - "create": 2, - "locale": "fr", - "imagery": "osm" - }, - "id": 122243633 - } - }, - { - "id": 122243627, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5947756, - 51.1817298 - ], - [ - 4.6020666, - 51.1817298 - ], - [ - 4.6020666, - 51.1849816 - ], - [ - 4.5947756, - 51.1849816 - ], - [ - 4.5947756, - 51.1817298 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #cyclestreets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-11T10:27:26Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "tertiary", - "residential" - ], - "proposed:cyclestreet": [ - "yes" - ], - "cyclestreet:start_date": [ - "2022-07-01" - ] - }, - "create": 0, - "modify": 10, - "delete": 0, - "area": 0.0000237088738000058, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclestreets.html", - "theme": "cyclestreets", - "answer": 17, - "locale": "nl", - "imagery": "osm" - }, - "id": 122243627 - } - }, - { - "id": 122243501, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.2017185, - 49.7080053 - ], - [ - 0.2017185, - 49.7080053 - ], - [ - 0.2017185, - 49.7080053 - ], - [ - 0.2017185, - 49.7080053 - ], - [ - 0.2017185, - 49.7080053 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-11T10:23:25Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "lit": [ - "no" - ], - "image": [ - "https://i.imgur.com/C5V1UDi.jpg" - ], - "access": [ - "yes" - ], - "leisure": [ - "playground" - ], - "max_age": [ - "12" - ], - "min_age": [ - "2" - ], - "surface": [ - "Artificial grass" - ], - "wheelchair": [ - "yes" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/playgrounds.html", - "theme": "playgrounds", - "answer": 6, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 7 - }, - "id": 122243501 - } - }, - { - "id": 122243349, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3655406, - 52.1482692 - ], - [ - 13.3655406, - 52.1482692 - ], - [ - 13.3655406, - 52.1482692 - ], - [ - 13.3655406, - 52.1482692 - ], - [ - 13.3655406, - 52.1482692 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ebihardy", - "uid": "263464", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-11T10:19:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 122243349 - } - }, - { - "id": 122240937, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7270072, - 51.0557241 - ], - [ - 3.7270072, - 51.0557241 - ], - [ - 3.7270072, - 51.0557241 - ], - [ - 3.7270072, - 51.0557241 - ], - [ - 3.7270072, - 51.0557241 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-11T09:17:11Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "pub" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 122240937 - } - }, - { - "id": 122240058, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7728781, - 51.1384228 - ], - [ - 2.7728781, - 51.1384228 - ], - [ - 2.7728781, - 51.1384228 - ], - [ - 2.7728781, - 51.1384228 - ], - [ - 2.7728781, - 51.1384228 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-11T08:53:07Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/t0a5BCO.jpg" - ], - "access": [ - "yes" - ], - "indoor": [ - "no" - ], - "image:0": [ - "https://i.imgur.com/VgSRM00.jpg" - ], - "survey:date": [ - "2022-06-10" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 122240058 - } - }, - { - "id": 122239828, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.676327, - 49.5789009 - ], - [ - 0.6763485, - 49.5789009 - ], - [ - 0.6763485, - 49.5789061 - ], - [ - 0.676327, - 49.5789061 - ], - [ - 0.676327, - 49.5789009 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-11T08:44:06Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "recycling" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 1.11799999931645e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/waste.html", - "theme": "waste", - "answer": 1, - "create": 2, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 1 - }, - "id": 122239828 - } - }, - { - "id": 122239607, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7271349, - 51.1384157 - ], - [ - 2.7728864, - 51.1384157 - ], - [ - 2.7728864, - 51.1495046 - ], - [ - 2.7271349, - 51.1495046 - ], - [ - 2.7271349, - 51.1384157 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-11T08:36:10Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "image": [ - "https://i.imgur.com/8byaRLO.jpg", - "https://i.imgur.com/UEFQ7xb.jpg", - "https://i.imgur.com/jiQZ0qG.jpg", - "https://i.imgur.com/DU85Auh.jpg", - "https://i.imgur.com/FNtaipH.jpg" - ], - "access": [ - "yes" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "playground", - "picnic_table" - ], - "operator": [ - "Stad Nieuwpoort" - ] - }, - "create": 0, - "modify": 9, - "delete": 0, - "area": 0.000507333808349873, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 7, - "change_over_5000m": 8 - }, - "id": 122239607 - } - }, - { - "id": 122239596, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2783017, - 50.7922022 - ], - [ - 4.2844293, - 50.7922022 - ], - [ - 4.2844293, - 50.7968073 - ], - [ - 4.2783017, - 50.7968073 - ], - [ - 4.2783017, - 50.7922022 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Mizuna", - "uid": "12496737", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-11T08:35:44Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "access": [ - "yes" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "playground" - ], - "surface": [ - "grass" - ], - "operator": [ - "Gemeente" - ] - }, - "create": 4, - "modify": 6, - "delete": 0, - "area": 0.0000282182107599953, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 14, - "create": 4, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 4, - "change_within_25m": 14 - }, - "id": 122239596 - } - }, - { - "id": 122239427, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7326543, - 51.1465674 - ], - [ - 2.7326543, - 51.1465674 - ], - [ - 2.7326543, - 51.1465674 - ], - [ - 2.7326543, - 51.1465674 - ], - [ - 2.7326543, - 51.1465674 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-11T08:30:09Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/dn8JXdh.jpg" - ], - "amenity": [ - "drinking_water" - ], - "mapillary": [ - "1781670295346694" - ], - "survey:date": [ - "2022-06-10" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 2 - }, - "id": 122239427 - } - }, - { - "id": 122239207, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7323308, - 51.1467587 - ], - [ - 2.7323308, - 51.1467587 - ], - [ - 2.7323308, - 51.1467587 - ], - [ - 2.7323308, - 51.1467587 - ], - [ - 2.7323308, - 51.1467587 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-11T08:23:32Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_repair_station" - ], - "image:0": [ - "https://i.imgur.com/L6AfxJj.jpg" - ], - "image:1": [ - "https://i.imgur.com/hKNiVCu.jpg" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 2, - "change_over_5000m": 2 - }, - "id": 122239207 - } - }, - { - "id": 122238710, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.38339, - 50.8606546 - ], - [ - 4.38339, - 50.8606546 - ], - [ - 4.38339, - 50.8606546 - ], - [ - 4.38339, - 50.8606546 - ], - [ - 4.38339, - 50.8606546 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-11T08:04:24Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/BffRpz3.jpg" - ], - "amenity": [ - "bicycle_parking" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_5000m": 1 - }, - "id": 122238710 - } - }, - { - "id": 122238370, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6503974, - 48.3854422 - ], - [ - 13.6503974, - 48.3854422 - ], - [ - 13.6503974, - 48.3854422 - ], - [ - 13.6503974, - 48.3854422 - ], - [ - 13.6503974, - 48.3854422 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Nos_Fi", - "uid": "526289", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-11T07:49:58Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "playground" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds", - "theme": "playgrounds", - "answer": 4, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_100m": 4 - }, - "id": 122238370 - } - }, - { - "id": 122236225, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3985404, - 51.0404438 - ], - [ - 3.3985404, - 51.0404438 - ], - [ - 3.3985404, - 51.0404438 - ], - [ - 3.3985404, - 51.0404438 - ], - [ - 3.3985404, - 51.0404438 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-11T06:21:32Z", - "reviewed_features": [], - "tag_changes": { - "phone": [ - "+32 472 37 33 06" - ], - "amenity": [ - "cafe" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 4, - "locale": "en", - "imagery": "osm", - "change_within_500m": 4 - }, - "id": 122236225 - } - }, - { - "id": 122236189, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-11T06:19:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_500m": 1 - }, - "id": 122236189 - } - }, - { - "id": 122236165, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3985404, - 51.0404438 - ], - [ - 3.3985404, - 51.0404438 - ], - [ - 3.3985404, - 51.0404438 - ], - [ - 3.3985404, - 51.0404438 - ], - [ - 3.3985404, - 51.0404438 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-11T06:18:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 2, - "locale": "en", - "imagery": "osm", - "change_within_500m": 2 - }, - "id": 122236165 - } - }, - { - "id": 122235625, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.241626, - -39.8378774 - ], - [ - -73.2395732, - -39.8378774 - ], - [ - -73.2395732, - -39.8332694 - ], - [ - -73.241626, - -39.8332694 - ], - [ - -73.241626, - -39.8378774 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-11T05:58:28Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/dRZdOau.jpg", - "https://i.imgur.com/BTF5onu.jpg", - "https://i.imgur.com/kHaGDeO.jpg", - "https://i.imgur.com/koBPxzC.jpg", - "https://i.imgur.com/9Xc8t4i.jpg", - "https://i.imgur.com/aq5UHsn.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 1, - "modify": 8, - "delete": 0, - "area": 0.00000945930240001544, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "create": 1, - "locale": "es", - "imagery": "osmfr", - "add-image": 8, - "change_over_5000m": 1, - "change_within_1000m": 4, - "change_within_5000m": 3 - }, - "id": 122235625 - } - }, - { - "id": 122233973, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0312258, - 14.6416487 - ], - [ - 121.0312308, - 14.6416487 - ], - [ - 121.0312308, - 14.6417085 - ], - [ - 121.0312258, - 14.6417085 - ], - [ - 121.0312258, - 14.6416487 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mikko_tamura", - "uid": "2258022", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-11T04:14:47Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "cafe" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 2.99000000098509e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "move": 1, - "theme": "https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", - "locale": "en", - "imagery": "osm", - "move:node/7134466090": "improve_accuracy" - }, - "id": 122233973 - } - }, - { - "id": 122233202, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 85.3100405, - 27.7160656 - ], - [ - 85.3100405, - 27.7160656 - ], - [ - 85.3100405, - 27.7160656 - ], - [ - 85.3100405, - 27.7160656 - ], - [ - 85.3100405, - 27.7160656 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mikko_tamura", - "uid": "2258022", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 4", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-11T02:47:12Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Pink Tiffanys" - ], - "amenity": [ - "pub" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 4", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 122233202 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-12.json b/Docs/Tools/stats/stats.2022-6-12.json deleted file mode 100644 index d8948e2770..0000000000 --- a/Docs/Tools/stats/stats.2022-6-12.json +++ /dev/null @@ -1,3052 +0,0 @@ -{ - "features": [ - { - "id": 122299850, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.1967126, - 56.144065 - ], - [ - 10.2185732, - 56.144065 - ], - [ - 10.2185732, - 56.177055 - ], - [ - 10.1967126, - 56.177055 - ], - [ - 10.1967126, - 56.144065 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Lostmonkey", - "uid": "3401037", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #bicycle_rental", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-12T22:37:31Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_rental" - ] - }, - "create": 0, - "modify": 0, - "delete": 8, - "area": 0.000721181194000117, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bicycle_rental.html", - "theme": "bicycle_rental", - "locale": "en", - "imagery": "osm", - "deletion": 8, - "deletion:node/799423820": "disused", - "deletion:node/799423823": "disused", - "deletion:node/1241055888": "disused", - "deletion:node/1241055896": "disused", - "deletion:node/1241055902": "shop_closed", - "deletion:node/1241055910": "shop_closed", - "deletion:node/1241055923": "disused", - "deletion:node/1241055930": "shop_closed" - }, - "id": 122299850 - } - }, - { - "id": 122298206, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7085348, - 50.7669909 - ], - [ - 3.7085348, - 50.7669909 - ], - [ - 3.7085348, - 50.7669909 - ], - [ - 3.7085348, - 50.7669909 - ], - [ - 3.7085348, - 50.7669909 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-12T21:10:02Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "pub" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 122298206 - } - }, - { - "id": 122297961, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7069604, - 51.0294678 - ], - [ - 3.7072366, - 51.0294678 - ], - [ - 3.7072366, - 51.0296766 - ], - [ - 3.7069604, - 51.0296766 - ], - [ - 3.7069604, - 51.0294678 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "velosophe", - "uid": "477861", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-12T20:59:17Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 5.76705600008122e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 2, - "create": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 122297961 - } - }, - { - "id": 122297789, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.0998057, - 52.3834279 - ], - [ - 10.0998064, - 52.3834279 - ], - [ - 10.0998064, - 52.3834331 - ], - [ - 10.0998057, - 52.3834331 - ], - [ - 10.0998057, - 52.3834279 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "eq9RxsEL", - "uid": "6337397", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-12T20:50:38Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ], - "light:count": [ - "1" - ], - "light:method": [ - "discharge" - ], - "light:direction": [ - "172" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 3.64000000336237e-12, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "move": 1, - "theme": "street_lighting", - "answer": 3, - "locale": "de", - "imagery": "osm", - "move:node/9674010052": "improve_accuracy" - }, - "id": 122297789 - } - }, - { - "id": 122296228, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.9631281, - 48.0620481 - ], - [ - -2.9467708, - 48.0620481 - ], - [ - -2.9467708, - 48.0752211 - ], - [ - -2.9631281, - 48.0752211 - ], - [ - -2.9631281, - 48.0620481 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LeTopographeFou", - "uid": "3178375", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-12T19:48:35Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "school" - ], - "highway": [ - "tertiary", - "residential", - "living_street" - ], - "name:etymology:wikidata": [ - "Q274344", - "Q1290", - "Q15975", - "Q2714608", - "Q49767", - "Q2908", - "Q487523", - "Q535", - "Q188697", - "Q311854", - "Q6527", - "Q3079979", - "Q179680", - "Q9191", - "Q448", - "Q9068", - "Q70326", - "Q43444", - "Q602468", - "Q219621", - "Q493", - "Q298394", - "Q41568", - "Q3132164", - "Q9711", - "Q153232", - "Q34670" - ] - }, - "create": 0, - "modify": 37, - "delete": 0, - "area": 0.000215474712900032, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 41, - "locale": "fr", - "imagery": "osm" - }, - "id": 122296228 - } - }, - { - "id": 122295144, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.4519133, - 43.6080802 - ], - [ - 1.4519133, - 43.6080802 - ], - [ - 1.4519133, - 43.6080802 - ], - [ - 1.4519133, - 43.6080802 - ], - [ - 1.4519133, - 43.6080802 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-12T19:15:05Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "drinking_water" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 122295144 - } - }, - { - "id": 122292236, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-12T17:51:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/trees.html", - "theme": "trees", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 122292236 - } - }, - { - "id": 122290058, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.9865728, - 49.4043395 - ], - [ - 0.9865728, - 49.4043395 - ], - [ - 0.9865728, - 49.4043395 - ], - [ - 0.9865728, - 49.4043395 - ], - [ - 0.9865728, - 49.4043395 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-12T16:50:05Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/o6JwSSZ.jpg" - ], - "natural": [ - "tree" - ], - "leaf_cycle": [ - "deciduous", - "evergreen" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees", - "theme": "trees", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 2 - }, - "id": 122290058 - } - }, - { - "id": 122289566, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2846318, - 51.3400385 - ], - [ - 3.285466, - 51.3400385 - ], - [ - 3.285466, - 51.340155 - ], - [ - 3.2846318, - 51.340155 - ], - [ - 3.2846318, - 51.3400385 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-12T16:38:04Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets", - "bicycle_rental" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 9.71843000035697e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 9, - "create": 1, - "import": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 2, - "change_within_25m": 11, - "import:node/9812712386": "source: https://osm.org/note/3161457" - }, - "id": 122289566 - } - }, - { - "id": 122289234, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3953495, - 50.8442672 - ], - [ - 4.4356207, - 50.8442672 - ], - [ - 4.4356207, - 50.8529547 - ], - [ - 4.3953495, - 50.8529547 - ], - [ - 4.3953495, - 50.8442672 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-12T16:29:07Z", - "reviewed_features": [], - "tag_changes": { - "ref": [ - "SK15" - ], - "name": [ - "Milcamps I" - ], - "image": [ - "https://i.imgur.com/clcNmf9.jpg", - "https://i.imgur.com/XX3z779.jpg" - ], - "charge": [ - "60 EUR/year" - ], - "amenity": [ - "bicycle_parking" - ], - "website": [ - "https://app.cycloparking.brussels/parkings" - ], - "capacity": [ - "5" - ], - "operator": [ - "parking.brussels" - ], - "operator:type": [ - "public" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.000349856050000028, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 2, - "change_within_5000m": 2 - }, - "id": 122289234 - } - }, - { - "id": 122288474, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2582681, - 51.3445375 - ], - [ - 3.2582681, - 51.3445375 - ], - [ - 3.2582681, - 51.3445375 - ], - [ - 3.2582681, - 51.3445375 - ], - [ - 3.2582681, - 51.3445375 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-12T16:12:58Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "convenience" - ], - "payment:cash": [ - "yes" - ], - "payment:cards": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/shops.html", - "theme": "shops", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 122288474 - } - }, - { - "id": 122287147, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.7202609, - 51.0125173 - ], - [ - 5.7202609, - 51.0125173 - ], - [ - 5.7202609, - 51.0125173 - ], - [ - 5.7202609, - 51.0125173 - ], - [ - 5.7202609, - 51.0125173 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-12T15:42:34Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "public_bookcase" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/bookcases.html", - "theme": "bookcases", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 122287147 - } - }, - { - "id": 122287114, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-12T15:41:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/bookcases.html", - "theme": "bookcases", - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 122287114 - } - }, - { - "id": 122287110, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-12T15:41:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/bookcases.html", - "theme": "bookcases", - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 122287110 - } - }, - { - "id": 122286252, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.7199919, - 51.0198821 - ], - [ - 5.7199919, - 51.0198821 - ], - [ - 5.7199919, - 51.0198821 - ], - [ - 5.7199919, - 51.0198821 - ], - [ - 5.7199919, - 51.0198821 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-12T15:22:44Z", - "reviewed_features": [], - "tag_changes": { - "email": [ - "info@hotel-beau-sejour.be" - ], - "phone": [ - "+32 89 75 77 91" - ], - "amenity": [ - "restaurant" - ], - "website": [ - "https://www.hotel-beau-sejour.be/restaurant/" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/food.html", - "theme": "food", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 3 - }, - "id": 122286252 - } - }, - { - "id": 122286129, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Cubbe", - "uid": "10604125", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-12T15:20:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 122286129 - } - }, - { - "id": 122285804, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.9865728, - 49.4043395 - ], - [ - 0.9865835, - 49.4043395 - ], - [ - 0.9865835, - 49.4043761 - ], - [ - 0.9865728, - 49.4043761 - ], - [ - 0.9865728, - 49.4043395 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-12T15:13:57Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "leaf_cycle": [ - "evergreen" - ] - }, - "create": 0, - "modify": 1, - "delete": 1, - "area": 3.91620000011864e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/trees.html", - "theme": "trees", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "deletion": 1, - "change_over_5000m": 2, - "deletion:node/9812384017": "duplicate" - }, - "id": 122285804 - } - }, - { - "id": 122284259, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2957147, - 51.2771474 - ], - [ - 3.2957147, - 51.2771474 - ], - [ - 3.2957147, - 51.2771474 - ], - [ - 3.2957147, - 51.2771474 - ], - [ - 3.2957147, - 51.2771474 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 2, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-12T14:39:56Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "drinking_water" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_50m": 1 - }, - "id": 122284259 - } - }, - { - "id": 122281801, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.7176901, - 51.0154131 - ], - [ - 5.7177679, - 51.0154131 - ], - [ - 5.7177679, - 51.0154822 - ], - [ - 5.7176901, - 51.0154822 - ], - [ - 5.7176901, - 51.0154131 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-12T13:40:52Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket", - "waste_disposal" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 5.37597999978291e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/waste.html", - "theme": "waste", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 122281801 - } - }, - { - "id": 122281762, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-12T13:40:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/waste.html", - "theme": "waste", - "create": 1, - "locale": "en", - "imagery": "AGIV", - "change_over_5000m": 1 - }, - "id": 122281762 - } - }, - { - "id": 122281708, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.7178102, - 51.015712 - ], - [ - 5.7178102, - 51.015712 - ], - [ - 5.7178102, - 51.015712 - ], - [ - 5.7178102, - 51.015712 - ], - [ - 5.7178102, - 51.015712 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-12T13:38:57Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "artwork" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/personal.html", - "theme": "personal", - "create": 1, - "locale": "en", - "imagery": "AGIV", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 122281708 - } - }, - { - "id": 122281668, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-12T13:38:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/personal.html", - "theme": "personal", - "create": 1, - "locale": "en", - "imagery": "AGIV", - "change_over_5000m": 1 - }, - "id": 122281668 - } - }, - { - "id": 122281633, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-12T13:37:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/personal.html", - "theme": "cafes_and_pubs", - "answer": 6, - "locale": "en", - "imagery": "AGIV", - "change_within_500m": 6 - }, - "id": 122281633 - } - }, - { - "id": 122281429, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1979386, - 50.9068532 - ], - [ - 4.1983591, - 50.9068532 - ], - [ - 4.1983591, - 50.9071942 - ], - [ - 4.1979386, - 50.9071942 - ], - [ - 4.1979386, - 50.9068532 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-12T13:32:59Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "image": [ - "https://i.imgur.com/sD8Nygb.jpg" - ], - "access": [ - "yes" - ], - "leisure": [ - "playground" - ], - "surface": [ - "grass" - ], - "operator": [ - "Gemeente Asse" - ], - "wheelchair": [ - "limited" - ], - "opening_hours": [ - "sunrise-sunset" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 1.43390499999706e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 5, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 6 - }, - "id": 122281429 - } - }, - { - "id": 122281252, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.9865728, - 49.4043395 - ], - [ - 0.9865835, - 49.4043395 - ], - [ - 0.9865835, - 49.4043761 - ], - [ - 0.9865728, - 49.4043761 - ], - [ - 0.9865728, - 49.4043395 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-12T13:29:55Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 2, - "modify": 1, - "delete": 0, - "area": 3.91620000011864e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/trees.html", - "theme": "trees", - "answer": 2, - "create": 2, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_500m": 2 - }, - "id": 122281252 - } - }, - { - "id": 122280884, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-12T13:22:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/personal.html", - "theme": "cafes_and_pubs", - "answer": 8, - "locale": "en", - "imagery": "osm", - "change_within_500m": 8 - }, - "id": 122280884 - } - }, - { - "id": 122277981, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 147.3304607, - -42.889 - ], - [ - 147.3318368, - -42.889 - ], - [ - 147.3318368, - -42.8870022 - ], - [ - 147.3304607, - -42.8870022 - ], - [ - 147.3304607, - -42.889 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NoCashMoney", - "uid": "15814196", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-12T12:10:06Z", - "reviewed_features": [], - "tag_changes": { - "email": [ - "hello@lnbsalamanca.com.au", - "devilskitchencafe@gmail.com" - ], - "fixme": [ - "Freeform tag `cuisine` used, to be doublechecked" - ], - "phone": [ - "+61 3 6169 9596", - "+61 474 858 727" - ], - "amenity": [ - "fast_food", - "restaurant" - ], - "cuisine": [ - "Fried Chicken" - ], - "website": [ - "https://www.facebook.com/LnBSalmanca", - "https://www.devilskitchencafe.com/" - ], - "delivery": [ - "no" - ], - "takeaway": [ - "only", - "yes" - ], - "diet:halal": [ - "no" - ], - "diet:vegan": [ - "limited" - ], - "wheelchair": [ - "yes" - ], - "payment:cash": [ - "yes" - ], - "opening_hours": [ - "Mo 10:30-15:00; Tu-Th 10:30-20:00; Fr 10:30-00:00; Sa 00:00-02:30, 18:00-00:00; Su 00:00-04:30", - "Mo-We 07:00-14:30; Th-Fr 07:00-14:30, 17:00-20:00" - ], - "payment:cards": [ - "yes" - ], - "diet:vegetarian": [ - "no", - "limited" - ], - "service:electricity": [ - "no" - ] - }, - "create": 0, - "modify": 19, - "delete": 0, - "area": 0.00000274917257998201, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 21, - "locale": "en", - "imagery": "osm" - }, - "id": 122277981 - } - }, - { - "id": 122275498, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-12T10:58:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/index.html", - "theme": "cafes_and_pubs", - "answer": 2, - "locale": "en", - "change_within_500m": 2 - }, - "id": 122275498 - } - }, - { - "id": 122275496, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-12T10:58:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/index.html", - "theme": "cafes_and_pubs", - "answer": 2, - "locale": "en", - "change_within_500m": 2 - }, - "id": 122275496 - } - }, - { - "id": 122275323, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 147.2547153, - -42.7910902 - ], - [ - 147.2548038, - -42.7910902 - ], - [ - 147.2548038, - -42.7906926 - ], - [ - 147.2547153, - -42.7906926 - ], - [ - 147.2547153, - -42.7910902 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NoCashMoney", - "uid": "15814196", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #openwindpowermap", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-12T10:52:59Z", - "reviewed_features": [], - "tag_changes": { - "power": [ - "generator" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 3.51876000015143e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/openwindpowermap.html", - "theme": "openwindpowermap", - "create": 2, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 122275323 - } - }, - { - "id": 122274792, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 147.2515119, - -42.7913231 - ], - [ - 147.2557077, - -42.7913231 - ], - [ - 147.2557077, - -42.7866899 - ], - [ - 147.2515119, - -42.7866899 - ], - [ - 147.2515119, - -42.7913231 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NoCashMoney", - "uid": "15814196", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-12T10:36:40Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "supermarket", - "butcher", - "bakery", - "alcohol", - "hairdresser" - ], - "phone": [ - "+61 3 6227 4836", - "+61 3 6249 3679", - "+61 3 6249 9117", - "+61 3 6249 9266", - "+61 3 6249 2613" - ], - "website": [ - "https://www.claremontplaza.com.au/store/claremont-plaza-meats", - "https://www.bakersdelight.com.au/bakery-locator/claremont-plaza/", - "https://store.bws.com.au/storelocator/tas-claremont-7147", - "https://www.facebook.com/lorrainescoiffure" - ], - "building": [ - "yes" - ], - "payment:cash": [ - "yes" - ], - "opening_hours": [ - "Mo-Su 07:00-19:30", - "Mo-Fr 06:00-18:00; Sa 08:00-18:00; Su 06:00-18:00", - "Mo 09:00-18:00; Tu-Th 09:00-20:00; Fr-Sa 09:00-21:00; Su 09:00-19:00", - "Mo-Th 09:00-21:00; Fr-Su 09:00-22:00", - "Tu-Fr 09:00-17:00; Sa 09:00-13:00" - ], - "payment:cards": [ - "yes" - ] - }, - "create": 0, - "modify": 19, - "delete": 0, - "area": 0.0000194399805599605, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 21, - "locale": "en", - "imagery": "osm" - }, - "id": 122274792 - } - }, - { - "id": 122274572, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2179935, - 49.1467403 - ], - [ - 9.2185476, - 49.1467403 - ], - [ - 9.2185476, - 49.1472093 - ], - [ - 9.2179935, - 49.1472093 - ], - [ - 9.2179935, - 49.1467403 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Maleasy", - "uid": "134587", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-12T10:28:20Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "bicycle_parking" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 2.59872900001592e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 3, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_5000m": 3 - }, - "id": 122274572 - } - }, - { - "id": 122274526, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 147.2470021, - -42.7905268 - ], - [ - 147.2470021, - -42.7905268 - ], - [ - 147.2470021, - -42.7905268 - ], - [ - 147.2470021, - -42.7905268 - ], - [ - 147.2470021, - -42.7905268 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NoCashMoney", - "uid": "15814196", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-12T10:26:36Z", - "reviewed_features": [], - "tag_changes": { - "email": [ - "info@coffeeonwyndham.com" - ], - "amenity": [ - "cafe" - ], - "payment:cash": [ - "yes" - ], - "opening_hours": [ - "Mo-Fr 07:30-15:00; Sa 08:00-14:00" - ], - "payment:cards": [ - "yes" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 122274526 - } - }, - { - "id": 122274466, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 147.2456137, - -42.7802331 - ], - [ - 147.2457441, - -42.7802331 - ], - [ - 147.2457441, - -42.7801364 - ], - [ - 147.2456137, - -42.7801364 - ], - [ - 147.2456137, - -42.7802331 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NoCashMoney", - "uid": "15814196", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-12T10:24:25Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "access": [ - "yes" - ], - "amenity": [ - "toilets" - ], - "building": [ - "yes" - ], - "opening_hours": [ - "24/7" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.26096799980558e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 122274466 - } - }, - { - "id": 122273277, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 147.2466809, - -42.7907617 - ], - [ - 147.2549555, - -42.7907617 - ], - [ - 147.2549555, - -42.7814506 - ], - [ - 147.2466809, - -42.7814506 - ], - [ - 147.2466809, - -42.7907617 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NoCashMoney", - "uid": "15814196", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-12T09:50:14Z", - "reviewed_features": [], - "tag_changes": { - "phone": [ - "+61 3 6275 2476" - ], - "amenity": [ - "fast_food", - "restaurant" - ], - "building": [ - "yes" - ], - "delivery": [ - "yes", - "no" - ], - "takeaway": [ - "only", - "yes" - ], - "diet:halal": [ - "no" - ], - "diet:vegan": [ - "no" - ], - "wheelchair": [ - "yes", - "no" - ], - "payment:cash": [ - "yes" - ], - "opening_hours": [ - "Mo-Su 16:00-21:30", - "Tu 16:30-20:30; We-Th 11:30-14:00, 16:30-20:30; Fr 11:30-14:00, 16:30-21:00; Sa 16:30-21:00; Su 16:30-20:30", - "Mo-Su 10:00-22:00", - "Mo-Th 16:30-21:00; Fr-Sa 16:30-22:00; Su 16:30-21:00" - ], - "payment:cards": [ - "yes" - ], - "diet:vegetarian": [ - "limited", - "yes" - ] - }, - "create": 0, - "modify": 30, - "delete": 0, - "area": 0.0000770456280599167, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 36, - "locale": "en", - "imagery": "osm" - }, - "id": 122273277 - } - }, - { - "id": 122271628, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 146.7045822, - -42.7977902 - ], - [ - 147.2530024, - -42.7977902 - ], - [ - 147.2530024, - -42.480241 - ], - [ - 146.7045822, - -42.480241 - ], - [ - 146.7045822, - -42.7977902 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NoCashMoney", - "uid": "15814196", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #schools", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-12T09:04:07Z", - "reviewed_features": [], - "tag_changes": { - "email": [ - "claremont.college@education.tas.gov.au", - "austins.ferry.primary@education.tas.gov.au", - "ouse.district.school@education.tas.gov.au" - ], - "phone": [ - "+61 3 6249 6868", - "+61 3 6275 7222", - "+61 3 6287 1259" - ], - "amenity": [ - "school" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.174150395773844, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "schools", - "answer": 7, - "locale": "en", - "imagery": "osm" - }, - "id": 122271628 - } - }, - { - "id": 122269081, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.24835, - 40.9349495 - ], - [ - 14.2637055, - 40.9349495 - ], - [ - 14.2637055, - 40.9387268 - ], - [ - 14.24835, - 40.9387268 - ], - [ - 14.24835, - 40.9349495 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Acheloo", - "uid": "11366923", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-12T07:47:51Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "bicycle" - ], - "access": [ - "yes" - ], - "bottle": [ - "yes" - ], - "amenity": [ - "drinking_water", - "bicycle_parking" - ], - "bicycle_parking": [ - "wall_loops" - ], - "service:bicycle:repair": [ - "yes" - ], - "service:bicycle:retail": [ - "yes" - ], - "service:bicycle:second_hand": [ - "yes" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.000058002330149937, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 8, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 122269081 - } - }, - { - "id": 122268781, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3227124, - 51.098602 - ], - [ - 3.3242065, - 51.098602 - ], - [ - 3.3242065, - 51.0991898 - ], - [ - 3.3227124, - 51.0991898 - ], - [ - 3.3227124, - 51.098602 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-12T07:38:47Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes" - ] - }, - "create": 40, - "modify": 0, - "delete": 0, - "area": 8.78231979997187e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 5, - "locale": "nl", - "imagery": "osm" - }, - "id": 122268781 - } - }, - { - "id": 122268077, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3727788, - 51.0717884 - ], - [ - 3.3775341, - 51.0717884 - ], - [ - 3.3775341, - 51.0767843 - ], - [ - 3.3727788, - 51.0767843 - ], - [ - 3.3727788, - 51.0717884 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-12T07:13:41Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/s3BAzqp.jpg", - "https://i.imgur.com/prUSpQ4.jpg", - "https://i.imgur.com/q41wY7s.jpg" - ], - "amenity": [ - "bench" - ], - "barrier": [ - "kissing_gate" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000237570032699883, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 122268077 - } - }, - { - "id": 122267883, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3628822, - 51.0683517 - ], - [ - 3.3628822, - 51.0683517 - ], - [ - 3.3628822, - 51.0683517 - ], - [ - 3.3628822, - 51.0683517 - ], - [ - 3.3628822, - 51.0683517 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-12T07:07:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/nature.html", - "theme": "nature", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 122267883 - } - }, - { - "id": 122267607, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3621004, - 51.0691329 - ], - [ - 3.3733461, - 51.0691329 - ], - [ - 3.3733461, - 51.0720567 - ], - [ - 3.3621004, - 51.0720567 - ], - [ - 3.3621004, - 51.0691329 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-12T06:58:37Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/s3BAzqp.jpg", - "https://i.imgur.com/thEWljK.jpg" - ], - "barrier": [ - "kissing_gate", - "gate" - ], - "survey:date": [ - "2022-06-11" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000328801776599751, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/barriers_bridges/barriers_bridges.json", - "answer": 1, - "locale": "en", - "imagery": "osm", - "add-image": 2 - }, - "id": 122267607 - } - }, - { - "id": 122267335, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3621513, - 51.0690331 - ], - [ - 3.3792932, - 51.0690331 - ], - [ - 3.3792932, - 51.0778989 - ], - [ - 3.3621513, - 51.0778989 - ], - [ - 3.3621513, - 51.0690331 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-12T06:49:46Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/YY1HISk.jpg" - ], - "route": [ - "foot", - "hiking" - ], - "image:0": [ - "https://i.imgur.com/GDFLtJq.jpg" - ], - "survey:date": [ - "2022-06-11", - "2022-03-05", - "2021-06-09" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.000151976657020044, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "answer": 4, - "locale": "en", - "imagery": "osm", - "add-image": 2 - }, - "id": 122267335 - } - }, - { - "id": 122266562, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.9490715, - 47.5519293 - ], - [ - 7.9490715, - 47.5519293 - ], - [ - 7.9490715, - 47.5519293 - ], - [ - 7.9490715, - 47.5519293 - ], - [ - 7.9490715, - 47.5519293 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "KaiPankrath", - "uid": "4067009", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-12T06:23:18Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/XDixEO5.jpg" - ], - "bottle": [ - "yes" - ], - "amenity": [ - "drinking_water" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 122266562 - } - }, - { - "id": 122266264, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.9485755, - 47.5509676 - ], - [ - 7.9485755, - 47.5509676 - ], - [ - 7.9485755, - 47.5509676 - ], - [ - 7.9485755, - 47.5509676 - ], - [ - 7.9485755, - 47.5509676 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "KaiPankrath", - "uid": "4067009", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-12T06:12:47Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/XpC64Ym.jpg" - ], - "amenity": [ - "fountain" - ], - "tourism": [ - "artwork" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 122266264 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-13.json b/Docs/Tools/stats/stats.2022-6-13.json deleted file mode 100644 index 62b674b2cd..0000000000 --- a/Docs/Tools/stats/stats.2022-6-13.json +++ /dev/null @@ -1,1287 +0,0 @@ -{ - "features": [ - { - "id": 122342463, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2884077, - 50.949072 - ], - [ - 3.288568, - 50.949072 - ], - [ - 3.288568, - 50.9490762 - ], - [ - 3.2884077, - 50.9490762 - ], - [ - 3.2884077, - 50.949072 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-13T20:30:18Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/259uKHx.jpg" - ], - "access": [ - "yes" - ], - "amenity": [ - "bicycle_parking" - ], - "covered": [ - "no" - ], - "cargo_bike": [ - "yes" - ], - "bicycle_parking": [ - "wall_loops" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 6.73259999895257e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", - "theme": "cyclofix", - "answer": 8, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 122342463 - } - }, - { - "id": 122342462, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2886765, - 50.9488389 - ], - [ - 3.2886765, - 50.9488389 - ], - [ - 3.2886765, - 50.9488389 - ], - [ - 3.2886765, - 50.9488389 - ], - [ - 3.2886765, - 50.9488389 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-13T20:30:18Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "charging_station" - ], - "image:1": [ - "https://i.imgur.com/YhF2GPS.jpg" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/charging_stations.html", - "theme": "charging_stations", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 1 - }, - "id": 122342462 - } - }, - { - "id": 122339711, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2884077, - 50.949072 - ], - [ - 3.288568, - 50.949072 - ], - [ - 3.288568, - 50.9490762 - ], - [ - 3.2884077, - 50.9490762 - ], - [ - 3.2884077, - 50.949072 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-13T19:17:00Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 6.73259999895257e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", - "theme": "cyclofix", - "create": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 2, - "change_within_25m": 1 - }, - "id": 122339711 - } - }, - { - "id": 122339561, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2876135, - 50.9487953 - ], - [ - 3.2886542, - 50.9487953 - ], - [ - 3.2886542, - 50.9491349 - ], - [ - 3.2876135, - 50.9491349 - ], - [ - 3.2876135, - 50.9487953 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-13T19:13:17Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes" - ] - }, - "create": 1, - "modify": 5, - "delete": 0, - "area": 3.53421719996493e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/aed.html", - "theme": "aed", - "answer": 5, - "create": 2, - "locale": "en", - "imagery": "osm", - "add-image": 2, - "change_within_25m": 9 - }, - "id": 122339561 - } - }, - { - "id": 122338849, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2886765, - 50.9486973 - ], - [ - 3.2887396, - 50.9486973 - ], - [ - 3.2887396, - 50.9488389 - ], - [ - 3.2886765, - 50.9488389 - ], - [ - 3.2886765, - 50.9486973 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-13T18:56:52Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "charging_station" - ] - }, - "create": 2, - "modify": 8, - "delete": 0, - "area": 8.93495999997767e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/charging_stations.html", - "theme": "charging_stations", - "answer": 24, - "create": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 5, - "change_over_5000m": 2, - "change_within_25m": 29 - }, - "id": 122338849 - } - }, - { - "id": 122338737, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.0539164, - 48.37938 - ], - [ - 4.3393348, - 48.37938 - ], - [ - 4.3393348, - 50.836412 - ], - [ - -0.0539164, - 50.836412 - ], - [ - -0.0539164, - 48.37938 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-13T18:53:41Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "yes" - ], - "amenity": [ - "charging_station" - ], - "socket:type2": [ - "2", - "1" - ] - }, - "create": 0, - "modify": 11, - "delete": 0, - "area": 10.7943587824384, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/charging_stations.html", - "theme": "charging_stations", - "answer": 21, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 19, - "change_within_5000m": 2 - }, - "id": 122338737 - } - }, - { - "id": 122334705, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7102741, - 51.0231119 - ], - [ - 3.7102741, - 51.0231119 - ], - [ - 3.7102741, - 51.0231119 - ], - [ - 3.7102741, - 51.0231119 - ], - [ - 3.7102741, - 51.0231119 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #hackerspaces", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-13T17:10:26Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "community_centre" - ], - "leisure": [ - "hackerspace" - ], - "service:3dprinter": [ - "yes" - ], - "service:lasercutter": [ - "no" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/hackerspaces", - "theme": "hackerspaces", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "change_within_500m": 2 - }, - "id": 122334705 - } - }, - { - "id": 122325255, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6057277, - 50.8831336 - ], - [ - 5.7047072, - 50.8831336 - ], - [ - 5.7047072, - 50.9240128 - ], - [ - 5.6057277, - 50.9240128 - ], - [ - 5.6057277, - 50.8831336 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "kovna", - "uid": "16268733", - "editor": "MapComplete 0.20.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-13T13:04:15Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_repair_station" - ] - }, - "create": 3, - "modify": 1, - "delete": 0, - "area": 0.00404620277639989, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 3, - "create": 3, - "locale": "nl", - "imagery": "AGIV", - "add-image": 3 - }, - "id": 122325255 - } - }, - { - "id": 122325192, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.557196, - -34.639823 - ], - [ - -58.5393499, - -34.639823 - ], - [ - -58.5393499, - -34.6395757 - ], - [ - -58.557196, - -34.6395757 - ], - [ - -58.557196, - -34.639823 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AgusQui", - "uid": "331218", - "editor": "MapComplete 0.20.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-13T13:02:13Z", - "reviewed_features": [], - "tag_changes": { - "ref": [ - "C 78", - "A 90" - ], - "note": [ - "Eliminar ref" - ], - "railway": [ - "signal" - ], - "railway:signal:main:ref": [ - "C 82" - ], - "railway:signal:route:ref": [ - "C 82-2" - ], - "railway:signal:route:caption": [ - "A" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000044133405299654, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "answer": 6, - "locale": "en", - "imagery": "osm", - "change_within_25m": 6 - }, - "id": 122325192 - } - }, - { - "id": 122324459, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.0539164, - 48.37938 - ], - [ - -0.0539164, - 48.37938 - ], - [ - -0.0539164, - 48.37938 - ], - [ - -0.0539164, - 48.37938 - ], - [ - -0.0539164, - 48.37938 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-13T12:41:09Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "charging_station" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/charging_stations.html", - "theme": "charging_stations", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 2, - "change_over_5000m": 1, - "change_within_25m": 6 - }, - "id": 122324459 - } - }, - { - "id": 122324144, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.0545587, - 48.3795824 - ], - [ - -0.053921, - 48.3795824 - ], - [ - -0.053921, - 48.3823148 - ], - [ - -0.0545587, - 48.3823148 - ], - [ - -0.0545587, - 48.3795824 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-13T12:33:19Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "yes" - ], - "image": [ - "https://i.imgur.com/ak0nGFA.jpg" - ], - "charge": [ - "5 EUR" - ], - "toilets": [ - "yes" - ], - "tourism": [ - "caravan_site" - ], - "power_supply": [ - "no" - ], - "internet_access": [ - "no" - ], - "permanent_camping": [ - "no" - ], - "sanitary_dump_station": [ - "no" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000017424514800041, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/campersite.html", - "theme": "campersite", - "answer": 8, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 8, - "change_within_50m": 1 - }, - "id": 122324144 - } - }, - { - "id": 122322337, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.7872984, - 51.0982081 - ], - [ - 5.7873004, - 51.0982081 - ], - [ - 5.7873004, - 51.0982109 - ], - [ - 5.7872984, - 51.0982109 - ], - [ - 5.7872984, - 51.0982081 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "emilinthelowlands", - "uid": "12764098", - "editor": "MapComplete 0.20.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-13T11:54:13Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "recycling" - ], - "recycling:glass_bottles": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 5.59999999517063e-12, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "move": 1, - "theme": "waste", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "move:node/9782507539": "improve_accuracy" - }, - "id": 122322337 - } - }, - { - "id": 122321882, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.2851418, - 46.8275559 - ], - [ - -71.2851418, - 46.8275559 - ], - [ - -71.2851418, - 46.8275559 - ], - [ - -71.2851418, - 46.8275559 - ], - [ - -71.2851418, - 46.8275559 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cdagenais", - "uid": "11446867", - "editor": "MapComplete 0.20.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-13T11:44:54Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "bicycle" - ], - "phone": [ - "+1 877 683 3338" - ], - "website": [ - "https://www.magasin-echo-sports.ca/" - ], - "service:bicycle:rental": [ - "no" - ], - "service:bicycle:repair": [ - "yes" - ], - "service:bicycle:retail": [ - "yes" - ], - "service:bicycle:second_hand": [ - "yes" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 6, - "locale": "fr", - "imagery": "CartoDB.Voyager" - }, - "id": 122321882 - } - }, - { - "id": 122314712, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5344204, - 52.9880367 - ], - [ - 6.5479498, - 52.9880367 - ], - [ - 6.5479498, - 53.0076046 - ], - [ - 6.5344204, - 53.0076046 - ], - [ - 6.5344204, - 52.9880367 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #waste_assen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-13T09:10:46Z", - "reviewed_features": [], - "tag_changes": { - "waste": [ - "trash" - ], - "amenity": [ - "waste_basket" - ], - "not:vending": [ - "dog_excrement_bag" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0.000264741946259968, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/waste_assen.html", - "theme": "waste_assen", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 122314712 - } - }, - { - "id": 122312262, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3969668, - 51.0420686 - ], - [ - 3.3969668, - 51.0420686 - ], - [ - 3.3969668, - 51.0420686 - ], - [ - 3.3969668, - 51.0420686 - ], - [ - 3.3969668, - 51.0420686 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-13T08:11:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 1, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/benches.html", - "theme": "benches", - "create": 1, - "locale": "en", - "imagery": "osm", - "deletion": 1, - "add-image": 1, - "change_over_5000m": 1, - "change_within_50m": 2, - "deletion:node/9813966121": "testing point" - }, - "id": 122312262 - } - }, - { - "id": 122308771, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.881643, - 41.6497421 - ], - [ - -0.8763617, - 41.6497421 - ], - [ - -0.8763617, - 41.6513323 - ], - [ - -0.881643, - 41.6513323 - ], - [ - -0.881643, - 41.6497421 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jaimeMF", - "uid": "706423", - "editor": "MapComplete 0.20.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-13T06:46:25Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "living_street", - "pedestrian", - "residential" - ], - "name:etymology:wikidata": [ - "Q45581" - ] - }, - "create": 0, - "modify": 9, - "delete": 0, - "area": 0.00000839832326001331, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 9, - "locale": "en", - "imagery": "osm" - }, - "id": 122308771 - } - }, - { - "id": 122308178, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.2102971, - 56.1396582 - ], - [ - 10.2102971, - 56.1396582 - ], - [ - 10.2102971, - 56.1396582 - ], - [ - 10.2102971, - 56.1396582 - ], - [ - 10.2102971, - 56.1396582 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Lostmonkey", - "uid": "3401037", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #bicycle_rental", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-13T06:33:09Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_rental" - ] - }, - "create": 0, - "modify": 0, - "delete": 1, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bicycle_rental.html", - "theme": "bicycle_rental", - "locale": "da", - "imagery": "osm", - "deletion": 1, - "deletion:node/1241055903": "shop_closed" - }, - "id": 122308178 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-14.json b/Docs/Tools/stats/stats.2022-6-14.json deleted file mode 100644 index 1eda93849b..0000000000 --- a/Docs/Tools/stats/stats.2022-6-14.json +++ /dev/null @@ -1,1723 +0,0 @@ -{ - "features": [ - { - "id": 122390594, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -72.72737, - -37.1330066 - ], - [ - -72.72737, - -37.1330066 - ], - [ - -72.72737, - -37.1330066 - ], - [ - -72.72737, - -37.1330066 - ], - [ - -72.72737, - -37.1330066 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.20.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-14T21:30:46Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/xILBBWB.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osm", - "add-image": 1 - }, - "id": 122390594 - } - }, - { - "id": 122389273, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0852049, - 51.3213528 - ], - [ - 5.0865031, - 51.3213528 - ], - [ - 5.0865031, - 51.3220015 - ], - [ - 5.0852049, - 51.3220015 - ], - [ - 5.0852049, - 51.3213528 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.20.2", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-14T20:45:12Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/CifS46b.jpg" - ], - "image:0": [ - "https://i.imgur.com/XyXDh43.jpg" - ], - "leisure": [ - "playground" - ], - "surface": [ - "grass" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 8.42142339999011e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 122389273 - } - }, - { - "id": 122388502, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.9679636, - 48.0482398 - ], - [ - -2.945866, - 48.0482398 - ], - [ - -2.945866, - 48.0739192 - ], - [ - -2.9679636, - 48.0739192 - ], - [ - -2.9679636, - 48.0482398 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LeTopographeFou", - "uid": "3178375", - "editor": "MapComplete 0.20.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-14T20:21:08Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "school" - ], - "highway": [ - "secondary", - "primary", - "residential", - "unclassified", - "service", - "footway", - "living_street", - "path" - ], - "name:etymology:wikidata": [ - "Q2475967", - "Q379693", - "Q81114", - "Q446435", - "Q632", - "Q1248451", - "Q85", - "Q2773178", - "Q1178", - "Q360312", - "Q251037", - "Q520977", - "Q3176402", - "Q56158", - "Q18434", - "Q3087522", - "Q151164", - "Q1379409", - "Q1151", - "Q191974", - "Q3142036", - "Q158768", - "Q529", - "Q33977", - "Q201143", - "Q194436", - "Q2706190", - "Q517", - "Q3167875", - "Q315708", - "Q1719774", - "Q1382004", - "Q4700", - "Q7226", - "Q2042", - "Q180278", - "Q104919", - "Q376383", - "Q233488", - "Q155144", - "Q3185261", - "Q3363340", - "Q333388", - "Q3292391", - "Q555329", - "Q29558817", - "Q959708" - ] - }, - "create": 0, - "modify": 85, - "delete": 0, - "area": 0.000567453109440028, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 98, - "locale": "fr", - "imagery": "osm" - }, - "id": 122388502 - } - }, - { - "id": 122387518, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.4174461, - 48.7098 - ], - [ - 9.4174461, - 48.7098 - ], - [ - 9.4174461, - 48.7098 - ], - [ - 9.4174461, - 48.7098 - ], - [ - 9.4174461, - 48.7098 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.20.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-14T19:49:49Z", - "reviewed_features": [], - "tag_changes": { - "brand": [ - "Schwalbe" - ], - "image": [ - "https://i.imgur.com/Rn9KVrg.jpg" - ], - "amenity": [ - "vending_machine" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 122387518 - } - }, - { - "id": 122386964, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.417752, - 48.7098313 - ], - [ - 9.5277506, - 48.7098313 - ], - [ - 9.5277506, - 48.8069158 - ], - [ - 9.417752, - 48.8069158 - ], - [ - 9.417752, - 48.7098313 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.20.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-14T19:35:51Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/G1h4Nqk.jpg", - "https://i.imgur.com/AYPZ2d4.jpg" - ], - "access": [ - "yes" - ], - "amenity": [ - "toilets" - ], - "toilets:handwashing": [ - "yes" - ], - "toilets:paper_supplied": [ - "yes" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.0106791590817, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 5, - "locale": "de", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 4 - }, - "id": 122386964 - } - }, - { - "id": 122386738, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1481999, - 50.684898 - ], - [ - 3.1482804, - 50.684898 - ], - [ - 3.1482804, - 50.6849983 - ], - [ - 3.1481999, - 50.6849983 - ], - [ - 3.1481999, - 50.684898 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "eiryelio", - "uid": "831652", - "editor": "MapComplete 0.20.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-14T19:29:15Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "surveillance" - ] - }, - "create": 4, - "modify": 5, - "delete": 0, - "area": 8.0741499999925e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 13, - "create": 4, - "locale": "fr", - "imagery": "osm" - }, - "id": 122386738 - } - }, - { - "id": 122384113, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3956886, - 51.0383525 - ], - [ - 3.3969571, - 51.0383525 - ], - [ - 3.3969571, - 51.0389624 - ], - [ - 3.3956886, - 51.0389624 - ], - [ - 3.3956886, - 51.0383525 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-14T18:24:44Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "yes" - ], - "highway": [ - "tertiary" - ], - "cycleway": [ - "separate" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 7.73658150000571e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cycle_infra.html", - "theme": "cycle_infra", - "answer": 2, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_within_500m": 2 - }, - "id": 122384113 - } - }, - { - "id": 122382077, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6958357, - 51.9971968 - ], - [ - 5.6958357, - 51.9971968 - ], - [ - 5.6958357, - 51.9971968 - ], - [ - 5.6958357, - 51.9971968 - ], - [ - 5.6958357, - 51.9971968 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 83, - "name": "User has multiple blocks" - } - ], - "tags": [], - "features": [], - "user": "Friendly_Ghost", - "uid": "10875409", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-14T17:27:22Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 122382077 - } - }, - { - "id": 122381843, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 83, - "name": "User has multiple blocks" - } - ], - "tags": [], - "features": [], - "user": "Friendly_Ghost", - "uid": "10875409", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-14T17:21:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 122381843 - } - }, - { - "id": 122381837, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 83, - "name": "User has multiple blocks" - } - ], - "tags": [], - "features": [], - "user": "Friendly_Ghost", - "uid": "10875409", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-14T17:20:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 122381837 - } - }, - { - "id": 122381818, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 83, - "name": "User has multiple blocks" - } - ], - "tags": [], - "features": [], - "user": "Friendly_Ghost", - "uid": "10875409", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-14T17:20:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 2 - }, - "id": 122381818 - } - }, - { - "id": 122380045, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2407107, - -39.8384085 - ], - [ - -73.2407107, - -39.8384085 - ], - [ - -73.2407107, - -39.8384085 - ], - [ - -73.2407107, - -39.8384085 - ], - [ - -73.2407107, - -39.8384085 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.20.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-14T16:35:43Z", - "reviewed_features": [], - "tag_changes": { - "image:0": [ - "https://i.imgur.com/EplCHlr.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osmfr", - "add-image": 1, - "change_within_1000m": 1 - }, - "id": 122380045 - } - }, - { - "id": 122372833, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2022475, - 51.1793305 - ], - [ - 3.2022475, - 51.1793305 - ], - [ - 3.2022475, - 51.1793305 - ], - [ - 3.2022475, - 51.1793305 - ], - [ - 3.2022475, - 51.1793305 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Tom Dewaele", - "uid": "16278274", - "editor": "MapComplete 0.20.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-14T12:55:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 5, - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 122372833 - } - }, - { - "id": 122372460, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3931593, - 51.0408675 - ], - [ - 3.3981476, - 51.0408675 - ], - [ - 3.3981476, - 51.0426304 - ], - [ - 3.3931593, - 51.0426304 - ], - [ - 3.3931593, - 51.0408675 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-14T12:45:51Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "yes" - ], - "highway": [ - "tertiary", - "residential" - ], - "cycleway": [ - "no" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.00000879387407001381, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cycle_infra.html", - "theme": "cycle_infra", - "answer": 10, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 122372460 - } - }, - { - "id": 122367655, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-14T11:00:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cycle_infra.html", - "theme": "cycle_infra", - "answer": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 122367655 - } - }, - { - "id": 122363488, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.0797582, - 48.3500943 - ], - [ - -0.0797582, - 48.3500943 - ], - [ - -0.0797582, - 48.3500943 - ], - [ - -0.0797582, - 48.3500943 - ], - [ - -0.0797582, - 48.3500943 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.20.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-14T09:31:07Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "picnic_table" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_50m": 1 - }, - "id": 122363488 - } - }, - { - "id": 122363116, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 105.8267538, - 14.6234142 - ], - [ - 121.0303851, - 14.6234142 - ], - [ - 121.0303851, - 21.0363791 - ], - [ - 105.8267538, - 21.0363791 - ], - [ - 105.8267538, - 14.6234142 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mikko_tamura", - "uid": "2258022", - "editor": "MapComplete 0.20.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-14T09:25:14Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "bus" - ], - "amenity": [ - "bar" - ], - "highway": [ - "residential", - "service", - "tertiary", - "trunk" - ], - "smoking": [ - "yes" - ], - "building": [ - "yes", - "house" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 97.5003538794414, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 4 - }, - "id": 122363116 - } - }, - { - "id": 122361377, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.0837439, - 48.3475701 - ], - [ - -0.0824967, - 48.3475701 - ], - [ - -0.0824967, - 48.3480657 - ], - [ - -0.0837439, - 48.3480657 - ], - [ - -0.0837439, - 48.3475701 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-14T08:53:20Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 2, - "modify": 1, - "delete": 0, - "area": 6.18112320000876e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/personal.html", - "theme": "personal", - "answer": 5, - "create": 2, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 3, - "change_within_500m": 2 - }, - "id": 122361377 - } - }, - { - "id": 122360242, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.0796938, - 48.3498921 - ], - [ - -0.0796938, - 48.3498921 - ], - [ - -0.0796938, - 48.3498921 - ], - [ - -0.0796938, - 48.3498921 - ], - [ - -0.0796938, - 48.3498921 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.20.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-14T08:27:54Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_100m": 3 - }, - "id": 122360242 - } - }, - { - "id": 122359546, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3364569, - 50.8163983 - ], - [ - 4.4182727, - 50.8163983 - ], - [ - 4.4182727, - 50.8794374 - ], - [ - 4.3364569, - 50.8794374 - ], - [ - 4.3364569, - 50.8163983 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Pierre Raeymaekers", - "uid": "16276205", - "editor": "MapComplete 0.20.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 3, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-14T08:12:32Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "bicycle_repair_station" - ], - "service:bicycle:pump": [ - "no", - "yes" - ], - "service:bicycle:pump:operational_status": [ - "broken" - ] - }, - "create": 0, - "modify": 4, - "delete": 2, - "area": 0.00515759439777981, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix", - "theme": "cyclofix", - "answer": 5, - "locale": "en", - "imagery": "CartoDB.Voyager", - "deletion": 2, - "deletion:node/6329699865": "not found", - "deletion:node/8972946744": "not found" - }, - "id": 122359546 - } - }, - { - "id": 122358017, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.7048762, - 45.1841152 - ], - [ - 5.7048762, - 45.1841152 - ], - [ - 5.7048762, - 45.1841152 - ], - [ - 5.7048762, - 45.1841152 - ], - [ - 5.7048762, - 45.1841152 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Binnette", - "uid": "918586", - "editor": "MapComplete 0.20.2", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-14T07:37:05Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "artwork" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/", - "theme": "artwork", - "create": 1, - "locale": "en", - "change_over_5000m": 1 - }, - "id": 122358017 - } - }, - { - "id": 122353667, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9959896, - 48.5000304 - ], - [ - 8.9960794, - 48.5000304 - ], - [ - 8.9960794, - 48.5001894 - ], - [ - 8.9959896, - 48.5001894 - ], - [ - 8.9959896, - 48.5000304 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.20.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-14T06:05:13Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 3, - "modify": 2, - "delete": 0, - "area": 1.42781999996167e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 9, - "create": 3, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 3, - "change_within_25m": 9 - }, - "id": 122353667 - } - }, - { - "id": 122350494, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4850392, - 51.2419034 - ], - [ - 4.4926604, - 51.2419034 - ], - [ - 4.4926604, - 51.2445003 - ], - [ - 4.4850392, - 51.2445003 - ], - [ - 4.4850392, - 51.2419034 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "pi11", - "uid": "12066190", - "editor": "MapComplete 0.20.2", - "comment": "Adding data with #MapComplete for theme #cyclestreets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-14T04:17:00Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential" - ], - "maxspeed": [ - "30" - ], - "cyclestreet": [ - "yes", - "proposed" - ], - "overtaking:motor_vehicle": [ - "no" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.0000197914942800026, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclestreets.html", - "theme": "cyclestreets", - "answer": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 122350494 - } - }, - { - "id": 122347684, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.6939475, - -33.6421079 - ], - [ - -71.5812088, - -33.6421079 - ], - [ - -71.5812088, - -33.3269074 - ], - [ - -71.6939475, - -33.3269074 - ], - [ - -71.6939475, - -33.6421079 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Camilo Nuñez Castro", - "uid": "5143819", - "editor": "MapComplete 0.20.2", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-14T01:02:03Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Cuerpo de Bomberos de Santo Domingo", - "Bomberos de Santo Domingo", - "Segunda Compañía del Cuerpo de Bomberos de El Tabo", - "Bomberos Las Cruces 2da Compañía", - "Primera Compañía del Cuerpo de Bomberos de El Tabo", - "Bomberos El Tabo 1ra Compañía", - "Primera Compañía del Cuerpo de Bomberos de El Quisco", - "Bomberos El Quisco", - "Segunda Compañía del Cuerpo de Bomberos de Algarrobo", - "Segunda Compañia de Algarrobo , Bomberos Mirasol", - "Segunda Compañía del Cuerpo de Bomberos de San Antonio", - "2da COmpañia de Bomberos de San Antonio", - "Primera Compañía del Cuerpo de Bomberos de Algarrobo", - "Bomberos Algarrobo", - "Cuarta Compañía del Cuerpo de Bomberos de San Antonio", - "Bomberos", - "Primera Compañía del Cuerpo de Bomberos de San Antonio", - "Primera Compañia de Bomberos, \"CBSA\"", - "Segunda Compañía del Cuerpo de Bomberos de El Quisco", - "Tercera Compañía del Cuerpo de Bomberos de San Antonio", - "3ra compañia de bomberos", - "se" - ], - "amenity": [ - "fire_station" - ], - "building": [ - "yes" - ], - "addr:street": [ - "German Brain Pomerenke 4481" - ] - }, - "create": 0, - "modify": 13, - "delete": 0, - "area": 0.0355352946093477, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "answer": 13, - "locale": "es", - "imagery": "HDM_HOT", - "change_over_5000m": 13 - }, - "id": 122347684 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-15.json b/Docs/Tools/stats/stats.2022-6-15.json deleted file mode 100644 index b671cd89b7..0000000000 --- a/Docs/Tools/stats/stats.2022-6-15.json +++ /dev/null @@ -1,2205 +0,0 @@ -{ - "features": [ - { - "id": 122437607, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.1778339, - 56.1527777 - ], - [ - 10.2125497, - 56.1527777 - ], - [ - 10.2125497, - 56.1722354 - ], - [ - 10.1778339, - 56.1722354 - ], - [ - 10.1778339, - 56.1527777 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Lostmonkey", - "uid": "3401037", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #bicycle_rental", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-15T22:43:46Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_rental" - ] - }, - "create": 0, - "modify": 0, - "delete": 8, - "area": 0.0006754896216599, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bicycle_rental.html", - "theme": "bicycle_rental", - "locale": "da", - "imagery": "osm", - "deletion": 8, - "deletion:node/803851516": "disused", - "deletion:node/903444744": "shop_closed", - "deletion:node/1241055899": "shop_closed", - "deletion:node/1241055900": "shop_closed", - "deletion:node/1241055907": "shop_closed", - "deletion:node/1241055909": "disused", - "deletion:node/1241055922": "shop_closed", - "deletion:node/1241055926": "shop_closed" - }, - "id": 122437607 - } - }, - { - "id": 122434611, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6807709, - 51.0489011 - ], - [ - 3.681615, - 51.0489011 - ], - [ - 3.681615, - 51.0500726 - ], - [ - 3.6807709, - 51.0500726 - ], - [ - 3.6807709, - 51.0489011 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-15T20:46:26Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/TgUhHgH.jpg" - ], - "image:0": [ - "https://i.imgur.com/tVq69Kh.jpg" - ], - "image:1": [ - "https://i.imgur.com/m6D2Js5.jpg" - ], - "image:2": [ - "https://i.imgur.com/x67ueEO.jpg" - ], - "leisure": [ - "sports_centre" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 9.88863149998027e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/climbing.html", - "theme": "climbing", - "locale": "en", - "imagery": "osm", - "add-image": 4, - "change_within_25m": 4 - }, - "id": 122434611 - } - }, - { - "id": 122433835, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2860799, - 48.6521488 - ], - [ - 9.2860799, - 48.6521488 - ], - [ - 9.2860799, - 48.6521488 - ], - [ - 9.2860799, - 48.6521488 - ], - [ - 9.2860799, - 48.6521488 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-15T20:21:22Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "leaf_type": [ - "broadleaved" - ], - "species:wikidata": [ - "Q147525" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 2, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 2 - }, - "id": 122433835 - } - }, - { - "id": 122431594, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0161957, - 48.4889956 - ], - [ - 9.0199033, - 48.4889956 - ], - [ - 9.0199033, - 48.4925024 - ], - [ - 9.0161957, - 48.4925024 - ], - [ - 9.0161957, - 48.4889956 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-15T19:05:34Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential", - "service", - "path" - ], - "name:etymology:wikidata": [ - "Q106723", - "Q2712245", - "Q37030", - "Q2594", - "Q6722" - ] - }, - "create": 0, - "modify": 15, - "delete": 0, - "area": 0.0000130018116799824, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 19, - "locale": "de", - "imagery": "osm", - "change_within_1000m": 12, - "change_within_5000m": 7 - }, - "id": 122431594 - } - }, - { - "id": 122431229, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7511479, - 51.0615903 - ], - [ - 3.7511479, - 51.0615903 - ], - [ - 3.7511479, - 51.0615903 - ], - [ - 3.7511479, - 51.0615903 - ], - [ - 3.7511479, - 51.0615903 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-15T18:52:44Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "direction": [ - "131" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/benches.html", - "theme": "benches", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_500m": 1 - }, - "id": 122431229 - } - }, - { - "id": 122429682, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2862096, - 48.6522933 - ], - [ - 9.2882414, - 48.6522933 - ], - [ - 9.2882414, - 48.6534148 - ], - [ - 9.2862096, - 48.6534148 - ], - [ - 9.2862096, - 48.6522933 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-15T18:00:10Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/RyiSadi.jpg" - ], - "level": [ - "0" - ], - "access": [ - "yes" - ], - "survey:date": [ - "2022-06-15" - ], - "opening_hours": [ - "24/7" - ], - "defibrillator:location": [ - "Im Vorraum" - ] - }, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.00000227866370000837, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 7, - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_within_5000m": 8 - }, - "id": 122429682 - } - }, - { - "id": 122425359, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2936269, - 48.6497762 - ], - [ - 9.3004037, - 48.6497762 - ], - [ - 9.3004037, - 48.651989 - ], - [ - 9.2936269, - 48.651989 - ], - [ - 9.2936269, - 48.6497762 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-15T15:59:15Z", - "reviewed_features": [], - "tag_changes": { - "bus": [ - "no" - ], - "hgv": [ - "no" - ], - "image": [ - "https://i.imgur.com/MoAQs11.jpg", - "https://i.imgur.com/OsYldzG.jpg", - "https://i.imgur.com/6ISqSqg.jpg" - ], - "phone": [ - "+49 421 51005555" - ], - "access": [ - "yes" - ], - "amenity": [ - "charging_station" - ], - "bicycle": [ - "no" - ], - "maxstay": [ - "240 minutes" - ], - "scooter": [ - "no" - ], - "motorcar": [ - "yes" - ], - "parking:fee": [ - "no" - ], - "socket:type2_combo": [ - "1" - ] - }, - "create": 0, - "modify": 11, - "delete": 0, - "area": 0.0000149957030400177, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 9, - "locale": "de", - "imagery": "osm", - "add-image": 3, - "change_over_5000m": 12 - }, - "id": 122425359 - } - }, - { - "id": 122424938, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3630013, - 52.0948879 - ], - [ - 13.3772922, - 52.0948879 - ], - [ - 13.3772922, - 52.1040406 - ], - [ - 13.3630013, - 52.1040406 - ], - [ - 13.3630013, - 52.0948879 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ebihardy", - "uid": "263464", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-15T15:48:13Z", - "reviewed_features": [], - "tag_changes": { - "fire_hydrant:diameter": [ - "80" - ] - }, - "create": 0, - "modify": 11, - "delete": 0, - "area": 0.000130800320429907, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "www.waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 122424938 - } - }, - { - "id": 122424567, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2592342, - 50.8387195 - ], - [ - 4.259478, - 50.8387195 - ], - [ - 4.259478, - 50.8390814 - ], - [ - 4.2592342, - 50.8390814 - ], - [ - 4.2592342, - 50.8387195 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-15T15:37:46Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "picnic_table" - ] - }, - "create": 4, - "modify": 1, - "delete": 0, - "area": 8.82312199985514e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 3, - "create": 4, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 4, - "change_within_25m": 3, - "change_within_50m": 1 - }, - "id": 122424567 - } - }, - { - "id": 122424495, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2590918, - 50.8388438 - ], - [ - 4.2591878, - 50.8388438 - ], - [ - 4.2591878, - 50.8388516 - ], - [ - 4.2590918, - 50.8388516 - ], - [ - 4.2590918, - 50.8388438 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-15T15:35:57Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ], - "capacity": [ - "6", - "5", - "20", - "10" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 7.48799999883725e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_within_25m": 1, - "change_within_50m": 1 - }, - "id": 122424495 - } - }, - { - "id": 122423571, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.6984956, - 46.697127 - ], - [ - -0.6982933, - 46.697127 - ], - [ - -0.6982933, - 46.6974565 - ], - [ - -0.6984956, - 46.6974565 - ], - [ - -0.6984956, - 46.697127 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-15T15:12:56Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "sanitary_dump_station" - ], - "tourism": [ - "caravan_site" - ] - }, - "create": 2, - "modify": 1, - "delete": 0, - "area": 6.66578499998804e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/campersite.html", - "theme": "campersite", - "answer": 11, - "create": 2, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 5, - "change_within_50m": 6 - }, - "id": 122423571 - } - }, - { - "id": 122423528, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.0749865, - 49.9159915 - ], - [ - 7.0749865, - 49.9159915 - ], - [ - 7.0749865, - 49.9159915 - ], - [ - 7.0749865, - 49.9159915 - ], - [ - 7.0749865, - 49.9159915 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "J@n@ncy", - "uid": "16287818", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-15T15:11:27Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_repair_station" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 2 - }, - "id": 122423528 - } - }, - { - "id": 122422530, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7065071, - 51.0429488 - ], - [ - 3.7065071, - 51.0429488 - ], - [ - 3.7065071, - 51.0429488 - ], - [ - 3.7065071, - 51.0429488 - ], - [ - 3.7065071, - 51.0429488 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-15T14:48:20Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "public_bookcase" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/bookcases.html", - "theme": "bookcases", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_500m": 2 - }, - "id": 122422530 - } - }, - { - "id": 122422045, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "lefuturiste", - "uid": "2444262", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-15T14:34:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 122422045 - } - }, - { - "id": 122421802, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.605144, - 46.7913485 - ], - [ - -0.605144, - 46.7913485 - ], - [ - -0.605144, - 46.7913485 - ], - [ - -0.605144, - 46.7913485 - ], - [ - -0.605144, - 46.7913485 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-15T14:27:32Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 122421802 - } - }, - { - "id": 122420750, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.1681653, - 44.0127823 - ], - [ - -73.1681653, - 44.0127823 - ], - [ - -73.1681653, - 44.0127823 - ], - [ - -73.1681653, - 44.0127823 - ], - [ - -73.1681653, - 44.0127823 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Adam Franco", - "uid": "27832", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-15T14:02:57Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "restaurant" - ] - }, - "create": 0, - "modify": 0, - "delete": 1, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 1, - "locale": "en", - "imagery": "osm", - "deletion": 1, - "deletion:node/6192577523": "shop_closed" - }, - "id": 122420750 - } - }, - { - "id": 122419683, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7596484, - 51.0072161 - ], - [ - 3.7597463, - 51.0072161 - ], - [ - 3.7597463, - 51.0072887 - ], - [ - 3.7596484, - 51.0072887 - ], - [ - 3.7596484, - 51.0072161 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "jade@imec", - "uid": "15978511", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-15T13:39:04Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 2, - "modify": 1, - "delete": 0, - "area": 7.10753999959175e-9, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 6, - "create": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 122419683 - } - }, - { - "id": 122417099, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4153043, - 51.4736593 - ], - [ - 7.4195084, - 51.4736593 - ], - [ - 7.4195084, - 51.4739147 - ], - [ - 7.4153043, - 51.4739147 - ], - [ - 7.4153043, - 51.4736593 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "tobiasff3200", - "uid": "4970449", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-15T12:37:43Z", - "reviewed_features": [], - "tag_changes": { - "barrier": [ - "bollard" - ], - "bicycle": [ - "yes" - ], - "highway": [ - "crossing" - ], - "crossing:island": [ - "no", - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000107372714000145, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 122417099 - } - }, - { - "id": 122416962, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4175045, - 51.4737642 - ], - [ - 7.4175571, - 51.4737642 - ], - [ - 7.4175571, - 51.4748228 - ], - [ - 7.4175045, - 51.4748228 - ], - [ - 7.4175045, - 51.4737642 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "tobiasff3200", - "uid": "4970449", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-15T12:34:48Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "surveillance" - ], - "surveillance:zone": [ - "entrance", - "parking" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 5.56823600000919e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 122416962 - } - }, - { - "id": 122416802, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4131988, - 51.4923416 - ], - [ - 7.4131988, - 51.4923416 - ], - [ - 7.4131988, - 51.4923416 - ], - [ - 7.4131988, - 51.4923416 - ], - [ - 7.4131988, - 51.4923416 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "tobiasff3200", - "uid": "4970449", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-15T12:31:56Z", - "reviewed_features": [], - "tag_changes": { - "bottle": [ - "no" - ], - "amenity": [ - "drinking_water" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 122416802 - } - }, - { - "id": 122416624, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4149736, - 51.4921812 - ], - [ - 7.4156364, - 51.4921812 - ], - [ - 7.4156364, - 51.4926634 - ], - [ - 7.4149736, - 51.4926634 - ], - [ - 7.4149736, - 51.4921812 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "tobiasff3200", - "uid": "4970449", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-15T12:28:51Z", - "reviewed_features": [], - "tag_changes": { - "door": [ - "hinged", - "overhead", - "sliding" - ], - "entrance": [ - "main", - "yes", - "secondary" - ], - "automatic_door": [ - "motion" - ] - }, - "create": 0, - "modify": 8, - "delete": 0, - "area": 3.1960216000059e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/entrances.html", - "theme": "entrances", - "answer": 10, - "locale": "de", - "imagery": "osm" - }, - "id": 122416624 - } - }, - { - "id": 122412473, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0165399, - 48.4896028 - ], - [ - 9.018972, - 48.4896028 - ], - [ - 9.018972, - 48.4925024 - ], - [ - 9.0165399, - 48.4925024 - ], - [ - 9.0165399, - 48.4896028 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-15T11:03:30Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential", - "service" - ], - "image:streetsign": [ - "https://i.imgur.com/ZXDykTG.jpg", - "https://i.imgur.com/3ZHGxDh.jpg", - "https://i.imgur.com/w95hJmP.jpg", - "https://i.imgur.com/tkMEw8z.jpg", - "https://i.imgur.com/Uabo2Ow.jpg" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.00000705211715999825, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "locale": "de", - "imagery": "osm", - "add-image": 5, - "change_within_25m": 4, - "change_within_50m": 1 - }, - "id": 122412473 - } - }, - { - "id": 122411347, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5997966, - 50.8352532 - ], - [ - 3.8280271, - 50.8352532 - ], - [ - 3.8280271, - 50.8945268 - ], - [ - 3.5997966, - 50.8945268 - ], - [ - 3.5997966, - 50.8352532 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Erin76", - "uid": "8982454", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-15T10:39:35Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential", - "secondary", - "primary", - "unclassified", - "path", - "living_street" - ], - "name:etymology:wikidata": [ - "Q173219", - "Q3044", - "Q2483859", - "Q435844", - "Q16917", - "Q18115325", - "Q2566545", - "Q127849", - "Q36380", - "Q111429432", - "Q17590", - "Q13121", - "Q3133", - "Q109631591", - "Q43084", - "Q37620", - "Q2627945", - "Q156099", - "Q157449", - "Q156207", - "Q377071", - "Q158286", - "Q25243", - "Q158617", - "Q158758", - "Q670040", - "Q81666", - "Q641734", - "Q2371457", - "Q2515436", - "Q1397", - "Q171892", - "Q26354", - "Q5986917", - "Q192190", - "Q145781", - "Q206998", - "Q193891", - "Q164294", - "Q124862", - "Q783972", - "Q3858258", - "Q3263875", - "Q189393", - "Q2627259", - "Q49996262", - "Q205265" - ] - }, - "create": 0, - "modify": 94, - "delete": 0, - "area": 0.013528043364801, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "answer": 124, - "locale": "nl", - "imagery": "osm" - }, - "id": 122411347 - } - }, - { - "id": 122408336, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0717094, - 45.771781 - ], - [ - 3.0717094, - 45.771781 - ], - [ - 3.0717094, - 45.771781 - ], - [ - 3.0717094, - 45.771781 - ], - [ - 3.0717094, - 45.771781 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Fabien1309", - "uid": "2195037", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-15T09:32:12Z", - "reviewed_features": [], - "tag_changes": { - "barrier": [ - "bollard" - ], - "bicycle": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 122408336 - } - }, - { - "id": 122408295, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0652147, - 14.6311332 - ], - [ - 121.0652307, - 14.6311332 - ], - [ - 121.0652307, - 14.6311589 - ], - [ - 121.0652147, - 14.6311589 - ], - [ - 121.0652147, - 14.6311332 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mikko_tamura", - "uid": "2258022", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-15T09:31:27Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "community_centre" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 4.11200000059531e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "move": 1, - "theme": "https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", - "locale": "en", - "imagery": "osm", - "move:node/7785465087": "improve_accuracy" - }, - "id": 122408295 - } - }, - { - "id": 122408154, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0612466, - 45.7672029 - ], - [ - 3.0717334, - 45.7672029 - ], - [ - 3.0717334, - 45.7746514 - ], - [ - 3.0612466, - 45.7746514 - ], - [ - 3.0612466, - 45.7672029 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Fabien1309", - "uid": "2195037", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-15T09:28:39Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "bicycle_parking" - ], - "covered": [ - "no" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000781109298000238, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 5, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 122408154 - } - }, - { - "id": 122406965, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.7771511, - 43.3562489 - ], - [ - -3.7771511, - 43.3562489 - ], - [ - -3.7771511, - 43.3562489 - ], - [ - -3.7771511, - 43.3562489 - ], - [ - -3.7771511, - 43.3562489 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ninopiña10", - "uid": "11138282", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-15T09:01:30Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "drinking_water" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 122406965 - } - }, - { - "id": 122403779, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Nickrds09", - "uid": "966535", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-15T07:51:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "answer": 1, - "locale": "en", - "imagery": "HDM_HOT", - "change_within_25m": 1 - }, - "id": 122403779 - } - }, - { - "id": 122402015, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.3111936, - 48.2103579 - ], - [ - 16.3111936, - 48.2103579 - ], - [ - 16.3111936, - 48.2103579 - ], - [ - 16.3111936, - 48.2103579 - ], - [ - 16.3111936, - 48.2103579 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dosenpfand", - "uid": "484548", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-15T07:13:51Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "toilets" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 122402015 - } - }, - { - "id": 122401974, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.308395, - 48.2092858 - ], - [ - 16.308395, - 48.2092858 - ], - [ - 16.308395, - 48.2092858 - ], - [ - 16.308395, - 48.2092858 - ], - [ - 16.308395, - 48.2092858 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dosenpfand", - "uid": "484548", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-15T07:12:57Z", - "reviewed_features": [], - "tag_changes": { - "bottle": [ - "yes" - ], - "amenity": [ - "drinking_water" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 122401974 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-16.json b/Docs/Tools/stats/stats.2022-6-16.json deleted file mode 100644 index b6207a12e6..0000000000 --- a/Docs/Tools/stats/stats.2022-6-16.json +++ /dev/null @@ -1,2634 +0,0 @@ -{ - "features": [ - { - "id": 122484714, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1660144, - 50.40552 - ], - [ - 4.3050607, - 50.40552 - ], - [ - 4.3050607, - 50.477711 - ], - [ - 4.1660144, - 50.477711 - ], - [ - 4.1660144, - 50.40552 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Liwott", - "uid": "11408459", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-16T23:19:04Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential", - "pedestrian", - "primary" - ], - "name:etymology:wikidata": [ - "Q55008046", - "Q39614", - "Q83407", - "Q1210", - "Q81046" - ] - }, - "create": 0, - "modify": 17, - "delete": 0, - "area": 0.0100378914432996, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 18, - "locale": "fr", - "imagery": "osm" - }, - "id": 122484714 - } - }, - { - "id": 122480484, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5363338, - 51.0715118 - ], - [ - 3.5367279, - 51.0715118 - ], - [ - 3.5367279, - 51.071906 - ], - [ - 3.5363338, - 51.071906 - ], - [ - 3.5363338, - 51.0715118 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-16T20:24:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 18, - "modify": 0, - "delete": 0, - "area": 1.55354219998061e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 2, - "locale": "nl", - "imagery": "AGIVFlandersGRB" - }, - "id": 122480484 - } - }, - { - "id": 122479307, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.9861814, - 48.037554 - ], - [ - -2.9563273, - 48.037554 - ], - [ - -2.9563273, - 48.0678644 - ], - [ - -2.9861814, - 48.0678644 - ], - [ - -2.9861814, - 48.037554 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LeTopographeFou", - "uid": "3178375", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-16T19:45:59Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "school" - ], - "highway": [ - "unclassified", - "residential", - "secondary", - "service" - ], - "railway": [ - "abandoned" - ], - "name:etymology:wikidata": [ - "Q232873", - "Q274251", - "Q334965", - "Q12688", - "Q2475967", - "Q253224", - "Q171730", - "Q680897", - "Q326724", - "Q537061", - "Q622365", - "Q2979", - "Q437983", - "Q206832", - "Q1760271", - "Q47162", - "Q200639", - "Q440", - "Q188971", - "Q3292642", - "Q4583", - "Q386438", - "Q2850234", - "Q106126", - "Q41269", - "Q123041", - "Q63704", - "Q437091", - "Q3275603", - "Q1393036", - "Q2750648", - "Q41921", - "Q3816", - "Q7197", - "Q34189", - "Q81685", - "Q7504", - "Q454", - "Q212620", - "Q271991", - "Q56158", - "Q254", - "Q236438", - "Q745809", - "Q216092", - "Q358167", - "Q208230", - "Q106208", - "Q8750", - "Q39607", - "Q18425", - "Q1248451", - "Q675" - ] - }, - "create": 0, - "modify": 104, - "delete": 0, - "area": 0.000904889712639932, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 131, - "locale": "fr", - "imagery": "osm" - }, - "id": 122479307 - } - }, - { - "id": 122478970, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 43.868887, - 56.2621938 - ], - [ - 43.8690754, - 56.2621938 - ], - [ - 43.8690754, - 56.2622843 - ], - [ - 43.868887, - 56.2622843 - ], - [ - 43.868887, - 56.2621938 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "alexashh", - "uid": "9054103", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-16T19:35:35Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ] - }, - "create": 2, - "modify": 3, - "delete": 0, - "area": 1.70501999996971e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 8, - "create": 2, - "locale": "ru", - "imagery": "CartoDB.Voyager", - "add-image": 2, - "change_over_5000m": 2, - "change_within_25m": 10 - }, - "id": 122478970 - } - }, - { - "id": 122478078, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 32.5614162, - -25.9752822 - ], - [ - 32.5802851, - -25.9752822 - ], - [ - 32.5802851, - -25.9563718 - ], - [ - 32.5614162, - -25.9563718 - ], - [ - 32.5614162, - -25.9752822 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Erin76", - "uid": "8982454", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-16T19:12:28Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "primary", - "secondary", - "tertiary", - "residential", - "unclassified" - ], - "name:etymology:wikidata": [ - "Q953", - "Q6297989", - "Q9061", - "Q212955", - "Q110111587", - "Q173017", - "Q574", - "Q219918", - "Q181665", - "Q155402" - ] - }, - "create": 0, - "modify": 26, - "delete": 0, - "area": 0.000356818446560008, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 30, - "locale": "nl", - "imagery": "osm" - }, - "id": 122478078 - } - }, - { - "id": 122476559, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2390368, - -39.8441918 - ], - [ - -73.2380048, - -39.8441918 - ], - [ - -73.2380048, - -39.8436441 - ], - [ - -73.2390368, - -39.8436441 - ], - [ - -73.2390368, - -39.8441918 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-16T18:38:08Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/vOlZbgh.jpg", - "https://i.imgur.com/zpjHJ9m.jpg", - "https://i.imgur.com/B3Zngwe.jpg", - "https://i.imgur.com/MIYZwSW.jpg", - "https://i.imgur.com/p6g7gsk.jpg", - "https://i.imgur.com/LTBZ01P.jpg" - ], - "image:0": [ - "https://i.imgur.com/ocehgOl.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 0, - "modify": 7, - "delete": 0, - "area": 5.65226399995719e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osmfr", - "add-image": 7 - }, - "id": 122476559 - } - }, - { - "id": 122472487, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2394819, - 50.729113 - ], - [ - 4.2420922, - 50.729113 - ], - [ - 4.2420922, - 50.7323659 - ], - [ - 4.2394819, - 50.7323659 - ], - [ - 4.2394819, - 50.729113 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-16T16:41:57Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "butcher", - "optician", - "locksmith" - ], - "website": [ - "https://www.daisyrene.be", - "https://www.optiekduyck.be" - ] - }, - "create": 2, - "modify": 7, - "delete": 0, - "area": 0.00000849104486999827, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 9, - "create": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 122472487 - } - }, - { - "id": 122467629, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3871002, - 50.9392074 - ], - [ - 3.4196851, - 50.9392074 - ], - [ - 3.4196851, - 50.9642508 - ], - [ - 3.3871002, - 50.9642508 - ], - [ - 3.3871002, - 50.9392074 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Ambigirl", - "uid": "15314372", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-16T14:29:34Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 2, - "modify": 1, - "delete": 0, - "area": 0.000816036684660048, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 2, - "theme": "toerisme_vlaanderen", - "answer": 2, - "create": 2, - "locale": "nl", - "imagery": "AGIV", - "move:node/9822866193": "improve_accuracy" - }, - "id": 122467629 - } - }, - { - "id": 122465539, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 31.0105706, - -29.859793 - ], - [ - 31.035474, - -29.859793 - ], - [ - 31.035474, - -29.8513743 - ], - [ - 31.0105706, - -29.8513743 - ], - [ - 31.0105706, - -29.859793 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Erin76", - "uid": "8982454", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-16T13:42:19Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "trunk", - "tertiary", - "primary", - "secondary", - "residential" - ], - "name:etymology:wikidata": [ - "Q573160", - "Q42282200", - "Q1187368", - "Q1177117", - "Q14948988", - "Q561520", - "Q5086065", - "Q2739759" - ] - }, - "create": 0, - "modify": 67, - "delete": 0, - "area": 0.000209654253579996, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 95, - "locale": "nl", - "imagery": "osm" - }, - "id": 122465539 - } - }, - { - "id": 122465423, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5986106, - -34.6452867 - ], - [ - -58.5072673, - -34.6452867 - ], - [ - -58.5072673, - -34.6368719 - ], - [ - -58.5986106, - -34.6368719 - ], - [ - -58.5986106, - -34.6452867 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AgusQui", - "uid": "331218", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-16T13:39:10Z", - "reviewed_features": [], - "tag_changes": { - "ref": [ - "HD 81", - "A 50", - "HD 82" - ], - "railway": [ - "signal" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.000768635600839717, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "answer": 3, - "locale": "es", - "imagery": "osm", - "change_within_25m": 3 - }, - "id": 122465423 - } - }, - { - "id": 122464908, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6884799, - 51.3974184 - ], - [ - 4.6884799, - 51.3974184 - ], - [ - 4.6884799, - 51.3974184 - ], - [ - 4.6884799, - 51.3974184 - ], - [ - 4.6884799, - 51.3974184 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "itchyenscratchy", - "uid": "16294949", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-16T13:25:22Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "surveillance" - ], - "surveillance": [ - "public" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance", - "theme": "surveillance", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 122464908 - } - }, - { - "id": 122464896, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "itchyenscratchy", - "uid": "16294949", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-16T13:24:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance", - "theme": "surveillance", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 122464896 - } - }, - { - "id": 122464873, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "itchyenscratchy", - "uid": "16294949", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-16T13:24:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance", - "theme": "surveillance", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 122464873 - } - }, - { - "id": 122464859, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "itchyenscratchy", - "uid": "16294949", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-16T13:23:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance", - "theme": "surveillance", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 122464859 - } - }, - { - "id": 122464853, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "itchyenscratchy", - "uid": "16294949", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-16T13:23:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance", - "theme": "surveillance", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 122464853 - } - }, - { - "id": 122464852, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "itchyenscratchy", - "uid": "16294949", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-16T13:23:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance", - "theme": "surveillance", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 122464852 - } - }, - { - "id": 122464837, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "itchyenscratchy", - "uid": "16294949", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-16T13:23:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance", - "theme": "surveillance", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 122464837 - } - }, - { - "id": 122464609, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6884799, - 51.394376 - ], - [ - 4.7618276, - 51.394376 - ], - [ - 4.7618276, - 51.4022528 - ], - [ - 4.6884799, - 51.4022528 - ], - [ - 4.6884799, - 51.394376 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "itchyenscratchy", - "uid": "16294949", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-16T13:17:58Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "surveillance" - ] - }, - "create": 4, - "modify": 2, - "delete": 0, - "area": 0.000577745163359873, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance", - "theme": "surveillance", - "answer": 8, - "create": 4, - "locale": "nl", - "imagery": "osm" - }, - "id": 122464609 - } - }, - { - "id": 122464315, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7262543, - 51.0505823 - ], - [ - 3.7269832, - 51.0505823 - ], - [ - 3.7269832, - 51.0519426 - ], - [ - 3.7262543, - 51.0519426 - ], - [ - 3.7262543, - 51.0505823 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #sidewalks", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-16T13:10:01Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential" - ], - "sidewalk": [ - "both" - ], - "sidewalk:left": [ - "yes" - ], - "sidewalk:right": [ - "yes" - ], - "sidewalk:left:width": [ - "1.6" - ], - "sidewalk:right:width": [ - "1.8" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 9.91522669995995e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sidewalks.html", - "theme": "sidewalks", - "answer": 2, - "locale": "en", - "imagery": "osm", - "change_within_500m": 2 - }, - "id": 122464315 - } - }, - { - "id": 122463829, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3338459, - 51.0113061 - ], - [ - 5.3338459, - 51.0113061 - ], - [ - 5.3338459, - 51.0113061 - ], - [ - 5.3338459, - 51.0113061 - ], - [ - 5.3338459, - 51.0113061 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-16T12:58:52Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "picnic_table" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 122463829 - } - }, - { - "id": 122457994, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6977147, - 50.9247161 - ], - [ - 4.7042432, - 50.9247161 - ], - [ - 4.7042432, - 50.9266477 - ], - [ - 4.6977147, - 50.9266477 - ], - [ - 4.6977147, - 50.9247161 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Mizuna", - "uid": "12496737", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-16T10:46:43Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 3, - "modify": 2, - "delete": 0, - "area": 0.0000126104505999928, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 6, - "create": 3, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 3, - "change_within_25m": 4, - "change_within_50m": 2 - }, - "id": 122457994 - } - }, - { - "id": 122457242, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6863146, - 51.0025472 - ], - [ - 5.6863146, - 51.0025472 - ], - [ - 5.6863146, - 51.0025472 - ], - [ - 5.6863146, - 51.0025472 - ], - [ - 5.6863146, - 51.0025472 - ] - ] - ] - }, - "properties": { - "check_user": "Pieter Vander Vennet", - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "RLKM_Nationaal Park Hoge Kempen", - "uid": "14021086", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-16T10:30:45Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "picnic_table" - ], - "material": [ - "wood" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": false, - "checked": true, - "check_date": "2022-06-16T12:27:06.300878Z", - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 122457242 - } - }, - { - "id": 122457016, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7050791, - 50.9255003 - ], - [ - 4.7050791, - 50.9255003 - ], - [ - 4.7050791, - 50.9255003 - ], - [ - 4.7050791, - 50.9255003 - ], - [ - 4.7050791, - 50.9255003 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Mizuna", - "uid": "12496737", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-16T10:25:54Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "playground" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 122457016 - } - }, - { - "id": 122456889, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7048569, - 50.9255274 - ], - [ - 4.70527, - 50.9255274 - ], - [ - 4.70527, - 50.9256863 - ], - [ - 4.7048569, - 50.9256863 - ], - [ - 4.7048569, - 50.9255274 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Mizuna", - "uid": "12496737", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-16T10:22:59Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 3, - "modify": 3, - "delete": 0, - "area": 6.56415900008961e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 6, - "create": 3, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 3, - "change_within_25m": 6 - }, - "id": 122456889 - } - }, - { - "id": 122456781, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7051418, - 50.9254531 - ], - [ - 4.705721, - 50.9254531 - ], - [ - 4.705721, - 50.9262445 - ], - [ - 4.7051418, - 50.9262445 - ], - [ - 4.7051418, - 50.9254531 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Mizuna", - "uid": "12496737", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-16T10:20:35Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 4.58378880002268e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 6, - "create": 2, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 2, - "change_within_25m": 6 - }, - "id": 122456781 - } - }, - { - "id": 122456057, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.996746, - 48.5025309 - ], - [ - 8.9967714, - 48.5025309 - ], - [ - 8.9967714, - 48.5025407 - ], - [ - 8.996746, - 48.5025407 - ], - [ - 8.996746, - 48.5025309 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.20.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-16T10:05:34Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 2.48920000022975e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "move": 1, - "theme": "trees", - "answer": 3, - "create": 1, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 4, - "move:node/9822274396": "improve_accuracy" - }, - "id": 122456057 - } - }, - { - "id": 122455998, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 147.2538523, - -42.7910709 - ], - [ - 147.2544475, - -42.7910709 - ], - [ - 147.2544475, - -42.7894611 - ], - [ - 147.2538523, - -42.7894611 - ], - [ - 147.2538523, - -42.7910709 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NoCashMoney", - "uid": "15814196", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-16T10:04:15Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Claremont Newspower", - "Claremont Village Newsagency" - ], - "shop": [ - "alcohol", - "newsagent", - "hardware", - "charity" - ], - "website": [ - "https://www.facebook.com/claremontchainsawsandmowers/", - "https://www.vinnies.org.au/shops/view/456" - ], - "building": [ - "yes" - ], - "payment:cash": [ - "yes" - ], - "opening_hours": [ - "Mo-Sa 10:00-20:00; Su 11:00-19:00", - "Mo-Sa 07:30-17:30", - "Mo-Fr 08:30-17:00; Sa 09:00-12:00", - "Mo-Sa 09:00-17:00" - ], - "payment:cards": [ - "yes" - ] - }, - "create": 0, - "modify": 8, - "delete": 0, - "area": 9.58152959990026e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 11, - "locale": "en", - "imagery": "osm" - }, - "id": 122455998 - } - }, - { - "id": 122455625, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 147.2534253, - -42.7911945 - ], - [ - 147.2538454, - -42.7911945 - ], - [ - 147.2538454, - -42.789267 - ], - [ - 147.2534253, - -42.789267 - ], - [ - 147.2534253, - -42.7911945 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NoCashMoney", - "uid": "15814196", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 1, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-16T09:56:10Z", - "reviewed_features": [], - "tag_changes": { - "phone": [ - "+61 3 6249 4401" - ], - "amenity": [ - "restaurant" - ], - "website": [ - "https://www.pekingrestauranttasmania.com.au/" - ], - "building": [ - "yes" - ], - "takeaway": [ - "yes" - ], - "diet:halal": [ - "no" - ], - "payment:cash": [ - "yes" - ], - "opening_hours": [ - "Mo-Fr 11:00-14:00, 16:30-20:30; Sa 16:30-22:00; Su 16:30-20:30", - "Tu-Su 17:00-20:30" - ], - "payment:cards": [ - "yes" - ], - "diet:vegetarian": [ - "yes" - ] - }, - "create": 0, - "modify": 9, - "delete": 0, - "area": 8.09742749971919e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 11, - "locale": "en", - "imagery": "osm" - }, - "id": 122455625 - } - }, - { - "id": 122454666, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7050399, - 50.918039 - ], - [ - 4.7150767, - 50.918039 - ], - [ - 4.7150767, - 50.9257407 - ], - [ - 4.7050399, - 50.9257407 - ], - [ - 4.7050399, - 50.918039 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Mizuna", - "uid": "12496737", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-16T09:37:15Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 8, - "modify": 7, - "delete": 0, - "area": 0.0000773004225599833, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 17, - "create": 8, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 8, - "change_within_25m": 17 - }, - "id": 122454666 - } - }, - { - "id": 122452556, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3751324, - 52.6524856 - ], - [ - 13.3753226, - 52.6524856 - ], - [ - 13.3753226, - 52.6546777 - ], - [ - 13.3751324, - 52.6546777 - ], - [ - 13.3751324, - 52.6524856 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "GamingFAIL", - "uid": "13918186", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-16T08:52:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 4.16937420001423e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "www.waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 122452556 - } - }, - { - "id": 122452393, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7068088, - 50.8941826 - ], - [ - 4.7068088, - 50.8941826 - ], - [ - 4.7068088, - 50.8941826 - ], - [ - 4.7068088, - 50.8941826 - ], - [ - 4.7068088, - 50.8941826 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Mizuna", - "uid": "12496737", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-16T08:48:55Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "picnic_table" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 122452393 - } - }, - { - "id": 122451034, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 43.8663013, - 56.2511462 - ], - [ - 43.8663013, - 56.2511462 - ], - [ - 43.8663013, - 56.2511462 - ], - [ - 43.8663013, - 56.2511462 - ], - [ - 43.8663013, - 56.2511462 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "alexashh", - "uid": "9054103", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-16T08:24:00Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "create": 1, - "locale": "ru", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 122451034 - } - }, - { - "id": 122449944, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.1921615, - 56.1297989 - ], - [ - 10.2024156, - 56.1297989 - ], - [ - 10.2024156, - 56.1460626 - ], - [ - 10.1921615, - 56.1460626 - ], - [ - 10.1921615, - 56.1297989 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Lostmonkey", - "uid": "3401037", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #bicycle_rental", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-16T08:02:21Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_rental" - ] - }, - "create": 0, - "modify": 0, - "delete": 3, - "area": 0.000166769606170048, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bicycle_rental.html", - "theme": "bicycle_rental", - "locale": "da", - "imagery": "osm", - "deletion": 3, - "deletion:node/1241055895": "shop_closed", - "deletion:node/1241055897": "shop_closed", - "deletion:node/1241055924": "shop_closed" - }, - "id": 122449944 - } - }, - { - "id": 122449328, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7026976, - 50.8791716 - ], - [ - 4.7026976, - 50.8791716 - ], - [ - 4.7026976, - 50.8791716 - ], - [ - 4.7026976, - 50.8791716 - ], - [ - 4.7026976, - 50.8791716 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Mizuna", - "uid": "12496737", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-16T07:49:00Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "charging_station" - ] - }, - "create": 1, - "modify": 5, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 10, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 10 - }, - "id": 122449328 - } - }, - { - "id": 122447827, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9904262, - 48.498149 - ], - [ - 8.9934869, - 48.498149 - ], - [ - 8.9934869, - 48.4993719 - ], - [ - 8.9904262, - 48.4993719 - ], - [ - 8.9904262, - 48.498149 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.20.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-16T07:16:49Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "leaf_cycle": [ - "deciduous" - ], - "species:wikidata": [ - "Q26899", - "Q26745", - "Q42292", - "Q468664", - "Q158752" - ] - }, - "create": 1, - "modify": 11, - "delete": 0, - "area": 0.00000374293003000671, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "move": 1, - "theme": "trees", - "answer": 11, - "create": 1, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 10, - "change_within_100m": 1, - "change_within_500m": 1, - "move:node/9821706815": "improve_accuracy" - }, - "id": 122447827 - } - }, - { - "id": 122446861, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.3254, - 48.6382579 - ], - [ - 9.3259881, - 48.6382579 - ], - [ - 9.3259881, - 48.6384273 - ], - [ - 9.3254, - 48.6384273 - ], - [ - 9.3254, - 48.6382579 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #parkings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-16T06:55:43Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/VoC1SY6.jpg" - ], - "amenity": [ - "parking" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 9.96241399983375e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/parkings.html", - "theme": "parkings", - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 122446861 - } - }, - { - "id": 122444802, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.7837658, - 48.415843 - ], - [ - 9.7837658, - 48.415843 - ], - [ - 9.7837658, - 48.415843 - ], - [ - 9.7837658, - 48.415843 - ], - [ - 9.7837658, - 48.415843 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-16T06:06:28Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/AmbWLlU.jpg" - ], - "tourism": [ - "information" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/personal.html", - "theme": "personal", - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1 - }, - "id": 122444802 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-17.json b/Docs/Tools/stats/stats.2022-6-17.json deleted file mode 100644 index aca576e707..0000000000 --- a/Docs/Tools/stats/stats.2022-6-17.json +++ /dev/null @@ -1,1353 +0,0 @@ -{ - "features": [ - { - "id": 122520479, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.3339576, - 48.6267009 - ], - [ - 9.3339576, - 48.6267009 - ], - [ - 9.3339576, - 48.6267009 - ], - [ - 9.3339576, - 48.6267009 - ], - [ - 9.3339576, - 48.6267009 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-17T18:46:45Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/ED3KV4H.jpg" - ], - "tourism": [ - "artwork" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 2, - "locale": "de", - "imagery": "osm", - "add-image": 3, - "change_over_5000m": 5 - }, - "id": 122520479 - } - }, - { - "id": 122518353, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2336831, - 50.7352605 - ], - [ - 5.4448757, - 50.7352605 - ], - [ - 5.4448757, - 51.2316527 - ], - [ - 4.2336831, - 51.2316527 - ], - [ - 4.2336831, - 50.7352605 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-17T17:33:18Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Slaapcomfort Verdoodt", - "Slaapcomfor Verdoodt" - ], - "shop": [ - "herbalist", - "bed", - "computer" - ], - "website": [ - "https://www.herboristeriekruidotheek.be" - ] - }, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0.601226559337714, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 6, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 122518353 - } - }, - { - "id": 122518122, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2373773, - 50.7357214 - ], - [ - 4.3298196, - 50.7357214 - ], - [ - 4.3298196, - 50.7873888 - ], - [ - 4.2373773, - 50.7873888 - ], - [ - 4.2373773, - 50.7357214 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-17T17:28:16Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "cafe" - ], - "website": [ - "https://dendragee.be" - ] - }, - "create": 1, - "modify": 1, - "delete": 1, - "area": 0.00477625329101996, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm", - "deletion": 1, - "deletion:node/9825985060": "duplicate" - }, - "id": 122518122 - } - }, - { - "id": 122518011, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2375024, - 50.737326 - ], - [ - 4.3298149, - 50.737326 - ], - [ - 4.3298149, - 50.7873829 - ], - [ - 4.2375024, - 50.7873829 - ], - [ - 4.2375024, - 50.737326 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-17T17:26:32Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Chupito", - "Sol y Sombra" - ], - "fixme": [ - "Freeform tag `cuisine` used, to be doublechecked" - ], - "amenity": [ - "restaurant" - ], - "cuisine": [ - "spanish" - ], - "website": [ - "https://www.chupito.be" - ] - }, - "create": 1, - "modify": 2, - "delete": 1, - "area": 0.00462087758124943, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 4, - "create": 1, - "locale": "en", - "imagery": "osm", - "deletion": 1, - "deletion:node/9825975765": "duplicate" - }, - "id": 122518011 - } - }, - { - "id": 122517017, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -82.3650067, - 23.0607835 - ], - [ - -82.3648173, - 23.0607835 - ], - [ - -82.3648173, - 23.0609485 - ], - [ - -82.3650067, - 23.0609485 - ], - [ - -82.3650067, - 23.0607835 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "GHOSTsama", - "uid": "15422751", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-17T17:03:37Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/01L65cc.jpg", - "https://i.imgur.com/EqlXJmR.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 3.12509999992411e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osm", - "add-image": 2 - }, - "id": 122517017 - } - }, - { - "id": 122512675, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3298082, - 50.7873786 - ], - [ - 4.3298082, - 50.7873786 - ], - [ - 4.3298082, - 50.7873786 - ], - [ - 4.3298082, - 50.7873786 - ], - [ - 4.3298082, - 50.7873786 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-17T15:05:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 1, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm", - "deletion": 1, - "deletion:node/9825649497": "duplicate" - }, - "id": 122512675 - } - }, - { - "id": 122511972, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2331137, - 50.734135 - ], - [ - 4.2331137, - 50.734135 - ], - [ - 4.2331137, - 50.734135 - ], - [ - 4.2331137, - 50.734135 - ], - [ - 4.2331137, - 50.734135 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-7390437018", - "name": "Marcelis", - "osm_id": 7390437018, - "reasons": [ - 43 - ], - "version": 2, - "primary_tags": { - "shop": "office_supply" - } - } - ], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-17T14:47:32Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Marcelis", - "Marselis" - ], - "shop": [ - "office_supply" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 122511972 - } - }, - { - "id": 122508929, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.9816598, - 48.0602723 - ], - [ - -2.9451706, - 48.0602723 - ], - [ - -2.9451706, - 48.0824562 - ], - [ - -2.9816598, - 48.0824562 - ], - [ - -2.9816598, - 48.0602723 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LeTopographeFou", - "uid": "3178375", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-17T13:21:42Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "school" - ], - "highway": [ - "secondary", - "residential", - "steps", - "footway" - ], - "railway": [ - "abandoned" - ], - "name:etymology:wikidata": [ - "Q2038", - "Q70423982", - "Q3150", - "Q176271", - "Q171480", - "Q295090", - "Q7226", - "Q134114", - "Q274251", - "Q107343710", - "Q3371499", - "Q3141517", - "Q15407202", - "Q298051", - "Q132684", - "Q288394", - "Q236630", - "Q12431", - "Q16945181", - "Q17362349", - "Q34189", - "Q161955", - "Q862935", - "Q295830", - "Q2097468", - "Q462604", - "Q454199", - "Q2834988", - "Q42037", - "Q47162", - "Q312391" - ] - }, - "create": 0, - "modify": 47, - "delete": 0, - "area": 0.000809472763880064, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 56, - "locale": "fr", - "imagery": "osm" - }, - "id": 122508929 - } - }, - { - "id": 122508729, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4244979, - 52.535006 - ], - [ - 13.4244979, - 52.535006 - ], - [ - 13.4244979, - 52.535006 - ], - [ - 13.4244979, - 52.535006 - ], - [ - 13.4244979, - 52.535006 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Annika_atip:tap", - "uid": "15923056", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-17T13:15:05Z", - "reviewed_features": [], - "tag_changes": { - "bottle": [ - "yes" - ], - "amenity": [ - "drinking_water" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 122508729 - } - }, - { - "id": 122506026, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.3271183, - 48.6320977 - ], - [ - 9.3271183, - 48.6320977 - ], - [ - 9.3271183, - 48.6320977 - ], - [ - 9.3271183, - 48.6320977 - ], - [ - 9.3271183, - 48.6320977 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-17T12:07:52Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/YhahocC.jpg" - ], - "amenity": [ - "charging_station" - ], - "capacity": [ - "2" - ], - "opening_hours": [ - "24/7" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 3 - }, - "id": 122506026 - } - }, - { - "id": 122501165, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6809335, - 51.4000407 - ], - [ - 4.6809335, - 51.4000407 - ], - [ - 4.6809335, - 51.4000407 - ], - [ - 4.6809335, - 51.4000407 - ], - [ - 4.6809335, - 51.4000407 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "itchyenscratchy", - "uid": "16294949", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-17T10:04:43Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "surveillance" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance", - "theme": "surveillance", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 122501165 - } - }, - { - "id": 122498455, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.221397, - 48.8076975 - ], - [ - 9.221397, - 48.8076975 - ], - [ - 9.221397, - 48.8076975 - ], - [ - 9.221397, - 48.8076975 - ], - [ - 9.221397, - 48.8076975 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Annika_atip:tap", - "uid": "15923056", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-17T09:03:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 1, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "deletion": 1, - "deletion:node/9824824866": "testing point" - }, - "id": 122498455 - } - }, - { - "id": 122494778, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9965647, - 48.4999741 - ], - [ - 8.9965647, - 48.4999741 - ], - [ - 8.9965647, - 48.4999741 - ], - [ - 8.9965647, - 48.4999741 - ], - [ - 8.9965647, - 48.4999741 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-17T07:31:46Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "denotation": [ - "avenue" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "de", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 122494778 - } - }, - { - "id": 122492727, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9952776, - 48.499564 - ], - [ - 8.9978336, - 48.499564 - ], - [ - 8.9978336, - 48.5014061 - ], - [ - 8.9952776, - 48.5014061 - ], - [ - 8.9952776, - 48.499564 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-17T06:39:23Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "leaf_type": [ - "broadleaved" - ], - "denotation": [ - "garden" - ], - "leaf_cycle": [ - "deciduous" - ], - "species:wikidata": [ - "Q26899", - "Q46871", - "Q47161" - ] - }, - "create": 4, - "modify": 9, - "delete": 0, - "area": 0.00000470840759999406, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 17, - "create": 4, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 4, - "change_within_25m": 14, - "change_within_50m": 3 - }, - "id": 122492727 - } - }, - { - "id": 122488273, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.509301, - -31.9103469 - ], - [ - -71.509301, - -31.9103469 - ], - [ - -71.509301, - -31.9103469 - ], - [ - -71.509301, - -31.9103469 - ], - [ - -71.509301, - -31.9103469 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-17T04:03:20Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/ccZgA4a.jpg" - ], - "natural": [ - "tree" - ], - "species:wikidata": [ - "Q290967" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "es", - "imagery": "osm", - "add-image": 1 - }, - "id": 122488273 - } - }, - { - "id": 122486466, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -72.6765481, - -39.1032046 - ], - [ - -72.6755476, - -39.1032046 - ], - [ - -72.6755476, - -39.1029944 - ], - [ - -72.6765481, - -39.1029944 - ], - [ - -72.6765481, - -39.1032046 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Edny", - "uid": "16299351", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-17T01:43:56Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "leaf_type": [ - "broadleaved", - "needleleaved" - ], - "denotation": [ - "park" - ], - "leaf_cycle": [ - "evergreen", - "deciduous" - ], - "species:wikidata": [ - "Q1107183", - "Q61105", - "Q156687", - "Q26899" - ] - }, - "create": 0, - "modify": 12, - "delete": 0, - "area": 2.10305099998677e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 15, - "locale": "es", - "imagery": "osm" - }, - "id": 122486466 - } - }, - { - "id": 122485848, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -72.565468, - -37.0942463 - ], - [ - -72.565468, - -37.0942463 - ], - [ - -72.565468, - -37.0942463 - ], - [ - -72.565468, - -37.0942463 - ], - [ - -72.565468, - -37.0942463 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-17T00:40:52Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/MeK07D5.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osm", - "add-image": 1 - }, - "id": 122485848 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-18.json b/Docs/Tools/stats/stats.2022-6-18.json deleted file mode 100644 index 9874fa2a94..0000000000 --- a/Docs/Tools/stats/stats.2022-6-18.json +++ /dev/null @@ -1,1154 +0,0 @@ -{ - "features": [ - { - "id": 122560842, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3919891, - 50.8330631 - ], - [ - 4.3997536, - 50.8330631 - ], - [ - 4.3997536, - 50.8387971 - ], - [ - 4.3919891, - 50.8387971 - ], - [ - 4.3919891, - 50.8330631 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "DAKAR01", - "uid": "14345865", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-18T21:00:47Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_repair_station" - ] - }, - "create": 0, - "modify": 0, - "delete": 3, - "area": 0.0000445216430000326, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix", - "theme": "cyclofix", - "locale": "fr", - "imagery": "AGIV", - "deletion": 3, - "deletion:node/9408613172": "not found", - "deletion:node/9408613173": "not found", - "deletion:node/9408656868": "not found" - }, - "id": 122560842 - } - }, - { - "id": 122551662, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.348199, - 54.4475529 - ], - [ - -0.9611895, - 54.4475529 - ], - [ - -0.9611895, - 54.5819933 - ], - [ - -1.348199, - 54.5819933 - ], - [ - -1.348199, - 54.4475529 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 91, - "name": "Motorway/trunk geometry modified" - } - ], - "tags": [], - "features": [ - { - "url": "way-356021359", - "name": "Middlesbrough Road", - "osm_id": 356021359, - "reasons": [ - 91 - ], - "version": 5, - "primary_tags": { - "highway": "trunk" - } - } - ], - "user": "confusedbuffalo", - "uid": "242345", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-18T15:49:54Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "school" - ], - "highway": [ - "trunk", - "primary", - "tertiary", - "unclassified", - "residential" - ], - "name:etymology:wikidata": [ - "Q171866", - "Q2929357", - "Q20972980", - "Q641274", - "Q207380", - "Q667", - "Q6553810", - "Q5951097", - "Q1193749" - ] - }, - "create": 0, - "modify": 56, - "delete": 0, - "area": 0.052029711983801, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "answer": 93, - "locale": "en", - "imagery": "osm" - }, - "id": 122551662 - } - }, - { - "id": 122550540, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.7314569, - 45.1819934 - ], - [ - 5.7342598, - 45.1819934 - ], - [ - 5.7342598, - 45.1821399 - ], - [ - 5.7314569, - 45.1821399 - ], - [ - 5.7314569, - 45.1819934 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "camagrr", - "uid": "14089990", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-18T15:09:57Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "surveillance" - ] - }, - "create": 3, - "modify": 0, - "delete": 0, - "area": 4.10624849998869e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance", - "theme": "surveillance", - "answer": 1, - "create": 3, - "locale": "fr", - "imagery": "osm" - }, - "id": 122550540 - } - }, - { - "id": 122549736, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.2705637, - 47.7951175 - ], - [ - -4.2705637, - 47.7951175 - ], - [ - -4.2705637, - 47.7951175 - ], - [ - -4.2705637, - 47.7951175 - ], - [ - -4.2705637, - 47.7951175 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "TedScouGV", - "uid": "75300", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-18T14:44:33Z", - "reviewed_features": [], - "tag_changes": { - "fixme": [ - "Freeform field used for access - doublecheck the value" - ], - "level": [ - "0" - ], - "access": [ - "Uniquement durant les offices" - ], - "wheelchair": [ - "limited" - ], - "survey:date": [ - "2022-12-06" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 4, - "locale": "en", - "imagery": "osm", - "change_within_1000m": 4 - }, - "id": 122549736 - } - }, - { - "id": 122547293, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.3312751, - 48.6262617 - ], - [ - 9.3312751, - 48.6262617 - ], - [ - 9.3312751, - 48.6262617 - ], - [ - 9.3312751, - 48.6262617 - ], - [ - 9.3312751, - 48.6262617 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-18T13:28:09Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/inOvosf.jpg" - ], - "tourism": [ - "information" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/personal.html", - "theme": "personal", - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1 - }, - "id": 122547293 - } - }, - { - "id": 122546842, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.9700075, - 48.0604674 - ], - [ - -2.9442436, - 48.0604674 - ], - [ - -2.9442436, - 48.0829517 - ], - [ - -2.9700075, - 48.0829517 - ], - [ - -2.9700075, - 48.0604674 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LeTopographeFou", - "uid": "3178375", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-18T13:13:47Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "secondary", - "residential", - "pedestrian" - ], - "name:etymology:wikidata": [ - "Q46490", - "Q983629", - "Q755", - "Q26026", - "Q754863", - "Q316536", - "Q2946681", - "Q166171", - "Q312391" - ] - }, - "create": 0, - "modify": 18, - "delete": 0, - "area": 0.000579283256770051, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 18, - "locale": "fr", - "imagery": "osm" - }, - "id": 122546842 - } - }, - { - "id": 122546812, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.7022171, - 49.2752682 - ], - [ - -0.7022171, - 49.2752682 - ], - [ - -0.7022171, - 49.2752682 - ], - [ - -0.7022171, - 49.2752682 - ], - [ - -0.7022171, - 49.2752682 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-18T13:13:08Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "restaurant" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 5, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 5 - }, - "id": 122546812 - } - }, - { - "id": 122545077, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.8167698, - 49.4154719 - ], - [ - 6.8643013, - 49.4154719 - ], - [ - 6.8643013, - 49.4389674 - ], - [ - 6.8167698, - 49.4389674 - ], - [ - 6.8167698, - 49.4154719 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "rlp839", - "uid": "1687312", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-18T12:29:23Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 3, - "modify": 0, - "delete": 0, - "area": 0.00111677635825013, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 7, - "create": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 122545077 - } - }, - { - "id": 122543157, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2127069, - 51.0381417 - ], - [ - 3.2129567, - 51.0381417 - ], - [ - 3.2129567, - 51.0382825 - ], - [ - 3.2127069, - 51.0382825 - ], - [ - 3.2127069, - 51.0381417 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RubOSM", - "uid": "2096650", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-18T11:33:37Z", - "reviewed_features": [], - "tag_changes": { - "email": [ - "info@cuisinekwizien.be" - ], - "phone": [ - "+32 51 43 81 78" - ], - "amenity": [ - "restaurant" - ], - "website": [ - "https://www.cuisinekwizien.be/" - ], - "building": [ - "yes" - ], - "delivery": [ - "no" - ], - "takeaway": [ - "no" - ], - "wheelchair": [ - "limited" - ], - "payment:cash": [ - "yes" - ], - "opening_hours": [ - "Mo-Tu 12:00-14:00; Th-Fr 12:00-14:00, 19:00-21:00; Sa 19:00-21:00" - ], - "payment:cards": [ - "yes" - ] - }, - "create": 0, - "modify": 8, - "delete": 0, - "area": 3.51718400009754e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 8, - "locale": "nl", - "imagery": "osm" - }, - "id": 122543157 - } - }, - { - "id": 122539368, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.3492832, - 43.6133601 - ], - [ - 1.3492832, - 43.6133601 - ], - [ - 1.3492832, - 43.6133601 - ], - [ - 1.3492832, - 43.6133601 - ], - [ - 1.3492832, - 43.6133601 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-18T09:42:01Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "drinking_water" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_500m": 1 - }, - "id": 122539368 - } - }, - { - "id": 122536617, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1445189, - 51.1716739 - ], - [ - 4.1445189, - 51.1716739 - ], - [ - 4.1445189, - 51.1716739 - ], - [ - 4.1445189, - 51.1716739 - ], - [ - 4.1445189, - 51.1716739 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-18T08:32:50Z", - "reviewed_features": [], - "tag_changes": { - "automatic_door": [ - "motion" - ], - "wikimedia_commons": [ - "File:Station Sint-Niklaas Gebouw.jpg" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/entrances.html", - "theme": "entrances", - "answer": 1, - "locale": "en", - "imagery": "osm", - "link-image": 1 - }, - "id": 122536617 - } - }, - { - "id": 122535437, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.1161631, - 46.5735192 - ], - [ - -0.551544, - 46.5735192 - ], - [ - -0.551544, - 47.4236221 - ], - [ - -1.1161631, - 47.4236221 - ], - [ - -1.1161631, - 46.5735192 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-18T07:58:37Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/urDbrZw.jpg" - ], - "amenity": [ - "sanitary_dump_station" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0.479984334305392, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/campersite.html", - "theme": "campersite", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 1, - "change_within_25m": 8 - }, - "id": 122535437 - } - }, - { - "id": 122535005, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.7720067, - 50.0466357 - ], - [ - 7.7720485, - 50.0466357 - ], - [ - 7.7720485, - 50.0466736 - ], - [ - 7.7720067, - 50.0466736 - ], - [ - 7.7720067, - 50.0466357 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-18T07:45:22Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/lzsowY8.jpg" - ], - "seats": [ - "2" - ], - "colour": [ - "brown" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ], - "tourism": [ - "viewpoint" - ], - "backrest": [ - "yes" - ], - "material": [ - "wood" - ], - "direction": [ - "32" - ], - "survey:date": [ - "2022-06-18" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 1.58421999980119e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 7, - "create": 1, - "locale": "nl", - "imagery": "EsriWorldImagery", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 8 - }, - "id": 122535005 - } - }, - { - "id": 122533419, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.7502177, - 54.508819 - ], - [ - -1.3364187, - 54.508819 - ], - [ - -1.3364187, - 54.8861873 - ], - [ - -1.7502177, - 54.8861873 - ], - [ - -1.7502177, - 54.508819 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "confusedbuffalo", - "uid": "242345", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-18T06:48:27Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "community_centre", - "school" - ], - "highway": [ - "unclassified", - "primary", - "secondary", - "residential", - "footway" - ], - "name:etymology:wikidata": [ - "Q6032672", - "Q179815", - "Q2462654", - "Q154938", - "Q6703353", - "Q662172", - "Q173869", - "Q692", - "Q5683", - "Q45546", - "Q179126", - "Q170208", - "Q25348", - "Q2724806", - "Q55805", - "Q41994", - "Q18789", - "Q19682", - "Q216373", - "Q19714", - "Q550995", - "Q19686", - "Q503262", - "Q127332", - "Q211519", - "Q37103", - "Q3243105", - "Q42462", - "Q2488588", - "Q4876218", - "Q34384", - "Q128550", - "Q36322", - "Q12004", - "Q131113", - "Q147184", - "Q2531508", - "Q866339", - "Q4831050", - "Q5051748", - "Q7682582", - "Q25403", - "Q79972" - ] - }, - "create": 0, - "modify": 103, - "delete": 0, - "area": 0.1561546251717, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "answer": 123, - "locale": "en", - "imagery": "osm" - }, - "id": 122533419 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-19.json b/Docs/Tools/stats/stats.2022-6-19.json deleted file mode 100644 index 8c0efd0458..0000000000 --- a/Docs/Tools/stats/stats.2022-6-19.json +++ /dev/null @@ -1,1447 +0,0 @@ -{ - "features": [ - { - "id": 122596396, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0634625, - 50.9218858 - ], - [ - 4.0634625, - 50.9218858 - ], - [ - 4.0634625, - 50.9218858 - ], - [ - 4.0634625, - 50.9218858 - ], - [ - 4.0634625, - 50.9218858 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "philippec", - "uid": "76884", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-19T23:37:31Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/vWt1pYl.jpg" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 122596396 - } - }, - { - "id": 122594891, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.8664639, - 52.4709723 - ], - [ - 12.8738566, - 52.4709723 - ], - [ - 12.8738566, - 52.5086948 - ], - [ - 12.8664639, - 52.5086948 - ], - [ - 12.8664639, - 52.4709723 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Nkarl7635atgmailcom", - "uid": "16319307", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-19T21:39:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 0, - "delete": 0, - "area": 0.000278871125750025, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 122594891 - } - }, - { - "id": 122592354, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0907022, - 52.0947968 - ], - [ - 5.0907022, - 52.0947968 - ], - [ - 5.0907022, - 52.0947968 - ], - [ - 5.0907022, - 52.0947968 - ], - [ - 5.0907022, - 52.0947968 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "hackthemap", - "uid": "8722959", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-19T19:56:14Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "crossing" - ], - "crossing:island": [ - "no" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 122592354 - } - }, - { - "id": 122592126, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6843392, - 50.1365595 - ], - [ - 8.733009, - 50.1365595 - ], - [ - 8.733009, - 50.1644248 - ], - [ - 8.6843392, - 50.1644248 - ], - [ - 8.6843392, - 50.1365595 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "hackthemap", - "uid": "8722959", - "editor": "MapComplete 0.2.2a", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-19T19:48:18Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "sports_centre" - ], - "building": [ - "yes" - ], - "climbing:sport": [ - "no" - ], - "climbing:boulder": [ - "yes" - ], - "climbing:toprope": [ - "no" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.00135619857794007, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "climbing", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 122592126 - } - }, - { - "id": 122591482, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.3342117, - 48.6265894 - ], - [ - 9.3400298, - 48.6265894 - ], - [ - 9.3400298, - 48.6284135 - ], - [ - 9.3342117, - 48.6284135 - ], - [ - 9.3342117, - 48.6265894 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-19T19:22:27Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/eyewny7.jpg", - "https://i.imgur.com/njdXXrW.jpg", - "https://i.imgur.com/5ZQhDkc.jpg" - ], - "amenity": [ - "charging_station" - ], - "capacity": [ - "1" - ], - "opening_hours": [ - "24/7" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000106127962100034, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 2, - "locale": "de", - "imagery": "osm", - "add-image": 3 - }, - "id": 122591482 - } - }, - { - "id": 122587197, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9418156, - 51.3168686 - ], - [ - 4.9418156, - 51.3168686 - ], - [ - 4.9418156, - 51.3168686 - ], - [ - 4.9418156, - 51.3168686 - ], - [ - 4.9418156, - 51.3168686 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-19T17:08:03Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/XJluYWN.jpg" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1 - }, - "id": 122587197 - } - }, - { - "id": 122586466, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 103.0384728, - 13.3538336 - ], - [ - 103.0384728, - 13.3538336 - ], - [ - 103.0384728, - 13.3538336 - ], - [ - 103.0384728, - 13.3538336 - ], - [ - 103.0384728, - 13.3538336 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "choengbiy", - "uid": "16317899", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-19T16:48:16Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "surveillance" - ] - }, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "EsriWorldImagery", - "add-image": 2 - }, - "id": 122586466 - } - }, - { - "id": 122586234, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2283248, - 48.6778739 - ], - [ - 9.2283248, - 48.6778739 - ], - [ - 9.2283248, - 48.6778739 - ], - [ - 9.2283248, - 48.6778739 - ], - [ - 9.2283248, - 48.6778739 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-19T16:41:11Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "supermarket" - ], - "image": [ - "https://i.imgur.com/FS03Tu6.jpg" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_within_500m": 1 - }, - "id": 122586234 - } - }, - { - "id": 122580429, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2164547, - 51.1950847 - ], - [ - 3.2164547, - 51.1950847 - ], - [ - 3.2164547, - 51.1950847 - ], - [ - 3.2164547, - 51.1950847 - ], - [ - 3.2164547, - 51.1950847 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.1", - "comment": "Adding data with #MapComplete for theme #hackerspaces", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-19T13:47:45Z", - "reviewed_features": [], - "tag_changes": { - "email": [ - "hello@mindandmakerspace.com" - ], - "phone": [ - "+32 50 68 26 95" - ], - "leisure": [ - "hackerspace" - ], - "service:3dprinter": [ - "yes" - ], - "service:lasercutter": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/hackerspaces.html", - "theme": "hackerspaces", - "answer": 4, - "locale": "en", - "imagery": "osm", - "change_within_5000m": 4 - }, - "id": 122580429 - } - }, - { - "id": 122580276, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 24.8504051, - 60.327834 - ], - [ - 24.8525859, - 60.327834 - ], - [ - 24.8525859, - 60.3295044 - ], - [ - 24.8504051, - 60.3295044 - ], - [ - 24.8504051, - 60.327834 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Scalarik", - "uid": "186981", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-19T13:43:16Z", - "reviewed_features": [], - "tag_changes": { - "door": [ - "hinged" - ], - "highway": [ - "crossing", - "street_lamp", - "cycleway" - ], - "support": [ - "pole" - ], - "light:lit": [ - "dusk-dawn" - ], - "lamp_mount": [ - "straight_mast" - ], - "separation": [ - "kerb" - ], - "smoothness": [ - "excellent" - ], - "tactile_paving": [ - "no" - ], - "crossing:island": [ - "no" - ] - }, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.00000364280831999092, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/personal.html", - "theme": "personal", - "answer": 11, - "locale": "en", - "imagery": "osm", - "change_within_25m": 9, - "change_within_50m": 2 - }, - "id": 122580276 - } - }, - { - "id": 122580177, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 24.8521056, - 60.3293556 - ], - [ - 24.8521056, - 60.3293556 - ], - [ - 24.8521056, - 60.3293556 - ], - [ - 24.8521056, - 60.3293556 - ], - [ - 24.8521056, - 60.3293556 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Scalarik", - "uid": "186981", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-19T13:40:13Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "leaf_type": [ - "needleleaved" - ], - "denotation": [ - "park" - ], - "leaf_cycle": [ - "evergreen" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 3, - "locale": "en", - "imagery": "osm", - "change_within_25m": 3 - }, - "id": 122580177 - } - }, - { - "id": 122580108, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 24.8520654, - 60.3293443 - ], - [ - 24.8521403, - 60.3293443 - ], - [ - 24.8521403, - 60.3293661 - ], - [ - 24.8520654, - 60.3293661 - ], - [ - 24.8520654, - 60.3293443 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Scalarik", - "uid": "186981", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-19T13:38:10Z", - "reviewed_features": [], - "tag_changes": { - "colour": [ - "green" - ], - "amenity": [ - "bench" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 1.63281999987357e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 3, - "locale": "en", - "imagery": "osm", - "change_within_25m": 3 - }, - "id": 122580108 - } - }, - { - "id": 122580084, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 24.8521223, - 60.3292124 - ], - [ - 24.8521223, - 60.3292124 - ], - [ - 24.8521223, - 60.3292124 - ], - [ - 24.8521223, - 60.3292124 - ], - [ - 24.8521223, - 60.3292124 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Scalarik", - "uid": "186981", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-19T13:37:01Z", - "reviewed_features": [], - "tag_changes": { - "waste": [ - "trash" - ], - "amenity": [ - "waste_basket" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 122580084 - } - }, - { - "id": 122579644, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 24.8513636, - 60.3290519 - ], - [ - 24.852358, - 60.3290519 - ], - [ - 24.852358, - 60.3294715 - ], - [ - 24.8513636, - 60.3294715 - ], - [ - 24.8513636, - 60.3290519 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Scalarik", - "uid": "186981", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-19T13:24:24Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "yes" - ], - "barrier": [ - "fence" - ], - "leisure": [ - "playground" - ], - "surface": [ - "fine_gravel" - ], - "operator": [ - "Vantaan kaupunki" - ], - "opening_hours": [ - "24/7" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 4.17250239993558e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 4, - "locale": "en", - "imagery": "osm", - "change_within_25m": 4 - }, - "id": 122579644 - } - }, - { - "id": 122579325, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 24.8492879, - 60.3288397 - ], - [ - 24.8503267, - 60.3288397 - ], - [ - 24.8503267, - 60.3295204 - ], - [ - 24.8492879, - 60.3295204 - ], - [ - 24.8492879, - 60.3288397 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Scalarik", - "uid": "186981", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-19T13:16:04Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ], - "covered": [ - "yes" - ], - "bicycle_parking": [ - "wall_loops" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 7.07111159996447e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 4, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_50m": 4 - }, - "id": 122579325 - } - }, - { - "id": 122578230, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 27.9693098, - 40.3543024 - ], - [ - 28.9013204, - 40.3543024 - ], - [ - 28.9013204, - 41.0236898 - ], - [ - 27.9693098, - 41.0236898 - ], - [ - 27.9693098, - 40.3543024 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "bbtns1", - "uid": "5132923", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-19T12:44:41Z", - "reviewed_features": [], - "tag_changes": { - "barrier": [ - "bollard" - ], - "bicycle": [ - "yes" - ], - "bollard": [ - "flexible" - ], - "highway": [ - "traffic_signals", - "crossing" - ], - "crossing": [ - "unmarked", - "uncontrolled", - "marked" - ], - "tactile_paving": [ - "no", - "yes" - ], - "button_operated": [ - "yes" - ], - "crossing:island": [ - "no", - "yes" - ], - "maxwidth:physical": [ - "0.3" - ], - "red_turn:right:bicycle": [ - "no" - ], - "red_turn:straight:bicycle": [ - "no" - ] - }, - "create": 0, - "modify": 22, - "delete": 0, - "area": 0.623876152306437, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra", - "theme": "cycle_infra", - "answer": 37, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_1000m": 6 - }, - "id": 122578230 - } - }, - { - "id": 122576949, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7540083, - 53.094533 - ], - [ - 13.7540083, - 53.094533 - ], - [ - 13.7540083, - 53.094533 - ], - [ - 13.7540083, - 53.094533 - ], - [ - 13.7540083, - 53.094533 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Brandoberinspektor Erdmann", - "uid": "13364061", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-19T12:04:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 122576949 - } - }, - { - "id": 122574235, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4726843, - 49.1047123 - ], - [ - 8.474601, - 49.1047123 - ], - [ - 8.474601, - 49.1048168 - ], - [ - 8.4726843, - 49.1048168 - ], - [ - 8.4726843, - 49.1047123 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "k4pl4n", - "uid": "11229531", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #sidewalks", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-19T10:34:46Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential" - ], - "sidewalk:left": [ - "yes" - ], - "sidewalk:right": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 2.00295149998274e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sidewalks.html", - "theme": "sidewalks", - "answer": 2, - "locale": "en", - "imagery": "EsriWorldImageryClarity" - }, - "id": 122574235 - } - }, - { - "id": 122571316, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.2260245, - 43.6437654 - ], - [ - 1.2260245, - 43.6437654 - ], - [ - 1.2260245, - 43.6437654 - ], - [ - 1.2260245, - 43.6437654 - ], - [ - 1.2260245, - 43.6437654 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-19T08:53:12Z", - "reviewed_features": [], - "tag_changes": { - "bottle": [ - "yes" - ], - "amenity": [ - "drinking_water" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_500m": 1 - }, - "id": 122571316 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-20.json b/Docs/Tools/stats/stats.2022-6-20.json deleted file mode 100644 index 4c4fada9d6..0000000000 --- a/Docs/Tools/stats/stats.2022-6-20.json +++ /dev/null @@ -1,1111 +0,0 @@ -{ - "features": [ - { - "id": 122640479, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.0376711, - 50.7742844 - ], - [ - 3.0376711, - 50.7742844 - ], - [ - 3.0376711, - 50.7742844 - ], - [ - 3.0376711, - 50.7742844 - ], - [ - 3.0376711, - 50.7742844 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-20T22:05:37Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "picnic_table" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "import": 1, - "locale": "nl", - "imagery": "osm", - "import:node/9834595164": "source: https://osm.org/note/3156436" - }, - "id": 122640479 - } - }, - { - "id": 122639064, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.373757, - 50.9509636 - ], - [ - 5.373757, - 50.9509636 - ], - [ - 5.373757, - 50.9509636 - ], - [ - 5.373757, - 50.9509636 - ], - [ - 5.373757, - 50.9509636 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-20T20:57:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 6 - }, - "id": 122639064 - } - }, - { - "id": 122638880, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0748208, - 51.1042735 - ], - [ - 5.0748208, - 51.1042735 - ], - [ - 5.0748208, - 51.1042735 - ], - [ - 5.0748208, - 51.1042735 - ], - [ - 5.0748208, - 51.1042735 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-20T20:50:11Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "import": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 3, - "import:node/9834337616": "source: https://osm.org/note/3143410" - }, - "id": 122638880 - } - }, - { - "id": 122636657, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3553743, - 50.9451473 - ], - [ - 3.3553743, - 50.9451473 - ], - [ - 3.3553743, - 50.9451473 - ], - [ - 3.3553743, - 50.9451473 - ], - [ - 3.3553743, - 50.9451473 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #postboxes", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-20T19:34:02Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/e1pxHw5.jpg" - ], - "amenity": [ - "post_box" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/postboxes.html", - "theme": "postboxes", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 122636657 - } - }, - { - "id": 122635551, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3550763, - 50.9362062 - ], - [ - 3.4739958, - 50.9362062 - ], - [ - 3.4739958, - 50.9455926 - ], - [ - 3.3550763, - 50.9455926 - ], - [ - 3.3550763, - 50.9362062 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-20T18:54:26Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/b1WU9lT.jpg" - ], - "amenity": [ - "charging_station" - ], - "image:0": [ - "https://i.imgur.com/6oMfJt3.jpg" - ], - "image:1": [ - "https://i.imgur.com/7dxtbEX.jpg" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00111622599479962, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed", - "theme": "aed", - "locale": "nl", - "imagery": "osm", - "add-image": 5 - }, - "id": 122635551 - } - }, - { - "id": 122634743, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2875906, - 50.9327435 - ], - [ - 3.4744269, - 50.9327435 - ], - [ - 3.4744269, - 50.9490403 - ], - [ - 3.2875906, - 50.9490403 - ], - [ - 3.2875906, - 50.9327435 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-20T18:25:28Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/oBrJtqy.jpg", - "https://i.imgur.com/6VUJuvK.jpg", - "https://i.imgur.com/idVtHWJ.jpg", - "https://i.imgur.com/nTkNjAy.jpg" - ], - "route": [ - "bicycle" - ], - "amenity": [ - "parking", - "toilets", - "bench", - "charging_station" - ], - "highway": [ - "residential" - ], - "leisure": [ - "picnic_table", - "playground" - ], - "building": [ - "yes" - ], - "mapillary": [ - "253560946526500" - ] - }, - "create": 3, - "modify": 16, - "delete": 0, - "area": 0.00304483381383985, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 2, - "create": 1, - "import": 2, - "locale": "nl", - "imagery": "AGIV", - "add-image": 15, - "import:node/9834136592": "source: https://osm.org/note/3099197", - "import:node/9834158215": "source: https://osm.org/note/3156368" - }, - "id": 122634743 - } - }, - { - "id": 122634050, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.3302641, - 53.2207045 - ], - [ - 6.3302641, - 53.2207045 - ], - [ - 6.3302641, - 53.2207045 - ], - [ - 6.3302641, - 53.2207045 - ], - [ - 6.3302641, - 53.2207045 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9834085168", - "osm_id": 9834085168, - "reasons": [ - 43 - ], - "version": 1, - "primary_tags": { - "tourism": "map" - } - } - ], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #maps", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-20T17:55:31Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "map" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maps.html", - "theme": "maps", - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 122634050 - } - }, - { - "id": 122633908, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.3303288, - 53.2192006 - ], - [ - 6.3319471, - 53.2192006 - ], - [ - 6.3319471, - 53.2195119 - ], - [ - 6.3303288, - 53.2195119 - ], - [ - 6.3303288, - 53.2192006 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-20T17:50:38Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 5.03776789999728e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 6, - "create": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 2, - "change_within_25m": 8 - }, - "id": 122633908 - } - }, - { - "id": 122633789, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.3316374, - 53.2182724 - ], - [ - 6.3325207, - 53.2182724 - ], - [ - 6.3325207, - 53.2191517 - ], - [ - 6.3316374, - 53.2191517 - ], - [ - 6.3316374, - 53.2182724 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-20T17:45:54Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 3, - "modify": 2, - "delete": 0, - "area": 7.76685690000935e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 6, - "create": 3, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 3, - "change_within_25m": 8 - }, - "id": 122633789 - } - }, - { - "id": 122633579, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.3348922, - 53.2143438 - ], - [ - 6.3348922, - 53.2143438 - ], - [ - 6.3348922, - 53.2143438 - ], - [ - 6.3348922, - 53.2143438 - ], - [ - 6.3348922, - 53.2143438 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-20T17:34:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 122633579 - } - }, - { - "id": 122623273, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 43.9581727, - 56.3395537 - ], - [ - 43.95821, - 56.3395537 - ], - [ - 43.95821, - 56.3395748 - ], - [ - 43.9581727, - 56.3395748 - ], - [ - 43.9581727, - 56.3395537 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "alexashh", - "uid": "9054103", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-20T13:00:00Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/9M8IOMO.jpg", - "https://i.imgur.com/tE8ID5X.jpg" - ], - "access": [ - "yes" - ], - "amenity": [ - "bicycle_parking" - ], - "covered": [ - "no" - ], - "capacity": [ - "10" - ], - "bicycle_parking": [ - "wall_loops", - "stands" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 7.87029999973087e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 7, - "locale": "ru", - "imagery": "CartoDB.Voyager", - "add-image": 2, - "change_within_25m": 9 - }, - "id": 122623273 - } - }, - { - "id": 122623245, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.1671892, - 47.954379 - ], - [ - 16.1671892, - 47.954379 - ], - [ - 16.1671892, - 47.954379 - ], - [ - 16.1671892, - 47.954379 - ], - [ - 16.1671892, - 47.954379 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Bernhard Pranz", - "uid": "8164818", - "editor": "iD 2.21.1", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "basemap.at Orthofoto", - "date": "2022-06-20T12:59:35Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "restaurant" - ], - "cuisine": [ - "heuriger" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://www.openstreetmap.org/edit", - "locale": "de", - "hashtags": "#MapComplete;#food", - "changesets_count": 2271 - }, - "id": 122623245 - } - }, - { - "id": 122623147, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.1671892, - 47.954379 - ], - [ - 16.1671892, - 47.954379 - ], - [ - 16.1671892, - 47.954379 - ], - [ - 16.1671892, - 47.954379 - ], - [ - 16.1671892, - 47.954379 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Bernhard Pranz", - "uid": "8164818", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-20T12:57:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 1, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 122623147 - } - }, - { - "id": 122618532, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -76.4424681, - 40.1295472 - ], - [ - -76.4424681, - 40.1295472 - ], - [ - -76.4424681, - 40.1295472 - ], - [ - -76.4424681, - 40.1295472 - ], - [ - -76.4424681, - 40.1295472 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "millerdev", - "uid": "16323920", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-20T11:32:19Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_repair_station" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "Mapbox" - }, - "id": 122618532 - } - }, - { - "id": 122603107, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9965647, - 48.4999741 - ], - [ - 8.9965647, - 48.4999741 - ], - [ - 8.9965647, - 48.4999741 - ], - [ - 8.9965647, - 48.4999741 - ], - [ - 8.9965647, - 48.4999741 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-20T06:10:37Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "species:wikidata": [ - "Q158746" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "de", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 122603107 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-21.json b/Docs/Tools/stats/stats.2022-6-21.json deleted file mode 100644 index 4921e1f9cf..0000000000 --- a/Docs/Tools/stats/stats.2022-6-21.json +++ /dev/null @@ -1,759 +0,0 @@ -{ - "features": [ - { - "id": 122681879, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4459796, - 52.4742489 - ], - [ - 13.4459796, - 52.4742489 - ], - [ - 13.4459796, - 52.4742489 - ], - [ - 13.4459796, - 52.4742489 - ], - [ - 13.4459796, - 52.4742489 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "tordans", - "uid": "11881", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-21T19:07:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 122681879 - } - }, - { - "id": 122680288, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -4.7987028, - 41.6148739 - ], - [ - -4.7987028, - 41.6148739 - ], - [ - -4.7987028, - 41.6148739 - ], - [ - -4.7987028, - 41.6148739 - ], - [ - -4.7987028, - 41.6148739 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 42, - "name": "Invalid tag modification" - } - ], - "tags": [], - "features": [ - { - "url": "node-8867327536", - "name": "Ramón y Cajal- Antonio de Ulloa", - "osm_id": 8867327536, - "reasons": [ - 42 - ], - "version": 5, - "primary_tags": {} - } - ], - "user": "tigregti", - "uid": "15144964", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-21T18:27:24Z", - "reviewed_features": [], - "tag_changes": { - "emergency": [ - "fire_hydrant" - ], - "disused:emergency": [ - "fire_hydrant" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "answer": 3, - "locale": "en", - "imagery": "HDM_HOT", - "change_within_25m": 3 - }, - "id": 122680288 - } - }, - { - "id": 122670794, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2157004, - 51.1934736 - ], - [ - 3.2186749, - 51.1934736 - ], - [ - 3.2186749, - 51.1951561 - ], - [ - 3.2157004, - 51.1951561 - ], - [ - 3.2157004, - 51.1934736 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #education", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-21T14:02:26Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "university", - "college" - ], - "website": [ - "https://www.kuleuven.be/campussen/campus-brugge" - ], - "school:gender": [ - "mixed" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00000500459625000357, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "http://127.0.0.1:1234/theme.html", - "theme": "education", - "answer": 5, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 122670794 - } - }, - { - "id": 122664088, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5338753, - 53.2409037 - ], - [ - 6.5338753, - 53.2409037 - ], - [ - 6.5338753, - 53.2409037 - ], - [ - 6.5338753, - 53.2409037 - ], - [ - 6.5338753, - 53.2409037 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-21T11:44:09Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "artwork" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 122664088 - } - }, - { - "id": 122661909, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.988348, - 51.160445 - ], - [ - 4.9900166, - 51.160445 - ], - [ - 4.9900166, - 51.1615324 - ], - [ - 4.988348, - 51.1615324 - ], - [ - 4.988348, - 51.160445 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-21T11:01:21Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "restaurant" - ], - "highway": [ - "pedestrian" - ], - "leisure": [ - "outdoor_seating" - ], - "building": [ - "yes", - "commercial", - "house", - "roof" - ], - "historic": [ - "yes" - ], - "addr:housenumber": [ - "77;77A", - "77" - ], - "source:geometry:ref": [ - "Gbg/1692821", - "Gbg/1693523", - "Gbg/1693525", - "Gbg/5654012", - "Gbg/5654003", - "Gbg/1694221", - "Gbg/1694222", - "Gbg/1692822" - ], - "source:geometry:date": [ - "2009-06-05", - "2016-07-28", - "2017-11-20" - ] - }, - "create": 24, - "modify": 118, - "delete": 1, - "area": 0.0000018144356399925, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 112, - "theme": "grb", - "answer": 4, - "delete": 1, - "import": 2, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "conflation": 16 - }, - "id": 122661909 - } - }, - { - "id": 122655153, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9738208, - 50.9033628 - ], - [ - 5.1239452, - 50.9033628 - ], - [ - 5.1239452, - 51.1617729 - ], - [ - 4.9738208, - 51.1617729 - ], - [ - 4.9738208, - 50.9033628 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-21T08:48:03Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "townhall" - ], - "highway": [ - "service", - "footway" - ], - "building": [ - "roof", - "yes", - "house", - "construction", - "apartments", - "shed" - ], - "source:geometry:ref": [ - "Gbg/1693039", - "Gbg/1694801", - "Gbg/1692619", - "Gbg/1694796", - "Gbg/1694865", - "Gbg/1694864", - "Gbg/5123217", - "Gbg/1695756", - "Gbg/5123218", - "Gbg/1705428", - "Gbg/1706602", - "Gbg/1695034", - "Gbg/1695033", - "Gbg/1692618", - "Gbg/6150261", - "Gbg/6155194", - "Gbg/1694797", - "Gbg/1694814", - "Gbg/5404466", - "Gbg/1694809", - "Gbg/5124476", - "Gbg/1694822", - "Gba/110941", - "Gba/551056" - ], - "source:geometry:date": [ - "2009-06-05", - "2019-07-09", - "2015-03-30", - "2017-11-20", - "2021-07-05", - "2009-09-21", - "2021-10-22" - ] - }, - "create": 910, - "modify": 417, - "delete": 4, - "area": 0.0387936612164407, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 393, - "theme": "grb", - "answer": 1, - "delete": 4, - "import": 107, - "locale": "nl", - "imagery": "osm", - "conflation": 48 - }, - "id": 122655153 - } - }, - { - "id": 122654914, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9859398, - 51.1614131 - ], - [ - 4.9866147, - 51.1614131 - ], - [ - 4.9866147, - 51.1617837 - ], - [ - 4.9859398, - 51.1617837 - ], - [ - 4.9859398, - 51.1614131 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-21T08:43:21Z", - "reviewed_features": [], - "tag_changes": { - "colour": [ - "brown" - ], - "amenity": [ - "bench" - ], - "backrest": [ - "yes" - ], - "material": [ - "wood" - ], - "direction": [ - "170", - "252", - "355" - ], - "survey:date": [ - "2022-06-21" - ] - }, - "create": 2, - "modify": 25, - "delete": 0, - "area": 2.50117940002443e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 36, - "create": 2, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 122654914 - } - }, - { - "id": 122647591, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9942575, - 48.4989551 - ], - [ - 8.9964013, - 48.4989551 - ], - [ - 8.9964013, - 48.4999939 - ], - [ - 8.9942575, - 48.4999939 - ], - [ - 8.9942575, - 48.4989551 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-21T05:40:12Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "denotation": [ - "park", - "garden" - ], - "species:wikidata": [ - "Q145954", - "Q158785" - ] - }, - "create": 4, - "modify": 9, - "delete": 0, - "area": 0.00000222697943999288, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 13, - "create": 4, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 4, - "change_within_25m": 13 - }, - "id": 122647591 - } - }, - { - "id": 122643179, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2381516, - -39.8439309 - ], - [ - -73.2381516, - -39.8439309 - ], - [ - -73.2381516, - -39.8439309 - ], - [ - -73.2381516, - -39.8439309 - ], - [ - -73.2381516, - -39.8439309 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-21T01:54:30Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "species:wikidata": [ - "Q1486147" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "es", - "imagery": "osmfr" - }, - "id": 122643179 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-22.json b/Docs/Tools/stats/stats.2022-6-22.json deleted file mode 100644 index 758d9b45d2..0000000000 --- a/Docs/Tools/stats/stats.2022-6-22.json +++ /dev/null @@ -1,1574 +0,0 @@ -{ - "features": [ - { - "id": 122728566, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2191963, - 51.2141962 - ], - [ - 3.2247595, - 51.2141962 - ], - [ - 3.2247595, - 51.2168146 - ], - [ - 3.2191963, - 51.2168146 - ], - [ - 3.2191963, - 51.2141962 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #education", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-22T20:41:08Z", - "reviewed_features": [], - "tag_changes": { - "school": [ - "middle_secondary;upper_secondary", - "primary", - "lower_secondary" - ], - "amenity": [ - "school" - ], - "school:gender": [ - "mixed" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000145666828799757, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/education", - "theme": "education", - "answer": 6, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 6 - }, - "id": 122728566 - } - }, - { - "id": 122728251, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7061055, - 51.0302433 - ], - [ - 3.7061055, - 51.0302433 - ], - [ - 3.7061055, - 51.0302433 - ], - [ - 3.7061055, - 51.0302433 - ], - [ - 3.7061055, - 51.0302433 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-22T20:32:02Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "fast_food" - ], - "diet:vegan": [ - "limited" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_1000m": 1 - }, - "id": 122728251 - } - }, - { - "id": 122723547, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0319857, - 51.1057435 - ], - [ - 4.0872377, - 51.1057435 - ], - [ - 4.0872377, - 51.1232883 - ], - [ - 4.0319857, - 51.1232883 - ], - [ - 4.0319857, - 51.1057435 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Gpoilvet", - "uid": "9574710", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-22T18:22:19Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes", - "roof" - ] - }, - "create": 655, - "modify": 0, - "delete": 0, - "area": 0.000969385289599786, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "theme": "grb", - "import": 120, - "locale": "nl", - "imagery": "AIV_Wegenregister" - }, - "id": 122723547 - } - }, - { - "id": 122723250, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0862803, - 51.1115059 - ], - [ - 4.0953338, - 51.1115059 - ], - [ - 4.0953338, - 51.1142853 - ], - [ - 4.0862803, - 51.1142853 - ], - [ - 4.0862803, - 51.1115059 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-22T18:12:53Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "shed", - "house", - "yes", - "roof" - ], - "source:geometry:ref": [ - "Gbg/6676230" - ], - "source:geometry:date": [ - "2019-09-30", - "2012-02-20" - ] - }, - "create": 124, - "modify": 9, - "delete": 0, - "area": 0.0000251632979000112, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "http://127.0.0.1:1234/theme.html", - "move": 8, - "theme": "grb", - "import": 31, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "conflation": 2 - }, - "id": 122723250 - } - }, - { - "id": 122723131, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3569772, - 51.0699609 - ], - [ - 3.3569772, - 51.0699609 - ], - [ - 3.3569772, - 51.0699609 - ], - [ - 3.3569772, - 51.0699609 - ], - [ - 3.3569772, - 51.0699609 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #postboxes", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-22T18:09:18Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/VwL5gTM.jpg" - ], - "amenity": [ - "post_box" - ], - "image:0": [ - "https://i.imgur.com/SvFF6f4.jpg" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/postboxes.html", - "theme": "postboxes", - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 2, - "change_within_5000m": 2 - }, - "id": 122723131 - } - }, - { - "id": 122722357, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3571548, - 51.0696164 - ], - [ - 3.3571819, - 51.0696164 - ], - [ - 3.3571819, - 51.0696437 - ], - [ - 3.3571548, - 51.0696437 - ], - [ - 3.3571548, - 51.0696164 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-22T17:46:54Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "recycling" - ] - }, - "create": 2, - "modify": 5, - "delete": 0, - "area": 7.3982999998223e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "move": 1, - "theme": "waste", - "answer": 6, - "create": 2, - "locale": "en", - "imagery": "AGIV", - "add-image": 2, - "change_over_5000m": 2, - "change_within_5000m": 9, - "move:node/9839412029": "improve_accuracy" - }, - "id": 122722357 - } - }, - { - "id": 122721308, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7061055, - 51.0302433 - ], - [ - 3.7061055, - 51.0302433 - ], - [ - 3.7061055, - 51.0302433 - ], - [ - 3.7061055, - 51.0302433 - ], - [ - 3.7061055, - 51.0302433 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-22T17:19:31Z", - "reviewed_features": [], - "tag_changes": { - "email": [ - "inof@labicyclettepastabar.be" - ], - "image": [ - "https://i.imgur.com/8t3Eblq.jpg" - ], - "phone": [ - "+32 468 13 09 20" - ], - "amenity": [ - "fast_food" - ], - "website": [ - "https://la-bicyclette.be" - ], - "wheelchair": [ - "limited" - ], - "payment:cash": [ - "yes" - ], - "opening_hours": [ - "Mo-Th 17:15-20:30; Fr-Sa 17:15-21:00;" - ], - "payment:cards": [ - "yes" - ], - "diet:vegetarian": [ - "yes" - ], - "service:electricity": [ - "yes" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/food.html", - "theme": "food", - "answer": 8, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 9 - }, - "id": 122721308 - } - }, - { - "id": 122717917, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0295793, - 38.8599969 - ], - [ - 0.0295793, - 38.8599969 - ], - [ - 0.0295793, - 38.8599969 - ], - [ - 0.0295793, - 38.8599969 - ], - [ - 0.0295793, - 38.8599969 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-22T15:45:58Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_disposal" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 1, - "create": 1, - "locale": "ca", - "imagery": "PNOA-Spain-TMS", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 122717917 - } - }, - { - "id": 122714144, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7093993, - 51.0220244 - ], - [ - 3.7202272, - 51.0220244 - ], - [ - 3.7202272, - 51.0280527 - ], - [ - 3.7093993, - 51.0280527 - ], - [ - 3.7093993, - 51.0220244 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #education", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-22T14:00:39Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "university" - ], - "isced:2011:level": [ - "bachelor;master;doctorate" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.0000652738295700457, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/education", - "theme": "education", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_5000m": 1 - }, - "id": 122714144 - } - }, - { - "id": 122711801, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0211198, - 38.8166826 - ], - [ - 0.0237013, - 38.8166826 - ], - [ - 0.0237013, - 38.8189087 - ], - [ - 0.0211198, - 38.8189087 - ], - [ - 0.0211198, - 38.8166826 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-22T13:05:59Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "mall" - ], - "building": [ - "yes" - ], - "man_made": [ - "surveillance" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 0.00000574667715000375, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 6, - "create": 3, - "locale": "ca", - "imagery": "PNOA-Spain-TMS", - "change_over_5000m": 1, - "change_within_25m": 8 - }, - "id": 122711801 - } - }, - { - "id": 122710050, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7500581, - 51.0603551 - ], - [ - 3.7500581, - 51.0603551 - ], - [ - 3.7500581, - 51.0603551 - ], - [ - 3.7500581, - 51.0603551 - ], - [ - 3.7500581, - 51.0603551 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-22T12:27:08Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "pitch" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/sport_pitches.html", - "theme": "sport_pitches", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_100m": 2 - }, - "id": 122710050 - } - }, - { - "id": 122708926, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0201735, - 38.8168984 - ], - [ - 0.0244924, - 38.8168984 - ], - [ - 0.0244924, - 38.8183412 - ], - [ - 0.0201735, - 38.8183412 - ], - [ - 0.0201735, - 38.8168984 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-22T12:01:14Z", - "reviewed_features": [], - "tag_changes": { - "bus": [ - "no" - ], - "hgv": [ - "no" - ], - "access": [ - "yes" - ], - "amenity": [ - "charging_station" - ], - "bicycle": [ - "no" - ], - "scooter": [ - "no" - ], - "motorcar": [ - "yes" - ], - "socket:type2": [ - "1" - ], - "socket:chademo": [ - "1" - ], - "socket:type2_combo": [ - "1" - ] - }, - "create": 1, - "modify": 12, - "delete": 0, - "area": 0.00000623130891999794, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 14, - "create": 1, - "locale": "ca", - "imagery": "PNOA-Spain-TMS", - "change_over_5000m": 1, - "change_within_25m": 9, - "change_within_500m": 5 - }, - "id": 122708926 - } - }, - { - "id": 122706352, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.6465344, - 44.8022722 - ], - [ - -0.6465344, - 44.8022722 - ], - [ - -0.6465344, - 44.8022722 - ], - [ - -0.6465344, - 44.8022722 - ], - [ - -0.6465344, - 44.8022722 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-22T11:03:23Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "access": [ - "yes" - ], - "amenity": [ - "toilets" - ], - "wheelchair": [ - "no" - ], - "opening_hours": [ - "24/7" - ], - "changing_table": [ - "no" - ], - "toilets:position": [ - "seated" - ], - "toilets:handwashing": [ - "yes" - ], - "toilets:paper_supplied": [ - "yes" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 8, - "locale": "fr", - "imagery": "osm" - }, - "id": 122706352 - } - }, - { - "id": 122703683, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3447361, - 50.948067 - ], - [ - 5.344776, - 50.948067 - ], - [ - 5.344776, - 50.9481079 - ], - [ - 5.3447361, - 50.9481079 - ], - [ - 5.3447361, - 50.948067 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-22T09:59:15Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "fast_food" - ] - }, - "create": 1, - "modify": 5, - "delete": 0, - "area": 1.63190999979146e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "move": 1, - "theme": "food", - "answer": 9, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 10, - "move:node/9838328438": "improve_accuracy" - }, - "id": 122703683 - } - }, - { - "id": 122703540, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.9839678, - 48.3993113 - ], - [ - 9.9839678, - 48.3993113 - ], - [ - 9.9839678, - 48.3993113 - ], - [ - 9.9839678, - 48.3993113 - ], - [ - 9.9839678, - 48.3993113 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "claudia10", - "uid": "557496", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-22T09:55:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets", - "theme": "toilets", - "answer": 2, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 122703540 - } - }, - { - "id": 122697663, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3672555, - 50.9605987 - ], - [ - 5.3764991, - 50.9605987 - ], - [ - 5.3764991, - 50.9916554 - ], - [ - 5.3672555, - 50.9916554 - ], - [ - 5.3672555, - 50.9605987 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-22T07:31:53Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/ZcY6tFE.jpg", - "https://i.imgur.com/uknNbuo.jpg" - ], - "colour": [ - "brown" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ], - "backrest": [ - "yes" - ], - "material": [ - "wood" - ], - "direction": [ - "82", - "80", - "71", - "147" - ], - "survey:date": [ - "2022-06-22" - ] - }, - "create": 7, - "modify": 37, - "delete": 0, - "area": 0.00028707571212002, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 7, - "theme": "toerisme_vlaanderen", - "answer": 48, - "create": 7, - "locale": "nl", - "imagery": "osm", - "add-image": 9, - "change_over_5000m": 7, - "change_within_25m": 56, - "change_within_50m": 8, - "move:node/6871835936": "improve_accuracy", - "move:node/9837972374": "improve_accuracy", - "move:node/9838005840": "improve_accuracy", - "move:node/9838020180": "improve_accuracy", - "move:node/9838037228": "improve_accuracy", - "move:node/9838061051": "improve_accuracy", - "move:node/9838148327": "improve_accuracy" - }, - "id": 122697663 - } - }, - { - "id": 122697102, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9098082, - 51.2229205 - ], - [ - 2.9237184, - 51.2229205 - ], - [ - 2.9237184, - 51.2353223 - ], - [ - 2.9098082, - 51.2353223 - ], - [ - 2.9098082, - 51.2229205 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #cyclestreets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-22T07:20:44Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "tertiary", - "residential" - ], - "maxspeed": [ - "30" - ], - "cyclestreet": [ - "yes" - ], - "overtaking:motor_vehicle": [ - "no" - ] - }, - "create": 0, - "modify": 34, - "delete": 0, - "area": 0.000172511518359987, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclestreets.html", - "theme": "cyclestreets", - "answer": 34, - "locale": "nl", - "imagery": "osm" - }, - "id": 122697102 - } - }, - { - "id": 122696750, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2322331, - -39.8193856 - ], - [ - -73.2306501, - -39.8193856 - ], - [ - -73.2306501, - -39.8187091 - ], - [ - -73.2322331, - -39.8187091 - ], - [ - -73.2322331, - -39.8193856 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-22T07:12:51Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/jOPSD6K.jpg", - "https://i.imgur.com/CkhWjA2.jpg", - "https://i.imgur.com/FSzpg9j.jpg", - "https://i.imgur.com/ko6MRcg.jpg", - "https://i.imgur.com/3dDtaEg.jpg", - "https://i.imgur.com/Edrqmdj.jpg", - "https://i.imgur.com/wmkTLCc.jpg", - "https://i.imgur.com/YIavLmU.jpg", - "https://i.imgur.com/aQLeSzq.jpg", - "https://i.imgur.com/MVQ7MF6.jpg", - "https://i.imgur.com/qGr4DB8.jpg", - "https://i.imgur.com/NlOSYNx.jpg", - "https://i.imgur.com/9Mjhcrx.jpg", - "https://i.imgur.com/usLXWR9.jpg" - ], - "image:0": [ - "https://i.imgur.com/BlAK7kl.jpg", - "https://i.imgur.com/SViKOFn.jpg", - "https://i.imgur.com/upbVHbB.jpg" - ], - "natural": [ - "tree" - ], - "leaf_type": [ - "needleleaved", - "broadleaved" - ] - }, - "create": 0, - "modify": 17, - "delete": 0, - "area": 0.00000107089949999341, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "es", - "imagery": "osmfr", - "add-image": 17, - "change_within_5000m": 18 - }, - "id": 122696750 - } - }, - { - "id": 122696036, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4043743, - 51.2137693 - ], - [ - 4.4050737, - 51.2137693 - ], - [ - 4.4050737, - 51.2145686 - ], - [ - 4.4043743, - 51.2145686 - ], - [ - 4.4043743, - 51.2137693 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Yann Vandamme", - "uid": "1678678", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-22T06:57:06Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "surveillance" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 5.59030419998135e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance", - "theme": "surveillance", - "answer": 4, - "create": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 122696036 - } - }, - { - "id": 122692529, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9942931, - 48.4994537 - ], - [ - 8.9944725, - 48.4994537 - ], - [ - 8.9944725, - 48.5002535 - ], - [ - 8.9942931, - 48.5002535 - ], - [ - 8.9942931, - 48.4994537 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-22T05:25:46Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "species:wikidata": [ - "Q47161" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 1.43484120000829e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 3, - "create": 1, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 122692529 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-23.json b/Docs/Tools/stats/stats.2022-6-23.json deleted file mode 100644 index b446c70651..0000000000 --- a/Docs/Tools/stats/stats.2022-6-23.json +++ /dev/null @@ -1,2032 +0,0 @@ -{ - "features": [ - { - "id": 122775602, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2758302, - 53.211392 - ], - [ - 6.2797427, - 53.211392 - ], - [ - 6.2797427, - 53.2141752 - ], - [ - 6.2758302, - 53.2141752 - ], - [ - 6.2758302, - 53.211392 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #education", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-23T20:54:25Z", - "reviewed_features": [], - "tag_changes": { - "email": [ - "jankuipers@quadraten.nl", - "grootegast@sksg.nl" - ], - "phone": [ - "+31 594 612 880", - "+31 6 13932366" - ], - "amenity": [ - "school", - "kindergarten" - ], - "website": [ - "https://jankuipers.quadraten.nl/" - ], - "school:language": [ - "nl" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.0000108892700000131, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/education", - "theme": "education", - "answer": 7, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_1000m": 5, - "change_within_5000m": 2 - }, - "id": 122775602 - } - }, - { - "id": 122775387, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2668996, - 53.2066652 - ], - [ - 6.2768678, - 53.2066652 - ], - [ - 6.2768678, - 53.2126476 - ], - [ - 6.2668996, - 53.2126476 - ], - [ - 6.2668996, - 53.2066652 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #education", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-23T20:46:34Z", - "reviewed_features": [], - "tag_changes": { - "email": [ - "dir.christal@noorderbasis.nl", - "molenberg@quadraten.nl" - ], - "phone": [ - "+31 594 613 657", - "+31 594 612 661" - ], - "amenity": [ - "school" - ], - "website": [ - "https://www.basisschoolchristal.nl/", - "https://molenberg.quadraten.nl/" - ], - "school:gender": [ - "mixed" - ], - "school:language": [ - "nl" - ] - }, - "create": 0, - "modify": 11, - "delete": 0, - "area": 0.0000596337596799318, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/education", - "theme": "education", - "answer": 11, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_500m": 5, - "change_within_1000m": 6 - }, - "id": 122775387 - } - }, - { - "id": 122775052, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2514648, - 50.726025 - ], - [ - 4.2535312, - 50.726025 - ], - [ - 4.2535312, - 50.7272618 - ], - [ - 4.2514648, - 50.7272618 - ], - [ - 4.2514648, - 50.726025 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-23T20:33:54Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential" - ], - "maxspeed": [ - "30" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000255572352000235, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed", - "theme": "maxspeed", - "answer": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 122775052 - } - }, - { - "id": 122774261, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2098756, - 48.4952882 - ], - [ - 9.2098756, - 48.4952882 - ], - [ - 9.2098756, - 48.4952882 - ], - [ - 9.2098756, - 48.4952882 - ], - [ - 9.2098756, - 48.4952882 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-23T20:08:11Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/52G3A7P.jpg" - ], - "tourism": [ - "artwork" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 122774261 - } - }, - { - "id": 122774034, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.3417917, - 48.6285894 - ], - [ - 9.3417917, - 48.6285894 - ], - [ - 9.3417917, - 48.6285894 - ], - [ - 9.3417917, - 48.6285894 - ], - [ - 9.3417917, - 48.6285894 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #bicycle_rental", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-23T19:59:59Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/U4h8W37.jpg" - ], - "rental": [ - "city_bike" - ], - "amenity": [ - "bicycle_rental" - ], - "bicycle_rental": [ - "docking_station" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bicycle_rental.html", - "theme": "bicycle_rental", - "answer": 2, - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 122774034 - } - }, - { - "id": 122773672, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2064388, - 48.4917557 - ], - [ - 9.2095283, - 48.4917557 - ], - [ - 9.2095283, - 48.4956488 - ], - [ - 9.2064388, - 48.4956488 - ], - [ - 9.2064388, - 48.4917557 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-23T19:49:04Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/rzKt82x.jpg", - "https://i.imgur.com/AaYvP7Q.jpg" - ], - "access": [ - "yes" - ], - "charge": [ - "0,50 €" - ], - "amenity": [ - "toilets" - ], - "building": [ - "toilets" - ], - "payment:cash": [ - "yes" - ], - "opening_hours": [ - ";" - ], - "payment:cards": [ - "no" - ], - "changing_table": [ - "yes" - ], - "toilets:paper_supplied": [ - "yes" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.0000120277324499962, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 7, - "locale": "de", - "imagery": "osm", - "add-image": 2 - }, - "id": 122773672 - } - }, - { - "id": 122769747, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2264482, - 48.4652879 - ], - [ - 9.2264482, - 48.4652879 - ], - [ - 9.2264482, - 48.4652879 - ], - [ - 9.2264482, - 48.4652879 - ], - [ - 9.2264482, - 48.4652879 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-23T18:03:37Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/gVshw0A.jpg" - ], - "access": [ - "yes" - ], - "amenity": [ - "charging_station" - ], - "parking:fee": [ - "yes" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 3 - }, - "id": 122769747 - } - }, - { - "id": 122767086, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.9322319, - 49.2390306 - ], - [ - 11.9326973, - 49.2390306 - ], - [ - 11.9326973, - 49.2392907 - ], - [ - 11.9322319, - 49.2392907 - ], - [ - 11.9322319, - 49.2390306 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "PhilmacFLy", - "uid": "175489", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-23T16:35:08Z", - "reviewed_features": [], - "tag_changes": { - "seats": [ - "4" - ], - "colour": [ - "brown" - ], - "amenity": [ - "bench" - ], - "backrest": [ - "yes" - ], - "material": [ - "wood" - ], - "direction": [ - "94", - "86", - "180" - ], - "survey:date": [ - "2022-06-23" - ] - }, - "create": 0, - "modify": 9, - "delete": 0, - "area": 1.21050539999141e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 15, - "locale": "en", - "imagery": "osm", - "change_within_100m": 15 - }, - "id": 122767086 - } - }, - { - "id": 122765386, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4428435, - 51.4027986 - ], - [ - 4.4428435, - 51.4027986 - ], - [ - 4.4428435, - 51.4027986 - ], - [ - 4.4428435, - 51.4027986 - ], - [ - 4.4428435, - 51.4027986 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #observation_towers", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-23T15:46:14Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/sPtAR1h.jpg" - ], - "tourism": [ - "viewpoint" - ], - "man_made": [ - "tower" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/observation_towers.html", - "theme": "observation_towers", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 122765386 - } - }, - { - "id": 122763270, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -88.1163653, - 41.8641974 - ], - [ - -88.1163653, - 41.8641974 - ], - [ - -88.1163653, - 41.8641974 - ], - [ - -88.1163653, - 41.8641974 - ], - [ - -88.1163653, - 41.8641974 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "markhiben", - "uid": "16343235", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-23T14:36:40Z", - "reviewed_features": [], - "tag_changes": { - "bottle": [ - "yes" - ], - "amenity": [ - "drinking_water" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water", - "theme": "drinking_water", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 122763270 - } - }, - { - "id": 122763113, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -88.4810439, - 41.7369351 - ], - [ - -88.1506564, - 41.7369351 - ], - [ - -88.1506564, - 41.9428345 - ], - [ - -88.4810439, - 41.9428345 - ], - [ - -88.4810439, - 41.7369351 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "markhiben", - "uid": "16343235", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-23T14:32:26Z", - "reviewed_features": [], - "tag_changes": { - "bottle": [ - "yes" - ], - "amenity": [ - "drinking_water" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.0680265880175001, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water", - "theme": "drinking_water", - "answer": 5, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 122763113 - } - }, - { - "id": 122758853, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7474341, - 51.161204 - ], - [ - 4.7810713, - 51.161204 - ], - [ - 4.7810713, - 51.1652282 - ], - [ - 4.7474341, - 51.1652282 - ], - [ - 4.7474341, - 51.161204 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Stinus_Clasius", - "uid": "1086503", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-23T12:44:25Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "unclassified", - "residential" - ], - "maxspeed": [ - "30", - "50" - ] - }, - "create": 0, - "modify": 22, - "delete": 0, - "area": 0.000135362820240114, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed", - "theme": "maxspeed", - "answer": 22, - "locale": "en", - "imagery": "osm" - }, - "id": 122758853 - } - }, - { - "id": 122758118, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2435626, - 41.4511535 - ], - [ - 2.2438559, - 41.4511535 - ], - [ - 2.2438559, - 41.4515906 - ], - [ - 2.2435626, - 41.4515906 - ], - [ - 2.2435626, - 41.4511535 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9841433913", - "osm_id": 9841433913, - "reasons": [ - 43 - ], - "version": 1, - "primary_tags": { - "natural": "tree_stump" - } - }, - { - "url": "node-8796772131", - "osm_id": 8796772131, - "reasons": [ - 43 - ], - "version": 2, - "primary_tags": { - "natural": "tree_stump" - } - }, - { - "url": "node-9841450220", - "osm_id": 9841450220, - "reasons": [ - 43 - ], - "version": 1, - "primary_tags": { - "natural": "tree_stump" - } - }, - { - "url": "node-8796772118", - "osm_id": 8796772118, - "reasons": [ - 43 - ], - "version": 2, - "primary_tags": { - "natural": "tree_stump" - } - }, - { - "url": "node-8796772122", - "osm_id": 8796772122, - "reasons": [ - 43 - ], - "version": 2, - "primary_tags": { - "natural": "tree_stump" - } - }, - { - "url": "node-8796772117", - "osm_id": 8796772117, - "reasons": [ - 43 - ], - "version": 3, - "primary_tags": { - "natural": "tree_stump" - } - }, - { - "url": "node-9841435672", - "osm_id": 9841435672, - "reasons": [ - 43 - ], - "version": 1, - "primary_tags": { - "natural": "tree_stump" - } - }, - { - "url": "node-9841450219", - "osm_id": 9841450219, - "reasons": [ - 43 - ], - "version": 1, - "primary_tags": { - "natural": "tree_stump" - } - }, - { - "url": "node-8796772116", - "osm_id": 8796772116, - "reasons": [ - 43 - ], - "version": 3, - "primary_tags": { - "natural": "tree_stump" - } - } - ], - "user": "JBadalona", - "uid": "13507795", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-23T12:27:07Z", - "reviewed_features": [], - "tag_changes": { - "source": [ - "survey" - ], - "natural": [ - "tree_stump", - "tree" - ] - }, - "create": 4, - "modify": 7, - "delete": 0, - "area": 1.28201430001675e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "answer": 14, - "create": 4, - "locale": "ca", - "imagery": "HDM_HOT" - }, - "id": 122758118 - } - }, - { - "id": 122754165, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.009974, - 51.1275383 - ], - [ - 5.0112598, - 51.1275383 - ], - [ - 5.0112598, - 51.1283572 - ], - [ - 5.009974, - 51.1283572 - ], - [ - 5.009974, - 51.1275383 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #education", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-23T11:09:11Z", - "reviewed_features": [], - "tag_changes": { - "school": [ - "kindergarten;primary" - ], - "amenity": [ - "school" - ], - "school:gender": [ - "mixed" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.00000105294162000806, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/education.html", - "theme": "education", - "answer": 2, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_within_500m": 2 - }, - "id": 122754165 - } - }, - { - "id": 122751770, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3986186, - 51.0365143 - ], - [ - 3.4053799, - 51.0365143 - ], - [ - 3.4053799, - 51.0395653 - ], - [ - 3.3986186, - 51.0395653 - ], - [ - 3.3986186, - 51.0365143 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-23T10:17:01Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "unclassified" - ], - "maxspeed": [ - "50", - "70" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.0000206287262999948, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "theme": "maxspeed", - "answer": 6, - "locale": "en", - "imagery": "osm", - "change_within_500m": 6 - }, - "id": 122751770 - } - }, - { - "id": 122748106, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2265457, - 48.4652708 - ], - [ - 9.2265643, - 48.4652708 - ], - [ - 9.2265643, - 48.4653109 - ], - [ - 9.2265457, - 48.4653109 - ], - [ - 9.2265457, - 48.4652708 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-23T09:08:25Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/TrOAqUR.jpg" - ], - "access": [ - "yes" - ], - "amenity": [ - "toilets" - ], - "opening_hours": [ - "24/7" - ], - "toilets:position": [ - "seated" - ], - "toilets:paper_supplied": [ - "yes" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 7.45859999948238e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 9, - "locale": "de", - "imagery": "osm", - "add-image": 2, - "change_within_25m": 11 - }, - "id": 122748106 - } - }, - { - "id": 122746332, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.3225766, - 47.6490949 - ], - [ - -122.304651, - 47.6490949 - ], - [ - -122.304651, - 47.6531298 - ], - [ - -122.3225766, - 47.6531298 - ], - [ - -122.3225766, - 47.6490949 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Natfoot", - "uid": "567792", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-23T08:38:46Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "surveillance" - ] - }, - "create": 2, - "modify": 5, - "delete": 0, - "area": 0.0000723280034400034, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 10, - "create": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 122746332 - } - }, - { - "id": 122741992, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.475949, - 51.0416184 - ], - [ - 4.475949, - 51.0416184 - ], - [ - 4.475949, - 51.0416184 - ], - [ - 4.475949, - 51.0416184 - ], - [ - 4.475949, - 51.0416184 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "philippec", - "uid": "76884", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-23T07:07:46Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/d0OsEZh.jpg" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 122741992 - } - }, - { - "id": 122740024, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3264253, - 50.9927864 - ], - [ - 3.3937737, - 50.9927864 - ], - [ - 3.3937737, - 51.041708 - ], - [ - 3.3264253, - 51.041708 - ], - [ - 3.3264253, - 50.9927864 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #education", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-23T06:24:49Z", - "reviewed_features": [], - "tag_changes": { - "email": [ - "debron@molenland.be", - "sji@molenland.be", - "dekiem.ruiselede@3span.be", - "dester@molenland.be" - ], - "phone": [ - "+32 51 42 49 00", - "+32 51 40 03 30", - "+32 51 68 94 31", - "+32 51 40 05 68" - ], - "school": [ - "middle_secondary;upper_secondary;lower_secondary", - "lower_secondary", - "primary;kindergarten", - "lower_secondary;upper_secondary;middle_secondary", - "middle_secondary;upper_secondary" - ], - "amenity": [ - "school" - ], - "website": [ - "https://debrontielt.molenland.be", - "https://sjitielt.molenland.be/", - "https://www.dekiemruiselede.be", - "https://vtitielt.molenland.be" - ], - "school:gender": [ - "mixed" - ], - "school:language": [ - "nl" - ] - }, - "create": 0, - "modify": 28, - "delete": 0, - "area": 0.00329479148544, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/education.html", - "theme": "education", - "answer": 32, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 12, - "change_within_1000m": 6 - }, - "id": 122740024 - } - }, - { - "id": 122738829, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-23T05:55:47Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "de", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 122738829 - } - }, - { - "id": 122738694, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9958824, - 48.4996256 - ], - [ - 8.9958824, - 48.4996256 - ], - [ - 8.9958824, - 48.4996256 - ], - [ - 8.9958824, - 48.4996256 - ], - [ - 8.9958824, - 48.4996256 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-23T05:52:35Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ], - "light:method": [ - "sodium" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 1, - "locale": "de", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 122738694 - } - }, - { - "id": 122738650, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9953834, - 48.4995646 - ], - [ - 8.996301, - 48.4995646 - ], - [ - 8.996301, - 48.4996571 - ], - [ - 8.9953834, - 48.4996571 - ], - [ - 8.9953834, - 48.4995646 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-23T05:51:12Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "species:wikidata": [ - "Q148939" - ] - }, - "create": 2, - "modify": 3, - "delete": 0, - "area": 8.48780000009609e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 5, - "create": 2, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 5 - }, - "id": 122738650 - } - }, - { - "id": 122736890, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-23T04:54:07Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1 - }, - "id": 122736890 - } - }, - { - "id": 122736860, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6972996, - 50.5582658 - ], - [ - 4.6997854, - 50.5582658 - ], - [ - 4.6997854, - 50.5612141 - ], - [ - 4.6972996, - 50.5612141 - ], - [ - 4.6972996, - 50.5582658 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.20.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-23T04:53:10Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ], - "cargo_bike": [ - "yes" - ], - "capacity:cargo_bike": [ - "4" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0.00000732888413999873, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 4 - }, - "id": 122736860 - } - }, - { - "id": 122732642, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.1136883, - 38.5955834 - ], - [ - 0.1161793, - 38.5955834 - ], - [ - 0.1161793, - 38.8468319 - ], - [ - -0.1136883, - 38.8468319 - ], - [ - -0.1136883, - 38.5955834 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #education", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-23T00:05:49Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Col·legi d'Educació Infantil i Primària la Xara", - "CEIP La Xara", - "Col·legi d’Educació Infantil i Primària Mestral", - "Col·legi d’Educació Infantil i Primaria Mestral", - "Col·legi d’Educació Infantil i Primària l'Alfàs", - "CEIP L'Alfàs", - "Institut d’Educació Secudària Sorts de la Mar", - "Institut d’Educació Secudaria Sorts de la Mar", - "Col·legi d’Educació Infantil i Primària el Trinquet", - "CEIP el Trinquet", - "Col·legi d’Educació Infantil i Primària Pare Pere", - "CEIP Pare Pere", - "Institut d’Educació Secudària Historiador Chabás", - "IES Historiador Chabás" - ], - "email": [ - "03004259@edu.gva.es", - "03012943@gva.es", - "cdt_denia@turismecv.es", - "03015932@edu.gva.es", - "ceibombonets@gmail.com", - "03009993@edu.gva.es" - ], - "phone": [ - "+34 966 42 88 15", - "+34 965 78 81 02", - "+34 966 42 96 20", - "+34 966 42 84 50", - "+34 966 42 82 35", - "+34 966 17 42 22", - "+34 966 42 88 65" - ], - "amenity": [ - "school", - "college", - "kindergarten" - ], - "website": [ - "https://portal.edu.gva.es/ceiplaxara/", - "https://www.escuelapeluqueriaimpakto.es/", - "https://portal.edu.gva.es/fpadenia/", - "https://portal.edu.gva.es/iessortsdelamardenia/", - "https://portal.edu.gva.es/montgo/" - ], - "building": [ - "industrial" - ], - "capacity": [ - "74" - ], - "school:for": [ - "adults" - ], - "school:gender": [ - "mixed" - ], - "school:language": [ - "norsk", - "catalan", - "spanish" - ] - }, - "create": 0, - "modify": 35, - "delete": 0, - "area": 0.057753889698599, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/education", - "theme": "education", - "answer": 41, - "locale": "ca", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 32 - }, - "id": 122732642 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-24.json b/Docs/Tools/stats/stats.2022-6-24.json deleted file mode 100644 index c864c07360..0000000000 --- a/Docs/Tools/stats/stats.2022-6-24.json +++ /dev/null @@ -1,2000 +0,0 @@ -{ - "features": [ - { - "id": 122821250, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2228057, - 51.2089484 - ], - [ - 3.2357936, - 51.2089484 - ], - [ - 3.2357936, - 51.2168146 - ], - [ - 3.2228057, - 51.2168146 - ], - [ - 3.2228057, - 51.2089484 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #education", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-24T23:08:45Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Atheneum Brugge", - "Koninklijk Atheneum Brugge" - ], - "school": [ - "kindergarten;primary", - "lower_secondary;middle_secondary", - "lower_secondary" - ], - "amenity": [ - "school" - ], - "capacity": [ - "95" - ], - "school:for": [ - "ADHD;autism;learning_disabilities;special_needs", - "special_needs;learning_disabilities;autism;ADHD" - ], - "school:gender": [ - "mixed" - ], - "school:language": [ - "dutch" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.000102165418980031, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/education.html", - "theme": "education", - "answer": 7, - "locale": "nl", - "imagery": "AGIV", - "change_within_500m": 2, - "change_within_5000m": 5 - }, - "id": 122821250 - } - }, - { - "id": 122820823, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.572633, - 53.0176 - ], - [ - 6.5730084, - 53.0176 - ], - [ - 6.5730084, - 53.0176555 - ], - [ - 6.572633, - 53.0176555 - ], - [ - 6.572633, - 53.0176 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-24T22:40:13Z", - "reviewed_features": [], - "tag_changes": { - "ref": [ - "H516", - "T285", - "H515", - "T284" - ], - "highway": [ - "street_lamp" - ], - "support": [ - "pole" - ], - "light:lit": [ - "dusk-dawn" - ], - "lamp_mount": [ - "bent_mast" - ], - "light:count": [ - "1" - ], - "light:colour": [ - "white" - ], - "light:method": [ - "LED" - ], - "light:direction": [ - "150", - "151" - ] - }, - "create": 0, - "modify": 17, - "delete": 0, - "area": 2.08346999980914e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/street_lighting.html", - "theme": "street_lighting", - "answer": 30, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 30 - }, - "id": 122820823 - } - }, - { - "id": 122814838, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 72.5019182, - 8.7126939 - ], - [ - 91.8950204, - 8.7126939 - ], - [ - 91.8950204, - 28.6451676 - ], - [ - 72.5019182, - 28.6451676 - ], - [ - 72.5019182, - 8.7126939 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 91, - "name": "Motorway/trunk geometry modified" - } - ], - "tags": [], - "features": [ - { - "url": "way-142616340", - "name": "Jawaharlal Nehru Road", - "osm_id": 142616340, - "reasons": [ - 91 - ], - "version": 11, - "primary_tags": { - "highway": "trunk" - } - } - ], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-24T18:56:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 122, - "delete": 0, - "area": 386.552499562912, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 150, - "locale": "en", - "imagery": "osm" - }, - "id": 122814838 - } - }, - { - "id": 122814638, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5846179, - 53.2174089 - ], - [ - 6.5846179, - 53.2174089 - ], - [ - 6.5846179, - 53.2174089 - ], - [ - 6.5846179, - 53.2174089 - ], - [ - 6.5846179, - 53.2174089 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-24T18:50:08Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "playground" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "Actueel_orthoHR_WMTS" - }, - "id": 122814638 - } - }, - { - "id": 122808887, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1196929, - 50.4427759 - ], - [ - 5.1196929, - 50.4427759 - ], - [ - 5.1196929, - 50.4427759 - ], - [ - 5.1196929, - 50.4427759 - ], - [ - 5.1196929, - 50.4427759 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-24T15:38:54Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/kgmrtHD.jpg" - ], - "amenity": [ - "charging_station" - ], - "image:0": [ - "https://i.imgur.com/1vpFfv6.jpg" - ], - "capacity": [ - "1" - ], - "socket:type2": [ - "1" - ], - "opening_hours": [ - "24/7" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 3, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 2, - "change_within_25m": 5 - }, - "id": 122808887 - } - }, - { - "id": 122807311, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.8275258, - 53.6634973 - ], - [ - -1.8275258, - 53.6634973 - ], - [ - -1.8275258, - 53.6634973 - ], - [ - -1.8275258, - 53.6634973 - ], - [ - -1.8275258, - 53.6634973 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Andrew Dunlop", - "uid": "53881", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-24T14:59:22Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "playground" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "create": 1, - "locale": "en", - "imagery": "EsriWorldImagery" - }, - "id": 122807311 - } - }, - { - "id": 122807095, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.8050709, - 53.6515705 - ], - [ - -1.8050709, - 53.6515705 - ], - [ - -1.8050709, - 53.6515705 - ], - [ - -1.8050709, - 53.6515705 - ], - [ - -1.8050709, - 53.6515705 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Andrew Dunlop", - "uid": "53881", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-24T14:54:15Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "bicycle_parking" - ], - "covered": [ - "no" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "en", - "imagery": "cyclosm" - }, - "id": 122807095 - } - }, - { - "id": 122806720, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 72.9733801, - 9.5780844 - ], - [ - 88.3662815, - 9.5780844 - ], - [ - 88.3662815, - 29.6993487 - ], - [ - 72.9733801, - 29.6993487 - ], - [ - 72.9733801, - 9.5780844 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-24T14:44:17Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "hospital" - ], - "leisure": [ - "park" - ], - "name:etymology:wikidata": [ - "Q237879" - ] - }, - "create": 0, - "modify": 90, - "delete": 0, - "area": 309.72463741324, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 126, - "locale": "en", - "imagery": "osm" - }, - "id": 122806720 - } - }, - { - "id": 122806335, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7207049, - 50.8477764 - ], - [ - 2.7258593, - 50.8477764 - ], - [ - 2.7258593, - 50.8548697 - ], - [ - 2.7207049, - 50.8548697 - ], - [ - 2.7207049, - 50.8477764 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "DieterWesttoer", - "uid": "13062237", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-24T14:33:56Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "charging_station" - ], - "leisure": [ - "picnic_table" - ], - "material": [ - "wood" - ] - }, - "create": 2, - "modify": 1, - "delete": 0, - "area": 0.000036561705520008, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "create": 1, - "import": 1, - "locale": "nl", - "imagery": "osm", - "import:node/9844320741": "source: https://osm.org/note/3156534" - }, - "id": 122806335 - } - }, - { - "id": 122806283, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.8036524, - 53.6515181 - ], - [ - -1.8019526, - 53.6515181 - ], - [ - -1.8019526, - 53.6536393 - ], - [ - -1.8036524, - 53.6536393 - ], - [ - -1.8036524, - 53.6515181 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Andrew Dunlop", - "uid": "53881", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #sidewalks", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-24T14:32:49Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential" - ], - "sidewalk:left": [ - "yes" - ], - "sidewalk:right": [ - "yes" - ] - }, - "create": 2, - "modify": 9, - "delete": 0, - "area": 0.00000360561576000849, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sidewalks", - "split": 3, - "theme": "sidewalks", - "answer": 10, - "locale": "en", - "imagery": "osm" - }, - "id": 122806283 - } - }, - { - "id": 122804731, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.708674, - 51.0233465 - ], - [ - 3.7107242, - 51.0233465 - ], - [ - 3.7107242, - 51.0344481 - ], - [ - 3.708674, - 51.0344481 - ], - [ - 3.708674, - 51.0233465 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-24T13:54:52Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/fssWVN6.jpg" - ], - "access": [ - "yes" - ], - "amenity": [ - "bicycle_repair_station" - ], - "service:bicycle:pump:operational_status": [ - "operational" - ] - }, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0.0000227605003199951, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 10, - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 2, - "change_over_5000m": 1, - "change_within_25m": 12 - }, - "id": 122804731 - } - }, - { - "id": 122801158, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.7179955, - 41.217311 - ], - [ - 1.7368586, - 41.217311 - ], - [ - 1.7368586, - 41.2234953 - ], - [ - 1.7179955, - 41.2234953 - ], - [ - 1.7179955, - 41.217311 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "yopaseopor", - "uid": "500572", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-24T12:23:21Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "bus" - ], - "highway": [ - "tertiary", - "residential" - ], - "maxspeed": [ - "50", - "30" - ] - }, - "create": 2, - "modify": 8, - "delete": 0, - "area": 0.000116655069330019, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "split": 3, - "theme": "maxspeed", - "answer": 8, - "locale": "en", - "imagery": "osm", - "relation-fix": 1 - }, - "id": 122801158 - } - }, - { - "id": 122799647, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4430142, - 52.5115736 - ], - [ - 13.4430142, - 52.5115736 - ], - [ - 13.4430142, - 52.5115736 - ], - [ - 13.4430142, - 52.5115736 - ], - [ - 13.4430142, - 52.5115736 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Huglu96", - "uid": "722577", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-24T11:44:09Z", - "reviewed_features": [], - "tag_changes": { - "lgbtq": [ - "gay", - "primary" - ], - "amenity": [ - "bar" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 122799647 - } - }, - { - "id": 122798975, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7134098, - 51.0493596 - ], - [ - 3.7212673, - 51.0493596 - ], - [ - 3.7212673, - 51.0638231 - ], - [ - 3.7134098, - 51.0638231 - ], - [ - 3.7134098, - 51.0493596 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Yann Vandamme", - "uid": "1678678", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-24T11:28:01Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "surveillance" - ] - }, - "create": 15, - "modify": 17, - "delete": 0, - "area": 0.000113646951249985, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance", - "theme": "surveillance", - "answer": 47, - "create": 15, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 122798975 - } - }, - { - "id": 122796496, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 76.700722, - 8.6868789 - ], - [ - 80.2511275, - 8.6868789 - ], - [ - 80.2511275, - 13.1438994 - ], - [ - 76.700722, - 13.1438994 - ], - [ - 76.700722, - 8.6868789 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-24T10:29:02Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "road" - ], - "amenity": [ - "theatre", - "library", - "college", - "hospital" - ], - "highway": [ - "residential", - "living_street", - "secondary", - "primary", - "unclassified", - "tertiary", - "trunk", - "primary_link" - ], - "landuse": [ - "grass" - ], - "leisure": [ - "park" - ], - "tourism": [ - "zoo" - ], - "building": [ - "yes" - ], - "name:etymology:wikidata": [ - "Q522048", - "Q378404", - "Q2153", - "Q1001", - "Q138765", - "Q231690", - "Q9513", - "Q1047", - "Q737280", - "Q4593", - "Q2744225", - "Q1149", - "Q216239", - "Q2353373", - "Q237879" - ] - }, - "create": 0, - "modify": 71, - "delete": 0, - "area": 15.8242300968127, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 93, - "locale": "en", - "imagery": "osm" - }, - "id": 122796496 - } - }, - { - "id": 122794617, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 120.8147151, - 14.8594173 - ], - [ - 120.8147151, - 14.8594173 - ], - [ - 120.8147151, - 14.8594173 - ], - [ - 120.8147151, - 14.8594173 - ], - [ - 120.8147151, - 14.8594173 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "12mncereal", - "uid": "16359643", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-24T09:49:41Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "BulSu Bahaghari", - "Bulsu Bahaghari" - ], - "office": [ - "association" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 122794617 - } - }, - { - "id": 122794320, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3662996, - 50.9297475 - ], - [ - 5.3667301, - 50.9297475 - ], - [ - 5.3667301, - 50.9300197 - ], - [ - 5.3662996, - 50.9300197 - ], - [ - 5.3662996, - 50.9297475 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Frans_Napaters", - "uid": "3574538", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-24T09:43:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 8, - "delete": 0, - "area": 1.1718210000214e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 15, - "create": 2, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 2, - "change_within_25m": 6, - "change_within_50m": 5, - "change_within_500m": 1 - }, - "id": 122794320 - } - }, - { - "id": 122793310, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 105.8319225, - 21.032908 - ], - [ - 105.8319412, - 21.032908 - ], - [ - 105.8319412, - 21.0329243 - ], - [ - 105.8319225, - 21.0329243 - ], - [ - 105.8319225, - 21.032908 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mikko_tamura", - "uid": "2258022", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-24T09:22:21Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "cafe" - ], - "opening_hours": [ - "Mo-Su 09:00-22:00;", - "Mo-Su 09:00-22:00" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 3.04810000012612e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "move": 1, - "theme": "https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", - "answer": 2, - "locale": "en", - "imagery": "osm", - "move:node/9805222041": "improve_accuracy" - }, - "id": 122793310 - } - }, - { - "id": 122792395, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5830412, - 53.2169605 - ], - [ - 6.5840552, - 53.2169605 - ], - [ - 6.5840552, - 53.2176068 - ], - [ - 6.5830412, - 53.2176068 - ], - [ - 6.5830412, - 53.2169605 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-24T09:05:33Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 7, - "modify": 6, - "delete": 0, - "area": 6.55348199999409e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 14, - "create": 7, - "locale": "en", - "imagery": "Actueel_orthoHR_WMTS", - "add-image": 1, - "change_over_5000m": 7, - "change_within_25m": 15 - }, - "id": 122792395 - } - }, - { - "id": 122792275, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5838801, - 53.2169562 - ], - [ - 6.5838801, - 53.2169562 - ], - [ - 6.5838801, - 53.2169562 - ], - [ - 6.5838801, - 53.2169562 - ], - [ - 6.5838801, - 53.2169562 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-24T09:02:48Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "artwork" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "Actueel_orthoHR_WMTS", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 122792275 - } - }, - { - "id": 122786051, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.331234, - 50.8769235 - ], - [ - 5.331234, - 50.8769235 - ], - [ - 5.331234, - 50.8769235 - ], - [ - 5.331234, - 50.8769235 - ], - [ - 5.331234, - 50.8769235 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "oli4maes", - "uid": "5482614", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-24T06:38:41Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "import": 1, - "locale": "nl", - "imagery": "osm", - "import:node/9843295448": "source: https://osm.org/note/3044726" - }, - "id": 122786051 - } - }, - { - "id": 122782692, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.0539498, - -36.8271536 - ], - [ - -73.0539498, - -36.8271536 - ], - [ - -73.0539498, - -36.8271536 - ], - [ - -73.0539498, - -36.8271536 - ], - [ - -73.0539498, - -36.8271536 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-24T04:48:19Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/ZfWZThw.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "es", - "imagery": "osm", - "add-image": 2 - }, - "id": 122782692 - } - }, - { - "id": 122781993, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0363956, - 14.6522853 - ], - [ - 121.0363956, - 14.6522853 - ], - [ - 121.0363956, - 14.6522853 - ], - [ - 121.0363956, - 14.6522853 - ], - [ - 121.0363956, - 14.6522853 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mikko_tamura", - "uid": "2258022", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-24T04:17:42Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "leaf_type": [ - "broadleaved" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 122781993 - } - }, - { - "id": 122781189, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.386939, - 52.6535987 - ], - [ - 13.386939, - 52.6535987 - ], - [ - 13.386939, - 52.6535987 - ], - [ - 13.386939, - 52.6535987 - ], - [ - 13.386939, - 52.6535987 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "GamingFAIL", - "uid": "13918186", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-24T03:33:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "www.waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 122781189 - } - }, - { - "id": 122779083, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5544402, - 51.2353461 - ], - [ - 4.5564969, - 51.2353461 - ], - [ - 4.5564969, - 51.2366892 - ], - [ - 4.5544402, - 51.2366892 - ], - [ - 4.5544402, - 51.2353461 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "pi11", - "uid": "12066190", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #education", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-24T00:28:26Z", - "reviewed_features": [], - "tag_changes": { - "email": [ - "info@sint-ludgardis.be" - ], - "phone": [ - "+32 3 353 71 19" - ], - "school": [ - "kindergarten;primary" - ], - "amenity": [ - "school" - ], - "capacity": [ - "420" - ], - "school:gender": [ - "mixed" - ], - "school:language": [ - "dutch" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.00000276235376999913, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/education", - "theme": "education", - "answer": 8, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 122779083 - } - }, - { - "id": 122778870, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -49.3336252, - -25.4349445 - ], - [ - -49.3336252, - -25.4349445 - ], - [ - -49.3336252, - -25.4349445 - ], - [ - -49.3336252, - -25.4349445 - ], - [ - -49.3336252, - -25.4349445 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Renato_M", - "uid": "324758", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-24T00:04:59Z", - "reviewed_features": [], - "tag_changes": { - "noname": [ - "yes" - ], - "natural": [ - "tree" - ], - "heritage": [ - "no" - ], - "denotation": [ - "natural_monument" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 122778870 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-25.json b/Docs/Tools/stats/stats.2022-6-25.json deleted file mode 100644 index ed64255b1e..0000000000 --- a/Docs/Tools/stats/stats.2022-6-25.json +++ /dev/null @@ -1,2184 +0,0 @@ -{ - "features": [ - { - "id": 122852090, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7164735, - 51.0397186 - ], - [ - 3.7164735, - 51.0397186 - ], - [ - 3.7164735, - 51.0397186 - ], - [ - 3.7164735, - 51.0397186 - ], - [ - 3.7164735, - 51.0397186 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-25T22:54:16Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "supermarket" - ], - "email": [ - "info@dunhuang.be" - ], - "website": [ - "https://dunhuang.be/", - "https://www.facebook.com/asian-food-store-dun-huang-285950958098604/" - ], - "payment:cash": [ - "yes" - ], - "opening_hours": [ - "Mo-Sa 09:30-18:30;" - ], - "payment:cards": [ - "yes" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/shops.html", - "theme": "shops", - "answer": 4, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 4 - }, - "id": 122852090 - } - }, - { - "id": 122850312, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.6106598, - 52.2884206 - ], - [ - -1.6080202, - 52.2884206 - ], - [ - -1.6080202, - 52.2898221 - ], - [ - -1.6106598, - 52.2898221 - ], - [ - -1.6106598, - 52.2884206 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RobJN", - "uid": "411244", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #uk_addresses", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-25T21:10:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 5, - "modify": 4, - "delete": 0, - "area": 0.00000369939940000041, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/uk_addresses.html", - "theme": "uk_addresses", - "answer": 9, - "import": 5, - "locale": "en", - "imagery": "osm" - }, - "id": 122850312 - } - }, - { - "id": 122850293, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.6089311, - 52.2887118 - ], - [ - -1.6085081, - 52.2887118 - ], - [ - -1.6085081, - 52.2888829 - ], - [ - -1.6089311, - 52.2888829 - ], - [ - -1.6089311, - 52.2887118 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RobJN", - "uid": "411244", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #uk_addresses", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-25T21:09:17Z", - "reviewed_features": [], - "tag_changes": { - "addr:street": [ - "Birmingham Road" - ], - "addr:housenumber": [ - "143" - ] - }, - "create": 3, - "modify": 4, - "delete": 0, - "area": 7.23752999981794e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/uk_addresses.html", - "theme": "uk_addresses", - "answer": 8, - "import": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 122850293 - } - }, - { - "id": 122848809, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.4548337, - 49.1354092 - ], - [ - 2.4732079, - 49.1354092 - ], - [ - 2.4732079, - 49.146275 - ], - [ - 2.4548337, - 49.146275 - ], - [ - 2.4548337, - 49.1354092 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LeTopographeFou", - "uid": "3178375", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-25T20:06:00Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "secondary", - "residential", - "track", - "service", - "footway" - ], - "name:etymology:wikidata": [ - "Q752093", - "Q145382", - "Q273239", - "Q60444375", - "Q192190", - "Q12004", - "Q58697", - "Q129324", - "Q168473", - "Q1400172", - "Q349", - "Q18498", - "Q131113", - "Q11748378", - "Q25239", - "Q81666", - "Q29838690", - "Q2957706" - ] - }, - "create": 0, - "modify": 42, - "delete": 0, - "area": 0.000199650382360086, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 51, - "locale": "fr", - "imagery": "osm" - }, - "id": 122848809 - } - }, - { - "id": 122846671, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.66316, - 51.0739649 - ], - [ - 2.66316, - 51.0739649 - ], - [ - 2.66316, - 51.0739649 - ], - [ - 2.66316, - 51.0739649 - ], - [ - 2.66316, - 51.0739649 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #education", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-25T18:39:21Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "school" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/education.html", - "theme": "education", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_1000m": 1 - }, - "id": 122846671 - } - }, - { - "id": 122846614, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.6524124, - 51.0794013 - ], - [ - 2.6524124, - 51.0794013 - ], - [ - 2.6524124, - 51.0794013 - ], - [ - 2.6524124, - 51.0794013 - ], - [ - 2.6524124, - 51.0794013 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-25T18:37:24Z", - "reviewed_features": [], - "tag_changes": { - "email": [ - "info@b2bike.be" - ], - "phone": [ - "+32 3 689 49 77" - ], - "valves": [ - "sclaverand;dunlop;schrader" - ], - "amenity": [ - "bicycle_repair_station" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/index.html", - "theme": "cyclofix", - "answer": 3, - "locale": "en", - "change_within_25m": 3 - }, - "id": 122846614 - } - }, - { - "id": 122845718, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.6589328, - 51.0809111 - ], - [ - 2.6589328, - 51.0809111 - ], - [ - 2.6589328, - 51.0809111 - ], - [ - 2.6589328, - 51.0809111 - ], - [ - 2.6589328, - 51.0809111 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-25T18:02:21Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "pitch" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/sport_pitches.html", - "theme": "sport_pitches", - "answer": 4, - "create": 1, - "locale": "en", - "imagery": "AGIV", - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 122845718 - } - }, - { - "id": 122844691, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.6524124, - 51.0793617 - ], - [ - 2.6830593, - 51.0793617 - ], - [ - 2.6830593, - 51.1273742 - ], - [ - 2.6524124, - 51.1273742 - ], - [ - 2.6524124, - 51.0793617 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-25T17:27:48Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/3bT0Lxu.jpg" - ], - "access": [ - "yes" - ], - "manual": [ - "yes" - ], - "amenity": [ - "bicycle_repair_station", - "bicycle_rental" - ], - "image:0": [ - "https://i.imgur.com/Om5El2w.jpg" - ], - "image:1": [ - "https://i.imgur.com/JFGc1rn.jpg" - ], - "leisure": [ - "playground" - ], - "manometer": [ - "yes" - ], - "opening_hours": [ - "24/7" - ], - "service:bicycle:pump:operational_status": [ - "operational" - ] - }, - "create": 2, - "modify": 10, - "delete": 0, - "area": 0.00147143428624997, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 9, - "create": 2, - "locale": "en", - "imagery": "osm", - "add-image": 6, - "change_over_5000m": 2, - "change_within_25m": 15 - }, - "id": 122844691 - } - }, - { - "id": 122843300, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.6085081, - 52.2882876 - ], - [ - -1.6073219, - 52.2882876 - ], - [ - -1.6073219, - 52.2887118 - ], - [ - -1.6085081, - 52.2887118 - ], - [ - -1.6085081, - 52.2882876 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RobJN", - "uid": "411244", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #uk_addresses", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-25T16:39:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 7, - "modify": 8, - "delete": 0, - "area": 5.03186040005657e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/uk_addresses.html", - "theme": "uk_addresses", - "answer": 12, - "import": 7, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 7, - "change_within_25m": 10, - "change_within_50m": 2 - }, - "id": 122843300 - } - }, - { - "id": 122843152, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 70.0427353, - 13.0200998 - ], - [ - 88.3673716, - 13.0200998 - ], - [ - 88.3673716, - 29.9601784 - ], - [ - 70.0427353, - 29.9601784 - ], - [ - 70.0427353, - 13.0200998 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-25T16:34:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 90, - "delete": 0, - "area": 310.420779238413, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 143, - "locale": "en", - "imagery": "osm" - }, - "id": 122843152 - } - }, - { - "id": 122842190, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7818369, - 51.0174231 - ], - [ - 4.7819817, - 51.0174231 - ], - [ - 4.7819817, - 51.0176644 - ], - [ - 4.7818369, - 51.0176644 - ], - [ - 4.7818369, - 51.0174231 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dominique", - "uid": "125577", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-25T16:01:53Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ], - "leisure": [ - "playground" - ] - }, - "create": 2, - "modify": 1, - "delete": 0, - "area": 3.49402399998956e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 3, - "create": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 122842190 - } - }, - { - "id": 122842168, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4042603, - 52.5324627 - ], - [ - 13.4129034, - 52.5324627 - ], - [ - 13.4129034, - 52.5400811 - ], - [ - 13.4042603, - 52.5400811 - ], - [ - 13.4042603, - 52.5324627 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "kjon", - "uid": "44217", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-25T16:01:06Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ], - "tourism": [ - "information" - ], - "historic": [ - "yes" - ], - "mapillary": [ - "2884126671906417" - ], - "wikimedia_commons": [ - "File:Gedenkstätte Mauerfall 1989 Schwedter Straße Berlin 05.jpg" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000658465930399758, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/nature.html", - "theme": "nature", - "locale": "de", - "imagery": "osm", - "link-image": 2 - }, - "id": 122842168 - } - }, - { - "id": 122841333, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.6829574, - 51.1275467 - ], - [ - 2.6829574, - 51.1275467 - ], - [ - 2.6829574, - 51.1275467 - ], - [ - 2.6829574, - 51.1275467 - ], - [ - 2.6829574, - 51.1275467 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-25T15:32:35Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "playground" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 4, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 5 - }, - "id": 122841333 - } - }, - { - "id": 122841247, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3103573, - 50.8019612 - ], - [ - 4.3448063, - 50.8019612 - ], - [ - 4.3448063, - 50.8241078 - ], - [ - 4.3103573, - 50.8241078 - ], - [ - 4.3103573, - 50.8019612 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Archermonteyne", - "uid": "16369307", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-25T15:29:33Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "manual": [ - "yes" - ], - "amenity": [ - "bicycle_repair_station" - ], - "manometer": [ - "yes" - ], - "opening_hours": [ - "24/7" - ], - "service:bicycle:stand": [ - "yes" - ], - "service:bicycle:chain_tool": [ - "no" - ], - "service:bicycle:pump:operational_status": [ - "broken", - "operational" - ] - }, - "create": 0, - "modify": 8, - "delete": 0, - "area": 0.000762928223399983, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 14, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 122841247 - } - }, - { - "id": 122839087, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.6118158, - 51.092757 - ], - [ - 2.6118158, - 51.092757 - ], - [ - 2.6118158, - 51.092757 - ], - [ - 2.6118158, - 51.092757 - ], - [ - 2.6118158, - 51.092757 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-25T14:22:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 122839087 - } - }, - { - "id": 122837723, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.6109969, - 51.0924297 - ], - [ - 2.6119903, - 51.0924297 - ], - [ - 2.6119903, - 51.0932462 - ], - [ - 2.6109969, - 51.0932462 - ], - [ - 2.6109969, - 51.0924297 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-25T13:39:50Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/HjkJnJo.jpg" - ], - "access": [ - "permit" - ], - "leisure": [ - "sports_centre" - ], - "building": [ - "yes" - ], - "climbing:speed": [ - "no" - ], - "climbing:sport": [ - "no" - ], - "climbing:length": [ - "12" - ], - "climbing:boulder": [ - "limited" - ], - "climbing:grade:french:max": [ - "8" - ], - "climbing:grade:french:min": [ - "3" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 8.11111100006201e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/climbing.html", - "theme": "climbing", - "answer": 7, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_within_500m": 8 - }, - "id": 122837723 - } - }, - { - "id": 122836314, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "PlayzinhoAgro", - "uid": "10460642", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-25T12:48:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 122836314 - } - }, - { - "id": 122835034, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.6719341, - 50.9434783 - ], - [ - 2.6719341, - 50.9434783 - ], - [ - 2.6719341, - 50.9434783 - ], - [ - 2.6719341, - 50.9434783 - ], - [ - 2.6719341, - 50.9434783 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Ambigirl", - "uid": "15314372", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-25T12:05:33Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 122835034 - } - }, - { - "id": 122835000, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.6524124, - 51.0794013 - ], - [ - 2.6524124, - 51.0794013 - ], - [ - 2.6524124, - 51.0794013 - ], - [ - 2.6524124, - 51.0794013 - ], - [ - 2.6524124, - 51.0794013 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-25T12:04:24Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_repair_station" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 122835000 - } - }, - { - "id": 122834302, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 72.5820123, - 8.8821367 - ], - [ - 92.7362367, - 8.8821367 - ], - [ - 92.7362367, - 32.6724175 - ], - [ - 72.5820123, - 32.6724175 - ], - [ - 72.5820123, - 8.8821367 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 489, - "name": "Mapbox: Spam text" - } - ], - "tags": [], - "features": [ - { - "url": "way-816782228", - "note": "Spam text reported in [\"name\",\"name:etymology:wikidata\"] tags in the feature", - "osm_id": 816782228, - "reasons": [ - 489 - ], - "version": 2 - } - ], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-25T11:40:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 167, - "delete": 0, - "area": 479.474657782212, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 189, - "locale": "en", - "imagery": "osm" - }, - "id": 122834302 - } - }, - { - "id": 122833536, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 43.8560741, - 56.2333536 - ], - [ - 43.8636848, - 56.2333536 - ], - [ - 43.8636848, - 56.2356865 - ], - [ - 43.8560741, - 56.2356865 - ], - [ - 43.8560741, - 56.2333536 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "alexashh", - "uid": "9054103", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-25T11:11:37Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/Jw2atp1.jpg" - ], - "access": [ - "yes" - ], - "amenity": [ - "bicycle_parking" - ], - "capacity": [ - "8" - ], - "bicycle_parking": [ - "rack" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000177550020299939, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 7, - "locale": "ru", - "imagery": "CartoDB.Voyager", - "add-image": 2 - }, - "id": 122833536 - } - }, - { - "id": 122833082, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 18.7510826, - 53.4802995 - ], - [ - 18.7534001, - 53.4802995 - ], - [ - 18.7534001, - 53.4840398 - ], - [ - 18.7510826, - 53.4840398 - ], - [ - 18.7510826, - 53.4802995 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "macaddr", - "uid": "13378425", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-25T10:52:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.00000866814524999359, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 5, - "locale": "en", - "imagery": "osm" - }, - "id": 122833082 - } - }, - { - "id": 122833024, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 18.7487037, - 53.4944466 - ], - [ - 18.7487037, - 53.4944466 - ], - [ - 18.7487037, - 53.4944466 - ], - [ - 18.7487037, - 53.4944466 - ], - [ - 18.7487037, - 53.4944466 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-7177809157", - "osm_id": 7177809157, - "reasons": [ - 43 - ], - "version": 8, - "primary_tags": { - "amenity": "binoculars" - } - } - ], - "user": "macaddr", - "uid": "13378425", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #binoculars", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-25T10:49:37Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "binoculars" - ], - "direction": [ - "225" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/binoculars.html", - "theme": "binoculars", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 122833024 - } - }, - { - "id": 122829516, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9598022, - 51.100282 - ], - [ - 4.9598022, - 51.100282 - ], - [ - 4.9598022, - 51.100282 - ], - [ - 4.9598022, - 51.100282 - ], - [ - 4.9598022, - 51.100282 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-25T08:48:14Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/8o0dCIS.jpg" - ], - "leisure": [ - "picnic_table" - ], - "material": [ - "plastic" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 122829516 - } - }, - { - "id": 122827545, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.9818475, - 52.2503103 - ], - [ - 7.0132913, - 52.2503103 - ], - [ - 7.0132913, - 52.27342 - ], - [ - 6.9818475, - 52.27342 - ], - [ - 6.9818475, - 52.2503103 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "GeoHigh125", - "uid": "1240771", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-25T07:36:19Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential", - "unclassified" - ], - "maxspeed": [ - "30", - "50", - "60" - ] - }, - "create": 0, - "modify": 21, - "delete": 0, - "area": 0.00072665678485997, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "theme": "maxspeed", - "answer": 21, - "locale": "en", - "imagery": "osm" - }, - "id": 122827545 - } - }, - { - "id": 122826903, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 70.0338332, - 9.9387541 - ], - [ - 94.0940192, - 9.9387541 - ], - [ - 94.0940192, - 31.108065 - ], - [ - 70.0338332, - 31.108065 - ], - [ - 70.0338332, - 9.9387541 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-25T07:08:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 64, - "delete": 0, - "area": 509.337557745827, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 65, - "locale": "en", - "imagery": "osm" - }, - "id": 122826903 - } - }, - { - "id": 122826382, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8609847, - 51.1438383 - ], - [ - 4.8683354, - 51.1438383 - ], - [ - 4.8683354, - 51.1484033 - ], - [ - 4.8609847, - 51.1484033 - ], - [ - 4.8609847, - 51.1438383 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-25T06:40:47Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "bus", - "hiking" - ], - "building": [ - "house", - "yes", - "garages", - "roof" - ], - "source:geometry:ref": [ - "Gbg/4045203", - "Gbg/4045206", - "Gbg/4047766", - "Gbg/5860869", - "Gbg/5860879", - "Gbg/4045285", - "Gbg/4045266", - "Gbg/4045267", - "Gbg/7020189", - "Gbg/5861336", - "Gbg/4045204", - "Gbg/4045205", - "Gbg/4050425", - "Gbg/4045281" - ], - "source:geometry:date": [ - "2013-01-16", - "2015-11-24", - "2013-02-20", - "2017-03-01", - "2021-10-25" - ] - }, - "create": 367, - "modify": 84, - "delete": 0, - "area": 0.0000335559454999959, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 73, - "theme": "grb", - "import": 63, - "locale": "nl", - "imagery": "AGIV", - "conflation": 26 - }, - "id": 122826382 - } - }, - { - "id": 122824169, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 77.6949651, - 12.9393592 - ], - [ - 77.6954749, - 12.9393592 - ], - [ - 77.6954749, - 12.9394618 - ], - [ - 77.6949651, - 12.9394618 - ], - [ - 77.6949651, - 12.9393592 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "uknown-gryphus", - "uid": "2425805", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-25T03:59:15Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "traffic_signals" - ], - "button_operated": [ - "no" - ], - "red_turn:right:bicycle": [ - "no" - ], - "red_turn:straight:bicycle": [ - "no" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 5.23054799988487e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 6, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 122824169 - } - }, - { - "id": 122822795, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.837143, - 40.7102097 - ], - [ - -73.836345, - 40.7102097 - ], - [ - -73.836345, - 40.7105789 - ], - [ - -73.837143, - 40.7105789 - ], - [ - -73.837143, - 40.7102097 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paulbrunner", - "uid": "15541433", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-25T01:31:16Z", - "reviewed_features": [], - "tag_changes": { - "barrier": [ - "fence" - ], - "leisure": [ - "dog_park" - ], - "small_dog": [ - "separate" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 2.94621600002383e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 122822795 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-26.json b/Docs/Tools/stats/stats.2022-6-26.json deleted file mode 100644 index 79ddd8cc6b..0000000000 --- a/Docs/Tools/stats/stats.2022-6-26.json +++ /dev/null @@ -1,1698 +0,0 @@ -{ - "features": [ - { - "id": 122881974, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0648796, - 50.9863293 - ], - [ - 5.0652078, - 50.9863293 - ], - [ - 5.0652078, - 50.9866009 - ], - [ - 5.0648796, - 50.9866009 - ], - [ - 5.0648796, - 50.9863293 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-26T21:26:00Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "information" - ], - "building": [ - "public" - ], - "source:geometry:ref": [ - "Gbg/2140604" - ], - "source:geometry:date": [ - "2010-04-19" - ] - }, - "create": 9, - "modify": 7, - "delete": 0, - "area": 8.91391199991032e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 6, - "theme": "grb", - "locale": "nl", - "imagery": "AGIV", - "conflation": 2 - }, - "id": 122881974 - } - }, - { - "id": 122881908, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0656526, - 50.9881896 - ], - [ - 5.0656526, - 50.9881896 - ], - [ - 5.0656526, - 50.9881896 - ], - [ - 5.0656526, - 50.9881896 - ], - [ - 5.0656526, - 50.9881896 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-26T21:21:37Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 122881908 - } - }, - { - "id": 122879886, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2269764, - 51.1929774 - ], - [ - 3.2269764, - 51.1929774 - ], - [ - 3.2269764, - 51.1929774 - ], - [ - 3.2269764, - 51.1929774 - ], - [ - 3.2269764, - 51.1929774 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-26T19:53:53Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_repair_station" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", - "theme": "cyclofix", - "answer": 6, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_25m": 6 - }, - "id": 122879886 - } - }, - { - "id": 122879807, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2289143, - 51.192964 - ], - [ - 3.2289143, - 51.192964 - ], - [ - 3.2289143, - 51.192964 - ], - [ - 3.2289143, - 51.192964 - ], - [ - 3.2289143, - 51.192964 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-26T19:50:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", - "theme": "aed", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 122879807 - } - }, - { - "id": 122879158, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -81.556493, - 41.1293037 - ], - [ - -81.5526804, - 41.1293037 - ], - [ - -81.5526804, - 41.1300218 - ], - [ - -81.556493, - 41.1300218 - ], - [ - -81.556493, - 41.1293037 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "alzyee", - "uid": "1219882", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-26T19:27:57Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "access": [ - "yes" - ], - "amenity": [ - "toilets" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000273782806000349, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 122879158 - } - }, - { - "id": 122877193, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2355769, - 51.1856173 - ], - [ - 3.2355769, - 51.1856173 - ], - [ - 3.2355769, - 51.1856173 - ], - [ - 3.2355769, - 51.1856173 - ], - [ - 3.2355769, - 51.1856173 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-26T18:16:50Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "public_bookcase" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/bookcases.html", - "theme": "bookcases", - "answer": 6, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 7 - }, - "id": 122877193 - } - }, - { - "id": 122870580, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 43.8411583, - 56.2366261 - ], - [ - 43.8411583, - 56.2366261 - ], - [ - 43.8411583, - 56.2366261 - ], - [ - 43.8411583, - 56.2366261 - ], - [ - 43.8411583, - 56.2366261 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "alexashh", - "uid": "9054103", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-26T14:55:13Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 4, - "create": 1, - "locale": "ru", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 122870580 - } - }, - { - "id": 122870355, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.9994115, - 52.268054 - ], - [ - 7.0014721, - 52.268054 - ], - [ - 7.0014721, - 52.2724909 - ], - [ - 6.9994115, - 52.2724909 - ], - [ - 6.9994115, - 52.268054 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "GeoHigh125", - "uid": "1240771", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-26T14:48:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 0.00000914267614000394, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 1, - "create": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 122870355 - } - }, - { - "id": 122870318, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.0713319, - 48.8378932 - ], - [ - 2.086424, - 48.8378932 - ], - [ - 2.086424, - 48.8428033 - ], - [ - 2.0713319, - 48.8428033 - ], - [ - 2.0713319, - 48.8378932 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "--bria--", - "uid": "16377634", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-26T14:47:16Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "library" - ], - "building": [ - "yes" - ], - "man_made": [ - "surveillance" - ], - "operator": [ - "mairie de bailly" - ], - "camera:type": [ - "fixed" - ], - "camera:mount": [ - "wall" - ], - "surveillance": [ - "public" - ], - "camera:direction": [ - "100" - ], - "surveillance:type": [ - "camera" - ], - "surveillance:zone": [ - "traffic" - ] - }, - "create": 6, - "modify": 14, - "delete": 0, - "area": 0.0000741037202099465, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance", - "theme": "surveillance", - "answer": 37, - "create": 9, - "locale": "fr", - "imagery": "osm" - }, - "id": 122870318 - } - }, - { - "id": 122868917, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.9810692, - 40.7299222 - ], - [ - -73.9810692, - 40.7299222 - ], - [ - -73.9810692, - 40.7299222 - ], - [ - -73.9810692, - 40.7299222 - ], - [ - -73.9810692, - 40.7299222 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "volt4ire", - "uid": "299452", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-26T14:05:54Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bar" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 4, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_1000m": 4 - }, - "id": 122868917 - } - }, - { - "id": 122868281, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.5766567, - 51.0622524 - ], - [ - 2.5766567, - 51.0622524 - ], - [ - 2.5766567, - 51.0622524 - ], - [ - 2.5766567, - 51.0622524 - ], - [ - 2.5766567, - 51.0622524 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Ambigirl", - "uid": "15314372", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-26T13:48:11Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 122868281 - } - }, - { - "id": 122867372, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.950655, - 51.1996368 - ], - [ - 4.9507675, - 51.1996368 - ], - [ - 4.9507675, - 51.1997267 - ], - [ - 4.950655, - 51.1997267 - ], - [ - 4.950655, - 51.1996368 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-26T13:18:51Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 1.01137499999013e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 4, - "create": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 2, - "change_within_25m": 6, - "move:node/9848052021": "improve_accuracy" - }, - "id": 122867372 - } - }, - { - "id": 122863186, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.9924083, - 52.2274236 - ], - [ - 7.04102, - 52.2274236 - ], - [ - 7.04102, - 52.2434473 - ], - [ - 6.9924083, - 52.2434473 - ], - [ - 6.9924083, - 52.2274236 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "GeoHigh125", - "uid": "1240771", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-26T10:48:39Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential", - "unclassified" - ], - "maxspeed": [ - "30", - "60" - ] - }, - "create": 0, - "modify": 11, - "delete": 0, - "area": 0.000778939297289899, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "theme": "maxspeed", - "answer": 11, - "locale": "en", - "imagery": "osm" - }, - "id": 122863186 - } - }, - { - "id": 122861803, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3936873, - 52.5202376 - ], - [ - 13.4274142, - 52.5202376 - ], - [ - 13.4274142, - 52.5519224 - ], - [ - 13.3936873, - 52.5519224 - ], - [ - 13.3936873, - 52.5202376 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "kjon", - "uid": "44217", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-26T09:58:55Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "http://commons.wikimedia.org/wiki/File:Museumsinsel_Berlin_Reiterstandbild_Friedrich_Wilhelm_IV.jpg" - ], - "flickr": [ - "https://www.flickr.com/photos/22083482@N03/51969879348", - "https://www.flickr.com/photos/37174512@N03/48985511632" - ], - "tourism": [ - "artwork" - ], - "historic": [ - "memorial" - ], - "wikidata": [ - "Q28007035", - "Q24971191", - "Q109920244", - "Q95571931" - ], - "artist_name": [ - "Bert Neumann" - ], - "wikimedia_commons": [ - "File:Skulptur Arnimplatz (Prenz) Bettina Achim von Arnim&Michael Klein&1997.jpg", - "File:Friedrich Wilhelm IV - geo.hlipp.de - 38236.jpg", - "File:Skulptur Am Kupfergraben (Mitte) Hektor&Markus Lüpertz&2014.jpg", - "File:Mitte Pappelplatz Geldzählerbrunnen.jpg", - "File:Statue Prenzlauer Allee 80 (Prenz) Sportler&Margret Middell&1965.jpg", - "File:Skulptur Fröbelplatz (Prenz) Mädchen mit Spielelementen&Michael Klein&1982.jpg" - ] - }, - "create": 0, - "modify": 13, - "delete": 0, - "area": 0.00106863008112001, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 6, - "locale": "de", - "imagery": "CartoDB.Voyager", - "link-image": 9 - }, - "id": 122861803 - } - }, - { - "id": 122860428, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 70.4597654, - 8.4308168 - ], - [ - 94.2117479, - 8.4308168 - ], - [ - 94.2117479, - 32.3684658 - ], - [ - 70.4597654, - 32.3684658 - ], - [ - 70.4597654, - 8.4308168 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - }, - { - "id": 91, - "name": "Motorway/trunk geometry modified" - }, - { - "id": 489, - "name": "Mapbox: Spam text" - } - ], - "tags": [], - "features": [ - { - "url": "way-657413478", - "name": "M G road", - "osm_id": 657413478, - "reasons": [ - 91 - ], - "version": 4, - "primary_tags": { - "highway": "trunk" - } - }, - { - "url": "way-28701490", - "name": "Mahatma Gandhi Road", - "osm_id": 28701490, - "reasons": [ - 91 - ], - "version": 13, - "primary_tags": { - "highway": "trunk" - } - }, - { - "url": "way-388204150", - "name": "Mahatma Gandhi Road", - "osm_id": 388204150, - "reasons": [ - 91 - ], - "version": 7, - "primary_tags": { - "highway": "trunk" - } - }, - { - "url": "way-115776397", - "name": "Mahatma Gandhi Road", - "osm_id": 115776397, - "reasons": [ - 91 - ], - "version": 24, - "primary_tags": { - "highway": "trunk" - } - }, - { - "url": "way-849636689", - "note": "Spam text reported in [\"name\",\"name:etymology:wikidata\"] tags in the feature", - "osm_id": 849636689, - "reasons": [ - 489 - ], - "version": 2 - }, - { - "url": "way-305726143", - "name": "Mahatma Gandhi Road", - "osm_id": 305726143, - "reasons": [ - 91 - ], - "version": 15, - "primary_tags": { - "highway": "trunk" - } - }, - { - "url": "way-388204148", - "name": "Mahatma Gandhi Road", - "osm_id": 388204148, - "reasons": [ - 91 - ], - "version": 5, - "primary_tags": { - "highway": "trunk" - } - } - ], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-26T09:12:48Z", - "reviewed_features": [], - "tag_changes": { - "barrier": [ - "wall" - ], - "highway": [ - "trunk", - "secondary" - ], - "leisure": [ - "sports_centre", - "park" - ], - "name:etymology:wikidata": [ - "Q2153" - ] - }, - "create": 0, - "modify": 626, - "delete": 0, - "area": 568.566620139143, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 857, - "locale": "en", - "imagery": "osm" - }, - "id": 122860428 - } - }, - { - "id": 122860275, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.5522197, - 52.6662758 - ], - [ - 13.5585915, - 52.6662758 - ], - [ - 13.5585915, - 52.6702936 - ], - [ - 13.5522197, - 52.6702936 - ], - [ - 13.5522197, - 52.6662758 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Lm Goldbach", - "uid": "16375361", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-26T09:08:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 8, - "modify": 15, - "delete": 0, - "area": 0.0000256006180399989, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "www.waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 122860275 - } - }, - { - "id": 122859998, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9055055, - 51.1053873 - ], - [ - 4.9055055, - 51.1053873 - ], - [ - 4.9055055, - 51.1053873 - ], - [ - 4.9055055, - 51.1053873 - ], - [ - 4.9055055, - 51.1053873 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Frans_Napaters", - "uid": "3574538", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-26T08:59:10Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 6, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_500m": 6 - }, - "id": 122859998 - } - }, - { - "id": 122859932, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0053827, - 50.3230578 - ], - [ - 5.0053827, - 50.3230578 - ], - [ - 5.0053827, - 50.3230578 - ], - [ - 5.0053827, - 50.3230578 - ], - [ - 5.0053827, - 50.3230578 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-26T08:57:22Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/2p7GhD0.jpg" - ], - "amenity": [ - "public_bookcase" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 122859932 - } - }, - { - "id": 122858648, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.9909015, - 52.24604 - ], - [ - 7.0155284, - 52.24604 - ], - [ - 7.0155284, - 52.2737034 - ], - [ - 6.9909015, - 52.2737034 - ], - [ - 6.9909015, - 52.24604 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "GeoHigh125", - "uid": "1240771", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-26T08:09:53Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "unclassified", - "residential", - "tertiary" - ], - "maxspeed": [ - "50", - "30", - "60" - ] - }, - "create": 0, - "modify": 30, - "delete": 0, - "area": 0.000681263785460048, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "theme": "maxspeed", - "answer": 30, - "locale": "en", - "imagery": "osm", - "change_within_500m": 7, - "change_within_1000m": 7, - "change_within_5000m": 16 - }, - "id": 122858648 - } - }, - { - "id": 122858368, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-26T07:58:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/aed.html", - "theme": "aed", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 122858368 - } - }, - { - "id": 122857582, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.5504414, - 52.6702289 - ], - [ - 13.5504414, - 52.6702289 - ], - [ - 13.5504414, - 52.6702289 - ], - [ - 13.5504414, - 52.6702289 - ], - [ - 13.5504414, - 52.6702289 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Lm Goldbach", - "uid": "16375361", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-26T07:26:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "www.waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 122857582 - } - }, - { - "id": 122857255, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 72.559609, - 18.5450291 - ], - [ - 80.9361781, - 18.5450291 - ], - [ - 80.9361781, - 28.6688582 - ], - [ - 72.559609, - 28.6688582 - ], - [ - 72.559609, - 18.5450291 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-26T07:08:32Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "school" - ], - "highway": [ - "residential", - "secondary", - "tertiary", - "unclassified" - ], - "leisure": [ - "park" - ], - "name:etymology:wikidata": [ - "Q2153" - ] - }, - "create": 0, - "modify": 30, - "delete": 0, - "area": 84.8029540127409, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 32, - "locale": "en", - "imagery": "osm" - }, - "id": 122857255 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-27.json b/Docs/Tools/stats/stats.2022-6-27.json deleted file mode 100644 index 2584e93334..0000000000 --- a/Docs/Tools/stats/stats.2022-6-27.json +++ /dev/null @@ -1,985 +0,0 @@ -{ - "features": [ - { - "id": 122929248, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.160487, - 50.9922665 - ], - [ - 5.160487, - 50.9922665 - ], - [ - 5.160487, - 50.9922665 - ], - [ - 5.160487, - 50.9922665 - ], - [ - 5.160487, - 50.9922665 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-27T21:32:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1 - }, - "id": 122929248 - } - }, - { - "id": 122929032, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0750291, - 50.9840998 - ], - [ - 5.0750291, - 50.9840998 - ], - [ - 5.0750291, - 50.9840998 - ], - [ - 5.0750291, - 50.9840998 - ], - [ - 5.0750291, - 50.9840998 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-27T21:24:24Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/OLrOh3B.jpg" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 122929032 - } - }, - { - "id": 122924567, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.3354218, - 46.9580443 - ], - [ - 8.4203968, - 46.9580443 - ], - [ - 8.4203968, - 46.9965873 - ], - [ - 8.3354218, - 46.9965873 - ], - [ - 8.3354218, - 46.9580443 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LeTopographeFou", - "uid": "3178375", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-27T19:07:29Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "bus", - "hiking", - "bicycle" - ], - "amenity": [ - "fountain" - ], - "highway": [ - "footway", - "unclassified", - "secondary", - "tertiary" - ], - "name:etymology:wikidata": [ - "Q64599", - "Q64310", - "Q63931", - "Q64285", - "Q64567", - "Q43246" - ] - }, - "create": 0, - "modify": 123, - "delete": 0, - "area": 0.00327519142500036, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 155, - "locale": "fr", - "imagery": "osm" - }, - "id": 122924567 - } - }, - { - "id": 122924064, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "gnesss", - "uid": "6274199", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #uk_addresses", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-27T18:57:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/uk_addresses.html", - "theme": "uk_addresses", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 122924064 - } - }, - { - "id": 122923456, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.2490604, - 52.3756113 - ], - [ - -1.2475314, - 52.3756113 - ], - [ - -1.2475314, - 52.3848743 - ], - [ - -1.2490604, - 52.3848743 - ], - [ - -1.2490604, - 52.3756113 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "gnesss", - "uid": "6274199", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #uk_addresses", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-27T18:43:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 14, - "modify": 16, - "delete": 0, - "area": 0.0000141631269999967, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/uk_addresses.html", - "theme": "uk_addresses", - "answer": 28, - "import": 14, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 14, - "change_within_25m": 20, - "change_within_5000m": 8 - }, - "id": 122923456 - } - }, - { - "id": 122919237, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.8150413, - 47.2238518 - ], - [ - 8.8153967, - 47.2238518 - ], - [ - 8.8153967, - 47.2240285 - ], - [ - 8.8150413, - 47.2240285 - ], - [ - 8.8150413, - 47.2238518 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Geonick", - "uid": "6087", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-27T16:54:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 6.279918000157e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 1, - "locale": "de", - "imagery": "osm", - "change_within_500m": 1 - }, - "id": 122919237 - } - }, - { - "id": 122917202, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5699075, - 51.1342257 - ], - [ - 4.5699075, - 51.1342257 - ], - [ - 4.5699075, - 51.1342257 - ], - [ - 4.5699075, - 51.1342257 - ], - [ - 4.5699075, - 51.1342257 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #hackerspaces", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-27T16:03:13Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "hackerspace" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/hackerspaces.html", - "theme": "hackerspaces", - "answer": 10, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 11 - }, - "id": 122917202 - } - }, - { - "id": 122916165, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.253492, - 50.7393785 - ], - [ - 4.254875, - 50.7393785 - ], - [ - 4.254875, - 50.7401671 - ], - [ - 4.253492, - 50.7401671 - ], - [ - 4.253492, - 50.7393785 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #education", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-27T15:33:49Z", - "reviewed_features": [], - "tag_changes": { - "email": [ - "kris.cooman@hhchalle.be" - ], - "phone": [ - "+32 2 305 79 47" - ], - "school": [ - "kindergarten" - ], - "amenity": [ - "school" - ], - "website": [ - "https://www.hhchalle.be/vondel/category/nieuws/vkl-nieuws/" - ], - "school:gender": [ - "mixed" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.00000109063380000034, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/education", - "theme": "education", - "answer": 5, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 122916165 - } - }, - { - "id": 122916111, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8331024, - 50.3199231 - ], - [ - 4.8341619, - 50.3199231 - ], - [ - 4.8341619, - 50.3205198 - ], - [ - 4.8331024, - 50.3205198 - ], - [ - 4.8331024, - 50.3199231 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Matthieu Gaillet", - "uid": "287979", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #education", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-27T15:32:09Z", - "reviewed_features": [], - "tag_changes": { - "email": [ - "ecoledelamolignee.warnant@gmail.com" - ], - "phone": [ - "+32 82 61 28 44" - ], - "school": [ - "kindergarten;primary" - ], - "amenity": [ - "school" - ], - "website": [ - "https://www.ecoledewarnant.com/" - ], - "capacity": [ - "100" - ], - "school:gender": [ - "mixed" - ], - "school:language": [ - "French" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 6.32203650002956e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/education", - "theme": "education", - "answer": 7, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_500m": 7 - }, - "id": 122916111 - } - }, - { - "id": 122914694, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.4633741, - -34.5475963 - ], - [ - -58.4633741, - -34.5475963 - ], - [ - -58.4633741, - -34.5475963 - ], - [ - -58.4633741, - -34.5475963 - ], - [ - -58.4633741, - -34.5475963 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AgusQui", - "uid": "331218", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-27T14:53:39Z", - "reviewed_features": [], - "tag_changes": { - "railway": [ - "signal" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "answer": 5, - "create": 1, - "locale": "es", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_100m": 5 - }, - "id": 122914694 - } - }, - { - "id": 122907297, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5944496, - 53.2385611 - ], - [ - 6.5944496, - 53.2385611 - ], - [ - 6.5944496, - 53.2385611 - ], - [ - 6.5944496, - 53.2385611 - ], - [ - 6.5944496, - 53.2385611 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-27T12:02:21Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/tx0JBMN.jpg" - ], - "bottle": [ - "yes" - ], - "amenity": [ - "drinking_water" - ], - "man_made": [ - "water_tap" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 122907297 - } - }, - { - "id": 122906015, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -71.9876599, - 43.4162013 - ], - [ - -71.9872739, - 43.4162013 - ], - [ - -71.9872739, - 43.4165257 - ], - [ - -71.9876599, - 43.4165257 - ], - [ - -71.9876599, - 43.4162013 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Mapiate", - "uid": "12604637", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-27T11:36:32Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Tucker's", - "Tuckers" - ], - "amenity": [ - "restaurant" - ], - "building": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.25218399998792e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 1, - "locale": "en", - "imagery": "Mapbox" - }, - "id": 122906015 - } - }, - { - "id": 122895348, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.2727753, - 51.4911096 - ], - [ - -0.2727753, - 51.4911096 - ], - [ - -0.2727753, - 51.4911096 - ], - [ - -0.2727753, - 51.4911096 - ], - [ - -0.2727753, - 51.4911096 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "atom oil", - "uid": "49665", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #uk_addresses", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-27T07:51:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/uk_addresses.html", - "theme": "uk_addresses", - "answer": 2, - "import": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 122895348 - } - }, - { - "id": 122890001, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8365734, - 51.0835602 - ], - [ - 3.8365734, - 51.0835602 - ], - [ - 3.8365734, - 51.0835602 - ], - [ - 3.8365734, - 51.0835602 - ], - [ - 3.8365734, - 51.0835602 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-27T05:53:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/aed.html", - "theme": "aed", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 5, - "change_over_5000m": 6, - "change_within_25m": 3 - }, - "id": 122890001 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-28.json b/Docs/Tools/stats/stats.2022-6-28.json deleted file mode 100644 index d4e53ae26f..0000000000 --- a/Docs/Tools/stats/stats.2022-6-28.json +++ /dev/null @@ -1,1773 +0,0 @@ -{ - "features": [ - { - "id": 122978177, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4796941, - 51.3550793 - ], - [ - 4.4796941, - 51.3550793 - ], - [ - 4.4796941, - 51.3550793 - ], - [ - 4.4796941, - 51.3550793 - ], - [ - 4.4796941, - 51.3550793 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-28T23:57:01Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "import": 1, - "locale": "nl", - "imagery": "AGIV", - "link-image": 2, - "import:node/9854536427": "source: https://osm.org/note/3143403" - }, - "id": 122978177 - } - }, - { - "id": 122972363, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3683369, - 52.5355765 - ], - [ - 13.3745747, - 52.5355765 - ], - [ - 13.3745747, - 52.5437088 - ], - [ - 13.3683369, - 52.5437088 - ], - [ - 13.3683369, - 52.5355765 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-28T19:47:56Z", - "reviewed_features": [], - "tag_changes": { - "ref": [ - "18" - ], - "highway": [ - "street_lamp" - ], - "support": [ - "pole" - ], - "light:lit": [ - "dusk-dawn" - ], - "lamp_mount": [ - "straight_mast", - "bent_mast" - ], - "light:count": [ - "1" - ], - "light:colour": [ - "orange", - "white" - ], - "light:method": [ - "gas", - "halogen", - "incandescent" - ] - }, - "create": 0, - "modify": 11, - "delete": 0, - "area": 0.0000507276609400063, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "move": 1, - "theme": "street_lighting", - "answer": 25, - "locale": "de", - "imagery": "osm", - "change_within_25m": 26, - "move:node/9072887735": "improve_accuracy" - }, - "id": 122972363 - } - }, - { - "id": 122972282, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -86.0996481, - 39.9855193 - ], - [ - -86.0996481, - 39.9855193 - ], - [ - -86.0996481, - 39.9855193 - ], - [ - -86.0996481, - 39.9855193 - ], - [ - -86.0996481, - 39.9855193 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Kanellar", - "uid": "16249964", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-28T19:45:29Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 122972282 - } - }, - { - "id": 122969849, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3914352, - 52.5035251 - ], - [ - 13.3922875, - 52.5035251 - ], - [ - 13.3922875, - 52.5050467 - ], - [ - 13.3914352, - 52.5050467 - ], - [ - 13.3914352, - 52.5035251 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "kjon", - "uid": "44217", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-28T18:42:41Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "artwork" - ], - "building": [ - "residential" - ], - "artist_name": [ - "John Hejduk" - ], - "artwork_type": [ - "sculpture" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000129685968000327, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 122969849 - } - }, - { - "id": 122969425, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 85.3123226, - 27.7134188 - ], - [ - 85.3123226, - 27.7134188 - ], - [ - 85.3123226, - 27.7134188 - ], - [ - 85.3123226, - 27.7134188 - ], - [ - 85.3123226, - 27.7134188 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "shahgnp", - "uid": "16215173", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-28T18:32:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 122969425 - } - }, - { - "id": 122969252, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4416698, - 51.2425369 - ], - [ - 4.4416698, - 51.2425369 - ], - [ - 4.4416698, - 51.2425369 - ], - [ - 4.4416698, - 51.2425369 - ], - [ - 4.4416698, - 51.2425369 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "philippec", - "uid": "76884", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-28T18:27:02Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/fkP5413.jpg" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1 - }, - "id": 122969252 - } - }, - { - "id": 122969040, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4309258, - 50.9390764 - ], - [ - 5.4309258, - 50.9390764 - ], - [ - 5.4309258, - 50.9390764 - ], - [ - 5.4309258, - 50.9390764 - ], - [ - 5.4309258, - 50.9390764 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-28T18:21:33Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/1RDIxwQ.jpg" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 122969040 - } - }, - { - "id": 122968650, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4849521, - 51.5597481 - ], - [ - 13.4851433, - 51.5597481 - ], - [ - 13.4851433, - 51.5598598 - ], - [ - 13.4849521, - 51.5598598 - ], - [ - 13.4849521, - 51.5597481 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Ronnsen79", - "uid": "15992654", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-28T18:08:10Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "water" - ], - "emergency": [ - "Nicht mehr vorhanden", - "fire_water_pond" - ], - "water_tank:volume": [ - "1" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 2.13570399997735e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 122968650 - } - }, - { - "id": 122968636, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.3689274, - 53.1575628 - ], - [ - 6.3779708, - 53.1575628 - ], - [ - 6.3779708, - 53.1586597 - ], - [ - 6.3689274, - 53.1586597 - ], - [ - 6.3689274, - 53.1575628 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-28T18:07:47Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential" - ], - "name:etymology:wikidata": [ - "Q2227764" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000991970546000302, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 122968636 - } - }, - { - "id": 122968283, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1896513, - 51.0148301 - ], - [ - 5.1991339, - 51.0148301 - ], - [ - 5.1991339, - 51.0214886 - ], - [ - 5.1896513, - 51.0214886 - ], - [ - 5.1896513, - 51.0148301 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-28T17:57:39Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/g1wyuGj.jpg", - "https://i.imgur.com/nS4dfKq.jpg" - ], - "route": [ - "hiking", - "foot" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000631398920999981, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "locale": "en", - "imagery": "osm", - "add-image": 2 - }, - "id": 122968283 - } - }, - { - "id": 122968053, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1800287, - 51.0102086 - ], - [ - 5.1800287, - 51.0102086 - ], - [ - 5.1800287, - 51.0102086 - ], - [ - 5.1800287, - 51.0102086 - ], - [ - 5.1800287, - 51.0102086 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-28T17:52:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 122968053 - } - }, - { - "id": 122966539, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0649207, - 50.9864937 - ], - [ - 5.0649207, - 50.9864937 - ], - [ - 5.0649207, - 50.9864937 - ], - [ - 5.0649207, - 50.9864937 - ], - [ - 5.0649207, - 50.9864937 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-28T17:09:57Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/YNdp0zq.jpg" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 122966539 - } - }, - { - "id": 122966477, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4488122, - 52.4513655 - ], - [ - 13.4488122, - 52.4513655 - ], - [ - 13.4488122, - 52.4513655 - ], - [ - 13.4488122, - 52.4513655 - ], - [ - 13.4488122, - 52.4513655 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Supaplex030", - "uid": "418040", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-28T17:08:04Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-06-28", - "2020-08-31" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 1, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 122966477 - } - }, - { - "id": 122965755, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.2382943, - 52.758896 - ], - [ - 13.250764, - 52.758896 - ], - [ - 13.250764, - 52.765117 - ], - [ - 13.2382943, - 52.765117 - ], - [ - 13.2382943, - 52.758896 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "SebastianFranz", - "uid": "16395555", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-28T16:47:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 11, - "modify": 11, - "delete": 0, - "area": 0.000077574003699959, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 122965755 - } - }, - { - "id": 122963306, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -86.1374851, - 39.9494081 - ], - [ - -86.1244897, - 39.9494081 - ], - [ - -86.1244897, - 40.0425404 - ], - [ - -86.1374851, - 40.0425404 - ], - [ - -86.1374851, - 39.9494081 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9853684870", - "name": "Carmel Bike Share", - "osm_id": 9853684870, - "reasons": [ - 43 - ], - "version": 2, - "primary_tags": { - "amenity": "bicycle_library" - } - }, - { - "url": "node-9853687394", - "name": "Carmel Bike Share", - "osm_id": 9853687394, - "reasons": [ - 43 - ], - "version": 1, - "primary_tags": { - "amenity": "bicycle_library" - } - } - ], - "user": "Kanellar", - "uid": "16249964", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-28T15:35:48Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking", - "drinking_water", - "bicycle_library" - ] - }, - "create": 11, - "modify": 6, - "delete": 0, - "area": 0.00121029149142078, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 19, - "create": 11, - "locale": "en", - "imagery": "USDA-NAIP", - "change_over_5000m": 11, - "change_within_5000m": 13 - }, - "id": 122963306 - } - }, - { - "id": 122962113, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.6435579, - 47.9524817 - ], - [ - 9.6435579, - 47.9524817 - ], - [ - 9.6435579, - 47.9524817 - ], - [ - 9.6435579, - 47.9524817 - ], - [ - 9.6435579, - 47.9524817 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-28T15:02:40Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ], - "changing_table": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 1, - "locale": "de", - "imagery": "osm", - "change_within_100m": 1 - }, - "id": 122962113 - } - }, - { - "id": 122961458, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2368904, - 50.7355966 - ], - [ - 4.2368904, - 50.7355966 - ], - [ - 4.2368904, - 50.7355966 - ], - [ - 4.2368904, - 50.7355966 - ], - [ - 4.2368904, - 50.7355966 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-28T14:46:45Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/OpmIQbk.jpg" - ], - "amenity": [ - "bench" - ], - "direction": [ - "242" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 122961458 - } - }, - { - "id": 122961067, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2350762, - 50.7355539 - ], - [ - 4.2367925, - 50.7355539 - ], - [ - 4.2367925, - 50.7358757 - ], - [ - 4.2350762, - 50.7358757 - ], - [ - 4.2350762, - 50.7355539 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-28T14:38:07Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "bicycle_parking" - ], - "image:0": [ - "https://i.imgur.com/LJaPaBw.jpg", - "https://i.imgur.com/AZvLfEb.jpg" - ], - "capacity": [ - "6", - "5" - ], - "cargo_bike": [ - "yes" - ], - "capacity:cargo_bike": [ - "3", - "1" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 5.52305340003117e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 7, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 2, - "change_within_25m": 9 - }, - "id": 122961067 - } - }, - { - "id": 122956870, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -86.1146272, - 40.0007143 - ], - [ - -86.0902806, - 40.0007143 - ], - [ - -86.0902806, - 40.00211 - ], - [ - -86.1146272, - 40.00211 - ], - [ - -86.1146272, - 40.0007143 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Kanellar", - "uid": "16249964", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-28T13:03:07Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ] - }, - "create": 5, - "modify": 4, - "delete": 0, - "area": 0.0000339805496200828, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 14, - "create": 5, - "locale": "en", - "imagery": "USDA-NAIP" - }, - "id": 122956870 - } - }, - { - "id": 122954524, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1265289, - 52.0783022 - ], - [ - 5.1265289, - 52.0783022 - ], - [ - 5.1265289, - 52.0783022 - ], - [ - 5.1265289, - 52.0783022 - ], - [ - 5.1265289, - 52.0783022 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Koen Rijnsent", - "uid": "4569696", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-28T12:05:52Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "public_bookcase" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 122954524 - } - }, - { - "id": 122947876, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3688066, - 50.74495 - ], - [ - 3.3688066, - 50.74495 - ], - [ - 3.3688066, - 50.74495 - ], - [ - 3.3688066, - 50.74495 - ], - [ - 3.3688066, - 50.74495 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-28T09:40:59Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "picnic_table" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "import": 1, - "locale": "nl", - "imagery": "AGIV", - "import:node/9852865729": "source: https://osm.org/note/3156356" - }, - "id": 122947876 - } - }, - { - "id": 122947761, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 1.482082, - 43.637648 - ], - [ - 1.4822397, - 43.637648 - ], - [ - 1.4822397, - 43.6382385 - ], - [ - 1.482082, - 43.6382385 - ], - [ - 1.482082, - 43.637648 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Guyou", - "uid": "7273", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-28T09:38:48Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "tertiary" - ], - "maxspeed": [ - "30" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 9.31218500002886e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed", - "theme": "maxspeed", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 122947761 - } - }, - { - "id": 122945411, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8716589, - 50.9795615 - ], - [ - 3.8924571, - 50.9795615 - ], - [ - 3.8924571, - 51.0056672 - ], - [ - 3.8716589, - 51.0056672 - ], - [ - 3.8716589, - 50.9795615 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Erin76", - "uid": "8982454", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #education", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-28T08:51:42Z", - "reviewed_features": [], - "tag_changes": { - "school": [ - "kindergarten", - "kindergarten;primary", - "primary;kindergarten" - ], - "amenity": [ - "school" - ], - "school:gender": [ - "mixed" - ], - "school:language": [ - "Dutch", - "dutch" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.000542951569739904, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/education", - "theme": "education", - "answer": 10, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 122945411 - } - }, - { - "id": 122945100, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 43.863106, - 56.2488845 - ], - [ - 43.863106, - 56.2488845 - ], - [ - 43.863106, - 56.2488845 - ], - [ - 43.863106, - 56.2488845 - ], - [ - 43.863106, - 56.2488845 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "alexashh", - "uid": "9054103", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-28T08:45:52Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/krvTRhw.jpg" - ], - "access": [ - "yes" - ], - "amenity": [ - "bicycle_parking" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "ru", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 122945100 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-29.json b/Docs/Tools/stats/stats.2022-6-29.json deleted file mode 100644 index 141b70d5a6..0000000000 --- a/Docs/Tools/stats/stats.2022-6-29.json +++ /dev/null @@ -1,1916 +0,0 @@ -{ - "features": [ - { - "id": 123022136, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-29T22:51:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "answer": 1, - "locale": "de", - "imagery": "HDM_HOT", - "change_within_50m": 1 - }, - "id": 123022136 - } - }, - { - "id": 123022095, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3753026, - 52.5692482 - ], - [ - 13.3756678, - 52.5692482 - ], - [ - 13.3756678, - 52.5693166 - ], - [ - 13.3753026, - 52.5693166 - ], - [ - 13.3753026, - 52.5692482 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-29T22:48:46Z", - "reviewed_features": [], - "tag_changes": { - "waste": [ - "trash" - ], - "amenity": [ - "waste_basket" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 2.49796800013512e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 2, - "locale": "de", - "imagery": "osm", - "change_within_25m": 2 - }, - "id": 123022095 - } - }, - { - "id": 123021994, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3755981, - 52.5695314 - ], - [ - 13.3755981, - 52.5695314 - ], - [ - 13.3755981, - 52.5695314 - ], - [ - 13.3755981, - 52.5695314 - ], - [ - 13.3755981, - 52.5695314 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-29T22:42:11Z", - "reviewed_features": [], - "tag_changes": { - "seats": [ - "4" - ], - "amenity": [ - "bench" - ], - "direction": [ - "210" - ], - "survey:date": [ - "2022-06-29" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 3, - "locale": "de", - "imagery": "osm", - "change_within_25m": 3 - }, - "id": 123021994 - } - }, - { - "id": 123021791, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3751053, - 52.5691908 - ], - [ - 13.3757563, - 52.5691908 - ], - [ - 13.3757563, - 52.5697711 - ], - [ - 13.3751053, - 52.5697711 - ], - [ - 13.3751053, - 52.5691908 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-29T22:29:11Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "leaf_type": [ - "broadleaved" - ], - "denotation": [ - "park", - "urban" - ], - "leaf_cycle": [ - "deciduous" - ] - }, - "create": 0, - "modify": 51, - "delete": 1, - "area": 3.77775299997987e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 67, - "locale": "de", - "imagery": "osm", - "deletion": 1, - "change_within_25m": 62, - "change_within_50m": 6, - "deletion:node/9172254141": "not found" - }, - "id": 123021791 - } - }, - { - "id": 123021781, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-29T22:28:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/entrances.html", - "theme": "entrances", - "answer": 3, - "locale": "de", - "imagery": "osm", - "change_within_25m": 3 - }, - "id": 123021781 - } - }, - { - "id": 123021737, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3750741, - 52.5696849 - ], - [ - 13.375553, - 52.5696849 - ], - [ - 13.375553, - 52.5697313 - ], - [ - 13.3750741, - 52.5697313 - ], - [ - 13.3750741, - 52.5696849 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-29T22:25:42Z", - "reviewed_features": [], - "tag_changes": { - "door": [ - "hinged" - ], - "entrance": [ - "main", - "yes" - ], - "automatic_door": [ - "no" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 2.22209600010259e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "entrances", - "answer": 13, - "locale": "de", - "imagery": "osm", - "change_within_25m": 13 - }, - "id": 123021737 - } - }, - { - "id": 123021456, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3675843, - 52.5691028 - ], - [ - 13.3797992, - 52.5691028 - ], - [ - 13.3797992, - 52.5716303 - ], - [ - 13.3675843, - 52.5716303 - ], - [ - 13.3675843, - 52.5691028 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-29T22:10:25Z", - "reviewed_features": [], - "tag_changes": { - "ref": [ - "7", - "3", - "6", - "8", - "1", - "5", - "4", - "2", - "10", - "12" - ], - "highway": [ - "street_lamp" - ], - "support": [ - "pole" - ], - "light:lit": [ - "dusk-dawn" - ], - "lamp_mount": [ - "bent_mast", - "straight_mast" - ], - "light:count": [ - "1", - "4" - ], - "light:colour": [ - "white" - ], - "light:method": [ - "halogen", - "gas", - "LED", - "mercury" - ] - }, - "create": 7, - "modify": 58, - "delete": 0, - "area": 0.0000308731597499921, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 143, - "create": 7, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 7, - "change_within_25m": 142, - "change_within_50m": 1 - }, - "id": 123021456 - } - }, - { - "id": 123018657, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.369256, - 52.6313117 - ], - [ - 13.3768607, - 52.6313117 - ], - [ - 13.3768607, - 52.6359914 - ], - [ - 13.369256, - 52.6359914 - ], - [ - 13.369256, - 52.6313117 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "GamingFAIL", - "uid": "13918186", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-29T20:23:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 7, - "modify": 7, - "delete": 0, - "area": 0.0000355877145900305, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "www.waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123018657 - } - }, - { - "id": 123016842, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.252917, - 52.3765004 - ], - [ - -1.252719, - 52.3765004 - ], - [ - -1.252719, - 52.3765311 - ], - [ - -1.252917, - 52.3765311 - ], - [ - -1.252917, - 52.3765004 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "gnesss", - "uid": "6274199", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #uk_addresses", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-29T19:32:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 7, - "delete": 0, - "area": 6.07860000069576e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/uk_addresses.html", - "theme": "uk_addresses", - "answer": 8, - "import": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 123016842 - } - }, - { - "id": 123015647, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3318422, - 52.4735172 - ], - [ - 13.332421, - 52.4735172 - ], - [ - 13.332421, - 52.4756494 - ], - [ - 13.3318422, - 52.4756494 - ], - [ - 13.3318422, - 52.4735172 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Wikinaut", - "uid": "120965", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-29T19:00:12Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-06-29", - "2020-06-18" - ], - "pump:status": [ - "ok" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000123411735999809, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 3, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123015647 - } - }, - { - "id": 123014096, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 43.8667483, - 56.2598101 - ], - [ - 43.8854509, - 56.2598101 - ], - [ - 43.8854509, - 56.2742227 - ], - [ - 43.8667483, - 56.2742227 - ], - [ - 43.8667483, - 56.2598101 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "alexashh", - "uid": "9054103", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-29T18:19:47Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ] - }, - "create": 0, - "modify": 10, - "delete": 0, - "area": 0.000269553092760066, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 17, - "locale": "ru", - "imagery": "EsriWorldImageryClarity", - "add-image": 6 - }, - "id": 123014096 - } - }, - { - "id": 123013389, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.6137448, - 47.7819293 - ], - [ - 9.6137448, - 47.7819293 - ], - [ - 9.6137448, - 47.7819293 - ], - [ - 9.6137448, - 47.7819293 - ], - [ - 9.6137448, - 47.7819293 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-29T17:55:21Z", - "reviewed_features": [], - "tag_changes": { - "level": [ - "0" - ], - "access": [ - "yes" - ], - "wheelchair": [ - "no" - ], - "survey:date": [ - "2022-06-29" - ], - "defibrillator:location": [ - "Rechts am Eingang" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 5, - "locale": "de", - "imagery": "osm", - "change_within_25m": 1, - "change_within_50m": 4 - }, - "id": 123013389 - } - }, - { - "id": 123012196, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.2358278, - 52.7550958 - ], - [ - 13.2535406, - 52.7550958 - ], - [ - 13.2535406, - 52.7720546 - ], - [ - 13.2358278, - 52.7720546 - ], - [ - 13.2358278, - 52.7550958 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "SebastianFranz", - "uid": "16395555", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-29T17:13:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 60, - "modify": 56, - "delete": 0, - "area": 0.000300387832639957, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123012196 - } - }, - { - "id": 123011018, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5570506, - 53.01615 - ], - [ - 6.5570506, - 53.01615 - ], - [ - 6.5570506, - 53.01615 - ], - [ - 6.5570506, - 53.01615 - ], - [ - 6.5570506, - 53.01615 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.22git .0", - "comment": "Adding data with #MapComplete for theme #waste_assen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-29T16:39:01Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "recycling" - ], - "opening_hours": [ - "24/7" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/waste_assen.html", - "theme": "waste_assen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_1000m": 1 - }, - "id": 123011018 - } - }, - { - "id": 123010647, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.555723, - 53.0090286 - ], - [ - 6.5669171, - 53.0090286 - ], - [ - 6.5669171, - 53.01615 - ], - [ - 6.555723, - 53.01615 - ], - [ - 6.555723, - 53.0090286 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.22git .0", - "comment": "Adding data with #MapComplete for theme #waste_assen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-29T16:27:08Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_disposal", - "waste_basket" - ] - }, - "create": 7, - "modify": 2, - "delete": 0, - "area": 0.0000797176637400291, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/waste_assen.html", - "theme": "waste_assen", - "answer": 14, - "create": 7, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 7, - "change_within_500m": 2, - "change_within_1000m": 10, - "change_within_5000m": 2 - }, - "id": 123010647 - } - }, - { - "id": 123008555, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2681166, - 53.2107031 - ], - [ - 6.2681166, - 53.2107031 - ], - [ - 6.2681166, - 53.2107031 - ], - [ - 6.2681166, - 53.2107031 - ], - [ - 6.2681166, - 53.2107031 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-29T15:31:03Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 123008555 - } - }, - { - "id": 123006999, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8153621, - 51.1848734 - ], - [ - 2.8161858, - 51.1848734 - ], - [ - 2.8161858, - 51.1864325 - ], - [ - 2.8153621, - 51.1864325 - ], - [ - 2.8153621, - 51.1848734 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.22git .0", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-29T14:50:05Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "foot" - ], - "highway": [ - "residential" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 0.00000128423067000084, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/personal.html", - "split": 3, - "theme": "personal", - "answer": 1, - "locale": "en", - "imagery": "osm", - "relation-fix": 1, - "change_within_25m": 4 - }, - "id": 123006999 - } - }, - { - "id": 123006898, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8152563, - 51.1863733 - ], - [ - 2.8168622, - 51.1863733 - ], - [ - 2.8168622, - 51.1870705 - ], - [ - 2.8152563, - 51.1870705 - ], - [ - 2.8152563, - 51.1863733 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.22git .0", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-29T14:47:00Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "crossing" - ], - "crossing": [ - "uncontrolled" - ], - "tactile_paving": [ - "no" - ], - "crossing:island": [ - "no" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.00000111963347999614, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/personal.html", - "theme": "personal", - "answer": 13, - "locale": "en", - "imagery": "osm", - "change_within_50m": 7, - "change_within_100m": 6 - }, - "id": 123006898 - } - }, - { - "id": 123004687, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -86.1297378, - 39.9740285 - ], - [ - -86.129696, - 39.9740285 - ], - [ - -86.129696, - 39.9757616 - ], - [ - -86.1297378, - 39.9757616 - ], - [ - -86.1297378, - 39.9740285 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9855850926", - "name": "Carmel Bike Share", - "osm_id": 9855850926, - "reasons": [ - 43 - ], - "version": 3, - "primary_tags": { - "amenity": "bicycle_library" - } - } - ], - "user": "Kanellar", - "uid": "16249964", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-29T13:56:49Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_library", - "drinking_water" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 7.24435800090186e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 4, - "create": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 2, - "change_within_25m": 3, - "change_within_50m": 1 - }, - "id": 123004687 - } - }, - { - "id": 123003798, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3726726, - 50.9369797 - ], - [ - 4.3726726, - 50.9369797 - ], - [ - 4.3726726, - 50.9369797 - ], - [ - 4.3726726, - 50.9369797 - ], - [ - 4.3726726, - 50.9369797 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-29T13:33:48Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "playground" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "import": 1, - "locale": "fr", - "imagery": "AGIV", - "link-image": 1, - "import:node/9855796278": "source: https://osm.org/note/3084035" - }, - "id": 123003798 - } - }, - { - "id": 123002129, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -86.1265885, - 40.0052251 - ], - [ - -86.1265885, - 40.0052251 - ], - [ - -86.1265885, - 40.0052251 - ], - [ - -86.1265885, - 40.0052251 - ], - [ - -86.1265885, - 40.0052251 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Kanellar", - "uid": "16249964", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-29T12:54:57Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 4, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 123002129 - } - }, - { - "id": 123001445, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4291074, - 50.9236608 - ], - [ - 4.4291074, - 50.9236608 - ], - [ - 4.4291074, - 50.9236608 - ], - [ - 4.4291074, - 50.9236608 - ], - [ - 4.4291074, - 50.9236608 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-29T12:39:09Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/dXCNSPg.jpg" - ], - "image:0": [ - "https://i.imgur.com/gQgtZDf.jpg" - ], - "leisure": [ - "playground" - ], - "surface": [ - "sand" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_within_50m": 3 - }, - "id": 123001445 - } - }, - { - "id": 122998796, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.0210153, - 47.5543206 - ], - [ - 10.0210153, - 47.5543206 - ], - [ - 10.0210153, - 47.5543206 - ], - [ - 10.0210153, - 47.5543206 - ], - [ - 10.0210153, - 47.5543206 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-29T11:39:31Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/Ef0gBj2.jpg" - ], - "access": [ - "yes" - ], - "indoor": [ - "no" - ], - "wheelchair": [ - "yes" - ], - "description": [ - "Per Rollstuhl via Aufzug hinter der Treppe" - ], - "survey:date": [ - "2022-06-29" - ], - "opening_hours": [ - "24/7" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 6, - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_within_50m": 7 - }, - "id": 122998796 - } - }, - { - "id": 122997347, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.2242369, - 52.7602301 - ], - [ - 13.265593, - 52.7602301 - ], - [ - 13.265593, - 52.781634 - ], - [ - 13.2242369, - 52.781634 - ], - [ - 13.2242369, - 52.7602301 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "SebastianFranz", - "uid": "16395555", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-29T11:07:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 70, - "modify": 64, - "delete": 0, - "area": 0.000885181828789856, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 122997347 - } - }, - { - "id": 122996837, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.0209635, - 47.5537683 - ], - [ - 10.0251696, - 47.5537683 - ], - [ - 10.0251696, - 47.554363 - ], - [ - 10.0209635, - 47.554363 - ], - [ - 10.0209635, - 47.5537683 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-29T10:56:00Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "access": [ - "yes" - ], - "amenity": [ - "toilets" - ], - "opening_hours": [ - "Mo-Su 07:00-20:00" - ], - "changing_table": [ - "yes" - ], - "toilets:position": [ - "seated;urinal" - ], - "toilets:handwashing": [ - "yes" - ], - "toilets:paper_supplied": [ - "yes" - ], - "changing_table:location": [ - "dedicated_room" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000250136767000218, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 8, - "locale": "de", - "imagery": "osm", - "change_within_25m": 1, - "change_within_50m": 7 - }, - "id": 122996837 - } - }, - { - "id": 122978497, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6153251, - 50.939041 - ], - [ - 4.6160349, - 50.939041 - ], - [ - 4.6160349, - 50.9393912 - ], - [ - 4.6153251, - 50.9393912 - ], - [ - 4.6153251, - 50.939041 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #education", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-29T00:26:49Z", - "reviewed_features": [], - "tag_changes": { - "phone": [ - "+32 16 60 20 59" - ], - "school": [ - "kindergarten;primary" - ], - "amenity": [ - "school" - ], - "website": [ - "https://www.go-spectrum.be/spectrum-buken/" - ], - "school:gender": [ - "mixed" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 2.48571959999852e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/education", - "theme": "education", - "answer": 4, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 122978497 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-6-30.json b/Docs/Tools/stats/stats.2022-6-30.json deleted file mode 100644 index 0e886cc701..0000000000 --- a/Docs/Tools/stats/stats.2022-6-30.json +++ /dev/null @@ -1,1640 +0,0 @@ -{ - "features": [ - { - "id": 123064229, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1120733, - 38.8376833 - ], - [ - 0.1120733, - 38.8376833 - ], - [ - 0.1120733, - 38.8376833 - ], - [ - 0.1120733, - 38.8376833 - ], - [ - 0.1120733, - 38.8376833 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-30T23:35:13Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "recycling" - ], - "recycling:clothes": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 1, - "locale": "ca", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 123064229 - } - }, - { - "id": 123062710, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3705357, - 52.5637548 - ], - [ - 13.3706135, - 52.5637548 - ], - [ - 13.3706135, - 52.5638755 - ], - [ - 13.3705357, - 52.5638755 - ], - [ - 13.3705357, - 52.5637548 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-30T22:06:22Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ] - }, - "create": 2, - "modify": 4, - "delete": 0, - "area": 9.39046000024481e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "move": 3, - "theme": "street_lighting", - "answer": 6, - "create": 2, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 9, - "move:node/9859182147": "improve_accuracy", - "move:node/9859207883": "improve_accuracy" - }, - "id": 123062710 - } - }, - { - "id": 123060568, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 43.8590768, - 56.2553563 - ], - [ - 43.8590768, - 56.2553563 - ], - [ - 43.8590768, - 56.2553563 - ], - [ - 43.8590768, - 56.2553563 - ], - [ - 43.8590768, - 56.2553563 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "alexashh", - "uid": "9054103", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-30T20:43:26Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/2Rl4Wzu.jpg" - ], - "amenity": [ - "bicycle_parking" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "ru", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 123060568 - } - }, - { - "id": 123058538, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3582791, - 52.5738363 - ], - [ - 13.3588843, - 52.5738363 - ], - [ - 13.3588843, - 52.5742592 - ], - [ - 13.3582791, - 52.5742592 - ], - [ - 13.3582791, - 52.5738363 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-30T19:29:25Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "leaf_type": [ - "broadleaved" - ], - "denotation": [ - "avenue" - ], - "leaf_cycle": [ - "deciduous" - ], - "species:wikidata": [ - "Q158746", - "Q159657", - "Q147064" - ] - }, - "create": 0, - "modify": 29, - "delete": 0, - "area": 2.55939079997552e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 42, - "locale": "de", - "imagery": "osm" - }, - "id": 123058538 - } - }, - { - "id": 123057475, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7428893, - 51.0861971 - ], - [ - 2.7429531, - 51.0861971 - ], - [ - 2.7429531, - 51.0862492 - ], - [ - 2.7428893, - 51.0862492 - ], - [ - 2.7428893, - 51.0861971 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-30T18:52:16Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes" - ] - }, - "create": 5, - "modify": 0, - "delete": 0, - "area": 3.32397999985555e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "AGIVFlandersGRB" - }, - "id": 123057475 - } - }, - { - "id": 123055599, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3726202, - 52.5690062 - ], - [ - 13.3763133, - 52.5690062 - ], - [ - 13.3763133, - 52.569459 - ], - [ - 13.3726202, - 52.569459 - ], - [ - 13.3726202, - 52.5690062 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-30T17:49:58Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "leaf_type": [ - "broadleaved" - ], - "denotation": [ - "avenue" - ], - "leaf_cycle": [ - "deciduous" - ], - "species:wikidata": [ - "Q165321", - "Q127849" - ] - }, - "create": 0, - "modify": 15, - "delete": 0, - "area": 0.00000167223568001837, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 24, - "locale": "de", - "imagery": "osm" - }, - "id": 123055599 - } - }, - { - "id": 123055172, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0636581, - 50.9064582 - ], - [ - 5.073856, - 50.9064582 - ], - [ - 5.073856, - 50.9097132 - ], - [ - 5.0636581, - 50.9097132 - ], - [ - 5.0636581, - 50.9064582 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-30T17:35:44Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "picnic_table" - ], - "building": [ - "yes", - "house", - "roof" - ], - "source:geometry:ref": [ - "Gbg/1906491" - ], - "source:geometry:date": [ - "2009-11-05" - ] - }, - "create": 2168, - "modify": 7, - "delete": 0, - "area": 0.0000331941644999588, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 6, - "theme": "grb", - "import": 287, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "conflation": 2 - }, - "id": 123055172 - } - }, - { - "id": 123054665, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4231062, - 50.8767311 - ], - [ - 5.0686347, - 50.8767311 - ], - [ - 5.0686347, - 50.9601208 - ], - [ - 4.4231062, - 50.9601208 - ], - [ - 4.4231062, - 50.8767311 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-30T17:21:15Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "foot", - "bicycle" - ], - "highway": [ - "service", - "footway", - "path" - ], - "landuse": [ - "residential" - ], - "leisure": [ - "playground", - "picnic_table" - ], - "surface": [ - "grass" - ] - }, - "create": 4, - "modify": 3, - "delete": 0, - "area": 0.0538304279564486, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 4, - "import": 4, - "locale": "nl", - "imagery": "osm", - "import:node/9858601475": "source: https://osm.org/note/3084052", - "import:node/9858655766": "source: https://osm.org/note/3090256", - "import:node/9858701842": "source: https://osm.org/note/3090290", - "import:node/9858712663": "source: https://osm.org/note/3084058" - }, - "id": 123054665 - } - }, - { - "id": 123052549, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5099199, - 51.0956401 - ], - [ - 4.513286, - 51.0956401 - ], - [ - 4.513286, - 51.0962469 - ], - [ - 4.5099199, - 51.0962469 - ], - [ - 4.5099199, - 51.0956401 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-30T16:22:50Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "school" - ], - "building": [ - "yes", - "roof", - "house", - "garages" - ], - "addr:street": [ - "Kwakkelenberg" - ], - "addr:housenumber": [ - "1;3" - ], - "source:geometry:ref": [ - "Gbg/3188452", - "Gbg/3188505", - "Gbg/3188459", - "Gbg/3188458", - "Gbg/3188457", - "Gbg/3188456", - "Gbg/3188455", - "Gbg/3188454", - "Gbg/3188453", - "Gbg/3188451", - "Gbg/5741266" - ], - "source:geometry:date": [ - "2011-09-09", - "2016-11-17" - ] - }, - "create": 86, - "modify": 70, - "delete": 3, - "area": 0.00000204254947999971, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 59, - "theme": "grb", - "delete": 3, - "import": 18, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "conflation": 22 - }, - "id": 123052549 - } - }, - { - "id": 123051593, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5090354, - 51.094467 - ], - [ - 4.514749, - 51.094467 - ], - [ - 4.514749, - 51.0964582 - ], - [ - 4.5090354, - 51.0964582 - ], - [ - 4.5090354, - 51.094467 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 2, - "name": "possible import" - } - ], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-30T15:59:05Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "school", - "social_facility" - ], - "building": [ - "yes", - "house", - "school", - "roof" - ], - "source:geometry:ref": [ - "Gbg/3188463", - "Gbg/3188464", - "Gbg/3188465", - "Gbg/3188466", - "Gbg/3188467", - "Gbg/3188468", - "Gbg/3188462", - "Gbg/3188461", - "Gbg/3188512", - "Gbg/3188511", - "Gbg/5740828", - "Gbg/5740863", - "Gbg/3188848", - "Gbg/6187394", - "Gbg/3188509", - "Gbg/5740861", - "Gbg/6684401", - "Gbg/5740864" - ], - "source:geometry:date": [ - "2011-09-09", - "2021-11-03", - "2016-11-17", - "2019-10-22" - ] - }, - "create": 1248, - "modify": 93, - "delete": 0, - "area": 0.0000113769203199947, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 88, - "theme": "grb", - "import": 191, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "conflation": 38 - }, - "id": 123051593 - } - }, - { - "id": 123051545, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.510061, - 51.0951197 - ], - [ - 4.5112118, - 51.0951197 - ], - [ - 4.5112118, - 51.0965459 - ], - [ - 4.510061, - 51.0965459 - ], - [ - 4.510061, - 51.0951197 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-30T15:58:02Z", - "reviewed_features": [], - "tag_changes": { - "office": [ - "union" - ], - "amenity": [ - "school", - "social_facility" - ], - "building": [ - "house", - "school", - "yes" - ], - "source:geometry:ref": [ - "Gbg/3188503" - ], - "source:geometry:date": [ - "2016-11-17" - ] - }, - "create": 52, - "modify": 40, - "delete": 0, - "area": 0.00000164127096000454, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 39, - "theme": "grb", - "import": 2, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "conflation": 2 - }, - "id": 123051545 - } - }, - { - "id": 123049927, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2013467, - 51.1861083 - ], - [ - 3.2052964, - 51.1861083 - ], - [ - 3.2052964, - 51.1882058 - ], - [ - 3.2013467, - 51.1882058 - ], - [ - 3.2013467, - 51.1861083 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Hopperpop", - "uid": "3664604", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #education", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-30T15:16:02Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "college" - ], - "school:gender": [ - "mixed" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.00000828449574999099, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/education", - "theme": "education", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 123049927 - } - }, - { - "id": 123049737, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4969133, - 52.5134543 - ], - [ - 13.5026875, - 52.5134543 - ], - [ - 13.5026875, - 52.5159314 - ], - [ - 13.4969133, - 52.5159314 - ], - [ - 13.4969133, - 52.5134543 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "JayMClichtenberg", - "uid": "16411989", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-30T15:11:12Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-06-30", - "2021-06-29" - ], - "pump:status": [ - "broken" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000143032708200036, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 4, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123049737 - } - }, - { - "id": 123047271, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.9143375, - 45.7477523 - ], - [ - 11.0305442, - 45.7477523 - ], - [ - 11.0305442, - 45.7814051 - ], - [ - 10.9143375, - 45.7814051 - ], - [ - 10.9143375, - 45.7477523 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Luca 7213", - "uid": "6604740", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-06-30T14:08:33Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 4, - "modify": 0, - "delete": 0, - "area": 0.00391068083375983, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 1, - "create": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 123047271 - } - }, - { - "id": 123046909, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2485726, - 50.7246783 - ], - [ - 4.2485726, - 50.7246783 - ], - [ - 4.2485726, - 50.7246783 - ], - [ - 4.2485726, - 50.7246783 - ], - [ - 4.2485726, - 50.7246783 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-30T13:58:38Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 4, - "create": 1, - "locale": "en", - "imagery": "AGIV", - "change_over_5000m": 1, - "change_within_5000m": 4 - }, - "id": 123046909 - } - }, - { - "id": 123039312, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.264015, - 53.2121552 - ], - [ - 6.264015, - 53.2121552 - ], - [ - 6.264015, - 53.2121552 - ], - [ - 6.264015, - 53.2121552 - ], - [ - 6.264015, - 53.2121552 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-30T10:45:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 123039312 - } - }, - { - "id": 123038116, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2635859, - 53.2048097 - ], - [ - 6.2635859, - 53.2048097 - ], - [ - 6.2635859, - 53.2048097 - ], - [ - 6.2635859, - 53.2048097 - ], - [ - 6.2635859, - 53.2048097 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-30T10:14:30Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/HW5FnHc.jpg" - ], - "amenity": [ - "waste_basket" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 123038116 - } - }, - { - "id": 123037903, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2633648, - 53.204791 - ], - [ - 6.263577, - 53.204791 - ], - [ - 6.263577, - 53.2048875 - ], - [ - 6.2633648, - 53.2048875 - ], - [ - 6.2633648, - 53.204791 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-30T10:09:24Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/L054lh4.jpg", - "https://i.imgur.com/Ui472ey.jpg" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 2.04772999995636e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "move": 1, - "theme": "benches", - "locale": "en", - "imagery": "osm", - "add-image": 2, - "change_within_25m": 3, - "move:node/9785285079": "improve_accuracy" - }, - "id": 123037903 - } - }, - { - "id": 123031977, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5588303, - 53.0178338 - ], - [ - 6.5588748, - 53.0178338 - ], - [ - 6.5588748, - 53.0178713 - ], - [ - 6.5588303, - 53.0178713 - ], - [ - 6.5588303, - 53.0178338 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-30T07:41:45Z", - "reviewed_features": [], - "tag_changes": { - "tactile_paving": [ - "no" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.66875000019695e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/kerbs-crossings/kerbs_and_crossings.html", - "theme": "kerbs_and_crossings", - "answer": 3, - "create": 2, - "locale": "nl", - "imagery": "osm", - "change_within_1000m": 3 - }, - "id": 123031977 - } - }, - { - "id": 123023415, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.0251903, - 47.5533321 - ], - [ - 10.0251903, - 47.5533321 - ], - [ - 10.0251903, - 47.5533321 - ], - [ - 10.0251903, - 47.5533321 - ], - [ - 10.0251903, - 47.5533321 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-30T00:42:59Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/EI4LgYQ.jpg" - ], - "amenity": [ - "charging_station" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 1 - }, - "id": 123023415 - } - }, - { - "id": 123023332, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.0251696, - 47.5537683 - ], - [ - 10.0251696, - 47.5537683 - ], - [ - 10.0251696, - 47.5537683 - ], - [ - 10.0251696, - 47.5537683 - ], - [ - 10.0251696, - 47.5537683 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-06-30T00:32:43Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/Not0wk9.jpg" - ], - "amenity": [ - "toilets" - ], - "wheelchair": [ - "yes" - ], - "changing_table": [ - "yes" - ], - "toilets:position": [ - "seated;urinal" - ], - "toilets:handwashing": [ - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 4, - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 5 - }, - "id": 123023332 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-01.json b/Docs/Tools/stats/stats.2022-7-01.json deleted file mode 100644 index 3af24cbb93..0000000000 --- a/Docs/Tools/stats/stats.2022-7-01.json +++ /dev/null @@ -1,3461 +0,0 @@ -{ - "features": [ - { - "id": 123102504, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.606635, - 47.7848261 - ], - [ - 9.6067662, - 47.7848261 - ], - [ - 9.6067662, - 47.7849155 - ], - [ - 9.606635, - 47.7849155 - ], - [ - 9.606635, - 47.7848261 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T21:58:48Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/uiGbcfW.jpg" - ], - "access": [ - "yes" - ], - "amenity": [ - "toilets" - ], - "building": [ - "toilets" - ], - "toilets:handwashing": [ - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.17292799998923e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 2, - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 123102504 - } - }, - { - "id": 123102333, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.6066708, - 47.7848909 - ], - [ - 9.6068181, - 47.7848909 - ], - [ - 9.6068181, - 47.7849922 - ], - [ - 9.6066708, - 47.7849922 - ], - [ - 9.6066708, - 47.7848909 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T21:51:11Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/Ctx0k5z.jpg" - ], - "amenity": [ - "bicycle_parking" - ], - "building": [ - "bicycle_parking" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.49214899995942e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 123102333 - } - }, - { - "id": 123102060, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.6049025, - 47.7834979 - ], - [ - 9.6055492, - 47.7834979 - ], - [ - 9.6055492, - 47.7841719 - ], - [ - 9.6049025, - 47.7841719 - ], - [ - 9.6049025, - 47.7834979 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #parkings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T21:38:56Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/FFpAm1I.jpg" - ], - "amenity": [ - "parking" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 4.35875799998267e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/parkings.html", - "theme": "parkings", - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 123102060 - } - }, - { - "id": 123101845, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2614436, - 53.2052951 - ], - [ - 6.2614436, - 53.2052951 - ], - [ - 6.2614436, - 53.2052951 - ], - [ - 6.2614436, - 53.2052951 - ], - [ - 6.2614436, - 53.2052951 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T21:30:43Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ], - "toilets:paper_supplied": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_1000m": 1 - }, - "id": 123101845 - } - }, - { - "id": 123101816, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2614436, - 53.2052951 - ], - [ - 6.2766056, - 53.2052951 - ], - [ - 6.2766056, - 53.2135149 - ], - [ - 6.2614436, - 53.2135149 - ], - [ - 6.2614436, - 53.2052951 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T21:29:34Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "charging_station" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.000124628607599988, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 4, - "locale": "nl", - "imagery": "osm", - "change_within_500m": 1, - "change_within_1000m": 3 - }, - "id": 123101816 - } - }, - { - "id": 123099712, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1990302, - 51.3326933 - ], - [ - 3.2015021, - 51.3326933 - ], - [ - 3.2015021, - 51.3335272 - ], - [ - 3.1990302, - 51.3335272 - ], - [ - 3.1990302, - 51.3326933 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T20:05:58Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/FGnA00u.jpg" - ], - "seats": [ - "20" - ], - "colour": [ - "gray" - ], - "amenity": [ - "bench" - ], - "direction": [ - "156" - ], - "survey:date": [ - "2022-07-01" - ] - }, - "create": 2, - "modify": 5, - "delete": 0, - "area": 0.00000206131740999087, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 16, - "create": 2, - "locale": "nl", - "imagery": "AGIV", - "add-image": 3, - "change_over_5000m": 2, - "change_within_25m": 19 - }, - "id": 123099712 - } - }, - { - "id": 123099673, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 72.803851, - 11.9180455 - ], - [ - 95.3110835, - 11.9180455 - ], - [ - 95.3110835, - 28.645127 - ], - [ - 72.803851, - 28.645127 - ], - [ - 72.803851, - 11.9180455 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-01T20:04:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 16, - "delete": 0, - "area": 376.480312366949, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 16, - "locale": "en", - "imagery": "osm" - }, - "id": 123099673 - } - }, - { - "id": 123098929, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.2558073, - 46.89458 - ], - [ - 8.4656997, - 46.89458 - ], - [ - 8.4656997, - 46.9974299 - ], - [ - 8.2558073, - 46.9974299 - ], - [ - 8.2558073, - 46.89458 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 87, - "name": "Irrelevant tags on highway" - } - ], - "tags": [], - "features": [ - { - "url": "node-471295293", - "name": "Buochs", - "osm_id": 471295293, - "reasons": [ - 87 - ], - "version": 12, - "primary_tags": { - "highway": "motorway_junction" - } - } - ], - "user": "LeTopographeFou", - "uid": "3178375", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-01T19:39:25Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "motorway_junction", - "secondary", - "unclassified", - "residential", - "tertiary", - "living_street" - ], - "name:etymology:wikidata": [ - "Q63964", - "Q64567", - "Q63931", - "Q64108", - "Q43246", - "Q99367828", - "Q69140", - "Q2169139" - ] - }, - "create": 0, - "modify": 101, - "delete": 0, - "area": 0.0215874123507605, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 174, - "locale": "fr", - "imagery": "osm" - }, - "id": 123098929 - } - }, - { - "id": 123098867, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.3660334, - 46.9573002 - ], - [ - 8.3678968, - 46.9573002 - ], - [ - 8.3678968, - 46.9586627 - ], - [ - 8.3660334, - 46.9586627 - ], - [ - 8.3660334, - 46.9573002 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LeTopographeFou", - "uid": "3178375", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-01T19:38:02Z", - "reviewed_features": [], - "tag_changes": { - "waste": [ - "trash" - ], - "amenity": [ - "waste_basket" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000253888249999998, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "theme": "waste_basket", - "answer": 3, - "locale": "fr", - "imagery": "osm" - }, - "id": 123098867 - } - }, - { - "id": 123098816, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.36547, - 46.9572396 - ], - [ - 8.3655354, - 46.9572396 - ], - [ - 8.3655354, - 46.9572806 - ], - [ - 8.36547, - 46.9572806 - ], - [ - 8.36547, - 46.9572396 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LeTopographeFou", - "uid": "3178375", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-01T19:36:45Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ], - "building": [ - "yes" - ], - "toilets:handwashing": [ - "yes" - ], - "toilets:paper_supplied": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 2.68139999975378e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 2, - "locale": "fr", - "imagery": "osm" - }, - "id": 123098816 - } - }, - { - "id": 123098781, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.3646258, - 46.9572396 - ], - [ - 8.3655354, - 46.9572396 - ], - [ - 8.3655354, - 46.9611766 - ], - [ - 8.3646258, - 46.9611766 - ], - [ - 8.3646258, - 46.9572396 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LeTopographeFou", - "uid": "3178375", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-01T19:35:58Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "toilets" - ], - "toilets:paper_supplied": [ - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000035810952000003, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 3, - "locale": "fr", - "imagery": "osm" - }, - "id": 123098781 - } - }, - { - "id": 123097417, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3512251, - 52.5722782 - ], - [ - 13.3731231, - 52.5722782 - ], - [ - 13.3731231, - 52.5749204 - ], - [ - 13.3512251, - 52.5749204 - ], - [ - 13.3512251, - 52.5722782 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T18:50:30Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ] - }, - "create": 3, - "modify": 0, - "delete": 0, - "area": 0.0000578588956000865, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 11, - "create": 3, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 3, - "change_within_25m": 11 - }, - "id": 123097417 - } - }, - { - "id": 123097318, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T18:46:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 1, - "locale": "de", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 123097318 - } - }, - { - "id": 123097310, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T18:46:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 1, - "locale": "de", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 123097310 - } - }, - { - "id": 123097301, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T18:46:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 1, - "locale": "de", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 123097301 - } - }, - { - "id": 123097297, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T18:46:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 1, - "locale": "de", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 123097297 - } - }, - { - "id": 123097150, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3480489, - 52.5752399 - ], - [ - 13.3487399, - 52.5752399 - ], - [ - 13.3487399, - 52.5758365 - ], - [ - 13.3480489, - 52.5758365 - ], - [ - 13.3480489, - 52.5752399 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T18:41:46Z", - "reviewed_features": [], - "tag_changes": { - "ref": [ - "61" - ], - "highway": [ - "street_lamp" - ], - "support": [ - "pole" - ], - "light:lit": [ - "dusk-dawn" - ], - "lamp_mount": [ - "bent_mast" - ], - "light:count": [ - "9" - ], - "light:method": [ - "gas" - ] - }, - "create": 2, - "modify": 4, - "delete": 0, - "area": 4.12250600000903e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 17, - "create": 2, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 17 - }, - "id": 123097150 - } - }, - { - "id": 123097070, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3480489, - 52.57561 - ], - [ - 13.3492394, - 52.57561 - ], - [ - 13.3492394, - 52.5758365 - ], - [ - 13.3480489, - 52.5758365 - ], - [ - 13.3480489, - 52.57561 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T18:38:28Z", - "reviewed_features": [], - "tag_changes": { - "ref": [ - "62" - ], - "highway": [ - "street_lamp" - ], - "light:lit": [ - "dusk-dawn" - ], - "light:count": [ - "9" - ], - "light:method": [ - "gas" - ] - }, - "create": 0, - "modify": 4, - "delete": 1, - "area": 2.69648250004355e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 10, - "locale": "de", - "imagery": "osm", - "deletion": 1, - "change_within_25m": 11, - "deletion:node/9725266729": "duplicate" - }, - "id": 123097070 - } - }, - { - "id": 123097044, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3492207, - 52.5756478 - ], - [ - 13.3492394, - 52.5756478 - ], - [ - 13.3492394, - 52.5758229 - ], - [ - 13.3492207, - 52.5758229 - ], - [ - 13.3492207, - 52.5756478 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T18:37:41Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ], - "light:lit": [ - "dusk-dawn" - ], - "light:count": [ - "4" - ], - "light:method": [ - "gas" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 3.27437000000429e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 5, - "locale": "de", - "imagery": "osm", - "change_within_25m": 5 - }, - "id": 123097044 - } - }, - { - "id": 123096956, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.266119, - 50.7345064 - ], - [ - 6.009517, - 50.7345064 - ], - [ - 6.009517, - 51.120755 - ], - [ - 3.266119, - 51.120755 - ], - [ - 3.266119, - 50.7345064 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Stijn Matthys", - "uid": "1862147", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T18:34:27Z", - "reviewed_features": [], - "tag_changes": { - "bus": [ - "no" - ], - "hgv": [ - "no" - ], - "amenity": [ - "charging_station" - ], - "bicycle": [ - "no" - ], - "maxstay": [ - "unlimited" - ], - "network": [ - "Allego" - ], - "scooter": [ - "no" - ], - "motorcar": [ - "yes" - ], - "parking:fee": [ - "yes", - "no" - ], - "payment:app": [ - "yes", - "no" - ], - "payment:cash": [ - "no" - ], - "socket:type2": [ - "2" - ], - "opening_hours": [ - "24/7" - ], - "payment:cards": [ - "no" - ], - "brand:wikidata": [ - "Q75560554" - ], - "payment:membership_card": [ - "yes" - ] - }, - "create": 2, - "modify": 24, - "delete": 0, - "area": 1.0596336367428, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 34, - "create": 2, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 3, - "change_over_5000m": 2, - "change_within_500m": 20 - }, - "id": 123096956 - } - }, - { - "id": 123096733, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3489755, - 52.5758229 - ], - [ - 13.3492207, - 52.5758229 - ], - [ - 13.3492207, - 52.5763354 - ], - [ - 13.3489755, - 52.5763354 - ], - [ - 13.3489755, - 52.5758229 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T18:27:16Z", - "reviewed_features": [], - "tag_changes": { - "ref": [ - "59", - "56", - "57" - ], - "highway": [ - "street_lamp" - ], - "support": [ - "pole" - ], - "light:lit": [ - "dusk-dawn" - ], - "lamp_mount": [ - "straight_mast" - ], - "light:count": [ - "4" - ], - "light:colour": [ - "orange" - ], - "light:method": [ - "gas", - "mercury" - ] - }, - "create": 0, - "modify": 7, - "delete": 0, - "area": 1.25664999999902e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 19, - "locale": "de", - "imagery": "osm", - "change_within_25m": 19 - }, - "id": 123096733 - } - }, - { - "id": 123096629, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3493729, - 52.5755092 - ], - [ - 13.3495681, - 52.5755092 - ], - [ - 13.3495681, - 52.5758967 - ], - [ - 13.3493729, - 52.5758967 - ], - [ - 13.3493729, - 52.5755092 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T18:22:50Z", - "reviewed_features": [], - "tag_changes": { - "ref": [ - "52", - "55" - ], - "highway": [ - "street_lamp" - ], - "support": [ - "pole" - ], - "light:lit": [ - "dusk-dawn" - ], - "lamp_mount": [ - "bent_mast", - "straight_mast" - ], - "light:count": [ - "9", - "4" - ], - "light:method": [ - "gas" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 7.56400000005406e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 15, - "locale": "de", - "imagery": "osm", - "change_within_25m": 15 - }, - "id": 123096629 - } - }, - { - "id": 123096481, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.349437, - 52.5753605 - ], - [ - 13.3511945, - 52.5753605 - ], - [ - 13.3511945, - 52.5755092 - ], - [ - 13.349437, - 52.5755092 - ], - [ - 13.349437, - 52.5753605 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T18:17:39Z", - "reviewed_features": [], - "tag_changes": { - "ref": [ - "48", - "46", - "44", - "50" - ], - "highway": [ - "street_lamp" - ], - "support": [ - "pole" - ], - "light:lit": [ - "dusk-dawn" - ], - "lamp_mount": [ - "bent_mast" - ], - "light:count": [ - "9" - ], - "light:method": [ - "gas" - ] - }, - "create": 0, - "modify": 10, - "delete": 0, - "area": 2.61340249994551e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 28, - "locale": "de", - "imagery": "osm", - "change_within_25m": 28 - }, - "id": 123096481 - } - }, - { - "id": 123096440, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3511945, - 52.5753372 - ], - [ - 13.3516242, - 52.5753372 - ], - [ - 13.3516242, - 52.5753605 - ], - [ - 13.3511945, - 52.5753605 - ], - [ - 13.3511945, - 52.5753372 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T18:16:31Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ], - "light:lit": [ - "dusk-dawn" - ], - "light:count": [ - "9" - ], - "light:method": [ - "gas" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 1.00120100009739e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 4, - "locale": "de", - "imagery": "osm", - "change_within_25m": 4 - }, - "id": 123096440 - } - }, - { - "id": 123096273, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1723883, - 38.7879042 - ], - [ - 0.1723883, - 38.7879042 - ], - [ - 0.1723883, - 38.7879042 - ], - [ - 0.1723883, - 38.7879042 - ], - [ - 0.1723883, - 38.7879042 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T18:10:23Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "charging_station" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "create": 1, - "locale": "ca", - "imagery": "PNOA-Spain", - "change_over_5000m": 1 - }, - "id": 123096273 - } - }, - { - "id": 123095949, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3515054, - 52.57029 - ], - [ - 13.352942, - 52.57029 - ], - [ - 13.352942, - 52.5753372 - ], - [ - 13.3515054, - 52.5753372 - ], - [ - 13.3515054, - 52.57029 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T17:58:19Z", - "reviewed_features": [], - "tag_changes": { - "ref": [ - "34", - "36", - "30", - "32", - "10", - "38" - ], - "highway": [ - "street_lamp" - ], - "support": [ - "pole" - ], - "light:lit": [ - "dusk-dawn" - ], - "lamp_mount": [ - "bent_mast" - ], - "light:count": [ - "9", - "2" - ], - "light:colour": [ - "orange" - ], - "light:method": [ - "gas" - ] - }, - "create": 5, - "modify": 22, - "delete": 0, - "area": 0.00000725080751999937, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 55, - "create": 5, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 5, - "change_within_25m": 55 - }, - "id": 123095949 - } - }, - { - "id": 123095673, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 43.8455725, - 56.2394391 - ], - [ - 43.8656933, - 56.2394391 - ], - [ - 43.8656933, - 56.2429602 - ], - [ - 43.8455725, - 56.2429602 - ], - [ - 43.8455725, - 56.2394391 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "alexashh", - "uid": "9054103", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T17:48:23Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/oosJDfP.jpg", - "https://i.imgur.com/KKWGvmf.jpg", - "https://i.imgur.com/qU8VYuB.jpg", - "https://i.imgur.com/KFpUVks.jpg" - ], - "access": [ - "yes" - ], - "amenity": [ - "bicycle_parking" - ], - "capacity": [ - "20" - ] - }, - "create": 3, - "modify": 10, - "delete": 0, - "area": 0.0000708473488799857, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 20, - "create": 3, - "locale": "ru", - "imagery": "CartoDB.Voyager", - "add-image": 6, - "change_over_5000m": 3, - "change_within_25m": 25 - }, - "id": 123095673 - } - }, - { - "id": 123095409, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 43.8455725, - 56.2429602 - ], - [ - 43.8455725, - 56.2429602 - ], - [ - 43.8455725, - 56.2429602 - ], - [ - 43.8455725, - 56.2429602 - ], - [ - 43.8455725, - 56.2429602 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "alexashh", - "uid": "9054103", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-01T17:39:52Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "bicycle_parking" - ], - "covered": [ - "no" - ], - "capacity": [ - "5" - ], - "bicycle_parking": [ - "stands" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 4, - "locale": "ru", - "imagery": "CartoDB.Voyager" - }, - "id": 123095409 - } - }, - { - "id": 123094059, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1103993, - 48.7279843 - ], - [ - 9.1109655, - 48.7279843 - ], - [ - 9.1109655, - 48.7285204 - ], - [ - 9.1103993, - 48.7285204 - ], - [ - 9.1103993, - 48.7279843 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T16:57:59Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/BIIqhz7.jpg", - "https://i.imgur.com/WLkCKag.jpg", - "https://i.imgur.com/6fksA7o.jpg" - ], - "tourism": [ - "artwork" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 3.0353981999964e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "locale": "de", - "imagery": "osm", - "add-image": 3 - }, - "id": 123094059 - } - }, - { - "id": 123093627, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2182705, - 48.0879841 - ], - [ - 9.2188342, - 48.0879841 - ], - [ - 9.2188342, - 48.0882766 - ], - [ - 9.2182705, - 48.0882766 - ], - [ - 9.2182705, - 48.0879841 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #parkings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T16:45:02Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/5BaEVwW.jpg" - ], - "amenity": [ - "parking" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.64882250000478e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/parkings.html", - "theme": "parkings", - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 123093627 - } - }, - { - "id": 123093379, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1118259, - 48.726658 - ], - [ - 9.1118259, - 48.726658 - ], - [ - 9.1118259, - 48.726658 - ], - [ - 9.1118259, - 48.726658 - ], - [ - 9.1118259, - 48.726658 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T16:36:36Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/lzdeTHP.jpg" - ], - "amenity": [ - "toilets" - ], - "payment:cash": [ - "yes" - ], - "opening_hours": [ - "24/7" - ], - "payment:cards": [ - "no" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 2, - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 123093379 - } - }, - { - "id": 123087824, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4465267, - 52.54192 - ], - [ - 13.4465267, - 52.54192 - ], - [ - 13.4465267, - 52.54192 - ], - [ - 13.4465267, - 52.54192 - ], - [ - 13.4465267, - 52.54192 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Annika_atip:tap", - "uid": "15923056", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-01T13:50:56Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "drinking_water" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 123087824 - } - }, - { - "id": 123087463, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.5931178, - 50.3632604 - ], - [ - 7.6049016, - 50.3632604 - ], - [ - 7.6049016, - 50.3640589 - ], - [ - 7.5931178, - 50.3640589 - ], - [ - 7.5931178, - 50.3632604 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "kjon", - "uid": "44217", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-01T13:40:54Z", - "reviewed_features": [], - "tag_changes": { - "flickr": [ - "https://www.flickr.com/photos/28577026@N02/43997133060" - ], - "tourism": [ - "artwork" - ], - "wikimedia_commons": [ - "File:KO Bernar Venet Steel Arc.JPG" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000940936430002258, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "locale": "de", - "imagery": "osm", - "link-image": 2 - }, - "id": 123087463 - } - }, - { - "id": 123086886, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4181462, - 52.532719 - ], - [ - 13.4185991, - 52.532719 - ], - [ - 13.4185991, - 52.5330975 - ], - [ - 13.4181462, - 52.5330975 - ], - [ - 13.4181462, - 52.532719 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T13:23:41Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ], - "support": [ - "pole" - ], - "lamp_mount": [ - "straight_mast" - ], - "light:count": [ - "2" - ], - "light:method": [ - "incandescent" - ] - }, - "create": 2, - "modify": 4, - "delete": 0, - "area": 1.71422649998073e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 11, - "create": 2, - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 2, - "change_within_25m": 12 - }, - "id": 123086886 - } - }, - { - "id": 123085602, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5578251, - 53.2164783 - ], - [ - 6.5581499, - 53.2164783 - ], - [ - 6.5581499, - 53.2165313 - ], - [ - 6.5578251, - 53.2165313 - ], - [ - 6.5578251, - 53.2164783 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T12:49:30Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/FkbpIAU.jpg", - "https://i.imgur.com/cXrjy3N.jpg" - ], - "natural": [ - "tree" - ], - "leaf_cycle": [ - "deciduous" - ] - }, - "create": 3, - "modify": 9, - "delete": 0, - "area": 1.72144000004111e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 10, - "create": 3, - "locale": "en", - "imagery": "Actueel_orthoHR_WMTS", - "add-image": 2, - "change_over_5000m": 3, - "change_within_25m": 12 - }, - "id": 123085602 - } - }, - { - "id": 123085581, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5578491, - 53.2164214 - ], - [ - 6.5578491, - 53.2164214 - ], - [ - 6.5578491, - 53.2164214 - ], - [ - 6.5578491, - 53.2164214 - ], - [ - 6.5578491, - 53.2164214 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T12:48:59Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "Actueel_orthoHR_WMTS", - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 123085581 - } - }, - { - "id": 123085423, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5579427, - 53.2164358 - ], - [ - 6.5581787, - 53.2164358 - ], - [ - 6.5581787, - 53.216573 - ], - [ - 6.5579427, - 53.216573 - ], - [ - 6.5579427, - 53.2164358 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T12:44:04Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 5, - "modify": 6, - "delete": 0, - "area": 3.23791999994286e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 12, - "create": 5, - "locale": "en", - "imagery": "Actueel_orthoHR_WMTS", - "change_over_5000m": 5, - "change_within_25m": 12 - }, - "id": 123085423 - } - }, - { - "id": 123085257, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.0211251, - 47.5541624 - ], - [ - 10.0211251, - 47.5541624 - ], - [ - 10.0211251, - 47.5541624 - ], - [ - 10.0211251, - 47.5541624 - ], - [ - 10.0211251, - 47.5541624 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T12:38:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 1, - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 123085257 - } - }, - { - "id": 123085164, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T12:35:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 123085164 - } - }, - { - "id": 123078949, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3794023, - 52.5095536 - ], - [ - 13.3794023, - 52.5095536 - ], - [ - 13.3794023, - 52.5095536 - ], - [ - 13.3794023, - 52.5095536 - ], - [ - 13.3794023, - 52.5095536 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Annika_atip:tap", - "uid": "15923056", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-01T09:59:05Z", - "reviewed_features": [], - "tag_changes": { - "bottle": [ - "yes" - ], - "amenity": [ - "drinking_water" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 123078949 - } - }, - { - "id": 123073629, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.6435579, - 47.9524817 - ], - [ - 9.6435579, - 47.9524817 - ], - [ - 9.6435579, - 47.9524817 - ], - [ - 9.6435579, - 47.9524817 - ], - [ - 9.6435579, - 47.9524817 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T07:50:06Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/NJ1xRg8.jpg" - ], - "amenity": [ - "toilets" - ], - "payment:cash": [ - "yes" - ], - "payment:cards": [ - "no" - ], - "toilets:handwashing": [ - "yes" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 2, - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 123073629 - } - }, - { - "id": 123073404, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1000365, - 38.8280344 - ], - [ - 0.1074928, - 38.8280344 - ], - [ - 0.1074928, - 38.8307725 - ], - [ - 0.1000365, - 38.8307725 - ], - [ - 0.1000365, - 38.8280344 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T07:44:47Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "no" - ], - "image": [ - "https://i.imgur.com/Yv79pjd.jpg" - ], - "amenity": [ - "recycling" - ], - "highway": [ - "residential" - ], - "surface": [ - "asphalt" - ], - "location": [ - "overground" - ], - "maxspeed": [ - "30" - ], - "operator": [ - "Urbarser" - ], - "sidewalk": [ - "both", - "no" - ], - "smoothness": [ - "good" - ], - "cycleway:both": [ - "no" - ], - "maxspeed:type": [ - "sign", - "ES:urban" - ], - "recycling:glass": [ - "yes" - ], - "recycling:newspaper": [ - "yes" - ], - "sidewalk:both:surface": [ - "paving_stones" - ], - "recycling:plastic_bottles": [ - "yes" - ], - "recycling:beverage_cartons": [ - "yes" - ], - "recycling:plastic_packaging": [ - "yes" - ] - }, - "create": 3, - "modify": 7, - "delete": 0, - "area": 0.0000204160950300146, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 10, - "create": 3, - "locale": "ca", - "imagery": "PNOA-Spain", - "add-image": 5, - "change_over_5000m": 3, - "change_within_25m": 11, - "change_within_50m": 4 - }, - "id": 123073404 - } - }, - { - "id": 123073149, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.6174626, - 47.780908 - ], - [ - 9.6179803, - 47.780908 - ], - [ - 9.6179803, - 47.7812937 - ], - [ - 9.6174626, - 47.7812937 - ], - [ - 9.6174626, - 47.780908 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T07:38:16Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/lesbbkc.jpg" - ], - "leisure": [ - "playground" - ], - "surface": [ - "sand" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.99676890001141e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 1, - "locale": "es", - "imagery": "osm", - "add-image": 1 - }, - "id": 123073149 - } - }, - { - "id": 123071297, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.6160285, - 47.7799357 - ], - [ - 9.6160285, - 47.7799357 - ], - [ - 9.6160285, - 47.7799357 - ], - [ - 9.6160285, - 47.7799357 - ], - [ - 9.6160285, - 47.7799357 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T06:51:12Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/dHH8pQp.jpg" - ], - "amenity": [ - "charging_station" - ], - "maxstay": [ - "120 minutes" - ], - "payment:app": [ - "no" - ], - "payment:cash": [ - "no" - ], - "payment:cards": [ - "no" - ], - "payment:membership_card": [ - "yes" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 2, - "locale": "es", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 3 - }, - "id": 123071297 - } - }, - { - "id": 123068416, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 71.7628554, - 9.4445638 - ], - [ - 88.4566087, - 9.4445638 - ], - [ - 88.4566087, - 30.3954896 - ], - [ - 71.7628554, - 30.3954896 - ], - [ - 71.7628554, - 9.4445638 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-01T05:17:58Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "road" - ], - "highway": [ - "secondary", - "residential" - ], - "name:etymology:wikidata": [ - "Q9513" - ] - }, - "create": 0, - "modify": 144, - "delete": 0, - "area": 349.749586711805, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 190, - "locale": "en", - "imagery": "osm" - }, - "id": 123068416 - } - }, - { - "id": 123064756, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -86.1358909, - 39.992737 - ], - [ - -86.1357989, - 39.992737 - ], - [ - -86.1357989, - 39.9927653 - ], - [ - -86.1358909, - 39.9927653 - ], - [ - -86.1358909, - 39.992737 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Kanellar", - "uid": "16249964", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-01T00:21:44Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "drinking_water", - "bicycle_parking" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 2.60360000061914e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "move": 2, - "theme": "cyclofix", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_5000m": 5, - "move:node/2881241124": "improve_accuracy" - }, - "id": 123064756 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-02.json b/Docs/Tools/stats/stats.2022-7-02.json deleted file mode 100644 index 7c91435020..0000000000 --- a/Docs/Tools/stats/stats.2022-7-02.json +++ /dev/null @@ -1,1930 +0,0 @@ -{ - "features": [ - { - "id": 123132619, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3495036, - 52.5769612 - ], - [ - 13.3495036, - 52.5769612 - ], - [ - 13.3495036, - 52.5769612 - ], - [ - 13.3495036, - 52.5769612 - ], - [ - 13.3495036, - 52.5769612 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-02T20:37:21Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 6 - }, - "id": 123132619 - } - }, - { - "id": 123132507, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Moh glk", - "uid": "16199465", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-02T20:32:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "fr", - "imagery": "AGIV" - }, - "id": 123132507 - } - }, - { - "id": 123130543, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.3037003, - 48.9013841 - ], - [ - 2.3202, - 48.9013841 - ], - [ - 2.3202, - 48.9093199 - ], - [ - 2.3037003, - 48.9093199 - ], - [ - 2.3037003, - 48.9013841 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vincentxavier", - "uid": "15739", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-02T19:10:23Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential", - "secondary", - "unclassified" - ], - "maxspeed": [ - "30" - ] - }, - "create": 0, - "modify": 14, - "delete": 0, - "area": 0.000130938319259973, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "theme": "maxspeed", - "answer": 14, - "locale": "fr", - "imagery": "osm" - }, - "id": 123130543 - } - }, - { - "id": 123130500, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.3106976, - 48.900653 - ], - [ - 2.31104, - 48.900653 - ], - [ - 2.31104, - 48.9008521 - ], - [ - 2.3106976, - 48.9008521 - ], - [ - 2.3106976, - 48.900653 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vincentxavier", - "uid": "15739", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-02T19:08:54Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "public" - ], - "leisure": [ - "pitch" - ], - "surface": [ - "asphalt" - ], - "reservation": [ - "no" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 6.81718400011201e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "answer": 4, - "locale": "fr", - "imagery": "osm" - }, - "id": 123130500 - } - }, - { - "id": 123130452, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.3122323, - 48.9055118 - ], - [ - 2.31243, - 48.9055118 - ], - [ - 2.31243, - 48.9056411 - ], - [ - 2.3122323, - 48.9056411 - ], - [ - 2.3122323, - 48.9055118 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vincentxavier", - "uid": "15739", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-02T19:07:01Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "playground" - ], - "opening_hours": [ - "PH open;" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 2.55626099995414e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 1, - "locale": "fr", - "imagery": "osm" - }, - "id": 123130452 - } - }, - { - "id": 123130375, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.3116505, - 48.9051199 - ], - [ - 2.31243, - 48.9051199 - ], - [ - 2.31243, - 48.9056411 - ], - [ - 2.3116505, - 48.9056411 - ], - [ - 2.3116505, - 48.9051199 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vincentxavier", - "uid": "15739", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-02T19:03:50Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "no" - ], - "leisure": [ - "playground" - ], - "max_age": [ - "8" - ], - "min_age": [ - "3" - ], - "surface": [ - "woodchips", - "sand" - ], - "operator": [ - "Mairie de Clichy" - ], - "opening_hours": [ - "sunrise-sunset", - "Mo-Su 09:00-19:30;PH open;" - ] - }, - "create": 0, - "modify": 7, - "delete": 0, - "area": 4.06275399995667e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 12, - "locale": "fr", - "imagery": "osm" - }, - "id": 123130375 - } - }, - { - "id": 123130341, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.3117766, - 48.9051199 - ], - [ - 2.3121024, - 48.9051199 - ], - [ - 2.3121024, - 48.9053123 - ], - [ - 2.3117766, - 48.9053123 - ], - [ - 2.3117766, - 48.9051199 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vincentxavier", - "uid": "15739", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-02T19:02:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 6.26839199987214e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 6, - "locale": "fr", - "imagery": "osm" - }, - "id": 123130341 - } - }, - { - "id": 123130285, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.3172724, - 48.9018478 - ], - [ - 2.3172724, - 48.9018478 - ], - [ - 2.3172724, - 48.9018478 - ], - [ - 2.3172724, - 48.9018478 - ], - [ - 2.3172724, - 48.9018478 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vincentxavier", - "uid": "15739", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #bicycle_rental", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-02T19:00:21Z", - "reviewed_features": [], - "tag_changes": { - "rental": [ - "ebike;city_bike" - ], - "amenity": [ - "bicycle_rental" - ], - "payment:app": [ - "no" - ], - "payment:cash": [ - "no" - ], - "payment:cards": [ - "yes" - ], - "bicycle_rental": [ - "docking_station" - ], - "payment:membership_card": [ - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bicycle_rental.html", - "theme": "bicycle_rental", - "answer": 3, - "locale": "fr", - "imagery": "osm" - }, - "id": 123130285 - } - }, - { - "id": 123127334, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5578491, - 53.2164214 - ], - [ - 6.5579427, - 53.2164214 - ], - [ - 6.5579427, - 53.2164358 - ], - [ - 6.5578491, - 53.2164358 - ], - [ - 6.5578491, - 53.2164214 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-02T17:12:23Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "leaf_cycle": [ - "deciduous" - ], - "species:wikidata": [ - "Q157650" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 1.34783999978335e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 3 - }, - "id": 123127334 - } - }, - { - "id": 123127068, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ninopiña10", - "uid": "11138282", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-02T17:01:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 123127068 - } - }, - { - "id": 123124392, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.008867, - 51.1201825 - ], - [ - 6.009517, - 51.1201825 - ], - [ - 6.009517, - 51.120755 - ], - [ - 6.008867, - 51.120755 - ], - [ - 6.008867, - 51.1201825 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Stijn Matthys", - "uid": "1862147", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-02T15:33:58Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "yes" - ], - "ref": [ - "04003534/04003590", - "EVW00092/EVW00093" - ], - "email": [ - "info@ev-wise.com" - ], - "image": [ - "https://i.imgur.com/ykIcVC1.jpg" - ], - "phone": [ - "+318000294601" - ], - "amenity": [ - "charging_station" - ], - "network": [ - "ShellRecharge", - "EV Wise" - ], - "website": [ - "https://pay.shellrecharge.com/" - ], - "socket:type2:output": [ - "22 kW" - ] - }, - "create": 0, - "modify": 11, - "delete": 0, - "area": 3.72125000002296e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 10, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 123124392 - } - }, - { - "id": 123122965, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3727955, - 50.8652223 - ], - [ - 4.3768895, - 50.8652223 - ], - [ - 4.3768895, - 50.8671496 - ], - [ - 4.3727955, - 50.8671496 - ], - [ - 4.3727955, - 50.8652223 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "AussieMoose", - "uid": "8481916", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-02T14:53:25Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "bicycle_repair_station" - ], - "opening_hours": [ - "24/7" - ], - "service:bicycle:tools": [ - "no" - ], - "service:bicycle:pump:operational_status": [ - "broken" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.000007890366199994, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 5, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 123122965 - } - }, - { - "id": 123122612, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2967836, - 51.2315695 - ], - [ - 3.2968465, - 51.2315695 - ], - [ - 3.2968465, - 51.2316077 - ], - [ - 3.2967836, - 51.2316077 - ], - [ - 3.2967836, - 51.2315695 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-02T14:43:17Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/EyNpSFB.jpg" - ], - "amenity": [ - "charging_station", - "toilets" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 2.4027799999258e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 123122612 - } - }, - { - "id": 123120706, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2632479, - 51.2141668 - ], - [ - 3.2632479, - 51.2141668 - ], - [ - 3.2632479, - 51.2141668 - ], - [ - 3.2632479, - 51.2141668 - ], - [ - 3.2632479, - 51.2141668 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-02T13:48:40Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "bicycle" - ], - "image": [ - "https://i.imgur.com/ZCKqElV.jpg" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_50m": 1 - }, - "id": 123120706 - } - }, - { - "id": 123118856, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1457578, - 48.7505944 - ], - [ - 9.1457578, - 48.7505944 - ], - [ - 9.1457578, - 48.7505944 - ], - [ - 9.1457578, - 48.7505944 - ], - [ - 9.1457578, - 48.7505944 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-02T12:44:12Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/pw6JP0R.jpg" - ], - "amenity": [ - "toilets" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 123118856 - } - }, - { - "id": 123118741, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1456259, - 48.7505944 - ], - [ - 9.1457578, - 48.7505944 - ], - [ - 9.1457578, - 48.7507249 - ], - [ - 9.1456259, - 48.7507249 - ], - [ - 9.1456259, - 48.7505944 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-02T12:40:21Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ], - "toilets:paper_supplied": [ - "yes" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 1.72129500005273e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 6, - "locale": "de", - "imagery": "osm", - "change_within_25m": 6 - }, - "id": 123118741 - } - }, - { - "id": 123118710, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1456259, - 48.7507249 - ], - [ - 9.1456259, - 48.7507249 - ], - [ - 9.1456259, - 48.7507249 - ], - [ - 9.1456259, - 48.7507249 - ], - [ - 9.1456259, - 48.7507249 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-02T12:39:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 3, - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 4 - }, - "id": 123118710 - } - }, - { - "id": 123115749, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.9352727, - 43.3113341 - ], - [ - -3.9352727, - 43.3113341 - ], - [ - -3.9352727, - 43.3113341 - ], - [ - -3.9352727, - 43.3113341 - ], - [ - -3.9352727, - 43.3113341 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ninopiña10", - "uid": "11138282", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-02T10:55:13Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "drinking_water" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 123115749 - } - }, - { - "id": 123114381, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2335913, - 50.7345064 - ], - [ - 4.2335913, - 50.7345064 - ], - [ - 4.2335913, - 50.7345064 - ], - [ - 4.2335913, - 50.7345064 - ], - [ - 4.2335913, - 50.7345064 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Stijn Matthys", - "uid": "1862147", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-02T10:10:13Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "yes" - ], - "ref": [ - "BEALLEGO001858" - ], - "phone": [ - "+32 800 78 192" - ], - "access": [ - "yes" - ], - "amenity": [ - "charging_station" - ], - "maxstay": [ - "unlimited" - ], - "website": [ - "https://www.allego.eu/" - ], - "parking:fee": [ - "yes" - ], - "payment:app": [ - "yes" - ], - "payment:cash": [ - "no" - ], - "socket:type2": [ - "2" - ], - "payment:cards": [ - "no" - ], - "brand:wikidata": [ - "Q75560554" - ], - "socket:type2:output": [ - "11 kW" - ], - "payment:membership_card": [ - "yes" - ] - }, - "create": 0, - "modify": 8, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 12, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 123114381 - } - }, - { - "id": 123114043, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2215331, - 51.208375 - ], - [ - 3.2215331, - 51.208375 - ], - [ - 3.2215331, - 51.208375 - ], - [ - 3.2215331, - 51.208375 - ], - [ - 3.2215331, - 51.208375 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-02T10:00:47Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Jack Wolfskin", - "jack wolfskin" - ], - "shop": [ - "outdoor" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/shops.html", - "theme": "shops", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 123114043 - } - }, - { - "id": 123113517, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.6144978, - 47.7819559 - ], - [ - 9.6144978, - 47.7819559 - ], - [ - 9.6144978, - 47.7819559 - ], - [ - 9.6144978, - 47.7819559 - ], - [ - 9.6144978, - 47.7819559 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-02T09:42:28Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/e0lCzR9.jpg" - ], - "tourism": [ - "artwork" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 123113517 - } - }, - { - "id": 123113172, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.614654, - 47.7819341 - ], - [ - 9.614654, - 47.7819341 - ], - [ - 9.614654, - 47.7819341 - ], - [ - 9.614654, - 47.7819341 - ], - [ - 9.614654, - 47.7819341 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #bicycle_rental", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-02T09:31:49Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/C4uFzC5.jpg" - ], - "amenity": [ - "bicycle_rental" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bicycle_rental.html", - "theme": "bicycle_rental", - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 123113172 - } - }, - { - "id": 123112961, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7053477, - 51.0277952 - ], - [ - 3.7053477, - 51.0277952 - ], - [ - 3.7053477, - 51.0277952 - ], - [ - 3.7053477, - 51.0277952 - ], - [ - 3.7053477, - 51.0277952 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "velosophe", - "uid": "477861", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-02T09:26:16Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "surveillance" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 5, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 123112961 - } - }, - { - "id": 123112457, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.247939, - 52.7554902 - ], - [ - 13.2620746, - 52.7554902 - ], - [ - 13.2620746, - 52.7624618 - ], - [ - 13.247939, - 52.7624618 - ], - [ - 13.247939, - 52.7554902 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "SebastianFranz", - "uid": "16395555", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-02T09:09:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 27, - "modify": 26, - "delete": 0, - "area": 0.0000985477489599958, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123112457 - } - }, - { - "id": 123111262, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7028426, - 53.0771231 - ], - [ - 13.9823261, - 53.0771231 - ], - [ - 13.9823261, - 53.1742076 - ], - [ - 13.7028426, - 53.1742076 - ], - [ - 13.7028426, - 53.0771231 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Brandoberinspektor Erdmann", - "uid": "13364061", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-02T08:27:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 12, - "modify": 0, - "delete": 0, - "area": 0.0271335158557503, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123111262 - } - }, - { - "id": 123106267, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "MapTheWalk", - "uid": "10499594", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-02T04:18:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "climbing", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 123106267 - } - }, - { - "id": 123106266, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 103.8482125, - 1.3040605 - ], - [ - 103.8642452, - 1.3040605 - ], - [ - 103.8642452, - 1.3077853 - ], - [ - 103.8482125, - 1.3077853 - ], - [ - 103.8482125, - 1.3040605 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "MapTheWalk", - "uid": "10499594", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-02T04:18:42Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "yes" - ], - "highway": [ - "residential", - "footway", - "tertiary", - "pedestrian" - ] - }, - "create": 0, - "modify": 18, - "delete": 0, - "area": 0.0000597186009599854, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 18, - "locale": "en", - "imagery": "osm" - }, - "id": 123106266 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-03.json b/Docs/Tools/stats/stats.2022-7-03.json deleted file mode 100644 index cdcca0b94c..0000000000 --- a/Docs/Tools/stats/stats.2022-7-03.json +++ /dev/null @@ -1,2893 +0,0 @@ -{ - "features": [ - { - "id": 123167136, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -6.2161179, - 53.3089194 - ], - [ - -6.2161179, - 53.3089194 - ], - [ - -6.2161179, - 53.3089194 - ], - [ - -6.2161179, - 53.3089194 - ], - [ - -6.2161179, - 53.3089194 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "DIrish", - "uid": "12410778", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-03T23:24:00Z", - "reviewed_features": [], - "tag_changes": { - "waste": [ - "trash" - ], - "amenity": [ - "waste_basket" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "theme": "waste_basket", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_1000m": 1 - }, - "id": 123167136 - } - }, - { - "id": 123167114, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -6.2086915, - 53.30786 - ], - [ - -6.2086915, - 53.30786 - ], - [ - -6.2086915, - 53.30786 - ], - [ - -6.2086915, - 53.30786 - ], - [ - -6.2086915, - 53.30786 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "DIrish", - "uid": "12410778", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-03T23:22:09Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "bicycle_parking" - ], - "bicycle_parking": [ - "stands", - "rack" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_100m": 2 - }, - "id": 123167114 - } - }, - { - "id": 123167073, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -6.2083869, - 53.3081214 - ], - [ - -6.2083869, - 53.3081214 - ], - [ - -6.2083869, - 53.3081214 - ], - [ - -6.2083869, - 53.3081214 - ], - [ - -6.2083869, - 53.3081214 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "DIrish", - "uid": "12410778", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-03T23:18:36Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "backrest": [ - "yes" - ], - "material": [ - "wood" - ], - "direction": [ - "174" - ], - "survey:date": [ - "2022-07-03" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 4, - "locale": "en", - "imagery": "osm", - "change_within_100m": 4 - }, - "id": 123167073 - } - }, - { - "id": 123164586, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.3741275, - 48.5540099 - ], - [ - 9.3744414, - 48.5540099 - ], - [ - 9.3744414, - 48.5542547 - ], - [ - 9.3741275, - 48.5542547 - ], - [ - 9.3741275, - 48.5540099 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-03T20:41:29Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "no" - ], - "image": [ - "https://i.imgur.com/c7pnXD9.jpg" - ], - "leisure": [ - "playground" - ], - "max_age": [ - "14" - ], - "surface": [ - "woodchips" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 7.68427200013951e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 3, - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 123164586 - } - }, - { - "id": 123163942, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3594285, - 52.5658738 - ], - [ - 13.3594285, - 52.5658738 - ], - [ - 13.3594285, - 52.5658738 - ], - [ - 13.3594285, - 52.5658738 - ], - [ - 13.3594285, - 52.5658738 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-03T20:13:06Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 1, - "create": 1, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 123163942 - } - }, - { - "id": 123163740, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.3748032, - 48.0986304 - ], - [ - 9.7901422, - 48.0986304 - ], - [ - 9.7901422, - 48.554133 - ], - [ - 9.3748032, - 48.554133 - ], - [ - 9.3748032, - 48.0986304 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-03T20:04:57Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/zvKyd6y.jpg" - ], - "highway": [ - "residential" - ], - "tourism": [ - "artwork" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.189187994381401, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 2, - "locale": "de", - "imagery": "osm", - "add-image": 2 - }, - "id": 123163740 - } - }, - { - "id": 123163227, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3747986, - 52.5676015 - ], - [ - 13.375926, - 52.5676015 - ], - [ - 13.375926, - 52.5680848 - ], - [ - 13.3747986, - 52.5680848 - ], - [ - 13.3747986, - 52.5676015 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-03T19:45:15Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ], - "light:lit": [ - "dusk-dawn" - ], - "light:count": [ - "1" - ], - "light:method": [ - "gas" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 5.44872419998798e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 9, - "create": 2, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 9 - }, - "id": 123163227 - } - }, - { - "id": 123163219, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-03T19:45:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 1, - "locale": "de", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 123163219 - } - }, - { - "id": 123162947, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2156885, - 48.4903348 - ], - [ - 9.2157109, - 48.4903348 - ], - [ - 9.2157109, - 48.4903456 - ], - [ - 9.2156885, - 48.4903456 - ], - [ - 9.2156885, - 48.4903348 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-03T19:35:40Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/jvICoVr.jpg" - ], - "amenity": [ - "public_bookcase" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 2.41919999949964e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1 - }, - "id": 123162947 - } - }, - { - "id": 123162744, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3756681, - 52.5680848 - ], - [ - 13.3778496, - 52.5680848 - ], - [ - 13.3778496, - 52.5698178 - ], - [ - 13.3756681, - 52.5698178 - ], - [ - 13.3756681, - 52.5680848 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-03T19:27:29Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ] - }, - "create": 4, - "modify": 3, - "delete": 0, - "area": 0.00000378053950000153, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "move": 2, - "theme": "street_lighting", - "answer": 17, - "create": 4, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 4, - "change_within_25m": 19, - "move:node/8697947638": "improve_accuracy" - }, - "id": 123162744 - } - }, - { - "id": 123161219, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.377824, - 52.5587976 - ], - [ - 13.3827014, - 52.5587976 - ], - [ - 13.3827014, - 52.5701098 - ], - [ - 13.377824, - 52.5701098 - ], - [ - 13.377824, - 52.5587976 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Dignus est intrare", - "uid": "10343642", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-03T18:32:06Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ] - }, - "create": 2, - "modify": 3, - "delete": 0, - "area": 0.0000551741242799929, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "move": 1, - "theme": "street_lighting", - "answer": 14, - "create": 2, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 6, - "change_within_50m": 9, - "move:node/9864437530": "improve_accuracy" - }, - "id": 123161219 - } - }, - { - "id": 123158262, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4237184, - 52.5639202 - ], - [ - 13.4237184, - 52.5639202 - ], - [ - 13.4237184, - 52.5639202 - ], - [ - 13.4237184, - 52.5639202 - ], - [ - 13.4237184, - 52.5639202 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Tobias Moldenhauer", - "uid": "16439012", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-03T16:55:13Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-03" - ], - "pump:status": [ - "broken" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123158262 - } - }, - { - "id": 123157750, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3175, - 50.8520318 - ], - [ - 4.3176161, - 50.8520318 - ], - [ - 4.3176161, - 50.8520368 - ], - [ - 4.3175, - 50.8520368 - ], - [ - 4.3175, - 50.8520318 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-03T16:35:31Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 2, - "modify": 1, - "delete": 0, - "area": 5.80500000186796e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/benches.html", - "theme": "benches", - "answer": 4, - "create": 2, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 4 - }, - "id": 123157750 - } - }, - { - "id": 123157634, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3202102, - 50.8514867 - ], - [ - 4.3202102, - 50.8514867 - ], - [ - 4.3202102, - 50.8514867 - ], - [ - 4.3202102, - 50.8514867 - ], - [ - 4.3202102, - 50.8514867 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-03T16:31:02Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/XrT0Mx7.jpg" - ], - "bottle": [ - "yes" - ], - "amenity": [ - "drinking_water" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 123157634 - } - }, - { - "id": 123156215, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.41946, - 52.4790857 - ], - [ - 13.41946, - 52.4790857 - ], - [ - 13.41946, - 52.4790857 - ], - [ - 13.41946, - 52.4790857 - ], - [ - 13.41946, - 52.4790857 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Supaplex030", - "uid": "418040", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-03T15:45:06Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-03", - "2019-09-01" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123156215 - } - }, - { - "id": 123153738, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.5622452, - 52.4393887 - ], - [ - 13.569483, - 52.4393887 - ], - [ - 13.569483, - 52.4458415 - ], - [ - 13.5622452, - 52.4458415 - ], - [ - 13.5622452, - 52.4393887 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Kimkeriki", - "uid": "16438105", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-03T14:34:37Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-03" - ], - "pump:status": [ - "ok", - "broken" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000467040758399892, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 6, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123153738 - } - }, - { - "id": 123153198, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4321689, - 52.4788977 - ], - [ - 13.4380643, - 52.4788977 - ], - [ - 13.4380643, - 52.4798437 - ], - [ - 13.4321689, - 52.4798437 - ], - [ - 13.4321689, - 52.4788977 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "kjon", - "uid": "44217", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-03T14:20:14Z", - "reviewed_features": [], - "tag_changes": { - "flickr": [ - "https://www.flickr.com/photos/49828243@N08/36705719606" - ], - "tourism": [ - "artwork" - ], - "mapillary": [ - "809157710022314" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000557704840003601, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "locale": "de", - "imagery": "osm", - "link-image": 2 - }, - "id": 123153198 - } - }, - { - "id": 123149774, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4671956, - 51.065357 - ], - [ - 3.4746039, - 51.065357 - ], - [ - 3.4746039, - 51.0690765 - ], - [ - 3.4671956, - 51.0690765 - ], - [ - 3.4671956, - 51.065357 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-03T12:34:49Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/nHEPwRy.jpg", - "https://i.imgur.com/uDECgYi.jpg", - "https://i.imgur.com/I9pnd8C.jpg" - ], - "amenity": [ - "bench" - ], - "tourism": [ - "information" - ], - "material": [ - "wood" - ], - "survey:date": [ - "2022-07-03" - ] - }, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.0000275551718500181, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/nature.html", - "theme": "nature", - "answer": 6, - "locale": "nl", - "imagery": "osm", - "add-image": 3 - }, - "id": 123149774 - } - }, - { - "id": 123149564, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.320623, - 50.8489438 - ], - [ - 4.320623, - 50.8489438 - ], - [ - 4.320623, - 50.8489438 - ], - [ - 4.320623, - 50.8489438 - ], - [ - 4.320623, - 50.8489438 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-03T12:27:42Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_repair_station" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 123149564 - } - }, - { - "id": 123149162, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3294941, - 44.4871598 - ], - [ - 11.3299597, - 44.4871598 - ], - [ - 11.3299597, - 44.4877772 - ], - [ - 11.3294941, - 44.4877772 - ], - [ - 11.3294941, - 44.4871598 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "TheRukk", - "uid": "10061533", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-03T12:16:34Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "access": [ - "yes" - ], - "amenity": [ - "toilets" - ], - "toilets:paper_supplied": [ - "yes" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 2.87461439998124e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 3, - "locale": "it", - "imagery": "osm", - "change_within_1000m": 3 - }, - "id": 123149162 - } - }, - { - "id": 123149147, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3294941, - 44.4877373 - ], - [ - 11.3295574, - 44.4877373 - ], - [ - 11.3295574, - 44.4877772 - ], - [ - 11.3294941, - 44.4877772 - ], - [ - 11.3294941, - 44.4877373 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "TheRukk", - "uid": "10061533", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-03T12:16:07Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 2.52566999986072e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 3, - "locale": "it", - "imagery": "osm", - "change_within_1000m": 3 - }, - "id": 123149147 - } - }, - { - "id": 123149031, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3203651, - 44.490995 - ], - [ - 11.3209578, - 44.490995 - ], - [ - 11.3209578, - 44.4911406 - ], - [ - 11.3203651, - 44.4911406 - ], - [ - 11.3203651, - 44.490995 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "TheRukk", - "uid": "10061533", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-03T12:12:02Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "recycling" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 8.62971200020038e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 5, - "create": 2, - "locale": "it", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 3, - "change_within_50m": 2 - }, - "id": 123149031 - } - }, - { - "id": 123149004, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3289586, - 44.487725 - ], - [ - 11.330827, - 44.487725 - ], - [ - 11.330827, - 44.4879142 - ], - [ - 11.3289586, - 44.4879142 - ], - [ - 11.3289586, - 44.487725 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "TheRukk", - "uid": "10061533", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-03T12:10:46Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "indoor": [ - "yes" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 3.53501280002155e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 3, - "locale": "it", - "imagery": "osm", - "change_within_1000m": 3 - }, - "id": 123149004 - } - }, - { - "id": 123148929, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0965594, - 38.8252344 - ], - [ - 0.0965594, - 38.8252344 - ], - [ - 0.0965594, - 38.8252344 - ], - [ - 0.0965594, - 38.8252344 - ], - [ - 0.0965594, - 38.8252344 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-03T12:08:27Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "recycling" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "create": 1, - "locale": "ca", - "imagery": "PNOA-Spain-TMS", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 123148929 - } - }, - { - "id": 123148490, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 69.6160606, - 8.449521 - ], - [ - 88.4083417, - 8.449521 - ], - [ - 88.4083417, - 28.643877 - ], - [ - 69.6160606, - 28.643877 - ], - [ - 69.6160606, - 8.449521 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-03T11:57:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 170, - "delete": 0, - "area": 379.498014585472, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 213, - "locale": "en", - "imagery": "osm" - }, - "id": 123148490 - } - }, - { - "id": 123147389, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2363142, - 50.7315571 - ], - [ - 4.2363142, - 50.7315571 - ], - [ - 4.2363142, - 50.7315571 - ], - [ - 4.2363142, - 50.7315571 - ], - [ - 4.2363142, - 50.7315571 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-03T11:19:54Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "restaurant" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 4, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 123147389 - } - }, - { - "id": 123146240, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3094274, - 51.1985679 - ], - [ - 5.3094274, - 51.1985679 - ], - [ - 5.3094274, - 51.1985679 - ], - [ - 5.3094274, - 51.1985679 - ], - [ - 5.3094274, - 51.1985679 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mjans", - "uid": "5199038", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-03T10:37:50Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "import": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 1, - "import:node/9863653334": "source: https://osm.org/note/3044712" - }, - "id": 123146240 - } - }, - { - "id": 123146141, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.580949, - 55.7050132 - ], - [ - 12.5845862, - 55.7050132 - ], - [ - 12.5845862, - 55.7089575 - ], - [ - 12.580949, - 55.7089575 - ], - [ - 12.580949, - 55.7050132 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Niels Elgaard Larsen", - "uid": "1288", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-03T10:35:48Z", - "reviewed_features": [], - "tag_changes": { - "waste": [ - "trash;dog_excrement" - ], - "amenity": [ - "waste_basket" - ] - }, - "create": 2, - "modify": 1, - "delete": 0, - "area": 0.0000143462079599762, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "answer": 3, - "create": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 123146141 - } - }, - { - "id": 123140440, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.947887, - 51.1943 - ], - [ - 4.9601409, - 51.1943 - ], - [ - 4.9601409, - 51.208044 - ], - [ - 4.947887, - 51.208044 - ], - [ - 4.947887, - 51.1943 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-03T06:53:14Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes", - "shed", - "farm", - "barn", - "farm_auxiliary", - "roof" - ], - "addr:housenumber": [ - "1;3", - "1-3" - ], - "source:geometry:ref": [ - "Gbg/1715790", - "Gbg/1716024", - "Gbg/1715793", - "Gbg/6642428", - "Gbg/1715803", - "Gbg/1714935", - "Gbg/1714961", - "Gbg/6642516", - "Gbg/1714958", - "Gbg/5125466", - "Gbg/1714970", - "Gbg/6155054", - "Gbg/1714957", - "Gbg/1714968", - "Gbg/1714954", - "Gbg/1714949", - "Gbg/1715828", - "Gbg/1715830", - "Gbg/6148789", - "Gbg/1714956", - "Gbg/1714967", - "Gbg/1714966", - "Gbg/6150228", - "Gbg/1714963", - "Gbg/1714962", - "Gbg/1714959", - "Gbg/1714965", - "Gbg/1714960", - "Gba/112532", - "Gbg/5125467", - "Gbg/1714953", - "Gbg/5125489" - ], - "source:geometry:date": [ - "2009-11-20", - "2017-11-20", - "2019-07-09", - "2016-07-28", - "2015-03-30" - ] - }, - "create": 79, - "modify": 269, - "delete": 4, - "area": 0.000168417601600034, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 229, - "theme": "grb", - "answer": 10, - "delete": 4, - "import": 10, - "locale": "nl", - "imagery": "AGIV", - "conflation": 64 - }, - "id": 123140440 - } - }, - { - "id": 123140244, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9537241, - 51.2068044 - ], - [ - 4.9632136, - 51.2068044 - ], - [ - 4.9632136, - 51.2103981 - ], - [ - 4.9537241, - 51.2103981 - ], - [ - 4.9537241, - 51.2068044 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-03T06:42:21Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes", - "sty", - "barn", - "farm_auxiliary", - "farm", - "house", - "shed", - "roof" - ], - "man_made": [ - "silo", - "water_tower" - ], - "addr:housenumber": [ - "3" - ], - "source:geometry:ref": [ - "Gbg/5654894", - "Gbg/1714976", - "Gbg/1714974", - "Gbg/1714977", - "Gbg/1714973", - "Gbg/1715007", - "Gbg/5122418", - "Gbg/1714975", - "Gbg/6642465", - "Gbg/1714972", - "Gbg/5122574", - "Gbg/1715009", - "Gbg/1715008", - "Gbg/1715005", - "Gbg/6153396", - "Gbg/1715833", - "Gbg/1716021", - "Gbg/1715836", - "Gbg/1714990", - "Gbg/1715006", - "Gbg/5655815", - "Gbg/6641867", - "Gbg/1715832" - ], - "not:addr:housenumber": [ - "yes" - ], - "source:geometry:date": [ - "2021-07-05", - "2017-11-20", - "2009-11-20", - "2015-03-30", - "2019-07-09", - "2020-03-16", - "2016-07-28" - ] - }, - "create": 73, - "modify": 212, - "delete": 2, - "area": 0.0000341024161499632, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 183, - "theme": "grb", - "answer": 10, - "delete": 2, - "import": 6, - "locale": "nl", - "imagery": "AGIV", - "conflation": 46 - }, - "id": 123140244 - } - }, - { - "id": 123140240, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.2198577, - 52.5939629 - ], - [ - 13.2811389, - 52.5939629 - ], - [ - 13.2811389, - 52.7328226 - ], - [ - 13.2198577, - 52.7328226 - ], - [ - 13.2198577, - 52.5939629 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "SebastianFranz", - "uid": "16395555", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-03T06:42:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 9, - "modify": 4, - "delete": 0, - "area": 0.00850948904763983, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123140240 - } - }, - { - "id": 123140237, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9624682, - 51.2048815 - ], - [ - 4.9632976, - 51.2048815 - ], - [ - 4.9632976, - 51.2063507 - ], - [ - 4.9624682, - 51.2063507 - ], - [ - 4.9624682, - 51.2048815 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-03T06:41:53Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes" - ], - "source:geometry:ref": [ - "Gbg/6154728", - "Gbg/1714991" - ], - "source:geometry:date": [ - "2019-07-09", - "2009-11-20" - ] - }, - "create": 8, - "modify": 14, - "delete": 0, - "area": 0.00000121855448000172, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 12, - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "AGIV", - "conflation": 4 - }, - "id": 123140237 - } - }, - { - "id": 123140214, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 70.4638212, - 8.5873931 - ], - [ - 83.3786225, - 8.5873931 - ], - [ - 83.3786225, - 30.4692452 - ], - [ - 70.4638212, - 30.4692452 - ], - [ - 70.4638212, - 8.5873931 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-03T06:39:38Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "college" - ], - "name:etymology:wikidata": [ - "Q380148" - ] - }, - "create": 0, - "modify": 274, - "delete": 0, - "area": 282.599771947488, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 420, - "locale": "en", - "imagery": "osm" - }, - "id": 123140214 - } - }, - { - "id": 123139944, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9622981, - 51.201115 - ], - [ - 4.9675775, - 51.201115 - ], - [ - 4.9675775, - 51.2053087 - ], - [ - 4.9622981, - 51.2053087 - ], - [ - 4.9622981, - 51.201115 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-03T06:24:21Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes", - "barn", - "garage", - "farm", - "house", - "shed", - "roof" - ], - "source:geometry:ref": [ - "Gbg/1714994", - "Gbg/1715012", - "Gbg/1715026", - "Gbg/1715025", - "Gbg/6155239", - "Gbg/1715320", - "Gbg/1715345", - "Gbg/1715321", - "Gbg/1715330", - "Gbg/1715346", - "Gbg/1715329", - "Gbg/1714996", - "Gbg/1714993", - "Gbg/1715342", - "Gbg/1715343", - "Gbg/1715363", - "Gbg/1715344", - "Gbg/1715328", - "Gbg/5125480", - "Gbg/1715331", - "Gbg/1715362", - "Gbg/1715360", - "Gbg/1715359", - "Gbg/6151107", - "Gbg/1715361", - "Gbg/5125471", - "Gbg/1715365", - "Gbg/1715366", - "Gbg/1715370", - "Gbg/1715371", - "Gbg/1715368", - "Gbg/1715367" - ], - "source:geometry:date": [ - "2017-11-20", - "2009-11-20", - "2016-07-28", - "2015-03-30" - ] - }, - "create": 41, - "modify": 234, - "delete": 8, - "area": 0.00002214021978001, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 198, - "theme": "grb", - "answer": 8, - "delete": 8, - "import": 9, - "locale": "nl", - "imagery": "AGIV", - "conflation": 64 - }, - "id": 123139944 - } - }, - { - "id": 123139711, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9602097, - 51.2002157 - ], - [ - 4.9632375, - 51.2002157 - ], - [ - 4.9632375, - 51.202259 - ], - [ - 4.9602097, - 51.202259 - ], - [ - 4.9602097, - 51.2002157 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-03T06:08:21Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes", - "house", - "shed", - "barn", - "garage", - "roof" - ], - "addr:housenumber": [ - "2;2A", - "2,2A" - ], - "source:geometry:ref": [ - "Gbg/1716029", - "Gbg/1715294", - "Gbg/1715292", - "Gbg/1715341", - "Gbg/1715291", - "Gbg/1715290", - "Gbg/1715358", - "Gbg/1715284", - "Gbg/1715282", - "Gbg/1715281", - "Gbg/1715280", - "Gbg/6154613", - "Gbg/5123524", - "Gbg/1715318", - "Gbg/1715317", - "Gbg/1715319", - "Gbg/1715324", - "Gbg/1715322", - "Gbg/5125472", - "Gbg/6149295", - "Gbg/6754435", - "Gbg/1715308", - "Gbg/6148996", - "Gbg/5122949", - "Gbg/1715295", - "Gbg/6150661", - "Gbg/1715323", - "Gbg/5123523", - "Gbg/5125479" - ], - "source:geometry:date": [ - "2009-11-20", - "2017-11-20", - "2015-03-30", - "2020-03-16" - ] - }, - "create": 90, - "modify": 221, - "delete": 4, - "area": 0.00000618670373999032, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 188, - "theme": "grb", - "answer": 5, - "delete": 4, - "import": 11, - "locale": "nl", - "imagery": "AGIV", - "conflation": 58, - "change_over_5000m": 8 - }, - "id": 123139711 - } - }, - { - "id": 123139277, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9504124, - 51.1981015 - ], - [ - 4.9645443, - 51.1981015 - ], - [ - 4.9645443, - 51.2007677 - ], - [ - 4.9504124, - 51.2007677 - ], - [ - 4.9504124, - 51.1981015 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-03T05:37:03Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "farm_auxiliary", - "house", - "farm", - "yes", - "shed", - "roof" - ], - "historic": [ - "windmill" - ], - "man_made": [ - "windmill" - ], - "source:geometry:ref": [ - "Gbg/1714938", - "Gbg/1714942", - "Gbg/1714937", - "Gbg/6149151", - "Gbg/1714921", - "Gbg/1715311", - "Gbg/1714916", - "Gbg/1714946", - "Gbg/6148954", - "Gbg/1714927", - "Gbg/1714923", - "Gbg/6966838", - "Gbg/1714933", - "Gbg/1714931", - "Gbg/1714928", - "Gbg/6482874", - "Gbg/5740435", - "Gbg/1715340", - "Gbg/1715352", - "Gbg/6154770", - "Gbg/1715353", - "Gbg/6155065", - "Gbg/1715299", - "Gbg/1715297", - "Gbg/1715296", - "Gbg/5125473", - "Gbg/1715309", - "Gbg/1715347", - "Gbg/1715334", - "Gbg/1715338", - "Gbg/1715304", - "Gbg/1715339", - "Gbg/1715349", - "Gbg/1715336", - "Gbg/1715303", - "Gbg/5125483", - "Gbg/1715355", - "Gbg/1715351", - "Gbg/1715302", - "Gbg/1715298", - "Gbg/5125476", - "Gbg/1714912", - "Gbg/1714943", - "Gbg/1714914", - "Gbg/1714941", - "Gbg/1714911", - "Gbg/1714917", - "Gbg/1714910", - "Gbg/1715354", - "Gbg/6152969", - "Gbg/5125474", - "Gbg/5740434", - "Gbg/1715312", - "Gbg/1714929", - "Gbg/6642385" - ], - "source:geometry:date": [ - "2016-07-28", - "2009-11-20", - "2017-11-20", - "2021-07-05", - "2019-07-09", - "2016-11-21", - "2015-11-26", - "2020-03-16", - "2015-03-30" - ] - }, - "create": 133, - "modify": 362, - "delete": 4, - "area": 0.0000376784717800018, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 306, - "theme": "grb", - "answer": 1, - "delete": 4, - "import": 13, - "locale": "nl", - "imagery": "AGIV", - "conflation": 110, - "change_over_5000m": 14 - }, - "id": 123139277 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-04.json b/Docs/Tools/stats/stats.2022-7-04.json deleted file mode 100644 index 41e038c7ed..0000000000 --- a/Docs/Tools/stats/stats.2022-7-04.json +++ /dev/null @@ -1,2571 +0,0 @@ -{ - "features": [ - { - "id": 123209408, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.3664911, - 46.9588001 - ], - [ - 8.36768, - 46.9588001 - ], - [ - 8.36768, - 46.9594729 - ], - [ - 8.3664911, - 46.9594729 - ], - [ - 8.3664911, - 46.9588001 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LeTopographeFou", - "uid": "3178375", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/crossingtime.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-04T22:06:54Z", - "reviewed_features": [], - "tag_changes": { - "bicycle": [ - "yes" - ], - "highway": [ - "crossing" - ], - "crossing_ref": [ - "zebra", - "tiger" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 7.99891920005003e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/crossingtime.json", - "answer": 4, - "locale": "es", - "imagery": "osm" - }, - "id": 123209408 - } - }, - { - "id": 123206929, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.3761694, - 48.5556275 - ], - [ - 9.3761694, - 48.5556275 - ], - [ - 9.3761694, - 48.5556275 - ], - [ - 9.3761694, - 48.5556275 - ], - [ - 9.3761694, - 48.5556275 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-04T20:32:32Z", - "reviewed_features": [], - "tag_changes": { - "bus": [ - "no" - ], - "hgv": [ - "no" - ], - "image": [ - "https://i.imgur.com/5ZTPAiP.jpg" - ], - "amenity": [ - "charging_station" - ], - "bicycle": [ - "no" - ], - "scooter": [ - "no" - ], - "motorcar": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 1, - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 123206929 - } - }, - { - "id": 123205666, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3484428, - 50.8477606 - ], - [ - 4.348858, - 50.8477606 - ], - [ - 4.348858, - 50.8479394 - ], - [ - 4.3484428, - 50.8479394 - ], - [ - 4.3484428, - 50.8477606 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-04T19:51:35Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "cafe" - ], - "building": [ - "yes" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 7.42377600001896e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/entrances.html", - "theme": "entrances", - "create": 2, - "locale": "en", - "imagery": "osm", - "change_within_25m": 2 - }, - "id": 123205666 - } - }, - { - "id": 123204635, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1454779, - 48.7505859 - ], - [ - 9.1454779, - 48.7505859 - ], - [ - 9.1454779, - 48.7505859 - ], - [ - 9.1454779, - 48.7505859 - ], - [ - 9.1454779, - 48.7505859 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-04T19:16:26Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/X6rL62j.jpg" - ], - "tourism": [ - "artwork" - ], - "artist_name": [ - "Peter Zeitler" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 1, - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 123204635 - } - }, - { - "id": 123203657, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1676516, - 48.6924021 - ], - [ - 9.1676516, - 48.6924021 - ], - [ - 9.1676516, - 48.6924021 - ], - [ - 9.1676516, - 48.6924021 - ], - [ - 9.1676516, - 48.6924021 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #bicycle_rental", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-04T18:42:35Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/q4T5Sc6.jpg" - ], - "amenity": [ - "bicycle_rental" - ], - "bicycle_rental": [ - "docking_station" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bicycle_rental.html", - "theme": "bicycle_rental", - "answer": 1, - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 123203657 - } - }, - { - "id": 123201766, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4601745, - 51.2526896 - ], - [ - 4.4601745, - 51.2526896 - ], - [ - 4.4601745, - 51.2526896 - ], - [ - 4.4601745, - 51.2526896 - ], - [ - 4.4601745, - 51.2526896 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "philippec", - "uid": "76884", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-04T17:38:41Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/JeQAEZB.jpg" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1 - }, - "id": 123201766 - } - }, - { - "id": 123201433, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 70.4601455, - 8.4879636 - ], - [ - 88.3641121, - 8.4879636 - ], - [ - 88.3641121, - 30.3962191 - ], - [ - 70.4601455, - 30.3962191 - ], - [ - 70.4601455, - 8.4879636 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-04T17:28:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 252, - "delete": 0, - "area": 392.244674736266, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 327, - "locale": "en", - "imagery": "osm" - }, - "id": 123201433 - } - }, - { - "id": 123199079, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.5156385, - 51.079959 - ], - [ - 2.5156385, - 51.079959 - ], - [ - 2.5156385, - 51.079959 - ], - [ - 2.5156385, - 51.079959 - ], - [ - 2.5156385, - 51.079959 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9866215255", - "osm_id": 9866215255, - "reasons": [ - 43 - ], - "version": 2, - "primary_tags": { - "amenity": "binoculars" - } - } - ], - "user": "Mizuna", - "uid": "12496737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #binoculars", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-04T16:09:58Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "binoculars" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/binoculars.html", - "theme": "binoculars", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 123199079 - } - }, - { - "id": 123198591, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9811683, - 51.1782001 - ], - [ - 4.9825296, - 51.1782001 - ], - [ - 4.9825296, - 51.1800383 - ], - [ - 4.9811683, - 51.1800383 - ], - [ - 4.9811683, - 51.1782001 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-04T15:55:33Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes", - "shed", - "roof" - ], - "source:geometry:ref": [ - "Gbg/1692174", - "Gbg/1692187", - "Gbg/1692172", - "Gbg/1692171", - "Gbg/1692097", - "Gbg/1692098", - "Gbg/1692179", - "Gbg/5123620", - "Gbg/6155259", - "Gbg/6928674", - "Gbg/1692188", - "Gbg/1692173", - "Gbg/6155361", - "Gbg/1692218", - "Gbg/1692216", - "Gbg/1692250" - ], - "source:geometry:date": [ - "2016-07-28", - "2009-02-20", - "2015-03-30", - "2017-11-20", - "2020-03-10", - "2020-03-16" - ] - }, - "create": 26, - "modify": 118, - "delete": 1, - "area": 0.00000250234166000251, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 101, - "theme": "grb", - "answer": 1, - "delete": 1, - "import": 4, - "locale": "nl", - "imagery": "AGIV", - "conflation": 32 - }, - "id": 123198591 - } - }, - { - "id": 123198570, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.980946, - 51.1800286 - ], - [ - 4.9820401, - 51.1800286 - ], - [ - 4.9820401, - 51.1801548 - ], - [ - 4.980946, - 51.1801548 - ], - [ - 4.980946, - 51.1800286 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-04T15:54:55Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes", - "roof" - ], - "source:geometry:ref": [ - "Gbg/1692125", - "Gbg/6641794", - "Gbg/1692246" - ], - "source:geometry:date": [ - "2016-07-28", - "2019-07-09" - ] - }, - "create": 3, - "modify": 21, - "delete": 0, - "area": 1.38075419996503e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 18, - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "AGIV", - "conflation": 6 - }, - "id": 123198570 - } - }, - { - "id": 123198326, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9807579, - 51.1798298 - ], - [ - 4.9822638, - 51.1798298 - ], - [ - 4.9822638, - 51.1810945 - ], - [ - 4.9807579, - 51.1810945 - ], - [ - 4.9807579, - 51.1798298 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-04T15:48:12Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes", - "garage", - "roof" - ], - "source:geometry:ref": [ - "Gbg/1692116", - "Gbg/5123004", - "Gbg/1692119", - "Gbg/1692115", - "Gbg/1692118", - "Gbg/6149078", - "Gbg/1692117", - "Gbg/5122647", - "Gbg/6150191", - "Gbg/1692244", - "Gbg/5124618", - "Gbg/6155007", - "Gbg/6151051", - "Gbg/6149623", - "Gbg/6256545", - "Gbg/6256546", - "Gba/661280" - ], - "source:geometry:date": [ - "2009-02-20", - "2019-07-09", - "2017-11-20", - "2016-07-28", - "2015-03-30", - "2018-04-09" - ] - }, - "create": 23, - "modify": 125, - "delete": 0, - "area": 0.00000190451172999983, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 111, - "theme": "grb", - "answer": 4, - "import": 2, - "locale": "nl", - "imagery": "AGIV", - "conflation": 34 - }, - "id": 123198326 - } - }, - { - "id": 123198317, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-04T15:47:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 123198317 - } - }, - { - "id": 123197824, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9779856, - 51.1729922 - ], - [ - 4.9829686, - 51.1729922 - ], - [ - 4.9829686, - 51.1815908 - ], - [ - 4.9779856, - 51.1815908 - ], - [ - 4.9779856, - 51.1729922 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-04T15:32:39Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "cafe" - ], - "leisure": [ - "outdoor_seating" - ], - "building": [ - "house", - "apartments", - "yes", - "shed", - "garage", - "roof" - ], - "addr:housenumber": [ - "31;31A", - "31,31A" - ], - "source:geometry:ref": [ - "Gbg/6154887", - "Gbg/1690639", - "Gbg/1690598", - "Gbg/6155371", - "Gbg/3534795", - "Gbg/6154705", - "Gbg/1690577", - "Gbg/1691405", - "Gbg/1692112", - "Gbg/1692110", - "Gbg/1692114", - "Gbg/1692113", - "Gbg/1692111", - "Gbg/1692109", - "Gbg/1689979", - "Gbg/1691395", - "Gbg/1691406", - "Gbg/5122649", - "Gbg/1691622", - "Gbg/1691407", - "Gbg/1691623", - "Gbg/1692165", - "Gbg/6154775", - "Gbg/1692095", - "Gbg/1691531", - "Gbg/5124669", - "Gbg/6152009", - "Gbg/5124663", - "Gbg/5123669", - "Gbg/5654173", - "Gbg/5127681", - "Gbg/6155502", - "Gbg/1692241", - "Gbg/6151666", - "Gbg/6149377", - "Gbg/1692236", - "Gbg/6149237", - "Gbg/6154936", - "Gbg/6154999", - "Gbg/1690646", - "Gbg/6155230", - "Gbg/1690637", - "Gbg/1690638", - "Gbg/6966433", - "Gba/110621" - ], - "source:geometry:date": [ - "2017-11-20", - "2021-07-05", - "2016-07-28", - "2012-10-10", - "2009-02-20", - "2015-03-30", - "2019-07-09" - ] - }, - "create": 145, - "modify": 377, - "delete": 16, - "area": 0.0000428468237999972, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 326, - "theme": "grb", - "answer": 11, - "delete": 16, - "import": 14, - "locale": "nl", - "imagery": "AGIV", - "conflation": 90 - }, - "id": 123197824 - } - }, - { - "id": 123191932, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5822797, - 53.2163377 - ], - [ - 6.5832587, - 53.2163377 - ], - [ - 6.5832587, - 53.2166336 - ], - [ - 6.5822797, - 53.2166336 - ], - [ - 6.5822797, - 53.2163377 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-04T13:20:39Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 2.89686100004599e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 4, - "create": 2, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "add-image": 2 - }, - "id": 123191932 - } - }, - { - "id": 123191890, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5812226, - 53.2166886 - ], - [ - 6.5812226, - 53.2166886 - ], - [ - 6.5812226, - 53.2166886 - ], - [ - 6.5812226, - 53.2166886 - ], - [ - 6.5812226, - 53.2166886 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-04T13:19:47Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "recycling" - ], - "image:2": [ - "https://i.imgur.com/ME9dmCc.jpg" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "add-image": 1 - }, - "id": 123191890 - } - }, - { - "id": 123191863, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5812226, - 53.2166886 - ], - [ - 6.5812226, - 53.2166886 - ], - [ - 6.5812226, - 53.2166886 - ], - [ - 6.5812226, - 53.2166886 - ], - [ - 6.5812226, - 53.2166886 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-04T13:19:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "add-image": 2 - }, - "id": 123191863 - } - }, - { - "id": 123191667, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5808984, - 53.2163321 - ], - [ - 6.5824943, - 53.2163321 - ], - [ - 6.5824943, - 53.2169115 - ], - [ - 6.5808984, - 53.2169115 - ], - [ - 6.5808984, - 53.2163321 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-04T13:13:22Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "recycling" - ] - }, - "create": 2, - "modify": 3, - "delete": 0, - "area": 9.24664459999052e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 2, - "create": 2, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "add-image": 2 - }, - "id": 123191667 - } - }, - { - "id": 123190566, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RubOSM", - "uid": "2096650", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-04T12:43:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 2, - "locale": "nl", - "imagery": "fr.ign.bdortho", - "change_within_25m": 2 - }, - "id": 123190566 - } - }, - { - "id": 123190523, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RubOSM", - "uid": "2096650", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-04T12:42:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 2, - "locale": "nl", - "imagery": "fr.ign.bdortho", - "change_within_25m": 2 - }, - "id": 123190523 - } - }, - { - "id": 123190511, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RubOSM", - "uid": "2096650", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-04T12:42:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 2, - "locale": "nl", - "imagery": "fr.ign.bdortho", - "change_within_25m": 2 - }, - "id": 123190511 - } - }, - { - "id": 123190494, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RubOSM", - "uid": "2096650", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-04T12:41:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 1, - "locale": "nl", - "imagery": "fr.ign.bdortho", - "change_within_25m": 1 - }, - "id": 123190494 - } - }, - { - "id": 123190472, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RubOSM", - "uid": "2096650", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-04T12:41:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "create": 2, - "locale": "nl", - "imagery": "fr.ign.bdortho", - "change_over_5000m": 2 - }, - "id": 123190472 - } - }, - { - "id": 123190471, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9937018, - 49.356321 - ], - [ - 5.9937018, - 49.356321 - ], - [ - 5.9937018, - 49.356321 - ], - [ - 5.9937018, - 49.356321 - ], - [ - 5.9937018, - 49.356321 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RubOSM", - "uid": "2096650", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-04T12:41:20Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "toerisme_vlaanderen", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "fr.ign.bdortho", - "change_over_5000m": 1, - "change_within_25m": 6 - }, - "id": 123190471 - } - }, - { - "id": 123189685, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 72.5979106, - 9.9048858 - ], - [ - 88.640686, - 9.9048858 - ], - [ - 88.640686, - 30.9137291 - ], - [ - 72.5979106, - 30.9137291 - ], - [ - 72.5979106, - 9.9048858 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - }, - { - "id": 91, - "name": "Motorway/trunk geometry modified" - } - ], - "tags": [], - "features": [ - { - "url": "way-296648846", - "name": "Rani Jhansi Road", - "osm_id": 296648846, - "reasons": [ - 91 - ], - "version": 13, - "primary_tags": { - "highway": "trunk" - } - } - ], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-04T12:21:19Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "road", - "bus" - ], - "office": [ - "yes" - ], - "amenity": [ - "hospital", - "school", - "college" - ], - "barrier": [ - "wall" - ], - "highway": [ - "residential", - "unclassified", - "tertiary", - "service", - "secondary_link", - "secondary", - "living_street", - "mini_roundabout", - "primary", - "trunk" - ], - "landuse": [ - "industrial" - ], - "leisure": [ - "park" - ], - "natural": [ - "water" - ], - "building": [ - "yes", - "commercial" - ], - "name:etymology:wikidata": [ - "Q2721961", - "Q467207", - "Q8597", - "Q3631340", - "Q151164", - "Q336268", - "Q2044389", - "Q604647" - ] - }, - "create": 0, - "modify": 432, - "delete": 0, - "area": 337.040154475695, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 568, - "locale": "en", - "imagery": "osm" - }, - "id": 123189685 - } - }, - { - "id": 123186721, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3683552, - 50.8362534 - ], - [ - 4.3697627, - 50.8362534 - ], - [ - 4.3697627, - 50.8375215 - ], - [ - 4.3683552, - 50.8375215 - ], - [ - 4.3683552, - 50.8362534 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "WardBeyens", - "uid": "10343215", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-04T11:21:49Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "school" - ], - "name:etymology:wikidata": [ - "Q2869302" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.00000178485075000609, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 123186721 - } - }, - { - "id": 123185883, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6303094, - 50.7737438 - ], - [ - 5.6303094, - 50.7737438 - ], - [ - 5.6303094, - 50.7737438 - ], - [ - 5.6303094, - 50.7737438 - ], - [ - 5.6303094, - 50.7737438 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Hilde OSM", - "uid": "15275790", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-04T11:07:08Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/j4trE3c.jpg" - ], - "seats": [ - "5" - ], - "amenity": [ - "bench" - ], - "backrest": [ - "no" - ], - "material": [ - "wood" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 4 - }, - "id": 123185883 - } - }, - { - "id": 123185039, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RubOSM", - "uid": "2096650", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-04T10:52:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 6 - }, - "id": 123185039 - } - }, - { - "id": 123184977, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.9936655, - 49.3563223 - ], - [ - 5.9936655, - 49.3563223 - ], - [ - 5.9936655, - 49.3563223 - ], - [ - 5.9936655, - 49.3563223 - ], - [ - 5.9936655, - 49.3563223 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RubOSM", - "uid": "2096650", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-04T10:51:15Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 5, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 5 - }, - "id": 123184977 - } - }, - { - "id": 123182646, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6913992, - 50.1303574 - ], - [ - 8.6913992, - 50.1303574 - ], - [ - 8.6913992, - 50.1303574 - ], - [ - 8.6913992, - 50.1303574 - ], - [ - 8.6913992, - 50.1303574 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "mathildane", - "uid": "16445312", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-04T10:06:25Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "theme": "waste_basket", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 123182646 - } - }, - { - "id": 123182334, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6918914, - 50.1303454 - ], - [ - 9.1023197, - 50.1303454 - ], - [ - 9.1023197, - 50.2891232 - ], - [ - 8.6918914, - 50.2891232 - ], - [ - 8.6918914, - 50.1303454 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "symtll", - "uid": "16362995", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-04T09:59:41Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "bicycle", - "hiking", - "bus", - "train", - "tracks" - ], - "amenity": [ - "parking", - "bench" - ], - "barrier": [ - "fence" - ], - "highway": [ - "residential", - "track", - "unclassified", - "path" - ], - "landuse": [ - "cemetery" - ], - "leisure": [ - "picnic_table" - ], - "railway": [ - "rail" - ] - }, - "create": 2, - "modify": 4, - "delete": 0, - "area": 0.0651669025317385, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "move": 1, - "theme": "benches", - "answer": 4, - "create": 2, - "locale": "de", - "imagery": "osm", - "move:node/9865496705": "improve_accuracy" - }, - "id": 123182334 - } - }, - { - "id": 123182193, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.8475558, - 52.8271882 - ], - [ - 13.8475558, - 52.8271882 - ], - [ - 13.8475558, - 52.8271882 - ], - [ - 13.8475558, - 52.8271882 - ], - [ - 13.8475558, - 52.8271882 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Brandoberinspektor Erdmann", - "uid": "13364061", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-04T09:56:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123182193 - } - }, - { - "id": 123178163, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.2324958, - 52.747863 - ], - [ - 13.2439891, - 52.747863 - ], - [ - 13.2439891, - 52.7564169 - ], - [ - 13.2324958, - 52.7564169 - ], - [ - 13.2324958, - 52.747863 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "SebastianFranz", - "uid": "16395555", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-04T08:15:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 5, - "modify": 5, - "delete": 0, - "area": 0.0000983125388699452, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123178163 - } - }, - { - "id": 123176729, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3966043, - 45.4399591 - ], - [ - 4.3966043, - 45.4399591 - ], - [ - 4.3966043, - 45.4399591 - ], - [ - 4.3966043, - 45.4399591 - ], - [ - 4.3966043, - 45.4399591 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ciaoQuentin", - "uid": "641871", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-04T07:40:25Z", - "reviewed_features": [], - "tag_changes": { - "email": [ - "sourisverte@heureux-cyclage.org" - ], - "access": [ - "yes" - ], - "manual": [ - "yes" - ], - "valves": [ - "sclaverand;schrader" - ], - "amenity": [ - "bicycle_repair_station" - ], - "manometer": [ - "yes" - ], - "service:bicycle:stand": [ - "yes" - ], - "service:bicycle:tools": [ - "yes" - ], - "service:bicycle:pump:operational_status": [ - "operational" - ] - }, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 8, - "locale": "en", - "imagery": "fr.ign.bdortho" - }, - "id": 123176729 - } - }, - { - "id": 123175700, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.0594795, - 48.8368773 - ], - [ - 10.061313, - 48.8368773 - ], - [ - 10.061313, - 48.8379511 - ], - [ - 10.0594795, - 48.8379511 - ], - [ - 10.0594795, - 48.8368773 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Segelpaule", - "uid": "146822", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-04T07:16:47Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "no" - ], - "leisure": [ - "playground" - ], - "surface": [ - "grass" - ], - "wheelchair": [ - "limited" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.00000196881230000068, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 123175700 - } - }, - { - "id": 123172273, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1043802, - 38.8342475 - ], - [ - 0.1047612, - 38.8342475 - ], - [ - 0.1047612, - 38.8349927 - ], - [ - 0.1043802, - 38.8349927 - ], - [ - 0.1043802, - 38.8342475 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-04T05:40:13Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/H7lohk7.jpg" - ], - "access": [ - "yes" - ], - "amenity": [ - "recycling", - "waste_disposal" - ], - "opening_hours": [ - "24/7" - ], - "recycling:clothes": [ - "yes" - ] - }, - "create": 0, - "modify": 5, - "delete": 1, - "area": 2.83921200001645e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 4, - "locale": "ca", - "imagery": "osm", - "deletion": 1, - "add-image": 1, - "change_over_5000m": 6, - "deletion:node/9621654230": "disused" - }, - "id": 123172273 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-05.json b/Docs/Tools/stats/stats.2022-7-05.json deleted file mode 100644 index f1b0deebab..0000000000 --- a/Docs/Tools/stats/stats.2022-7-05.json +++ /dev/null @@ -1,5588 +0,0 @@ -{ - "features": [ - { - "id": 123252804, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3186656, - 50.8530113 - ], - [ - 4.328227, - 50.8530113 - ], - [ - 4.328227, - 50.8545488 - ], - [ - 4.3186656, - 50.8545488 - ], - [ - 4.3186656, - 50.8530113 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T22:09:38Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "deli", - "copyshop", - "convenience" - ] - }, - "create": 3, - "modify": 2, - "delete": 0, - "area": 0.0000147006525000463, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/shops.html", - "theme": "shops", - "answer": 7, - "create": 3, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 3, - "change_within_25m": 7 - }, - "id": 123252804 - } - }, - { - "id": 123252648, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4022181, - 52.5528387 - ], - [ - 13.4022181, - 52.5528387 - ], - [ - 13.4022181, - 52.5528387 - ], - [ - 13.4022181, - 52.5528387 - ], - [ - 13.4022181, - 52.5528387 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "uli12v", - "uid": "16459735", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-05T22:01:52Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-05", - "2020-09-15" - ], - "pump:status": [ - "ok", - "broken" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 3, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123252648 - } - }, - { - "id": 123250025, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3475309, - 50.8456127 - ], - [ - 4.3475309, - 50.8456127 - ], - [ - 4.3475309, - 50.8456127 - ], - [ - 4.3475309, - 50.8456127 - ], - [ - 4.3475309, - 50.8456127 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T20:14:34Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "public_bookcase" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/bookcases.html", - "theme": "bookcases", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 123250025 - } - }, - { - "id": 123248251, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.7368936, - 50.0999954 - ], - [ - 8.7368936, - 50.0999954 - ], - [ - 8.7368936, - 50.0999954 - ], - [ - 8.7368936, - 50.0999954 - ], - [ - 8.7368936, - 50.0999954 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Gruppe_23", - "uid": "16454314", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #postboxes", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T19:19:28Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/NuZyC7x.jpg" - ], - "amenity": [ - "post_box" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/postboxes.html", - "theme": "postboxes", - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 123248251 - } - }, - { - "id": 123248107, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.724153, - 50.1006582 - ], - [ - 8.724153, - 50.1006582 - ], - [ - 8.724153, - 50.1006582 - ], - [ - 8.724153, - 50.1006582 - ], - [ - 8.724153, - 50.1006582 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Gruppe_23", - "uid": "16454314", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T19:15:31Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ] - }, - "create": 1, - "modify": 6, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 11, - "create": 1, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_1000m": 11 - }, - "id": 123248107 - } - }, - { - "id": 123247553, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.730703, - 50.0979682 - ], - [ - 8.7365744, - 50.0979682 - ], - [ - 8.7365744, - 50.0997197 - ], - [ - 8.730703, - 50.0997197 - ], - [ - 8.730703, - 50.0979682 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Gruppe_23", - "uid": "16454314", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T18:59:57Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 3, - "modify": 4, - "delete": 0, - "area": 0.0000102837571000272, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 14, - "create": 3, - "locale": "de", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 3, - "change_within_25m": 16 - }, - "id": 123247553 - } - }, - { - "id": 123247458, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9770677, - 51.032575 - ], - [ - 4.9770677, - 51.032575 - ], - [ - 4.9770677, - 51.032575 - ], - [ - 4.9770677, - 51.032575 - ], - [ - 4.9770677, - 51.032575 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T18:57:18Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/xZHrq4D.jpg" - ], - "level": [ - "0" - ], - "access": [ - "yes" - ], - "survey:date": [ - "2022-07-05" - ], - "defibrillator:location": [ - "Onmiddellijk links aan de muur als men binnen komt" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 4, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 5 - }, - "id": 123247458 - } - }, - { - "id": 123247368, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.7246082, - 50.0972835 - ], - [ - 8.7384025, - 50.0972835 - ], - [ - 8.7384025, - 50.0999408 - ], - [ - 8.7246082, - 50.0999408 - ], - [ - 8.7246082, - 50.0972835 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Gruppe_23", - "uid": "16454314", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T18:54:49Z", - "reviewed_features": [], - "tag_changes": { - "bin": [ - "yes" - ], - "kerb": [ - "lowered" - ], - "bench": [ - "yes" - ], - "route": [ - "bus" - ], - "amenity": [ - "waste_disposal" - ], - "barrier": [ - "bollard" - ], - "highway": [ - "bus_stop", - "crossing", - "residential", - "living_street" - ], - "shelter": [ - "no" - ], - "crossing": [ - "unmarked" - ], - "tactile_paving": [ - "no" - ], - "crossing:island": [ - "no" - ], - "public_transport": [ - "platform" - ] - }, - "create": 2, - "modify": 4, - "delete": 0, - "area": 0.0000366555933899371, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/personal.html", - "theme": "personal", - "answer": 5, - "create": 4, - "locale": "de", - "imagery": "osm", - "change_within_25m": 8, - "change_within_50m": 1 - }, - "id": 123247368 - } - }, - { - "id": 123247296, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.7305836, - 50.0979269 - ], - [ - 8.732653, - 50.0979269 - ], - [ - 8.732653, - 50.0983183 - ], - [ - 8.7305836, - 50.0983183 - ], - [ - 8.7305836, - 50.0979269 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Gruppe_23", - "uid": "16454314", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T18:53:13Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "bus" - ], - "amenity": [ - "waste_basket", - "waste_disposal", - "recycling" - ] - }, - "create": 4, - "modify": 4, - "delete": 0, - "area": 8.09963160011306e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 11, - "create": 4, - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 4, - "change_within_25m": 11, - "change_within_50m": 1 - }, - "id": 123247296 - } - }, - { - "id": 123247208, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.8688173, - 51.9256466 - ], - [ - 13.9071108, - 51.9256466 - ], - [ - 13.9071108, - 51.9432921 - ], - [ - 13.8688173, - 51.9432921 - ], - [ - 13.8688173, - 51.9256466 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Thommi_07", - "uid": "16458584", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-05T18:50:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 0, - "delete": 0, - "area": 0.000675707954250016, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123247208 - } - }, - { - "id": 123242689, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.349422, - 50.8533298 - ], - [ - 4.3508215, - 50.8533298 - ], - [ - 4.3508215, - 50.8534549 - ], - [ - 4.349422, - 50.8534549 - ], - [ - 4.349422, - 50.8533298 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T16:25:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.75077450007526e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cycle_infra.html", - "theme": "cycle_infra", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_50m": 1 - }, - "id": 123242689 - } - }, - { - "id": 123242631, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.5802736, - 55.706511 - ], - [ - 12.5831318, - 55.706511 - ], - [ - 12.5831318, - 55.7073419 - ], - [ - 12.5802736, - 55.7073419 - ], - [ - 12.5802736, - 55.706511 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Niels Elgaard Larsen", - "uid": "1288", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-05T16:23:30Z", - "reviewed_features": [], - "tag_changes": { - "waste": [ - "dog_excrement;trash" - ], - "amenity": [ - "waste_basket" - ], - "vending": [ - "dog_excrement_bag" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000237487838001164, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 123242631 - } - }, - { - "id": 123237405, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9771864, - 51.0325165 - ], - [ - 4.9771864, - 51.0325165 - ], - [ - 4.9771864, - 51.0325165 - ], - [ - 4.9771864, - 51.0325165 - ], - [ - 4.9771864, - 51.0325165 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T14:07:54Z", - "reviewed_features": [], - "tag_changes": { - "dog": [ - "yes" - ], - "amenity": [ - "pub" - ], - "wheelchair": [ - "yes" - ], - "payment:cash": [ - "yes" - ], - "payment:cards": [ - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "change_within_50m": 3 - }, - "id": 123237405 - } - }, - { - "id": 123237046, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2314671, - 50.7387163 - ], - [ - 4.2452814, - 50.7387163 - ], - [ - 4.2452814, - 50.7431813 - ], - [ - 4.2314671, - 50.7431813 - ], - [ - 4.2314671, - 50.7387163 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Stijn Matthys", - "uid": "1862147", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T13:58:15Z", - "reviewed_features": [], - "tag_changes": { - "ref": [ - "BEALLEGO000668" - ], - "email": [ - "audi@donboscogarage.be" - ], - "phone": [ - "+32 800 78 192", - "+32 2 359 91 59" - ], - "amenity": [ - "charging_station" - ], - "image:0": [ - "https://i.imgur.com/DBl6WUf.jpg" - ], - "image:1": [ - "https://i.imgur.com/0mFXAIa.jpg" - ], - "maxstay": [ - "unlimited" - ], - "network": [ - "Allego" - ], - "website": [ - "https://www.allego.eu", - "https://www.brusselsautogroup.be/nl/audi/halle/donbosco" - ], - "parking:fee": [ - "no" - ], - "payment:app": [ - "yes" - ], - "payment:cash": [ - "no" - ], - "payment:cards": [ - "no" - ], - "brand:wikidata": [ - "Q75560554" - ], - "socket:type2:output": [ - "11 kW" - ], - "payment:membership_card": [ - "yes" - ] - }, - "create": 0, - "modify": 11, - "delete": 0, - "area": 0.000061680849500045, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 11, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 2, - "change_over_5000m": 7 - }, - "id": 123237046 - } - }, - { - "id": 123237022, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2314671, - 50.7387163 - ], - [ - 4.2314671, - 50.7387163 - ], - [ - 4.2314671, - 50.7387163 - ], - [ - 4.2314671, - 50.7387163 - ], - [ - 4.2314671, - 50.7387163 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Stijn Matthys", - "uid": "1862147", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T13:57:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 2 - }, - "id": 123237022 - } - }, - { - "id": 123236640, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2314671, - 50.7345064 - ], - [ - 4.2335913, - 50.7345064 - ], - [ - 4.2335913, - 50.7387163 - ], - [ - 4.2314671, - 50.7387163 - ], - [ - 4.2314671, - 50.7345064 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Stijn Matthys", - "uid": "1862147", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T13:48:22Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/NR6B551.jpg" - ], - "amenity": [ - "charging_station" - ], - "image:0": [ - "https://i.imgur.com/qaXvwUq.jpg" - ], - "image:1": [ - "https://i.imgur.com/5qMMeJl.jpg" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00000894266957999818, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 4, - "change_over_5000m": 4 - }, - "id": 123236640 - } - }, - { - "id": 123236066, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2360158, - 50.7313348 - ], - [ - 4.2360158, - 50.7313348 - ], - [ - 4.2360158, - 50.7313348 - ], - [ - 4.2360158, - 50.7313348 - ], - [ - 4.2360158, - 50.7313348 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Stijn Matthys", - "uid": "1862147", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T13:33:48Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "yes" - ], - "access": [ - "yes" - ], - "amenity": [ - "charging_station" - ], - "payment:app": [ - "yes" - ], - "payment:cash": [ - "no" - ], - "socket:type2": [ - "2" - ], - "payment:cards": [ - "no" - ], - "payment:membership_card": [ - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 5, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 5 - }, - "id": 123236066 - } - }, - { - "id": 123235464, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 76.2989378, - 10.02732 - ], - [ - 88.6340181, - 10.02732 - ], - [ - 88.6340181, - 30.7636811 - ], - [ - 76.2989378, - 30.7636811 - ], - [ - 76.2989378, - 10.02732 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-05T13:18:56Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "bus" - ], - "barrier": [ - "wall" - ], - "highway": [ - "residential", - "service", - "tertiary", - "elevator", - "secondary_link", - "secondary", - "primary", - "primary_link", - "cycleway" - ], - "leisure": [ - "stadium", - "sports_centre" - ], - "railway": [ - "subway_entrance" - ], - "name:etymology:wikidata": [ - "Q4593", - "Q619", - "Q9045", - "Q486188", - "Q4837333", - "Q15649302", - "Q3631426", - "Q381138", - "Q469894", - "Q36014", - "Q288441", - "Q1405629", - "Q312976" - ] - }, - "create": 0, - "modify": 209, - "delete": 0, - "area": 255.784679298296, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 332, - "locale": "en", - "imagery": "osm" - }, - "id": 123235464 - } - }, - { - "id": 123234753, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6786802, - 50.0832972 - ], - [ - 8.6786802, - 50.0832972 - ], - [ - 8.6786802, - 50.0832972 - ], - [ - 8.6786802, - 50.0832972 - ], - [ - 8.6786802, - 50.0832972 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Gruppe_23", - "uid": "16454314", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-05T13:00:49Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "create": 1, - "locale": "de", - "imagery": "Hessen-DOP20" - }, - "id": 123234753 - } - }, - { - "id": 123234454, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.732138, - 50.0978891 - ], - [ - 8.732138, - 50.0978891 - ], - [ - 8.732138, - 50.0978891 - ], - [ - 8.732138, - 50.0978891 - ], - [ - 8.732138, - 50.0978891 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Gruppe_23", - "uid": "16454314", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-05T12:53:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "answer": 3, - "create": 1, - "locale": "de", - "imagery": "Hessen-DOP20" - }, - "id": 123234454 - } - }, - { - "id": 123233216, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2685701, - 53.2083619 - ], - [ - 6.2689881, - 53.2083619 - ], - [ - 6.2689881, - 53.2086212 - ], - [ - 6.2685701, - 53.2086212 - ], - [ - 6.2685701, - 53.2083619 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T12:22:48Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "no" - ], - "leisure": [ - "playground" - ], - "surface": [ - "grass" - ], - "wheelchair": [ - "no" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.08387400001327e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "change_within_500m": 1, - "change_within_5000m": 2 - }, - "id": 123233216 - } - }, - { - "id": 123232237, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4393069, - 50.8620139 - ], - [ - 4.5158892, - 50.8620139 - ], - [ - 4.5158892, - 50.8780829 - ], - [ - 4.4393069, - 50.8780829 - ], - [ - 4.4393069, - 50.8620139 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter vdVen", - "uid": "6663911", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-05T12:01:29Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "motorway_link", - "primary", - "unclassified", - "residential", - "primary_link", - "tertiary" - ], - "maxspeed": [ - "120", - "70", - "50" - ] - }, - "create": 0, - "modify": 36, - "delete": 0, - "area": 0.00123060097870013, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "theme": "maxspeed", - "answer": 36, - "locale": "fr", - "imagery": "osm" - }, - "id": 123232237 - } - }, - { - "id": 123232149, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.7038165, - 50.1310675 - ], - [ - 8.7038165, - 50.1310675 - ], - [ - 8.7038165, - 50.1310675 - ], - [ - 8.7038165, - 50.1310675 - ], - [ - 8.7038165, - 50.1310675 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Gruppe_23", - "uid": "16454314", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T11:59:33Z", - "reviewed_features": [], - "tag_changes": { - "barrier": [ - "no" - ], - "leisure": [ - "dog_park" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "answer": 4, - "create": 1, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_500m": 4 - }, - "id": 123232149 - } - }, - { - "id": 123232069, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3360868, - 50.8391168 - ], - [ - 4.3360868, - 50.8391168 - ], - [ - 4.3360868, - 50.8391168 - ], - [ - 4.3360868, - 50.8391168 - ], - [ - 4.3360868, - 50.8391168 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter vdVen", - "uid": "6663911", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-05T11:57:48Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "bicycle_parking" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "fr", - "imagery": "CartoDB.Voyager" - }, - "id": 123232069 - } - }, - { - "id": 123231988, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0392235, - 50.9388947 - ], - [ - 4.0402579, - 50.9388947 - ], - [ - 4.0402579, - 50.9410157 - ], - [ - 4.0392235, - 50.9410157 - ], - [ - 4.0392235, - 50.9388947 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #cyclestreets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T11:56:08Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential" - ], - "maxspeed": [ - "30" - ], - "cyclestreet": [ - "yes" - ], - "overtaking:motor_vehicle": [ - "no" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000219396240000255, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclestreets.html", - "theme": "cyclestreets", - "answer": 2, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 2 - }, - "id": 123231988 - } - }, - { - "id": 123231506, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.7038139, - 50.1320316 - ], - [ - 8.7041384, - 50.1320316 - ], - [ - 8.7041384, - 50.1323639 - ], - [ - 8.7038139, - 50.1323639 - ], - [ - 8.7038139, - 50.1320316 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Gruppe_23", - "uid": "16454314", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T11:46:24Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/DrTh8DJ.jpg" - ], - "colour": [ - "brown" - ], - "amenity": [ - "bench" - ] - }, - "create": 3, - "modify": 7, - "delete": 0, - "area": 1.07831350001082e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 15, - "create": 3, - "locale": "de", - "imagery": "Hessen-DOP20", - "add-image": 3, - "change_over_5000m": 3, - "change_within_25m": 14, - "change_within_50m": 4 - }, - "id": 123231506 - } - }, - { - "id": 123231379, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.316601, - 50.8537057 - ], - [ - 4.316601, - 50.8537057 - ], - [ - 4.316601, - 50.8537057 - ], - [ - 4.316601, - 50.8537057 - ], - [ - 4.316601, - 50.8537057 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T11:43:32Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Beroea", - "De Krebbe" - ], - "amenity": [ - "restaurant" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/food.html", - "theme": "food", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_500m": 1 - }, - "id": 123231379 - } - }, - { - "id": 123231330, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3959752, - 52.5418311 - ], - [ - 13.4466715, - 52.5418311 - ], - [ - 13.4466715, - 52.5689948 - ], - [ - 13.3959752, - 52.5689948 - ], - [ - 13.3959752, - 52.5418311 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Annika_atip:tap", - "uid": "15923056", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-05T11:42:33Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "drinking_water" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00137709908430978, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "move": 2, - "theme": "drinking_water", - "locale": "en", - "imagery": "CartoDB.Voyager", - "move:node/9860430193": "improve_accuracy", - "move:node/9860528200": "improve_accuracy" - }, - "id": 123231330 - } - }, - { - "id": 123230722, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.7055608, - 50.1317386 - ], - [ - 8.7064419, - 50.1317386 - ], - [ - 8.7064419, - 50.1337682 - ], - [ - 8.7055608, - 50.1337682 - ], - [ - 8.7055608, - 50.1317386 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Gruppe 24(2)", - "uid": "16454332", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-05T11:29:00Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential" - ], - "cycleway": [ - "no" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.0000017882805599983, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 1, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123230722 - } - }, - { - "id": 123230411, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.7030709, - 50.132051 - ], - [ - 8.7061896, - 50.132051 - ], - [ - 8.7061896, - 50.1335575 - ], - [ - 8.7030709, - 50.1335575 - ], - [ - 8.7030709, - 50.132051 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Gruppe_23", - "uid": "16454314", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T11:21:40Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench", - "waste_basket", - "waste_disposal" - ] - }, - "create": 8, - "modify": 9, - "delete": 0, - "area": 0.00000469832155001535, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 9, - "create": 8, - "locale": "de", - "imagery": "Hessen-DOP20", - "add-image": 7, - "change_over_5000m": 8, - "change_within_25m": 4, - "change_within_50m": 6, - "change_within_100m": 4, - "change_within_500m": 2 - }, - "id": 123230411 - } - }, - { - "id": 123230214, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.703948, - 50.1323639 - ], - [ - 8.7061686, - 50.1323639 - ], - [ - 8.7061686, - 50.1335425 - ], - [ - 8.703948, - 50.1335425 - ], - [ - 8.703948, - 50.1323639 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Gruppe_23", - "uid": "16454314", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T11:16:52Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/MDIq6Ww.jpg", - "https://i.imgur.com/sm58d0r.jpg" - ], - "amenity": [ - "bench" - ], - "highway": [ - "bus_stop" - ], - "public_transport": [ - "platform" - ] - }, - "create": 2, - "modify": 8, - "delete": 0, - "area": 0.00000261719915998993, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 11, - "create": 2, - "locale": "de", - "imagery": "Hessen-DOP20", - "add-image": 3, - "change_over_5000m": 2, - "change_within_25m": 3, - "change_within_50m": 11 - }, - "id": 123230214 - } - }, - { - "id": 123229704, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.7039165, - 50.1301284 - ], - [ - 8.70449, - 50.1301284 - ], - [ - 8.70449, - 50.1302513 - ], - [ - 8.7039165, - 50.1302513 - ], - [ - 8.7039165, - 50.1301284 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Gruppe 24(2)", - "uid": "16454332", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-05T11:04:56Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/xwreHkX.jpg", - "https://i.imgur.com/gLcOqtE.jpg" - ], - "sport": [ - "table_tennis", - "boules" - ], - "access": [ - "public" - ], - "leisure": [ - "pitch" - ], - "surface": [ - "concrete", - "fine_gravel" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 7.04831500005038e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "answer": 4, - "locale": "de", - "imagery": "osm", - "add-image": 2 - }, - "id": 123229704 - } - }, - { - "id": 123229452, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.7036824, - 50.129966 - ], - [ - 8.7040365, - 50.129966 - ], - [ - 8.7040365, - 50.1303084 - ], - [ - 8.7036824, - 50.1303084 - ], - [ - 8.7036824, - 50.129966 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Gruppe 24(2)", - "uid": "16454332", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-05T10:58:35Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 6, - "modify": 9, - "delete": 0, - "area": 1.21243839998138e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 23, - "create": 6, - "locale": "de", - "imagery": "osm", - "add-image": 6 - }, - "id": 123229452 - } - }, - { - "id": 123229305, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.7069198, - 50.134164 - ], - [ - 8.7103853, - 50.134164 - ], - [ - 8.7103853, - 50.1346179 - ], - [ - 8.7069198, - 50.1346179 - ], - [ - 8.7069198, - 50.134164 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Gruppe_23", - "uid": "16454314", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #parkings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T10:55:19Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "parking" - ] - }, - "create": 6, - "modify": 9, - "delete": 1, - "area": 0.00000157299045001308, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/parkings.html", - "move": 1, - "theme": "parkings", - "answer": 1, - "create": 6, - "locale": "de", - "imagery": "osm", - "deletion": 1, - "add-image": 7, - "change_over_5000m": 6, - "change_within_25m": 10, - "move:node/9867967548": "improve_accuracy", - "deletion:node/9867967548": "testing point" - }, - "id": 123229305 - } - }, - { - "id": 123229163, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.7055278, - 50.1307477 - ], - [ - 8.7055278, - 50.1307477 - ], - [ - 8.7055278, - 50.1307477 - ], - [ - 8.7055278, - 50.1307477 - ], - [ - 8.7055278, - 50.1307477 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Gruppe 24(2)", - "uid": "16454332", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #ghostbikes", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-05T10:51:33Z", - "reviewed_features": [], - "tag_changes": { - "historic": [ - "memorial" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "ghostbikes", - "create": 1, - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 123229163 - } - }, - { - "id": 123228977, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 72.8115085, - 12.2813543 - ], - [ - 88.35084, - 12.2813543 - ], - [ - 88.35084, - 28.6337254 - ], - [ - 72.8115085, - 28.6337254 - ], - [ - 72.8115085, - 12.2813543 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-05T10:46:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 87, - "delete": 0, - "area": 254.10491533392, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 162, - "locale": "en", - "imagery": "osm" - }, - "id": 123228977 - } - }, - { - "id": 123228917, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3178672, - 50.8563182 - ], - [ - 4.3178672, - 50.8563182 - ], - [ - 4.3178672, - 50.8563182 - ], - [ - 4.3178672, - 50.8563182 - ], - [ - 4.3178672, - 50.8563182 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T10:44:52Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/G8wQzFL.jpg" - ], - "level": [ - "0" - ], - "access": [ - "yes" - ], - "indoor": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/aed.html", - "theme": "aed", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 4 - }, - "id": 123228917 - } - }, - { - "id": 123228876, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.7030246, - 50.1303316 - ], - [ - 8.7058175, - 50.1303316 - ], - [ - 8.7058175, - 50.1313426 - ], - [ - 8.7030246, - 50.1313426 - ], - [ - 8.7030246, - 50.1303316 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Gruppe 24(2)", - "uid": "16454332", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-05T10:43:51Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "parking", - "waste_basket" - ] - }, - "create": 6, - "modify": 7, - "delete": 0, - "area": 0.00000282362190001446, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "theme": "waste_basket", - "answer": 6, - "create": 6, - "locale": "de", - "imagery": "osm", - "add-image": 6 - }, - "id": 123228876 - } - }, - { - "id": 123228569, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.7066677, - 50.1339791 - ], - [ - 8.7091702, - 50.1339791 - ], - [ - 8.7091702, - 50.1346635 - ], - [ - 8.7066677, - 50.1346635 - ], - [ - 8.7066677, - 50.1339791 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Gruppe_23", - "uid": "16454314", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T10:35:43Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/T8K3Rcm.jpg" - ], - "highway": [ - "street_lamp" - ], - "light:lit": [ - "dusk-dawn" - ], - "light:colour": [ - "orange" - ] - }, - "create": 3, - "modify": 13, - "delete": 0, - "area": 0.00000171271100001111, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/parkings.html", - "move": 8, - "theme": "street_lighting", - "answer": 17, - "create": 3, - "locale": "de", - "imagery": "osm", - "add-image": 4, - "change_over_5000m": 3, - "change_within_25m": 29, - "move:node/9867887568": "improve_accuracy", - "move:node/9867916999": "improve_accuracy", - "move:node/9867935056": "improve_accuracy", - "move:node/9867936338": "improve_accuracy" - }, - "id": 123228569 - } - }, - { - "id": 123228456, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.7052006, - 50.1299207 - ], - [ - 8.7059891, - 50.1299207 - ], - [ - 8.7059891, - 50.1319977 - ], - [ - 8.7052006, - 50.1319977 - ], - [ - 8.7052006, - 50.1299207 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Gruppe 24(2)", - "uid": "16454332", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #parkings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-05T10:33:03Z", - "reviewed_features": [], - "tag_changes": { - "width": [ - "3.7" - ], - "amenity": [ - "parking" - ], - "highway": [ - "living_street" - ], - "source:width": [ - "ARCore" - ] - }, - "create": 6, - "modify": 6, - "delete": 0, - "area": 0.000001637714500001, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/parkings.html", - "theme": "parkings", - "create": 6, - "locale": "de", - "imagery": "osm", - "add-image": 6 - }, - "id": 123228456 - } - }, - { - "id": 123228072, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.7056351, - 50.1320166 - ], - [ - 8.7056536, - 50.1320166 - ], - [ - 8.7056536, - 50.1325681 - ], - [ - 8.7056351, - 50.1325681 - ], - [ - 8.7056351, - 50.1320166 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Gruppe 24(2)", - "uid": "16454332", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-05T10:24:49Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 6, - "modify": 11, - "delete": 0, - "area": 1.02027499997165e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 6, - "create": 6, - "locale": "de", - "imagery": "osm", - "add-image": 6 - }, - "id": 123228072 - } - }, - { - "id": 123227716, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.7067086, - 50.1339791 - ], - [ - 8.7076963, - 50.1339791 - ], - [ - 8.7076963, - 50.1344142 - ], - [ - 8.7067086, - 50.1344142 - ], - [ - 8.7067086, - 50.1339791 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Gruppe_23", - "uid": "16454314", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T10:17:00Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ] - }, - "create": 3, - "modify": 11, - "delete": 0, - "area": 4.29748270004011e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "move": 1, - "theme": "street_lighting", - "answer": 14, - "create": 3, - "locale": "de", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 3, - "change_within_25m": 17, - "move:node/9867916999": "improve_accuracy" - }, - "id": 123227716 - } - }, - { - "id": 123227355, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.705501, - 50.13202 - ], - [ - 8.7062252, - 50.13202 - ], - [ - 8.7062252, - 50.1337153 - ], - [ - 8.705501, - 50.1337153 - ], - [ - 8.705501, - 50.13202 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Gruppe 24(2)", - "uid": "16454332", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-05T10:08:46Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ] - }, - "create": 7, - "modify": 14, - "delete": 0, - "area": 0.00000122773626000195, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 15, - "create": 7, - "locale": "de", - "imagery": "osm", - "add-image": 6 - }, - "id": 123227355 - } - }, - { - "id": 123227004, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.70729, - 50.1342826 - ], - [ - 8.70729, - 50.1342826 - ], - [ - 8.70729, - 50.1342826 - ], - [ - 8.70729, - 50.1342826 - ], - [ - 8.70729, - 50.1342826 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Gruppe_23", - "uid": "16454314", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T10:01:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 1, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "theme": "waste_basket", - "create": 1, - "locale": "de", - "imagery": "Hessen-DOP20", - "deletion": 1, - "change_over_5000m": 1, - "change_within_25m": 1, - "deletion:node/9867859922": "not found" - }, - "id": 123227004 - } - }, - { - "id": 123226529, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1224413, - 52.0718285 - ], - [ - 5.1224413, - 52.0718285 - ], - [ - 5.1224413, - 52.0718285 - ], - [ - 5.1224413, - 52.0718285 - ], - [ - 5.1224413, - 52.0718285 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Koen Rijnsent", - "uid": "4569696", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T09:51:20Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "public_bookcase" - ], - "nobrand": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 123226529 - } - }, - { - "id": 123226513, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.8262855, - 51.2951115 - ], - [ - 14.8268137, - 51.2951115 - ], - [ - 14.8268137, - 51.296115 - ], - [ - 14.8262855, - 51.296115 - ], - [ - 14.8262855, - 51.2951115 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Gruppe 24(2)", - "uid": "16454332", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-05T09:51:02Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential" - ], - "maxspeed": [ - "30" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 5.30048700003146e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "theme": "maxspeed", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 123226513 - } - }, - { - "id": 123226225, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1224413, - 52.070124 - ], - [ - 5.1268333, - 52.070124 - ], - [ - 5.1268333, - 52.0718285 - ], - [ - 5.1224413, - 52.0718285 - ], - [ - 5.1224413, - 52.070124 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Koen Rijnsent", - "uid": "4569696", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T09:44:53Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "public_bookcase" - ] - }, - "create": 3, - "modify": 6, - "delete": 0, - "area": 0.00000748616400001101, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 7, - "create": 3, - "locale": "en", - "imagery": "osm", - "add-image": 3, - "change_over_5000m": 3, - "change_within_25m": 10 - }, - "id": 123226225 - } - }, - { - "id": 123225591, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6718616, - 50.8108499 - ], - [ - 5.6718616, - 50.8108499 - ], - [ - 5.6718616, - 50.8108499 - ], - [ - 5.6718616, - 50.8108499 - ], - [ - 5.6718616, - 50.8108499 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Hilde OSM", - "uid": "15275790", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T09:31:00Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "picnic_table" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_500m": 1 - }, - "id": 123225591 - } - }, - { - "id": 123225522, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6705815, - 50.8098967 - ], - [ - 5.6705815, - 50.8098967 - ], - [ - 5.6705815, - 50.8098967 - ], - [ - 5.6705815, - 50.8098967 - ], - [ - 5.6705815, - 50.8098967 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Hilde OSM", - "uid": "15275790", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T09:29:25Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ], - "changing_table": [ - "no" - ], - "toilets:position": [ - "seated" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "change_within_500m": 2 - }, - "id": 123225522 - } - }, - { - "id": 123225481, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6705815, - 50.8098967 - ], - [ - 5.6705815, - 50.8098967 - ], - [ - 5.6705815, - 50.8098967 - ], - [ - 5.6705815, - 50.8098967 - ], - [ - 5.6705815, - 50.8098967 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Hilde OSM", - "uid": "15275790", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T09:28:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_500m": 4 - }, - "id": 123225481 - } - }, - { - "id": 123224074, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.7057745, - 50.133466 - ], - [ - 8.7057906, - 50.133466 - ], - [ - 8.7057906, - 50.1334797 - ], - [ - 8.7057745, - 50.1334797 - ], - [ - 8.7057745, - 50.133466 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Gruppe 24(2)", - "uid": "16454332", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-05T08:53:25Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ] - }, - "create": 2, - "modify": 0, - "delete": 2, - "area": 2.20570000058837e-10, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 3, - "create": 2, - "locale": "de", - "imagery": "osm", - "deletion": 2, - "deletion:node/9867677240": "testing point", - "deletion:node/9867741024": "testing point" - }, - "id": 123224074 - } - }, - { - "id": 123224050, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6689852, - 50.8083967 - ], - [ - 5.6710444, - 50.8083967 - ], - [ - 5.6710444, - 50.814668 - ], - [ - 5.6689852, - 50.814668 - ], - [ - 5.6689852, - 50.8083967 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Hilde OSM", - "uid": "15275790", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T08:52:46Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 3, - "modify": 7, - "delete": 0, - "area": 0.0000129138609599925, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 15, - "create": 2, - "import": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 3, - "change_over_5000m": 3, - "change_within_25m": 13, - "change_within_500m": 5, - "import:node/9867768579": "source: https://osm.org/note/3044346" - }, - "id": 123224050 - } - }, - { - "id": 123223362, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0215466, - 51.1664196 - ], - [ - 5.0238246, - 51.1664196 - ], - [ - 5.0238246, - 51.1678587 - ], - [ - 5.0215466, - 51.1678587 - ], - [ - 5.0215466, - 51.1664196 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T08:35:32Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "garage", - "house", - "yes" - ], - "addr:street": [ - "Kievermont" - ], - "addr:housenumber": [ - "32" - ], - "source:geometry:ref": [ - "Gbg/6642543", - "Gbg/1698590", - "Gbg/6154667", - "Gbg/5127494", - "Gbg/1698459", - "Gbg/1698387", - "Gbg/1698481", - "Gbg/1698558", - "Gbg/1698557", - "Gbg/1698480", - "Gbg/6966724", - "Gbg/1698479" - ], - "source:geometry:date": [ - "2019-07-09", - "2009-08-13", - "2017-11-20", - "2021-07-05", - "2016-07-28" - ] - }, - "create": 87, - "modify": 73, - "delete": 1, - "area": 0.00000327826979999817, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 60, - "theme": "grb", - "answer": 1, - "delete": 1, - "import": 12, - "locale": "nl", - "imagery": "AGIV", - "conflation": 24 - }, - "id": 123223362 - } - }, - { - "id": 123222892, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0236416, - 51.1665768 - ], - [ - 5.0256533, - 51.1665768 - ], - [ - 5.0256533, - 51.1684067 - ], - [ - 5.0236416, - 51.1684067 - ], - [ - 5.0236416, - 51.1665768 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T08:22:25Z", - "reviewed_features": [], - "tag_changes": { - "power": [ - "substation" - ], - "building": [ - "roof", - "house", - "chapel", - "garage", - "yes", - "shed" - ], - "historic": [ - "chapel" - ], - "man_made": [ - "street_cabinet" - ], - "start_date": [ - "1877" - ], - "source:geometry:ref": [ - "Gbg/1698456", - "Gbg/1698435", - "Gbg/1698434", - "Gbg/1698455", - "Gbg/1698458", - "Gbg/1698397", - "Gbg/1698525", - "Gbg/1698457", - "Gbg/1698396", - "Gbg/1698484", - "Gbg/1698483", - "Gbg/6149179", - "Gbg/5127498", - "Gbg/1700120" - ], - "not:addr:housenumber": [ - "yes" - ], - "source:geometry:date": [ - "2009-08-13", - "2017-11-20", - "2019-07-09", - "2015-03-30" - ], - "year_of_construction": [ - "1877" - ] - }, - "create": 48, - "modify": 130, - "delete": 5, - "area": 0.00000368120982999357, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 114, - "theme": "grb", - "answer": 2, - "delete": 5, - "import": 6, - "locale": "nl", - "imagery": "AGIV", - "conflation": 28 - }, - "id": 123222892 - } - }, - { - "id": 123222850, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0245015, - 51.1677197 - ], - [ - 5.025214, - 51.1677197 - ], - [ - 5.025214, - 51.1679452 - ], - [ - 5.0245015, - 51.1679452 - ], - [ - 5.0245015, - 51.1677197 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T08:21:24Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes", - "house", - "garage", - "roof" - ], - "source:geometry:ref": [ - "Gbg/1698436", - "Gbg/1698527", - "Gbg/1698526" - ], - "source:geometry:date": [ - "2009-08-13" - ] - }, - "create": 3, - "modify": 33, - "delete": 0, - "area": 1.60668749999286e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 30, - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "AGIV", - "conflation": 6 - }, - "id": 123222850 - } - }, - { - "id": 123222833, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0250087, - 51.1676998 - ], - [ - 5.0251577, - 51.1676998 - ], - [ - 5.0251577, - 51.1677812 - ], - [ - 5.0250087, - 51.1677812 - ], - [ - 5.0250087, - 51.1676998 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T08:21:08Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes" - ], - "source:geometry:ref": [ - "Gbg/1698528" - ], - "source:geometry:date": [ - "2009-08-13" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 1.21285999999015e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 5, - "theme": "grb", - "locale": "nl", - "imagery": "AGIV", - "conflation": 2 - }, - "id": 123222833 - } - }, - { - "id": 123222810, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0247498, - 51.1672195 - ], - [ - 5.0260275, - 51.1672195 - ], - [ - 5.0260275, - 51.167646 - ], - [ - 5.0247498, - 51.167646 - ], - [ - 5.0247498, - 51.1672195 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T08:20:17Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes" - ], - "source:geometry:ref": [ - "Gbg/1698438", - "Gbg/1698529", - "Gbg/1698437", - "Gbg/6149138", - "Gbg/5127496" - ], - "source:geometry:date": [ - "2009-08-13", - "2017-11-20", - "2015-03-30" - ] - }, - "create": 4, - "modify": 50, - "delete": 2, - "area": 5.4493904999472e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 45, - "theme": "grb", - "delete": 2, - "locale": "nl", - "imagery": "AGIV", - "conflation": 10 - }, - "id": 123222810 - } - }, - { - "id": 123222681, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0225921, - 51.1652099 - ], - [ - 5.0253005, - 51.1652099 - ], - [ - 5.0253005, - 51.1669946 - ], - [ - 5.0225921, - 51.1669946 - ], - [ - 5.0225921, - 51.1652099 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T08:16:24Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes", - "roof" - ], - "source:geometry:ref": [ - "Gbg/1698405" - ], - "source:geometry:date": [ - "2015-03-30" - ] - }, - "create": 11, - "modify": 17, - "delete": 12, - "area": 0.00000483368148000543, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 16, - "theme": "grb", - "delete": 12, - "import": 2, - "locale": "nl", - "imagery": "AGIV", - "conflation": 2 - }, - "id": 123222681 - } - }, - { - "id": 123222572, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T08:12:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 123222572 - } - }, - { - "id": 123221859, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0221154, - 51.1647086 - ], - [ - 5.0241583, - 51.1647086 - ], - [ - 5.0241583, - 51.1665091 - ], - [ - 5.0221154, - 51.1665091 - ], - [ - 5.0221154, - 51.1647086 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T07:52:31Z", - "reviewed_features": [], - "tag_changes": { - "fixme": [ - "huisnr?" - ], - "leisure": [ - "dance" - ], - "building": [ - "house", - "yes", - "garage", - "shed", - "roof" - ], - "source:geometry:ref": [ - "Gbg/1698401", - "Gbg/1698400", - "Gbg/1698394", - "Gbg/1698402", - "Gbg/5655296", - "Gbg/1698393", - "Gbg/1698392", - "Gbg/1698391", - "Gbg/5654297", - "Gbg/5127486", - "Gbg/1698474", - "Gbg/1698492", - "Gbg/1699059", - "Gbg/1699058", - "Gbg/5123368", - "Gbg/1698418", - "Gbg/1698403", - "Gbg/1698417", - "Gbg/1699144", - "Gbg/1699143", - "Gbg/1699060", - "Gbg/1699141", - "Gbg/6966734", - "Gbg/5740359" - ], - "source:geometry:date": [ - "2009-08-13", - "2016-07-28", - "2015-03-30", - "2019-07-09", - "2021-07-05", - "2016-11-21" - ] - }, - "create": 34, - "modify": 220, - "delete": 11, - "area": 0.00000367824145000369, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 194, - "theme": "grb", - "answer": 4, - "delete": 11, - "import": 6, - "locale": "nl", - "imagery": "AGIV", - "conflation": 48 - }, - "id": 123221859 - } - }, - { - "id": 123221849, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0218766, - 51.1656371 - ], - [ - 5.0221, - 51.1656371 - ], - [ - 5.0221, - 51.1659305 - ], - [ - 5.0218766, - 51.1659305 - ], - [ - 5.0218766, - 51.1656371 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T07:52:10Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes" - ], - "source:geometry:ref": [ - "Gbg/5127485" - ], - "source:geometry:date": [ - "2015-03-30" - ] - }, - "create": 6, - "modify": 5, - "delete": 0, - "area": 6.55455600009611e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 4, - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "AGIV", - "conflation": 2 - }, - "id": 123221849 - } - }, - { - "id": 123220842, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0188176, - 51.164391 - ], - [ - 5.0226137, - 51.164391 - ], - [ - 5.0226137, - 51.1658648 - ], - [ - 5.0188176, - 51.1658648 - ], - [ - 5.0188176, - 51.164391 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T07:26:32Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes", - "garage", - "shed", - "roof" - ], - "source:geometry:ref": [ - "Gbg/1698395", - "Gbg/1699139", - "Gbg/1700177", - "Gbg/1699054", - "Gbg/1699055", - "Gbg/1699012", - "Gbg/1699008", - "Gbg/1699006", - "Gbg/1699007", - "Gbg/1699011", - "Gbg/1699009", - "Gbg/1699010", - "Gbg/1700131", - "Gbg/1699138", - "Gbg/5127480", - "Gbg/5127481", - "Gbg/5654353", - "Gbg/6155294", - "Gbg/5655373", - "Gbg/6150403", - "Gbg/6150672", - "Gbg/1699104", - "Gbg/6150297", - "Gbg/1699099", - "Gbg/5127521", - "Gbg/1699105", - "Gbg/6154978", - "Gbg/1699103", - "Gbg/1699102" - ], - "source:geometry:date": [ - "2009-08-13", - "2017-11-20", - "2019-07-09", - "2021-07-05", - "2016-07-28", - "2015-03-30" - ] - }, - "create": 32, - "modify": 209, - "delete": 3, - "area": 0.0000055946921799974, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 178, - "theme": "grb", - "answer": 8, - "delete": 3, - "import": 2, - "locale": "nl", - "imagery": "AGIV", - "conflation": 58 - }, - "id": 123220842 - } - }, - { - "id": 123220828, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0187335, - 51.1645562 - ], - [ - 5.0188046, - 51.1645562 - ], - [ - 5.0188046, - 51.1645864 - ], - [ - 5.0187335, - 51.1645864 - ], - [ - 5.0187335, - 51.1645562 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T07:26:18Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes" - ], - "source:geometry:ref": [ - "Gbg/1699107" - ], - "source:geometry:date": [ - "2009-08-13" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 2.14721999984596e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 4, - "theme": "grb", - "locale": "nl", - "imagery": "AGIV", - "conflation": 2 - }, - "id": 123220828 - } - }, - { - "id": 123220814, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0186149, - 51.1642765 - ], - [ - 5.0188212, - 51.1642765 - ], - [ - 5.0188212, - 51.1646017 - ], - [ - 5.0186149, - 51.1646017 - ], - [ - 5.0186149, - 51.1642765 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T07:25:52Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes" - ], - "source:geometry:ref": [ - "Gbg/1699021", - "Gbg/1699108" - ], - "source:geometry:date": [ - "2017-11-20", - "2009-08-13" - ] - }, - "create": 0, - "modify": 18, - "delete": 0, - "area": 6.70887599995933e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 16, - "theme": "grb", - "locale": "nl", - "imagery": "AGIV", - "conflation": 4 - }, - "id": 123220814 - } - }, - { - "id": 123220805, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0185051, - 51.1646894 - ], - [ - 5.0185564, - 51.1646894 - ], - [ - 5.0185564, - 51.1647941 - ], - [ - 5.0185051, - 51.1647941 - ], - [ - 5.0185051, - 51.1646894 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T07:25:41Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes" - ], - "source:geometry:ref": [ - "Gbg/1699112" - ], - "source:geometry:date": [ - "2009-08-13" - ] - }, - "create": 0, - "modify": 11, - "delete": 0, - "area": 5.37111000006939e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 10, - "theme": "grb", - "locale": "nl", - "imagery": "AGIV", - "conflation": 2 - }, - "id": 123220805 - } - }, - { - "id": 123220789, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0182931, - 51.1646992 - ], - [ - 5.0183424, - 51.1646992 - ], - [ - 5.0183424, - 51.1648227 - ], - [ - 5.0182931, - 51.1648227 - ], - [ - 5.0182931, - 51.1646992 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T07:25:30Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes" - ], - "source:geometry:ref": [ - "Gbg/1699111" - ], - "source:geometry:date": [ - "2009-08-13" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 6.08855000000354e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 4, - "theme": "grb", - "locale": "nl", - "imagery": "AGIV", - "conflation": 2 - }, - "id": 123220789 - } - }, - { - "id": 123220780, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0183095, - 51.1646633 - ], - [ - 5.0184001, - 51.1646633 - ], - [ - 5.0184001, - 51.1646945 - ], - [ - 5.0183095, - 51.1646945 - ], - [ - 5.0183095, - 51.1646633 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T07:25:22Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes" - ], - "source:geometry:ref": [ - "Gbg/1699110" - ], - "source:geometry:date": [ - "2009-08-13" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 2.8267200002036e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 4, - "theme": "grb", - "locale": "nl", - "imagery": "AGIV", - "conflation": 2 - }, - "id": 123220780 - } - }, - { - "id": 123220143, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0146364, - 51.1638991 - ], - [ - 5.0185699, - 51.1638991 - ], - [ - 5.0185699, - 51.1649936 - ], - [ - 5.0146364, - 51.1649936 - ], - [ - 5.0146364, - 51.1638991 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T07:10:35Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "foot" - ], - "barrier": [ - "wall" - ], - "building": [ - "house", - "yes", - "garage", - "shed", - "roof" - ], - "addr:housenumber": [ - "16;16A", - "16,16A" - ], - "source:geometry:ref": [ - "Gbg/1699018", - "Gbg/1699015", - "Gbg/1699020", - "Gbg/1699016", - "Gbg/1699019", - "Gbg/1699014", - "Gbg/6966311", - "Gbg/1699109", - "Gbg/1699013", - "Gbg/1699033", - "Gbg/1699017", - "Gbg/1699113", - "Gbg/1699117", - "Gbg/5127520", - "Gbg/5127522", - "Gbg/1699114", - "Gbg/1699116", - "Gbg/1700023", - "Gbg/1700024", - "Gbg/5740476", - "Gbg/1699115" - ], - "source:geometry:date": [ - "2009-08-13", - "2016-07-28", - "2021-07-05", - "2015-03-30", - "2017-11-20" - ] - }, - "create": 74, - "modify": 150, - "delete": 0, - "area": 0.00000430521575000314, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 128, - "theme": "grb", - "answer": 3, - "import": 10, - "locale": "nl", - "imagery": "AGIV", - "conflation": 42 - }, - "id": 123220143 - } - }, - { - "id": 123219853, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.3761769, - 48.5554512 - ], - [ - 9.3761769, - 48.5554512 - ], - [ - 9.3761769, - 48.5554512 - ], - [ - 9.3761769, - 48.5554512 - ], - [ - 9.3761769, - 48.5554512 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-05T07:04:15Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "image": [ - "https://i.imgur.com/bRwwEGY.jpg" - ], - "amenity": [ - "toilets" - ], - "toilets:position": [ - "seated;urinal" - ], - "toilets:paper_supplied": [ - "yes" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 3, - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 123219853 - } - }, - { - "id": 123215119, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 72.840554, - 12.9505818 - ], - [ - 88.3698382, - 12.9505818 - ], - [ - 88.3698382, - 30.9007274 - ], - [ - 72.840554, - 30.9007274 - ], - [ - 72.840554, - 12.9505818 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-05T04:36:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 37, - "delete": 0, - "area": 278.75291245378, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 45, - "locale": "en", - "imagery": "osm" - }, - "id": 123215119 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-06.json b/Docs/Tools/stats/stats.2022-7-06.json deleted file mode 100644 index 842315b49b..0000000000 --- a/Docs/Tools/stats/stats.2022-7-06.json +++ /dev/null @@ -1,1390 +0,0 @@ -{ - "features": [ - { - "id": 123295811, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0880203, - 38.8461799 - ], - [ - 0.0933637, - 38.8461799 - ], - [ - 0.0933637, - 38.8486852 - ], - [ - 0.0880203, - 38.8486852 - ], - [ - 0.0880203, - 38.8461799 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-06T23:07:25Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "waste_disposal", - "recycling" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.0000133868200199771, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 2, - "locale": "ca", - "imagery": "osm", - "add-image": 2 - }, - "id": 123295811 - } - }, - { - "id": 123290413, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.2512524, - 52.3771451 - ], - [ - -1.2507886, - 52.3771451 - ], - [ - -1.2507886, - 52.3779357 - ], - [ - -1.2512524, - 52.3779357 - ], - [ - -1.2512524, - 52.3771451 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "gnesss", - "uid": "6274199", - "editor": "MapComplete 0.21.0", - "comment": "Adding data with #MapComplete for theme #uk_addresses", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-06T19:25:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 16, - "modify": 17, - "delete": 0, - "area": 3.66680280001014e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/uk_addresses.html", - "theme": "uk_addresses", - "answer": 31, - "import": 16, - "locale": "en", - "imagery": "osm" - }, - "id": 123290413 - } - }, - { - "id": 123288305, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.8911026, - 51.9280268 - ], - [ - 13.8958636, - 51.9280268 - ], - [ - 13.8958636, - 51.9345923 - ], - [ - 13.8911026, - 51.9345923 - ], - [ - 13.8911026, - 51.9280268 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Thommi_07", - "uid": "16458584", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-06T18:14:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 0, - "delete": 0, - "area": 0.0000312583455000047, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123288305 - } - }, - { - "id": 123285972, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3293549, - 50.8624083 - ], - [ - 4.3377931, - 50.8624083 - ], - [ - 4.3377931, - 50.8779243 - ], - [ - 4.3293549, - 50.8779243 - ], - [ - 4.3293549, - 50.8624083 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-06T16:58:54Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "artwork" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 0.000130927111199978, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/artwork.html", - "theme": "artwork", - "answer": 1, - "create": 2, - "locale": "en", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 2, - "change_within_25m": 3 - }, - "id": 123285972 - } - }, - { - "id": 123285203, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 72.5322197, - 11.0129631 - ], - [ - 88.4028645, - 11.0129631 - ], - [ - 88.4028645, - 30.3402864 - ], - [ - 72.5322197, - 30.3402864 - ], - [ - 72.5322197, - 11.0129631 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-06T16:34:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 277, - "delete": 0, - "area": 306.737083029064, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 386, - "locale": "en", - "imagery": "osm" - }, - "id": 123285203 - } - }, - { - "id": 123284110, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3248045, - 50.8530122 - ], - [ - 4.3248059, - 50.8530122 - ], - [ - 4.3248059, - 50.8530731 - ], - [ - 4.3248045, - 50.8530731 - ], - [ - 4.3248045, - 50.8530122 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-06T15:59:22Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "copyshop", - "convenience" - ], - "image": [ - "https://i.imgur.com/Z5WsyUy.jpg" - ] - }, - "create": 1, - "modify": 4, - "delete": 0, - "area": 8.52600000243323e-11, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/shops.html", - "theme": "shops", - "answer": 10, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 1, - "change_within_25m": 12 - }, - "id": 123284110 - } - }, - { - "id": 123282216, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.2497048, - 52.7628106 - ], - [ - 13.2583173, - 52.7628106 - ], - [ - 13.2583173, - 52.7652759 - ], - [ - 13.2497048, - 52.7652759 - ], - [ - 13.2497048, - 52.7628106 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "SebastianFranz", - "uid": "16395555", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-06T15:06:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 9, - "modify": 8, - "delete": 0, - "area": 0.0000212323962499759, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123282216 - } - }, - { - "id": 123282048, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.316601, - 50.8537057 - ], - [ - 4.316601, - 50.8537057 - ], - [ - 4.316601, - 50.8537057 - ], - [ - 4.316601, - 50.8537057 - ], - [ - 4.316601, - 50.8537057 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-06T15:02:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/food.html", - "theme": "food", - "locale": "en", - "imagery": "osm", - "special-delete": 1 - }, - "id": 123282048 - } - }, - { - "id": 123281287, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.5830426, - 55.7072202 - ], - [ - 12.5830426, - 55.7072202 - ], - [ - 12.5830426, - 55.7072202 - ], - [ - 12.5830426, - 55.7072202 - ], - [ - 12.5830426, - 55.7072202 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Niels Elgaard Larsen", - "uid": "1288", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-06T14:42:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 123281287 - } - }, - { - "id": 123281172, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 21.1372986, - 56.2122503 - ], - [ - 21.1372986, - 56.2122503 - ], - [ - 21.1372986, - 56.2122503 - ], - [ - 21.1372986, - 56.2122503 - ], - [ - 21.1372986, - 56.2122503 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "arturslunevs", - "uid": "10481190", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-06T14:39:19Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "create": 1, - "locale": "en", - "imagery": "LV_ORTOFOTO_C6", - "change_over_5000m": 1 - }, - "id": 123281172 - } - }, - { - "id": 123274521, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5149036, - 51.1496064 - ], - [ - 4.5243747, - 51.1496064 - ], - [ - 4.5243747, - 51.1602366 - ], - [ - 4.5149036, - 51.1602366 - ], - [ - 4.5149036, - 51.1496064 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #cyclestreets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-06T11:52:05Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential", - "unclassified" - ], - "maxspeed": [ - "30", - "50" - ], - "cyclestreet": [ - "yes" - ], - "overtaking:motor_vehicle": [ - "no" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.000100679687219944, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclestreets.html", - "theme": "cyclestreets", - "answer": 5, - "locale": "nl", - "imagery": "osm" - }, - "id": 123274521 - } - }, - { - "id": 123272200, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4466715, - 52.5418311 - ], - [ - 13.4466715, - 52.5418311 - ], - [ - 13.4466715, - 52.5418311 - ], - [ - 13.4466715, - 52.5418311 - ], - [ - 13.4466715, - 52.5418311 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Annika_atip:tap", - "uid": "15923056", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-06T10:50:29Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "drinking_water" - ] - }, - "create": 0, - "modify": 0, - "delete": 1, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "locale": "en", - "imagery": "CartoDB.Voyager", - "deletion": 1, - "deletion:node/9860430193": "duplicate" - }, - "id": 123272200 - } - }, - { - "id": 123270189, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.5482168, - 55.6466373 - ], - [ - 12.5484702, - 55.6466373 - ], - [ - 12.5484702, - 55.6467801 - ], - [ - 12.5482168, - 55.6467801 - ], - [ - 12.5482168, - 55.6466373 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Niels Elgaard Larsen", - "uid": "1288", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-06T09:57:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 3.61855199997564e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "answer": 2, - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 123270189 - } - }, - { - "id": 123269792, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4760549, - 51.0309255 - ], - [ - 4.4760549, - 51.0309255 - ], - [ - 4.4760549, - 51.0309255 - ], - [ - 4.4760549, - 51.0309255 - ], - [ - 4.4760549, - 51.0309255 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Dimitri Van Baelen", - "uid": "4885015", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-06T09:49:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 123269792 - } - }, - { - "id": 123269175, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2212722, - 51.2177581 - ], - [ - 3.2212722, - 51.2177581 - ], - [ - 3.2212722, - 51.2177581 - ], - [ - 3.2212722, - 51.2177581 - ], - [ - 3.2212722, - 51.2177581 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #doctors", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-06T09:36:52Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "doctors" - ], - "healthcare:speciality": [ - "general" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://1234-pietervdvn-mapcomplete-cbvf6umx6aw.ws-eu51.gitpod.io/theme.html", - "theme": "doctors", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 123269175 - } - }, - { - "id": 123263942, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.2434957, - 52.7322489 - ], - [ - 13.248611, - 52.7322489 - ], - [ - 13.248611, - 52.7563975 - ], - [ - 13.2434957, - 52.7563975 - ], - [ - 13.2434957, - 52.7322489 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "SebastianFranz", - "uid": "16395555", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-06T07:32:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 1, - "delete": 0, - "area": 0.000123527333579981, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123263942 - } - }, - { - "id": 123261767, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9771554, - 51.0334128 - ], - [ - 4.9779886, - 51.0334128 - ], - [ - 4.9779886, - 51.0341496 - ], - [ - 4.9771554, - 51.0341496 - ], - [ - 4.9771554, - 51.0334128 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-06T06:35:13Z", - "reviewed_features": [], - "tag_changes": { - "barrier": [ - "city_wall" - ], - "building": [ - "yes", - "house" - ], - "source:geometry:ref": [ - "Gbg/2442513", - "Gbg/6121864" - ], - "source:geometry:date": [ - "2016-04-04", - "2017-11-13" - ] - }, - "create": 0, - "modify": 14, - "delete": 0, - "area": 6.13901759998603e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 12, - "theme": "grb", - "locale": "nl", - "imagery": "AGIV", - "conflation": 4 - }, - "id": 123261767 - } - }, - { - "id": 123261274, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9748402, - 51.0322287 - ], - [ - 4.9798515, - 51.0322287 - ], - [ - 4.9798515, - 51.0361699 - ], - [ - 4.9748402, - 51.0361699 - ], - [ - 4.9748402, - 51.0322287 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-06T06:21:16Z", - "reviewed_features": [], - "tag_changes": { - "barrier": [ - "wall", - "city_wall", - "castle_wall" - ], - "highway": [ - "service", - "footway" - ], - "building": [ - "yes", - "house", - "barn" - ], - "addr:street": [ - "Herseltsebaan", - "Abdijstraat" - ], - "addr:housenumber": [ - "2", - "1" - ], - "source:geometry:ref": [ - "Gbg/6121800", - "Gbg/6121808", - "Gbg/2442510", - "Gbg/6119034", - "Gbg/6119023", - "Gbg/6119033", - "Gbg/5027040", - "Gbg/5028087", - "Gbg/6121802" - ], - "source:geometry:date": [ - "2018-03-15", - "2017-11-13", - "2015-02-05", - "2019-05-09" - ] - }, - "create": 36, - "modify": 90, - "delete": 2, - "area": 0.0000197505355599978, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 78, - "theme": "grb", - "answer": 7, - "delete": 2, - "import": 7, - "locale": "nl", - "imagery": "AGIV", - "conflation": 18 - }, - "id": 123261274 - } - }, - { - "id": 123256718, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 69.6229917, - 9.9000768 - ], - [ - 90.5233221, - 9.9000768 - ], - [ - 90.5233221, - 32.5389552 - ], - [ - 69.6229917, - 32.5389552 - ], - [ - 69.6229917, - 9.9000768 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 489, - "name": "Mapbox: Spam text" - }, - { - "id": 531, - "name": "Mapbox: Overlapping features" - } - ], - "tags": [], - "features": [ - { - "url": "way-828016797", - "note": "Spam text reported in [\"name\",\"name:etymology:wikidata\"] tags in the feature", - "osm_id": 828016797, - "reasons": [ - 489, - 531 - ], - "version": 2 - } - ], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-06T03:42:06Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "college" - ], - "highway": [ - "primary" - ], - "leisure": [ - "park" - ], - "name:etymology:wikidata": [ - "Q1047", - "Q3633365" - ] - }, - "create": 0, - "modify": 102, - "delete": 0, - "area": 473.160038445423, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 112, - "locale": "en", - "imagery": "osm" - }, - "id": 123256718 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-07.json b/Docs/Tools/stats/stats.2022-7-07.json deleted file mode 100644 index d187ed471c..0000000000 --- a/Docs/Tools/stats/stats.2022-7-07.json +++ /dev/null @@ -1,3672 +0,0 @@ -{ - "features": [ - { - "id": 123337320, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9947496, - 51.1510846 - ], - [ - 5.0276409, - 51.1510846 - ], - [ - 5.0276409, - 51.1804305 - ], - [ - 4.9947496, - 51.1804305 - ], - [ - 4.9947496, - 51.1510846 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T21:47:10Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "parking" - ], - "highway": [ - "unclassified" - ], - "building": [ - "yes", - "industrial", - "house", - "apartments", - "parking", - "garage", - "roof" - ], - "addr:housenumber": [ - "23;25;27;29;31;33;35;37;39", - "23-39", - "26;28", - "26" - ], - "source:geometry:ref": [ - "Gbg/6154433", - "Gbg/1698211", - "Gbg/6149736", - "Gbg/1712424", - "Gbg/1712425", - "Gbg/6154785", - "Gbg/1698252", - "Gbg/5122835", - "Gbg/1705980", - "Gbg/1705940", - "Gbg/1712449", - "Gbg/5740440", - "Gbg/1705939", - "Gbg/1713430", - "Gbg/6149685", - "Gbg/6154408", - "Gbg/6153183", - "Gbg/1698244", - "Gbg/5126715" - ], - "source:geometry:date": [ - "2017-11-20", - "2009-08-13", - "2019-07-09", - "2009-09-21", - "2009-11-17" - ] - }, - "create": 62, - "modify": 191, - "delete": 4, - "area": 0.000965224800670094, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 170, - "theme": "grb", - "answer": 3, - "delete": 4, - "import": 7, - "locale": "nl", - "imagery": "AGIV", - "conflation": 40 - }, - "id": 123337320 - } - }, - { - "id": 123337192, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0125184, - 51.176518 - ], - [ - 5.0167921, - 51.176518 - ], - [ - 5.0167921, - 51.1778272 - ], - [ - 5.0125184, - 51.1778272 - ], - [ - 5.0125184, - 51.176518 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T21:41:47Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes", - "shed", - "garage", - "roof" - ], - "source:geometry:ref": [ - "Gbg/1697911", - "Gbg/1697909", - "Gbg/5122710", - "Gbg/1711147", - "Gbg/1711145", - "Gbg/1697898", - "Gbg/1711144", - "Gbg/1697910", - "Gbg/1711146", - "Gbg/6928661", - "Gbg/1697918", - "Gbg/1697917", - "Gbg/5740405", - "Gbg/5123139", - "Gbg/1711189", - "Gbg/1711190", - "Gbg/1711191", - "Gbg/6151250", - "Gba/405210", - "Gba/405209" - ], - "source:geometry:date": [ - "2009-08-13", - "2015-03-30", - "2009-11-17", - "2020-03-10", - "2017-11-20", - "2019-07-09" - ] - }, - "create": 26, - "modify": 173, - "delete": 6, - "area": 0.00000559512804000584, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 153, - "theme": "grb", - "delete": 6, - "import": 4, - "locale": "nl", - "imagery": "AGIV", - "conflation": 40 - }, - "id": 123337192 - } - }, - { - "id": 123337147, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0117234, - 51.1748626 - ], - [ - 5.0136132, - 51.1748626 - ], - [ - 5.0136132, - 51.176553 - ], - [ - 5.0117234, - 51.176553 - ], - [ - 5.0117234, - 51.1748626 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T21:39:39Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "farm", - "shed", - "dh", - "yes", - "roof" - ], - "source:geometry:ref": [ - "Gbg/6154725", - "Gbg/5654235", - "Gbg/1697902", - "Gbg/1697901", - "Gbg/6966709", - "Gbg/1697946", - "Gbg/1697945", - "Gbg/6153744", - "Gbg/5127591", - "Gbg/5127579", - "Gbg/5654236" - ], - "source:geometry:date": [ - "2017-11-20", - "2009-08-13", - "2021-07-05", - "2016-07-28", - "2015-11-26", - "2015-03-30" - ] - }, - "create": 25, - "modify": 77, - "delete": 0, - "area": 0.00000319451792000178, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 67, - "theme": "grb", - "answer": 1, - "import": 3, - "locale": "nl", - "imagery": "AGIV", - "conflation": 22 - }, - "id": 123337147 - } - }, - { - "id": 123334133, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 39.1284165, - 51.6510207 - ], - [ - 39.1289124, - 51.6510207 - ], - [ - 39.1289124, - 51.6514202 - ], - [ - 39.1284165, - 51.6514202 - ], - [ - 39.1284165, - 51.6510207 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "SoNick_RND", - "uid": "34198", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-07T19:48:40Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "surveillance" - ], - "camera:mount": [ - "wall" - ], - "surveillance": [ - "public" - ], - "camera:direction": [ - "1", - "0" - ], - "surveillance:type": [ - "camera" - ], - "surveillance:zone": [ - "entrance", - "Park alley and intersection" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.98112049999008e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance", - "theme": "surveillance", - "answer": 4, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 123334133 - } - }, - { - "id": 123334053, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 39.1284165, - 51.6509597 - ], - [ - 39.1295639, - 51.6509597 - ], - [ - 39.1295639, - 51.6514202 - ], - [ - 39.1284165, - 51.6514202 - ], - [ - 39.1284165, - 51.6509597 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "SoNick_RND", - "uid": "34198", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-07T19:46:15Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "surveillance" - ], - "surveillance:zone": [ - "entrance" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 5.28377699995192e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance", - "theme": "surveillance", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 123334053 - } - }, - { - "id": 123333755, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 39.1284511, - 51.65083 - ], - [ - 39.1297639, - 51.65083 - ], - [ - 39.1297639, - 51.6510628 - ], - [ - 39.1284511, - 51.6510628 - ], - [ - 39.1284511, - 51.65083 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "SoNick_RND", - "uid": "34198", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-07T19:37:56Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "apartments" - ], - "man_made": [ - "surveillance" - ], - "operator": [ - "citykrepost.ru/cabinet/videos/738", - "citykrepost.ru" - ], - "camera:type": [ - "fixed" - ], - "camera:mount": [ - "wall" - ], - "surveillance": [ - "public" - ], - "camera:direction": [ - "13", - "354" - ], - "surveillance:type": [ - "camera" - ], - "surveillance:zone": [ - "parking" - ] - }, - "create": 1, - "modify": 14, - "delete": 0, - "area": 3.05619839999085e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance", - "theme": "surveillance", - "answer": 16, - "create": 6, - "locale": "en", - "imagery": "osm" - }, - "id": 123333755 - } - }, - { - "id": 123333237, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.1169665, - 49.8907419 - ], - [ - 7.1176173, - 49.8907419 - ], - [ - 7.1176173, - 49.8910808 - ], - [ - 7.1169665, - 49.8910808 - ], - [ - 7.1169665, - 49.8907419 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "s6mables", - "uid": "8409097", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-07T19:21:34Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "playground" - ], - "surface": [ - "grass" - ], - "operator": [ - "Gemeinde Longkamp" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 2.20556119997076e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 123333237 - } - }, - { - "id": 123330501, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3526848, - 50.856259 - ], - [ - 4.3527849, - 50.856259 - ], - [ - 4.3527849, - 50.856309 - ], - [ - 4.3526848, - 50.856309 - ], - [ - 4.3526848, - 50.856259 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #fritures", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T17:53:03Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "fast_food" - ], - "building": [ - "yes" - ], - "payment:cash": [ - "yes" - ], - "payment:cards": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 5.00500000016852e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/fritures.html", - "theme": "fritures", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 123330501 - } - }, - { - "id": 123328508, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3526848, - 50.856259 - ], - [ - 4.3527849, - 50.856259 - ], - [ - 4.3527849, - 50.856309 - ], - [ - 4.3526848, - 50.856309 - ], - [ - 4.3526848, - 50.856259 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #fritures", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T16:46:03Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "fast_food" - ], - "building": [ - "yes" - ], - "takeaway": [ - "yes" - ], - "service:electricity": [ - "no" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 5.00500000016852e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/fritures.html", - "theme": "fritures", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 2 - }, - "id": 123328508 - } - }, - { - "id": 123327996, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3523693, - 50.8564732 - ], - [ - 4.3523693, - 50.8564732 - ], - [ - 4.3523693, - 50.8564732 - ], - [ - 4.3523693, - 50.8564732 - ], - [ - 4.3523693, - 50.8564732 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T16:34:35Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "pub" - ], - "payment:cash": [ - "yes" - ], - "payment:cards": [ - "no" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 123327996 - } - }, - { - "id": 123326665, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3521239, - 50.8564083 - ], - [ - 4.3525245, - 50.8564083 - ], - [ - 4.3525245, - 50.8566265 - ], - [ - 4.3521239, - 50.8566265 - ], - [ - 4.3521239, - 50.8564083 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T15:57:18Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 8.74109199997864e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/entrances.html", - "theme": "entrances", - "create": 2, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 2 - }, - "id": 123326665 - } - }, - { - "id": 123326096, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3529386, - 50.8564443 - ], - [ - 4.3529386, - 50.8564443 - ], - [ - 4.3529386, - 50.8564443 - ], - [ - 4.3529386, - 50.8564443 - ], - [ - 4.3529386, - 50.8564443 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T15:44:12Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ], - "opening_hours": [ - "24/7" - ], - "changing_table": [ - "no" - ], - "toilets:handwashing": [ - "no" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/toilets.html", - "theme": "toilets", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "change_within_50m": 3 - }, - "id": 123326096 - } - }, - { - "id": 123324547, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5388796, - 53.2273896 - ], - [ - 6.5390915, - 53.2273896 - ], - [ - 6.5390915, - 53.2277902 - ], - [ - 6.5388796, - 53.2277902 - ], - [ - 6.5388796, - 53.2273896 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T15:03:37Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 8.48871399997997e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "move": 2, - "theme": "trees", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "Actueel_orthoHR_WMTS", - "change_over_5000m": 1, - "change_within_25m": 3, - "move:node/9872586614": "improve_accuracy", - "move:node/9872586615": "improve_accuracy" - }, - "id": 123324547 - } - }, - { - "id": 123324541, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T15:03:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "en", - "imagery": "Actueel_orthoHR_WMTS", - "change_within_25m": 1 - }, - "id": 123324541 - } - }, - { - "id": 123324537, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5390137, - 53.2272847 - ], - [ - 6.5391156, - 53.2272847 - ], - [ - 6.5391156, - 53.2275302 - ], - [ - 6.5390137, - 53.2275302 - ], - [ - 6.5390137, - 53.2272847 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T15:03:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 0, - "delete": 0, - "area": 2.50164499997739e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 6, - "create": 3, - "locale": "en", - "imagery": "Actueel_orthoHR_WMTS", - "change_over_5000m": 3, - "change_within_25m": 6 - }, - "id": 123324537 - } - }, - { - "id": 123324460, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5450419, - 53.2255425 - ], - [ - 6.5450419, - 53.2255425 - ], - [ - 6.5450419, - 53.2255425 - ], - [ - 6.5450419, - 53.2255425 - ], - [ - 6.5450419, - 53.2255425 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T15:01:02Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 123324460 - } - }, - { - "id": 123324045, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5495521, - 53.2158083 - ], - [ - 6.5577707, - 53.2158083 - ], - [ - 6.5577707, - 53.2171268 - ], - [ - 6.5495521, - 53.2171268 - ], - [ - 6.5495521, - 53.2158083 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T14:52:03Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "leaf_type": [ - "broadleaved" - ] - }, - "create": 12, - "modify": 25, - "delete": 0, - "area": 0.0000108362241000294, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 37, - "create": 12, - "locale": "en", - "imagery": "Actueel_orthoHR_WMTS", - "change_over_5000m": 12, - "change_within_25m": 28, - "change_within_50m": 9 - }, - "id": 123324045 - } - }, - { - "id": 123320682, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7339741, - -34.6636471 - ], - [ - -58.6088674, - -34.6636471 - ], - [ - -58.6088674, - -34.6465004 - ], - [ - -58.7339741, - -34.6465004 - ], - [ - -58.7339741, - -34.6636471 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AgusQui", - "uid": "331218", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T13:24:38Z", - "reviewed_features": [], - "tag_changes": { - "ref": [ - "HD 49", - "RO 55" - ], - "railway": [ - "signal" - ], - "railway:signal:shunting:ref": [ - "CL 43" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00214516705288967, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "answer": 3, - "locale": "es", - "imagery": "osm", - "change_within_25m": 1, - "change_within_100m": 1, - "change_within_500m": 1 - }, - "id": 123320682 - } - }, - { - "id": 123311529, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.946606, - 50.4069365 - ], - [ - 2.9647719, - 50.4069365 - ], - [ - 2.9647719, - 50.4244826 - ], - [ - 2.946606, - 50.4244826 - ], - [ - 2.946606, - 50.4069365 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "whatismoss", - "uid": "8427311", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-07T10:09:14Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "secondary", - "footway", - "service", - "pedestrian" - ], - "leisure": [ - "sports_centre" - ], - "boundary": [ - "political" - ], - "name:etymology:wikidata": [ - "Q841275", - "Q110420244", - "Q12688", - "Q2038" - ] - }, - "create": 0, - "modify": 10, - "delete": 0, - "area": 0.000318740697989947, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 14, - "locale": "en", - "imagery": "osm" - }, - "id": 123311529 - } - }, - { - "id": 123311469, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3551079, - 50.8601402 - ], - [ - 4.3551079, - 50.8601402 - ], - [ - 4.3551079, - 50.8601402 - ], - [ - 4.3551079, - 50.8601402 - ], - [ - 4.3551079, - 50.8601402 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T10:07:41Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "restaurant" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 123311469 - } - }, - { - "id": 123311316, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3533586, - 50.8600278 - ], - [ - 4.3552221, - 50.8600278 - ], - [ - 4.3552221, - 50.8606172 - ], - [ - 4.3533586, - 50.8606172 - ], - [ - 4.3533586, - 50.8600278 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T10:03:58Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "apartments" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0.00000109834690000477, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/entrances.html", - "theme": "entrances", - "answer": 1, - "create": 2, - "locale": "en", - "imagery": "osm", - "change_within_25m": 3 - }, - "id": 123311316 - } - }, - { - "id": 123310431, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4810843, - 52.4992968 - ], - [ - 13.4810843, - 52.4992968 - ], - [ - 13.4810843, - 52.4992968 - ], - [ - 13.4810843, - 52.4992968 - ], - [ - 13.4810843, - 52.4992968 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "maxwesemeyer", - "uid": "10773506", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-07T09:46:50Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "pump:status": [ - "broken" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 1, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123310431 - } - }, - { - "id": 123309962, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2647312, - 53.2099964 - ], - [ - 6.2738813, - 53.2099964 - ], - [ - 6.2738813, - 53.2131622 - ], - [ - 6.2647312, - 53.2131622 - ], - [ - 6.2647312, - 53.2099964 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T09:35:16Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "yes" - ], - "highway": [ - "street_lamp", - "footway" - ], - "light:lit": [ - "dusk-dawn" - ], - "light:count": [ - "1" - ], - "light:direction": [ - "171" - ] - }, - "create": 1, - "modify": 5, - "delete": 0, - "area": 0.0000289673865799815, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 9, - "create": 1, - "locale": "en", - "imagery": "Actueel_orthoHR_WMTS" - }, - "id": 123309962 - } - }, - { - "id": 123309940, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T09:34:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 1, - "locale": "en", - "imagery": "Actueel_orthoHR_WMTS" - }, - "id": 123309940 - } - }, - { - "id": 123309936, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2738183, - 53.2128636 - ], - [ - 6.2738183, - 53.2128636 - ], - [ - 6.2738183, - 53.2128636 - ], - [ - 6.2738183, - 53.2128636 - ], - [ - 6.2738183, - 53.2128636 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T09:34:46Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ], - "light:method": [ - "LED" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 1, - "locale": "en", - "imagery": "Actueel_orthoHR_WMTS" - }, - "id": 123309936 - } - }, - { - "id": 123309918, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.273766, - 53.2128636 - ], - [ - 6.2738183, - 53.2128636 - ], - [ - 6.2738183, - 53.2130117 - ], - [ - 6.273766, - 53.2130117 - ], - [ - 6.273766, - 53.2128636 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T09:34:18Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ], - "light:lit": [ - "dusk-dawn" - ], - "light:count": [ - "2" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 7.74563000023122e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "Actueel_orthoHR_WMTS" - }, - "id": 123309918 - } - }, - { - "id": 123309879, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.267885, - 53.2075984 - ], - [ - 6.273766, - 53.2075984 - ], - [ - 6.273766, - 53.2130117 - ], - [ - 6.267885, - 53.2130117 - ], - [ - 6.267885, - 53.2075984 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T09:33:21Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "yes", - "no" - ], - "highway": [ - "footway" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0.0000318356173000068, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 4, - "create": 1, - "locale": "en", - "imagery": "Actueel_orthoHR_WMTS" - }, - "id": 123309879 - } - }, - { - "id": 123308447, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0156811, - 51.177241 - ], - [ - 5.0163438, - 51.177241 - ], - [ - 5.0163438, - 51.1777282 - ], - [ - 5.0156811, - 51.1777282 - ], - [ - 5.0156811, - 51.177241 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T09:05:39Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes", - "roof" - ], - "source:geometry:ref": [ - "Gbg/5740597", - "Gbg/6149881" - ], - "source:geometry:date": [ - "2016-11-21", - "2021-07-05" - ] - }, - "create": 7, - "modify": 23, - "delete": 3, - "area": 3.22867439996367e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 21, - "theme": "grb", - "delete": 3, - "import": 1, - "locale": "nl", - "imagery": "AGIV", - "conflation": 4 - }, - "id": 123308447 - } - }, - { - "id": 123308401, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2739283, - 53.2126507 - ], - [ - 6.2740852, - 53.2126507 - ], - [ - 6.2740852, - 53.2130487 - ], - [ - 6.2739283, - 53.2130487 - ], - [ - 6.2739283, - 53.2126507 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T09:04:45Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket", - "recycling" - ] - }, - "create": 3, - "modify": 6, - "delete": 0, - "area": 6.24462000007847e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 8, - "create": 3, - "locale": "en", - "imagery": "Actueel_orthoHR_WMTS", - "add-image": 3 - }, - "id": 123308401 - } - }, - { - "id": 123307620, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0167894, - 51.1746264 - ], - [ - 5.0317155, - 51.1746264 - ], - [ - 5.0317155, - 51.1791693 - ], - [ - 5.0167894, - 51.1791693 - ], - [ - 5.0167894, - 51.1746264 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T08:47:15Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes", - "farm", - "hangar", - "detached", - "shed", - "garage", - "roof" - ], - "source:geometry:ref": [ - "Gbg/1698199", - "Gbg/1698201", - "Gbg/1698260", - "Gbg/1700164", - "Gbg/1698202", - "Gbg/1700163", - "Gbg/1698198", - "Gbg/1698200", - "Gbg/1698203", - "Gbg/1698204", - "Gbg/1698197", - "Gbg/1698209", - "Gbg/1698210", - "Gbg/1698218", - "Gbg/1698191", - "Gbg/1698192", - "Gbg/1700182", - "Gbg/1698245", - "Gbg/1711202", - "Gbg/1698206", - "Gbg/1698205", - "Gbg/1698207", - "Gbg/4447658", - "Gbg/1698228", - "Gbg/1698236", - "Gbg/6149514", - "Gbg/6642544", - "Gbg/1698256", - "Gbg/1698229", - "Gbg/6966482", - "Gbg/1698186", - "Gbg/1698235", - "Gbg/1698233", - "Gbg/5127602", - "Gbg/1698219" - ], - "source:geometry:date": [ - "2009-08-13", - "2017-11-20", - "2019-07-09", - "2009-11-17", - "2016-07-28", - "2021-07-05", - "2015-03-30" - ] - }, - "create": 113, - "modify": 239, - "delete": 3, - "area": 0.0000678077796899527, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 204, - "theme": "grb", - "answer": 2, - "delete": 3, - "import": 9, - "locale": "nl", - "imagery": "AGIV", - "conflation": 70 - }, - "id": 123307620 - } - }, - { - "id": 123307609, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0302045, - 51.1742431 - ], - [ - 5.0302832, - 51.1742431 - ], - [ - 5.0302832, - 51.1742664 - ], - [ - 5.0302045, - 51.1742664 - ], - [ - 5.0302045, - 51.1742431 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T08:47:00Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes" - ], - "source:geometry:ref": [ - "Gbg/1698184" - ], - "source:geometry:date": [ - "2009-08-13" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 1.83371000018947e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 4, - "theme": "grb", - "locale": "nl", - "imagery": "AGIV", - "conflation": 2 - }, - "id": 123307609 - } - }, - { - "id": 123307600, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0300384, - 51.1742389 - ], - [ - 5.0302021, - 51.1742389 - ], - [ - 5.0302021, - 51.1742755 - ], - [ - 5.0300384, - 51.1742755 - ], - [ - 5.0300384, - 51.1742389 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T08:46:46Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes" - ], - "source:geometry:ref": [ - "Gbg/6150955" - ], - "source:geometry:date": [ - "2017-11-20" - ] - }, - "create": 6, - "modify": 5, - "delete": 0, - "area": 5.99142000025485e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 4, - "theme": "grb", - "locale": "nl", - "imagery": "AGIV", - "conflation": 2 - }, - "id": 123307600 - } - }, - { - "id": 123306976, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0271073, - 51.1712348 - ], - [ - 5.0320309, - 51.1712348 - ], - [ - 5.0320309, - 51.1746955 - ], - [ - 5.0271073, - 51.1746955 - ], - [ - 5.0271073, - 51.1712348 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T08:30:33Z", - "reviewed_features": [], - "tag_changes": { - "office": [ - "architect" - ], - "amenity": [ - "school" - ], - "building": [ - "house", - "yes", - "garage", - "farm", - "chapel", - "shed", - "school", - "barn", - "greenhouse", - "roof" - ], - "historic": [ - "chapel" - ], - "source:geometry:ref": [ - "Gbg/1698149", - "Gbg/1698147", - "Gbg/1698146", - "Gbg/1698136", - "Gbg/6154582", - "Gbg/1698177", - "Gbg/5655299", - "Gbg/1698135", - "Gbg/6148829", - "Gbg/1698150", - "Gbg/6154855", - "Gbg/1698148", - "Gbg/1698187", - "Gbg/1698144", - "Gbg/1698134", - "Gbg/1698137", - "Gbg/1698185", - "Gbg/5655323", - "Gbg/1700119", - "Gbg/5123892", - "Gbg/1698125", - "Gbg/1698153", - "Gbg/1698155", - "Gbg/1698173", - "Gbg/5127610", - "Gbg/6151737", - "Gbg/1698164", - "Gbg/1698167", - "Gbg/5127445", - "Gbg/6153958", - "Gbg/5127440", - "Gbg/5127439", - "Gbg/1698180", - "Gbg/5654283" - ], - "not:addr:housenumber": [ - "yes" - ], - "source:geometry:date": [ - "2009-08-13", - "2019-07-09", - "2016-07-28", - "2017-11-20", - "2018-06-05", - "2015-03-30" - ] - }, - "create": 67, - "modify": 233, - "delete": 7, - "area": 0.000017039102519989, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 192, - "theme": "grb", - "answer": 9, - "delete": 7, - "import": 8, - "locale": "nl", - "imagery": "AGIV", - "conflation": 68 - }, - "id": 123306976 - } - }, - { - "id": 123306471, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0262967, - 51.1698372 - ], - [ - 5.0294524, - 51.1698372 - ], - [ - 5.0294524, - 51.1719236 - ], - [ - 5.0262967, - 51.1719236 - ], - [ - 5.0262967, - 51.1698372 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T08:17:42Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "hangar", - "house", - "garage", - "yes", - "barn", - "greenhouse", - "shed", - "roof" - ], - "addr:housenumber": [ - "78;80", - "80" - ], - "source:geometry:ref": [ - "Gbg/6148790", - "Gbg/1698190", - "Gbg/1698131", - "Gbg/1698468", - "Gbg/1698565", - "Gbg/1698126", - "Gbg/1698469", - "Gbg/1698128", - "Gbg/1698129", - "Gbg/1698127", - "Gbg/1698133", - "Gbg/1698464", - "Gbg/6154630", - "Gbg/6154570", - "Gbg/5123891", - "Gbg/5127447", - "Gbg/1698574", - "Gbg/6148761", - "Gbg/1698156", - "Gbg/6153010", - "Gbg/6150233", - "Gbg/5127611", - "Gbg/1698157", - "Gbg/1698570", - "Gbg/5127614", - "Gbg/5127612", - "Gbg/1698175", - "Gbg/6149117", - "Gbg/1698569", - "Gbg/1698519", - "Gbg/1698579", - "Gbg/6149802", - "Gbg/5123890", - "Gbg/6834607" - ], - "source:geometry:date": [ - "2017-11-20", - "2009-08-13", - "2015-03-30", - "2016-07-28", - "2021-07-05", - "2020-09-04" - ] - }, - "create": 109, - "modify": 244, - "delete": 1, - "area": 0.00000658405247998888, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 209, - "theme": "grb", - "answer": 5, - "delete": 1, - "import": 10, - "locale": "nl", - "imagery": "AGIV", - "conflation": 68 - }, - "id": 123306471 - } - }, - { - "id": 123306459, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0275293, - 51.1697977 - ], - [ - 5.0276989, - 51.1697977 - ], - [ - 5.0276989, - 51.1699151 - ], - [ - 5.0275293, - 51.1699151 - ], - [ - 5.0275293, - 51.1697977 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T08:17:15Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes" - ], - "source:geometry:ref": [ - "Gbg/5122717" - ], - "source:geometry:date": [ - "2015-03-30" - ] - }, - "create": 0, - "modify": 7, - "delete": 0, - "area": 1.99110400000487e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 6, - "theme": "grb", - "locale": "nl", - "imagery": "AGIV", - "conflation": 2 - }, - "id": 123306459 - } - }, - { - "id": 123306367, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0258403, - 51.1687882 - ], - [ - 5.0278007, - 51.1687882 - ], - [ - 5.0278007, - 51.1705701 - ], - [ - 5.0258403, - 51.1705701 - ], - [ - 5.0258403, - 51.1687882 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T08:14:23Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "garage", - "yes", - "shed" - ], - "source:geometry:ref": [ - "Gbg/1698467", - "Gbg/1698473", - "Gbg/1698472", - "Gbg/1698466", - "Gbg/1698465", - "Gbg/1698463", - "Gbg/1698568", - "Gbg/6152054", - "Gbg/1698587", - "Gbg/1698566", - "Gbg/1698520", - "Gbg/1698523", - "Gbg/1698571", - "Gbg/1698573" - ], - "source:geometry:date": [ - "2009-08-13", - "2017-11-20", - "2016-07-28" - ] - }, - "create": 20, - "modify": 94, - "delete": 0, - "area": 0.00000349323675999614, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 79, - "theme": "grb", - "answer": 1, - "import": 1, - "locale": "nl", - "imagery": "AGIV", - "conflation": 28 - }, - "id": 123306367 - } - }, - { - "id": 123306278, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.024887, - 51.1681687 - ], - [ - 5.0260858, - 51.1681687 - ], - [ - 5.0260858, - 51.1695092 - ], - [ - 5.024887, - 51.1695092 - ], - [ - 5.024887, - 51.1681687 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T08:11:56Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes", - "garage", - "shed", - "roof" - ], - "source:geometry:ref": [ - "Gbg/1698428", - "Gbg/1698432", - "Gbg/1698430", - "Gbg/1698431", - "Gbg/1698429", - "Gbg/1698433", - "Gbg/5123151", - "Gbg/1698522", - "Gbg/1698521", - "Gbg/1698524", - "Gbg/1698586", - "Gbg/5127497" - ], - "source:geometry:date": [ - "2009-08-13", - "2015-03-30" - ] - }, - "create": 24, - "modify": 85, - "delete": 2, - "area": 0.00000160699139999737, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 73, - "theme": "grb", - "answer": 1, - "delete": 2, - "import": 2, - "locale": "nl", - "imagery": "AGIV", - "conflation": 24 - }, - "id": 123306278 - } - }, - { - "id": 123306091, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0229774, - 51.1681933 - ], - [ - 5.0245811, - 51.1681933 - ], - [ - 5.0245811, - 51.1691879 - ], - [ - 5.0229774, - 51.1691879 - ], - [ - 5.0229774, - 51.1681933 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T08:06:09Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "garage", - "yes", - "shed", - "roof" - ], - "source:geometry:ref": [ - "Gbg/1698454", - "Gbg/1698453", - "Gbg/5123150", - "Gbg/1698450", - "Gbg/1698554", - "Gbg/5127455", - "Gbg/1698584", - "Gbg/5127454", - "Gbg/1698552", - "Gbg/1700138", - "Gbg/5123893", - "Gbg/1698547", - "Gbg/1698553" - ], - "source:geometry:date": [ - "2009-08-13", - "2015-03-30", - "2017-11-20" - ] - }, - "create": 38, - "modify": 81, - "delete": 0, - "area": 0.00000159504001999716, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 64, - "theme": "grb", - "answer": 7, - "import": 3, - "locale": "nl", - "imagery": "AGIV", - "conflation": 26 - }, - "id": 123306091 - } - }, - { - "id": 123306086, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0230667, - 51.1691829 - ], - [ - 5.0231479, - 51.1691829 - ], - [ - 5.0231479, - 51.1692327 - ], - [ - 5.0230667, - 51.1692327 - ], - [ - 5.0230667, - 51.1691829 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T08:05:54Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes" - ], - "source:geometry:ref": [ - "Gbg/6153662" - ], - "source:geometry:date": [ - "2017-11-20" - ] - }, - "create": 2, - "modify": 5, - "delete": 0, - "area": 4.04375999991753e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 4, - "theme": "grb", - "locale": "nl", - "imagery": "AGIV", - "conflation": 2 - }, - "id": 123306086 - } - }, - { - "id": 123305140, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.0392235, - 50.9399309 - ], - [ - 4.0459485, - 50.9399309 - ], - [ - 4.0459485, - 50.941752 - ], - [ - 4.0392235, - 50.941752 - ], - [ - 4.0392235, - 50.9399309 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #cyclestreets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T07:40:52Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "tertiary", - "residential", - "unclassified" - ], - "maxspeed": [ - "30", - "50" - ], - "cyclestreet": [ - "yes" - ], - "overtaking:motor_vehicle": [ - "no" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.0000122468975000043, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclestreets.html", - "theme": "cyclestreets", - "answer": 8, - "locale": "en", - "imagery": "osm" - }, - "id": 123305140 - } - }, - { - "id": 123305049, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7240768, - 50.8822998 - ], - [ - 4.7243739, - 50.8822998 - ], - [ - 4.7243739, - 50.8824145 - ], - [ - 4.7240768, - 50.8824145 - ], - [ - 4.7240768, - 50.8822998 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "KristienV", - "uid": "16473314", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-07T07:38:19Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "leisure": [ - "playground" - ] - }, - "create": 4, - "modify": 2, - "delete": 0, - "area": 3.4077370001365e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 3, - "create": 4, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 123305049 - } - }, - { - "id": 123304530, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0125237, - 51.1660478 - ], - [ - 5.0236362, - 51.1660478 - ], - [ - 5.0236362, - 51.1702215 - ], - [ - 5.0125237, - 51.1702215 - ], - [ - 5.0125237, - 51.1660478 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T07:23:32Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes", - "house", - "shed", - "garage", - "roof" - ], - "addr:housenumber": [ - "67", - "65" - ], - "source:geometry:ref": [ - "Gbg/1698443", - "Gbg/1698445", - "Gbg/1698444", - "Gbg/6149376", - "Gbg/1698448", - "Gbg/1698452", - "Gbg/1698446", - "Gbg/1698447", - "Gbg/1698462", - "Gbg/1697672", - "Gbg/1697751", - "Gbg/1697773", - "Gbg/1697747", - "Gbg/1697775", - "Gbg/1697673", - "Gbg/1697748", - "Gbg/1697728", - "Gbg/1697698", - "Gbg/1697736", - "Gbg/1697750", - "Gbg/1697737", - "Gbg/1697699", - "Gbg/1697749", - "Gbg/1697858", - "Gbg/1698548", - "Gbg/1698449", - "Gbg/5127453", - "Gbg/6151612", - "Gbg/6150401", - "Gbg/6642092", - "Gbg/3534828", - "Gbg/5126831", - "Gbg/1697857", - "Gbg/1697856", - "Gbg/6149950", - "Gbg/1700136", - "Gbg/5123889", - "Gbg/5740572" - ], - "source:geometry:date": [ - "2019-07-09", - "2015-03-30", - "2017-11-20", - "2009-08-13", - "2015-11-26" - ] - }, - "create": 98, - "modify": 294, - "delete": 2, - "area": 0.0000463802412499513, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 252, - "theme": "grb", - "answer": 7, - "delete": 2, - "import": 11, - "locale": "nl", - "imagery": "AGIV", - "conflation": 76 - }, - "id": 123304530 - } - }, - { - "id": 123304503, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0150142, - 51.1667335 - ], - [ - 5.0157732, - 51.1667335 - ], - [ - 5.0157732, - 51.1672105 - ], - [ - 5.0150142, - 51.1672105 - ], - [ - 5.0150142, - 51.1667335 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T07:22:45Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "garage", - "yes", - "roof" - ], - "source:geometry:ref": [ - "Gbg/1697744", - "Gbg/3534531", - "Gbg/1697745", - "Gbg/1697851" - ], - "source:geometry:date": [ - "2009-08-13", - "2012-10-10", - "2016-07-28" - ] - }, - "create": 10, - "modify": 28, - "delete": 0, - "area": 3.62043000002509e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 24, - "theme": "grb", - "answer": 1, - "import": 2, - "locale": "nl", - "imagery": "AGIV", - "conflation": 8 - }, - "id": 123304503 - } - }, - { - "id": 123302179, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4884889, - 51.2887072 - ], - [ - 4.4884889, - 51.2887072 - ], - [ - 4.4884889, - 51.2887072 - ], - [ - 4.4884889, - 51.2887072 - ], - [ - 4.4884889, - 51.2887072 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "philippec", - "uid": "76884", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-07T06:14:44Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/zIXD3Hx.jpg" - ], - "defibrillator:location": [ - "Rechts achter opzij van de tweede schuifdeur. Het hangt nogal laag en het is gemakkelijk erover te kijken.", - "Rechts achter opzij van de tweede schuifdeur.\nHet hangt nogal laag en het is gemakkelijk erover te kijken." - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 123302179 - } - }, - { - "id": 123301202, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -92.7465054, - 44.9704473 - ], - [ - -92.743768, - 44.9704473 - ], - [ - -92.743768, - 44.9822237 - ], - [ - -92.7465054, - 44.9822237 - ], - [ - -92.7465054, - 44.9704473 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "noliver", - "uid": "91568", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-07T05:45:06Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential" - ], - "maxspeed": [ - "25 mph" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.0000322367173600166, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "theme": "maxspeed", - "answer": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 123301202 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-08.json b/Docs/Tools/stats/stats.2022-7-08.json deleted file mode 100644 index 99e4a4a9ac..0000000000 --- a/Docs/Tools/stats/stats.2022-7-08.json +++ /dev/null @@ -1,2099 +0,0 @@ -{ - "features": [ - { - "id": 123384491, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.2718086, - 48.0801771 - ], - [ - 16.2727688, - 48.0801771 - ], - [ - 16.2727688, - 48.0805833 - ], - [ - 16.2718086, - 48.0805833 - ], - [ - 16.2718086, - 48.0801771 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "openclimb", - "uid": "14882361", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-08T23:57:37Z", - "reviewed_features": [], - "tag_changes": { - "sport": [ - "climbing" - ], - "access": [ - "yes" - ], - "natural": [ - "cliff" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 3.90033240001067e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/climbing.html", - "theme": "climbing", - "answer": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 123384491 - } - }, - { - "id": 123384045, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.22097, - 45.5040643 - ], - [ - 9.22097, - 45.5040643 - ], - [ - 9.22097, - 45.5040643 - ], - [ - 9.22097, - 45.5040643 - ], - [ - 9.22097, - 45.5040643 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "realjep", - "uid": "4413023", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-08T23:15:11Z", - "reviewed_features": [], - "tag_changes": { - "waste": [ - "trash" - ], - "amenity": [ - "waste_basket" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "theme": "waste_basket", - "answer": 1, - "locale": "en", - "imagery": "Lombardia-Italy-CTR-DBT" - }, - "id": 123384045 - } - }, - { - "id": 123383628, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.247095, - 45.5092449 - ], - [ - 9.247095, - 45.5092449 - ], - [ - 9.247095, - 45.5092449 - ], - [ - 9.247095, - 45.5092449 - ], - [ - 9.247095, - 45.5092449 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Quang Huy NGUYEN", - "uid": "10341989", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-08T22:49:02Z", - "reviewed_features": [], - "tag_changes": { - "bottle": [ - "yes" - ], - "amenity": [ - "drinking_water" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_500m": 1 - }, - "id": 123383628 - } - }, - { - "id": 123383452, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -72.7243775, - -37.1400266 - ], - [ - -72.7243775, - -37.1400266 - ], - [ - -72.7243775, - -37.1400266 - ], - [ - -72.7243775, - -37.1400266 - ], - [ - -72.7243775, - -37.1400266 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-08T22:38:49Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/nGZdxXT.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osm", - "add-image": 1 - }, - "id": 123383452 - } - }, - { - "id": 123381036, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.0192806, - 47.2529863 - ], - [ - 7.0192806, - 47.2529863 - ], - [ - 7.0192806, - 47.2529863 - ], - [ - 7.0192806, - 47.2529863 - ], - [ - 7.0192806, - 47.2529863 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "habi", - "uid": "15671", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-08T20:33:40Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "sanitary_dump_station" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/campersite.html", - "theme": "campersite", - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 123381036 - } - }, - { - "id": 123380714, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.711743, - 51.1322974 - ], - [ - 2.711743, - 51.1322974 - ], - [ - 2.711743, - 51.1322974 - ], - [ - 2.711743, - 51.1322974 - ], - [ - 2.711743, - 51.1322974 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "philippec", - "uid": "76884", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-08T20:22:03Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/GPcNV6m.jpg" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 123380714 - } - }, - { - "id": 123379734, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.6532854, - 45.2190583 - ], - [ - 11.6570252, - 45.2190583 - ], - [ - 11.6570252, - 45.2280074 - ], - [ - 11.6532854, - 45.2280074 - ], - [ - 11.6532854, - 45.2190583 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "loviuz", - "uid": "4763621", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-08T19:49:19Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 3, - "modify": 0, - "delete": 1, - "area": 0.0000334678441800085, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 3, - "create": 3, - "locale": "it", - "imagery": "osm", - "deletion": 1, - "change_over_5000m": 3, - "change_within_25m": 4, - "deletion:node/9875165003": "duplicate" - }, - "id": 123379734 - } - }, - { - "id": 123377600, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3227687, - 50.849219 - ], - [ - 4.3227687, - 50.849219 - ], - [ - 4.3227687, - 50.849219 - ], - [ - 4.3227687, - 50.849219 - ], - [ - 4.3227687, - 50.849219 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-08T18:35:45Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "fast_food" - ], - "diet:vegan": [ - "no" - ], - "diet:vegetarian": [ - "limited" - ], - "service:electricity": [ - "limited" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/food.html", - "theme": "food", - "answer": 3, - "locale": "en", - "imagery": "osm", - "change_within_25m": 3 - }, - "id": 123377600 - } - }, - { - "id": 123377563, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3227687, - 50.849219 - ], - [ - 4.3227687, - 50.849219 - ], - [ - 4.3227687, - 50.849219 - ], - [ - 4.3227687, - 50.849219 - ], - [ - 4.3227687, - 50.849219 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-08T18:34:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/food.html", - "theme": "food", - "answer": 5, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 5 - }, - "id": 123377563 - } - }, - { - "id": 123377138, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.6536993, - 45.2231382 - ], - [ - 11.6576153, - 45.2231382 - ], - [ - 11.6576153, - 45.2268598 - ], - [ - 11.6536993, - 45.2268598 - ], - [ - 11.6536993, - 45.2231382 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "loviuz", - "uid": "4763621", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-08T18:20:49Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 4, - "modify": 0, - "delete": 0, - "area": 0.0000145737855999957, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 3, - "create": 4, - "locale": "it", - "imagery": "osm", - "change_over_5000m": 4, - "change_within_25m": 2, - "change_within_100m": 1 - }, - "id": 123377138 - } - }, - { - "id": 123376043, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2338987, - 50.7321052 - ], - [ - 4.2395109, - 50.7321052 - ], - [ - 4.2395109, - 50.7352097 - ], - [ - 4.2338987, - 50.7352097 - ], - [ - 4.2338987, - 50.7321052 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-08T17:44:31Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "restaurant" - ], - "website": [ - "https://www.facebook.com/MeGustaHalle", - "https://www.mags.be", - "http://www.magsburgers.be/" - ], - "building": [ - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000174230748999949, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 123376043 - } - }, - { - "id": 123375189, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -86.8490428, - 36.1556525 - ], - [ - -86.847007, - 36.1556525 - ], - [ - -86.847007, - 36.156274 - ], - [ - -86.8490428, - 36.156274 - ], - [ - -86.8490428, - 36.1556525 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "OpenStreetMap Appreciator", - "uid": "16057133", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-08T17:15:46Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "restaurant", - "fast_food" - ] - }, - "create": 3, - "modify": 1, - "delete": 1, - "area": 0.00000126524970000335, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "move": 1, - "theme": "food", - "answer": 3, - "create": 3, - "locale": "en", - "imagery": "osm", - "deletion": 1, - "move:node/9874872650": "improve_accuracy", - "deletion:node/9874872650": "duplicate" - }, - "id": 123375189 - } - }, - { - "id": 123372433, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.370657, - 50.8626484 - ], - [ - 4.370657, - 50.8626484 - ], - [ - 4.370657, - 50.8626484 - ], - [ - 4.370657, - 50.8626484 - ], - [ - 4.370657, - 50.8626484 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-08T15:54:04Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/P4xL3Bh.jpg" - ], - "amenity": [ - "bench" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 123372433 - } - }, - { - "id": 123369179, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.7927293, - 45.1826286 - ], - [ - 5.7927293, - 45.1826286 - ], - [ - 5.7927293, - 45.1826286 - ], - [ - 5.7927293, - 45.1826286 - ], - [ - 5.7927293, - 45.1826286 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Wild Wild Wes", - "uid": "10185209", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-08T14:42:23Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 1, - "create": 1, - "locale": "fr", - "imagery": "fr.ign.bdortho" - }, - "id": 123369179 - } - }, - { - "id": 123363719, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.269774, - 53.2076668 - ], - [ - 6.2788523, - 53.2076668 - ], - [ - 6.2788523, - 53.2131072 - ], - [ - 6.269774, - 53.2131072 - ], - [ - 6.269774, - 53.2076668 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #healthcare", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-08T13:20:47Z", - "reviewed_features": [], - "tag_changes": { - "email": [ - "assistente@gcabeltasman.nl" - ], - "phone": [ - "+31 594 613 113", - "+31 594 612 126" - ], - "amenity": [ - "doctors", - "pharmacy" - ], - "drive_through": [ - "no" - ], - "opening_hours": [ - "Mo-Fr 08:00-10:00, 10:30-12:00, 13:00-17:00;" - ], - "healthcare:speciality": [ - "general" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.0000493895833200415, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/healthcare.html", - "theme": "healthcare", - "answer": 7, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_500m": 5, - "change_within_1000m": 2 - }, - "id": 123363719 - } - }, - { - "id": 123362150, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2156362, - 51.2020878 - ], - [ - 3.215827, - 51.2020878 - ], - [ - 3.215827, - 51.2022036 - ], - [ - 3.2156362, - 51.2022036 - ], - [ - 3.2156362, - 51.2020878 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #healthcare", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-08T12:56:23Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "dentist" - ], - "building": [ - "house" - ], - "opening_hours": [ - "We 09:00-12:00;PH off;Mo-Tu 09:00-12:00, 14:00-18:00 \"by appointment\"; Th 09:00-12:00, 14:00-18:00 \"by appointment\"; Fr 09:00-12:00 \"by appointment\"", - "\"by appointment\"" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 2.2094639999251e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/healthcare.html", - "theme": "healthcare", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 123362150 - } - }, - { - "id": 123361805, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7217747, - 51.018938 - ], - [ - 3.7330048, - 51.018938 - ], - [ - 3.7330048, - 51.028021 - ], - [ - 3.7217747, - 51.028021 - ], - [ - 3.7217747, - 51.018938 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ruben Van de Velde", - "uid": "2676725", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #healthcare", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-08T12:47:53Z", - "reviewed_features": [], - "tag_changes": { - "email": [ - "info@uzgent.be" - ], - "phone": [ - "+32 9 332 21 11" - ], - "amenity": [ - "hospital" - ], - "website": [ - "https://uzgent.be/" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.000102002998300042, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/healthcare.html", - "theme": "healthcare", - "answer": 3, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 123361805 - } - }, - { - "id": 123360380, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2317284, - 51.2097688 - ], - [ - 3.2317284, - 51.2097688 - ], - [ - 3.2317284, - 51.2097688 - ], - [ - 3.2317284, - 51.2097688 - ], - [ - 3.2317284, - 51.2097688 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-08T12:15:07Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "copyshop" - ], - "payment:cash": [ - "yes" - ], - "opening_hours": [ - "Mo-Tu 10:00-12:00, 14:00-18:00; We 10:00-12:00; Th-Fr 10:00-12:00, 14:00-18:00; Sa 10:00-12:00;PH off;", - "mo-fr 10:00-12:00, 14:00-18:00; sa 10:00-12:00; PH Off" - ], - "payment:cards": [ - "no" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/shops.html", - "theme": "shops", - "answer": 2, - "locale": "en", - "imagery": "osm", - "change_within_25m": 2 - }, - "id": 123360380 - } - }, - { - "id": 123359792, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2478674, - 51.2140289 - ], - [ - 3.2485728, - 51.2140289 - ], - [ - 3.2485728, - 51.2145724 - ], - [ - 3.2478674, - 51.2145724 - ], - [ - 3.2478674, - 51.2140289 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "way-1076829311", - "osm_id": 1076829311, - "reasons": [ - 43 - ], - "version": 3, - "primary_tags": { - "building": "shopping_center" - } - }, - { - "url": "way-1076829313", - "osm_id": 1076829313, - "reasons": [ - 43 - ], - "version": 3, - "primary_tags": { - "building": "shopping_center" - } - } - ], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-08T12:00:39Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "shopping_center" - ] - }, - "create": 2, - "modify": 4, - "delete": 0, - "area": 3.83384899999256e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/entrances.html", - "theme": "entrances", - "answer": 4, - "create": 4, - "locale": "en", - "imagery": "osm", - "add-image": 2, - "change_within_25m": 10 - }, - "id": 123359792 - } - }, - { - "id": 123359687, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2478674, - 51.2140289 - ], - [ - 3.248749, - 51.2140289 - ], - [ - 3.248749, - 51.2148639 - ], - [ - 3.2478674, - 51.2148639 - ], - [ - 3.2478674, - 51.2140289 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "way-1076829312", - "osm_id": 1076829312, - "reasons": [ - 43 - ], - "version": 2, - "primary_tags": { - "building": "shopping_center" - } - } - ], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-08T11:58:15Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "shopping_center", - "house", - "yes" - ] - }, - "create": 37, - "modify": 3, - "delete": 0, - "area": 7.36135999995654e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "answer": 3, - "import": 8, - "locale": "en", - "imagery": "osm", - "change_within_25m": 6, - "change_within_50m": 1, - "change_within_100m": 4 - }, - "id": 123359687 - } - }, - { - "id": 123355591, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5371124, - 44.8588263 - ], - [ - -0.5371124, - 44.8588263 - ], - [ - -0.5371124, - 44.8588263 - ], - [ - -0.5371124, - 44.8588263 - ], - [ - -0.5371124, - 44.8588263 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-08T10:31:30Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 3, - "create": 1, - "locale": "fr", - "imagery": "osm" - }, - "id": 123355591 - } - }, - { - "id": 123353062, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2212426, - 51.2141406 - ], - [ - 3.2481524, - 51.2141406 - ], - [ - 3.2481524, - 51.2154766 - ], - [ - 3.2212426, - 51.2154766 - ], - [ - 3.2212426, - 51.2141406 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-08T09:37:17Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "copyshop" - ], - "image": [ - "https://i.imgur.com/0Gbbc9Q.jpg" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000359514928000537, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/shops.html", - "move": 1, - "theme": "shops", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_25m": 2, - "move:node/6765253841": "relocated" - }, - "id": 123353062 - } - }, - { - "id": 123350623, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2402687, - 41.4388123 - ], - [ - 2.2410882, - 41.4388123 - ], - [ - 2.2410882, - 41.4399879 - ], - [ - 2.2402687, - 41.4399879 - ], - [ - 2.2402687, - 41.4388123 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-8811431678", - "osm_id": 8811431678, - "reasons": [ - 43 - ], - "version": 2, - "primary_tags": { - "natural": "tree_stump" - } - } - ], - "user": "JBadalona", - "uid": "13507795", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-08T08:42:37Z", - "reviewed_features": [], - "tag_changes": { - "source": [ - "survey" - ], - "natural": [ - "tree", - "tree_stump" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 9.63404199996919e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "answer": 6, - "locale": "ca", - "imagery": "HDM_HOT" - }, - "id": 123350623 - } - }, - { - "id": 123345976, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0035479, - 51.1251522 - ], - [ - 5.0070942, - 51.1251522 - ], - [ - 5.0070942, - 51.1269955 - ], - [ - 5.0035479, - 51.1269955 - ], - [ - 5.0035479, - 51.1251522 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.0.8f", - "comment": "Adding data with #MapComplete for theme #buurtnatuur", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-08T06:42:57Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/ILhLGIB.jpg" - ], - "access": [ - "yes" - ], - "landuse": [ - "forest" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000653689478999053, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "buurtnatuur", - "theme-creator": "Pieter Vander Vennet" - }, - "id": 123345976 - } - }, - { - "id": 123341467, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -92.7341586, - 44.9488025 - ], - [ - -92.7341328, - 44.9488025 - ], - [ - -92.7341328, - 44.9627042 - ], - [ - -92.7341586, - 44.9627042 - ], - [ - -92.7341586, - 44.9488025 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "noliver", - "uid": "91568", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-08T03:54:55Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "tertiary" - ], - "maxspeed": [ - "25 mph" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 3.58663860042677e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "theme": "maxspeed", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 123341467 - } - }, - { - "id": 123341400, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -92.7573149, - 44.977072 - ], - [ - -92.7463972, - 44.977072 - ], - [ - -92.7463972, - 44.9837351 - ], - [ - -92.7573149, - 44.9837351 - ], - [ - -92.7573149, - 44.977072 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "noliver", - "uid": "91568", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-08T03:50:49Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "yes" - ], - "highway": [ - "footway" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000727457268699244, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 123341400 - } - }, - { - "id": 123339532, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.021087, - 14.6670112 - ], - [ - 121.021087, - 14.6670112 - ], - [ - 121.021087, - 14.6670112 - ], - [ - 121.021087, - 14.6670112 - ], - [ - 121.021087, - 14.6670112 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "ezranacianceno", - "uid": "16480751", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-08T00:49:08Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "restaurant" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 123339532 - } - }, - { - "id": 123339507, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0198417, - 14.668093 - ], - [ - 121.0198417, - 14.668093 - ], - [ - 121.0198417, - 14.668093 - ], - [ - 121.0198417, - 14.668093 - ], - [ - 121.0198417, - 14.668093 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "ezranacianceno", - "uid": "16480751", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-08T00:46:40Z", - "reviewed_features": [], - "tag_changes": { - "office": [ - "association" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", - "create": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 123339507 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-09.json b/Docs/Tools/stats/stats.2022-7-09.json deleted file mode 100644 index 44a620e395..0000000000 --- a/Docs/Tools/stats/stats.2022-7-09.json +++ /dev/null @@ -1,1724 +0,0 @@ -{ - "features": [ - { - "id": 123415379, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.0095859, - 37.5412772 - ], - [ - -122.0078596, - 37.5412772 - ], - [ - -122.0078596, - 37.5421972 - ], - [ - -122.0095859, - 37.5421972 - ], - [ - -122.0095859, - 37.5412772 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "157", - "uid": "16462628", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-09T22:20:18Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "secondary" - ], - "maxspeed": [ - "35 mph" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.00000158819599999023, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "theme": "maxspeed", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 123415379 - } - }, - { - "id": 123414601, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9528483, - 50.7411662 - ], - [ - 3.5575586, - 50.7411662 - ], - [ - 3.5575586, - 51.2493701 - ], - [ - 2.9528483, - 51.2493701 - ], - [ - 2.9528483, - 50.7411662 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-09T21:33:29Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/kllkMjo.jpg", - "https://i.imgur.com/5YsxGBo.jpg", - "https://i.imgur.com/ebiWTqT.jpg", - "https://i.imgur.com/ikleVip.jpg", - "https://i.imgur.com/1Ia14KQ.jpg", - "https://i.imgur.com/JEwEDzo.jpg" - ], - "route": [ - "foot", - "bicycle" - ], - "amenity": [ - "bench" - ], - "highway": [ - "path", - "unclassified" - ], - "leisure": [ - "nature_reserve" - ], - "natural": [ - "grassland" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.307316132830169, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 6 - }, - "id": 123414601 - } - }, - { - "id": 123412164, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3438723, - 50.7490094 - ], - [ - 3.6063555, - 50.7490094 - ], - [ - 3.6063555, - 50.8401937 - ], - [ - 3.3438723, - 50.8401937 - ], - [ - 3.3438723, - 50.7490094 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-09T19:45:29Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/P9X242F.jpg", - "https://i.imgur.com/jpxwVG2.jpg", - "https://i.imgur.com/4lSyjJW.jpg" - ], - "amenity": [ - "bench" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.0239343468537605, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 3 - }, - "id": 123412164 - } - }, - { - "id": 123403351, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.6935543, - 45.3892244 - ], - [ - 10.6943712, - 45.3892244 - ], - [ - 10.6943712, - 45.3896999 - ], - [ - 10.6935543, - 45.3896999 - ], - [ - 10.6935543, - 45.3892244 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RubOSM", - "uid": "2096650", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-09T15:02:24Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "lit": [ - "no" - ], - "access": [ - "yes" - ], - "leisure": [ - "playground" - ], - "max_age": [ - "12" - ], - "surface": [ - "grass" - ], - "operator": [ - "Commune di Monzambano" - ], - "wheelchair": [ - "yes" - ], - "opening_hours": [ - "sunrise-sunset" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 3.88435949994547e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 7, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 7 - }, - "id": 123403351 - } - }, - { - "id": 123402197, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.6916361, - 45.3866982 - ], - [ - 10.693892, - 45.3866982 - ], - [ - 10.693892, - 45.3875124 - ], - [ - 10.6916361, - 45.3875124 - ], - [ - 10.6916361, - 45.3866982 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "RubOSM", - "uid": "2096650", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-09T14:28:28Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes" - ] - }, - "create": 2, - "modify": 6, - "delete": 0, - "area": 0.00000183675378000127, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 11, - "create": 3, - "locale": "nl", - "imagery": "osm", - "add-image": 3, - "change_over_5000m": 1, - "change_within_25m": 16 - }, - "id": 123402197 - } - }, - { - "id": 123399197, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4619609, - 50.814777 - ], - [ - 3.4619609, - 50.814777 - ], - [ - 3.4619609, - 50.814777 - ], - [ - 3.4619609, - 50.814777 - ], - [ - 3.4619609, - 50.814777 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-09T12:49:35Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/2oDqN7y.jpg" - ], - "amenity": [ - "bench" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 123399197 - } - }, - { - "id": 123398690, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.0906582, - 45.3804684 - ], - [ - 7.0906582, - 45.3804684 - ], - [ - 7.0906582, - 45.3804684 - ], - [ - 7.0906582, - 45.3804684 - ], - [ - 7.0906582, - 45.3804684 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Brec10", - "uid": "13615286", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-09T12:33:24Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/personal.html", - "theme": "personal", - "answer": 4, - "create": 1, - "locale": "fr", - "imagery": "osm" - }, - "id": 123398690 - } - }, - { - "id": 123398224, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5401096, - 48.0179075 - ], - [ - 8.5401096, - 48.0179075 - ], - [ - 8.5401096, - 48.0179075 - ], - [ - 8.5401096, - 48.0179075 - ], - [ - 8.5401096, - 48.0179075 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "osmdees", - "uid": "16492361", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-09T12:17:47Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/OCXICiq.jpg" - ], - "amenity": [ - "restaurant" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 123398224 - } - }, - { - "id": 123396778, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.1794002, - 52.7365039 - ], - [ - 13.2176923, - 52.7365039 - ], - [ - 13.2176923, - 52.7426697 - ], - [ - 13.1794002, - 52.7426697 - ], - [ - 13.1794002, - 52.7365039 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "SebastianFranz", - "uid": "16395555", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-09T11:27:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 2, - "delete": 0, - "area": 0.000236101430179921, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123396778 - } - }, - { - "id": 123396773, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3280661, - 50.8509734 - ], - [ - 4.3280661, - 50.8509734 - ], - [ - 4.3280661, - 50.8509734 - ], - [ - 4.3280661, - 50.8509734 - ], - [ - 4.3280661, - 50.8509734 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #fitness_station", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-09T11:26:54Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "fitness_station" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "fitness_station", - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 123396773 - } - }, - { - "id": 123396693, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1568163, - 51.1626276 - ], - [ - 4.1575451, - 51.1626276 - ], - [ - 4.1575451, - 51.163464 - ], - [ - 4.1568163, - 51.163464 - ], - [ - 4.1568163, - 51.1626276 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-09T11:24:17Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/o3jCfOA.jpg" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "playground", - "picnic_table" - ], - "surface": [ - "grass" - ], - "operator": [ - "Stad Sint-Niklaas" - ], - "wheelchair": [ - "limited" - ], - "opening_hours": [ - "sunrise-sunset" - ] - }, - "create": 5, - "modify": 8, - "delete": 0, - "area": 6.09568319998019e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 21, - "create": 5, - "locale": "nl", - "imagery": "AGIV", - "add-image": 2, - "change_over_5000m": 5, - "change_within_25m": 10, - "change_within_50m": 13 - }, - "id": 123396693 - } - }, - { - "id": 123395798, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.323792, - 50.8492427 - ], - [ - 4.3238644, - 50.8492427 - ], - [ - 4.3238644, - 50.849534 - ], - [ - 4.323792, - 50.849534 - ], - [ - 4.323792, - 50.8492427 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-09T10:56:33Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "drinking_water" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 2.10901199999428e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/drinking_water.html", - "theme": "drinking_water", - "answer": 4, - "create": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 2, - "change_within_25m": 5 - }, - "id": 123395798 - } - }, - { - "id": 123395416, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.6807523, - 44.4028939 - ], - [ - 6.6807523, - 44.4028939 - ], - [ - 6.6807523, - 44.4028939 - ], - [ - 6.6807523, - 44.4028939 - ], - [ - 6.6807523, - 44.4028939 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Brec10", - "uid": "13615286", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-09T10:41:59Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "picnic_table" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/personal.html", - "theme": "personal", - "answer": 1, - "create": 1, - "locale": "fr", - "imagery": "osm" - }, - "id": 123395416 - } - }, - { - "id": 123394629, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3499836, - 50.8504773 - ], - [ - 4.3501219, - 50.8504773 - ], - [ - 4.3501219, - 50.8506077 - ], - [ - 4.3499836, - 50.8506077 - ], - [ - 4.3499836, - 50.8504773 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "bxl-forever", - "uid": "2644288", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #cyclestreets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-09T10:13:45Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/n723Icr.jpg" - ], - "highway": [ - "tertiary" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.80343199995515e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclestreets.html", - "theme": "cyclestreets", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 123394629 - } - }, - { - "id": 123394076, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 72.5904652, - 12.2871844 - ], - [ - 78.595151, - 12.2871844 - ], - [ - 78.595151, - 28.6479998 - ], - [ - 72.5904652, - 28.6479998 - ], - [ - 72.5904652, - 12.2871844 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-09T09:53:48Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 49, - "delete": 0, - "area": 98.2415559088014, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 66, - "locale": "en", - "imagery": "osm" - }, - "id": 123394076 - } - }, - { - "id": 123393800, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4710336, - 50.9775981 - ], - [ - 4.4712329, - 50.9775981 - ], - [ - 4.4712329, - 50.9778137 - ], - [ - 4.4710336, - 50.9778137 - ], - [ - 4.4710336, - 50.9775981 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-09T09:44:53Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/owK2ejH.jpg" - ], - "amenity": [ - "bicycle_parking" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 4.2969079999472e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_5000m": 1 - }, - "id": 123393800 - } - }, - { - "id": 123393015, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3950255, - 50.8183944 - ], - [ - 3.478756, - 50.8183944 - ], - [ - 3.478756, - 50.8348386 - ], - [ - 3.3950255, - 50.8348386 - ], - [ - 3.3950255, - 50.8183944 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-09T09:16:10Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/pm6IlBW.jpg", - "https://i.imgur.com/37CORXC.jpg", - "https://i.imgur.com/eaIyeeT.jpg", - "https://i.imgur.com/K7Swn4m.jpg", - "https://i.imgur.com/XNari8s.jpg" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ], - "material": [ - "wood" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.0013768810880996, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 5 - }, - "id": 123393015 - } - }, - { - "id": 123390948, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.8630867, - 45.7418613 - ], - [ - 13.8633436, - 45.7418613 - ], - [ - 13.8633436, - 45.7420325 - ], - [ - 13.8630867, - 45.7420325 - ], - [ - 13.8630867, - 45.7418613 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "DavidKarlas", - "uid": "12422736", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-09T07:58:39Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes" - ] - }, - "create": 1, - "modify": 5, - "delete": 0, - "area": 4.39812800010563e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 5, - "create": 2, - "locale": "sl", - "imagery": "osm", - "add-image": 1 - }, - "id": 123390948 - } - }, - { - "id": 123389016, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 72.8296831, - 17.8947098 - ], - [ - 88.3775668, - 17.8947098 - ], - [ - 88.3775668, - 31.6456612 - ], - [ - 72.8296831, - 31.6456612 - ], - [ - 72.8296831, - 17.8947098 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-09T06:39:46Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "road" - ], - "amenity": [ - "college", - "school", - "university", - "hospital" - ], - "barrier": [ - "wall" - ], - "highway": [ - "primary", - "residential", - "trunk", - "tertiary", - "service" - ], - "leisure": [ - "sports_centre", - "stadium", - "park" - ], - "name:etymology:wikidata": [ - "Q83322", - "Q312967", - "Q9455", - "Q7238271" - ] - }, - "create": 0, - "modify": 85, - "delete": 0, - "area": 213.798193131552, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 95, - "locale": "en", - "imagery": "osm" - }, - "id": 123389016 - } - }, - { - "id": 123388308, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.1023745, - 50.4521149 - ], - [ - 6.1027163, - 50.4521149 - ], - [ - 6.1027163, - 50.4529101 - ], - [ - 6.1023745, - 50.4529101 - ], - [ - 6.1023745, - 50.4521149 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "way-105586317", - "osm_id": 105586317, - "reasons": [ - 43 - ], - "version": 2, - "primary_tags": { - "building": "castle" - } - } - ], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-09T06:05:01Z", - "reviewed_features": [], - "tag_changes": { - "landuse": [ - "forest" - ], - "natural": [ - "rock" - ], - "building": [ - "castle", - "yes", - "retail" - ], - "source:geometry:ref": [ - "Picc/2556519", - "Picc/2038176", - "Picc/557940" - ], - "source:geometry:date": [ - "2016-06-23" - ] - }, - "create": 8, - "modify": 15, - "delete": 0, - "area": 2.71799359999754e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 12, - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "SPW_ORTHO_LAST", - "conflation": 6 - }, - "id": 123388308 - } - }, - { - "id": 123387154, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -92.7414013, - 44.9541504 - ], - [ - -92.73404, - 44.9541504 - ], - [ - -92.73404, - 44.9606492 - ], - [ - -92.7414013, - 44.9606492 - ], - [ - -92.7414013, - 44.9541504 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "noliver", - "uid": "91568", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-09T04:46:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 28, - "modify": 1, - "delete": 0, - "area": 0.0000478396164400572, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "answer": 5, - "create": 28, - "locale": "en", - "imagery": "USDA-NAIP" - }, - "id": 123387154 - } - }, - { - "id": 123386401, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -92.7281445, - 44.9558435 - ], - [ - -92.7270931, - 44.9558435 - ], - [ - -92.7270931, - 44.956785 - ], - [ - -92.7281445, - 44.956785 - ], - [ - -92.7281445, - 44.9558435 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "noliver", - "uid": "91568", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-09T03:36:16Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 1, - "delete": 0, - "area": 9.89893099998129e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "answer": 6, - "create": 3, - "locale": "en", - "imagery": "USDA-NAIP" - }, - "id": 123386401 - } - }, - { - "id": 123386260, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -92.7294856, - 44.9534709 - ], - [ - -92.7216093, - 44.9534709 - ], - [ - -92.7216093, - 44.9562877 - ], - [ - -92.7294856, - 44.9562877 - ], - [ - -92.7294856, - 44.9534709 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "noliver", - "uid": "91568", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-09T03:19:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 12, - "modify": 4, - "delete": 0, - "area": 0.0000221859618400025, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "answer": 23, - "create": 12, - "locale": "en", - "imagery": "USDA-NAIP" - }, - "id": 123386260 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-10.json b/Docs/Tools/stats/stats.2022-7-10.json deleted file mode 100644 index 18ad3109c0..0000000000 --- a/Docs/Tools/stats/stats.2022-7-10.json +++ /dev/null @@ -1,2211 +0,0 @@ -{ - "features": [ - { - "id": 123448923, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3942232, - 51.0424636 - ], - [ - 3.3942232, - 51.0424636 - ], - [ - 3.3942232, - 51.0424636 - ], - [ - 3.3942232, - 51.0424636 - ], - [ - 3.3942232, - 51.0424636 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #healthcare", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-10T22:20:14Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "doctors" - ], - "website": [ - "https://www.debrugruiselede.be/" - ], - "healthcare:speciality": [ - "general" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/healthcare.html", - "theme": "healthcare", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 123448923 - } - }, - { - "id": 123448906, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3942232, - 51.0424636 - ], - [ - 3.3942232, - 51.0424636 - ], - [ - 3.3942232, - 51.0424636 - ], - [ - 3.3942232, - 51.0424636 - ], - [ - 3.3942232, - 51.0424636 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #healthcare", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-10T22:19:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/healthcare.html", - "theme": "healthcare", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 123448906 - } - }, - { - "id": 123447997, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8940586, - 51.1667236 - ], - [ - 4.9038703, - 51.1667236 - ], - [ - 4.9038703, - 51.1718606 - ], - [ - 4.8940586, - 51.1718606 - ], - [ - 4.8940586, - 51.1667236 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-10T21:34:12Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "photo" - ], - "landuse": [ - "recreation_ground" - ], - "leisure": [ - "park", - "sports_centre" - ], - "building": [ - "house", - "yes", - "apartments", - "school", - "shed", - "roof" - ], - "source:geometry:ref": [ - "Gbg/4011917", - "Gbg/4011918", - "Gbg/4011919", - "Gbg/4011913", - "Gbg/4011931", - "Gbg/4011932", - "Gbg/4011916", - "Gbg/4011915", - "Gbg/3838182", - "Gbg/3838183", - "Gbg/4012268", - "Gbg/4011966", - "Gbg/4011965", - "Gbg/4012142", - "Gbg/4011964", - "Gbg/4012140", - "Gbg/4011963", - "Gbg/4012141", - "Gbg/4011962", - "Gbg/4011961", - "Gbg/4011960", - "Gbg/5862482", - "Gbg/4012139", - "Gbg/4011958", - "Gbg/4012138", - "Gbg/4011957", - "Gbg/4011956", - "Gbg/4011955", - "Gbg/4011954", - "Gbg/4011523", - "Gbg/4011953", - "Gbg/4011952", - "Gbg/4011951", - "Gbg/4011930", - "Gbg/4011519", - "Gbg/4011520", - "Gbg/3837997", - "Gbg/3838308", - "Gbg/3838178", - "Gbg/3838141", - "Gbg/3838140", - "Gbg/3837994", - "Gbg/5862337", - "Gbg/3837995", - "Gbg/3837993", - "Gbg/3838181", - "Gbg/4011218", - "Gbg/4011206", - "Gbg/3838180", - "Gbg/3838170", - "Gbg/3838179", - "Gbg/3838143", - "Gbg/3838214", - "Gbg/5403811", - "Gbg/3838310", - "Gbg/3838213", - "Gbg/3838212", - "Gbg/4011502", - "Gbg/3838320", - "Gbg/3838324", - "Gbg/6757819", - "Gbg/3838330", - "Gbg/6570665", - "Gbg/7020234", - "Gbg/3838031", - "Gbg/5860880", - "Gbg/5748703", - "Gbg/3838176", - "Gbg/5860846", - "Gbg/6508586", - "Gbg/6057087", - "Gbg/5862286" - ], - "source:geometry:date": [ - "2013-01-07", - "2014-12-04", - "2012-09-17", - "2017-03-01", - "2019-09-04", - "2015-11-24", - "2013-02-20", - "2020-03-16", - "2019-02-20", - "2021-10-25", - "2018-10-24" - ] - }, - "create": 836, - "modify": 483, - "delete": 5, - "area": 0.0000504027029000484, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 411, - "theme": "grb", - "answer": 5, - "delete": 5, - "import": 89, - "locale": "nl", - "imagery": "AGIV", - "conflation": 142 - }, - "id": 123447997 - } - }, - { - "id": 123447987, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8998547, - 51.1666789 - ], - [ - 4.9001388, - 51.1666789 - ], - [ - 4.9001388, - 51.1668054 - ], - [ - 4.8998547, - 51.1668054 - ], - [ - 4.8998547, - 51.1666789 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-10T21:33:43Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house" - ], - "source:geometry:ref": [ - "Gbg/4014160", - "Gbg/4014159", - "Gbg/4014158" - ], - "source:geometry:date": [ - "2013-01-07" - ] - }, - "create": 0, - "modify": 13, - "delete": 0, - "area": 3.59386500001041e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 12, - "theme": "grb", - "locale": "nl", - "imagery": "AGIV", - "conflation": 6 - }, - "id": 123447987 - } - }, - { - "id": 123447961, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9003768, - 51.1659184 - ], - [ - 4.9012801, - 51.1659184 - ], - [ - 4.9012801, - 51.1668836 - ], - [ - 4.9003768, - 51.1668836 - ], - [ - 4.9003768, - 51.1659184 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-10T21:32:28Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "roof", - "yes" - ], - "source:geometry:ref": [ - "Gbg/4678932", - "Gbg/3838347", - "Gbg/3838348", - "Gbg/3838349", - "Gbg/3838350", - "Gbg/3838222", - "Gbg/3838223" - ], - "source:geometry:date": [ - "2014-05-02", - "2012-09-17", - "2013-02-20", - "2015-11-24" - ] - }, - "create": 41, - "modify": 50, - "delete": 0, - "area": 8.71865159996439e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 45, - "theme": "grb", - "import": 3, - "locale": "nl", - "imagery": "AGIV", - "conflation": 14 - }, - "id": 123447961 - } - }, - { - "id": 123443911, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6478227, - 50.1416148 - ], - [ - 8.6478683, - 50.1416148 - ], - [ - 8.6478683, - 50.141699 - ], - [ - 8.6478227, - 50.141699 - ], - [ - 8.6478227, - 50.1416148 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Elch12", - "uid": "20736", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-10T19:06:47Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 2, - "modify": 3, - "delete": 0, - "area": 3.8395200001542e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 5, - "create": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 123443911 - } - }, - { - "id": 123443641, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6475458, - 50.141623 - ], - [ - 8.6475458, - 50.141623 - ], - [ - 8.6475458, - 50.141623 - ], - [ - 8.6475458, - 50.141623 - ], - [ - 8.6475458, - 50.141623 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Elch12", - "uid": "20736", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-10T18:56:47Z", - "reviewed_features": [], - "tag_changes": { - "bicycle": [ - "yes" - ], - "highway": [ - "crossing" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 1, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123443641 - } - }, - { - "id": 123443255, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6037778, - 53.2612887 - ], - [ - 13.6041541, - 53.2612887 - ], - [ - 13.6041541, - 53.2626554 - ], - [ - 13.6037778, - 53.2626554 - ], - [ - 13.6037778, - 53.2612887 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Brandoberinspektor Erdmann", - "uid": "13364061", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-10T18:42:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 2, - "delete": 0, - "area": 5.14289210000754e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123443255 - } - }, - { - "id": 123441645, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -86.0175121, - 39.9570422 - ], - [ - -86.013364, - 39.9570422 - ], - [ - -86.013364, - 39.9584838 - ], - [ - -86.0175121, - 39.9584838 - ], - [ - -86.0175121, - 39.9570422 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Kanellar", - "uid": "16249964", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-10T17:44:03Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ] - }, - "create": 2, - "modify": 1, - "delete": 0, - "area": 0.00000597990096004122, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 9, - "create": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 2, - "change_within_25m": 4, - "change_within_50m": 5 - }, - "id": 123441645 - } - }, - { - "id": 123440075, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2326157, - -39.8414862 - ], - [ - -73.2326157, - -39.8414862 - ], - [ - -73.2326157, - -39.8414862 - ], - [ - -73.2326157, - -39.8414862 - ], - [ - -73.2326157, - -39.8414862 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-10T16:54:14Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/2sVEaRv.jpg" - ], - "image:0": [ - "https://i.imgur.com/oOhVwNO.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osm", - "add-image": 2 - }, - "id": 123440075 - } - }, - { - "id": 123439303, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.5578565, - 47.5469387 - ], - [ - 7.5792545, - 47.5469387 - ], - [ - 7.5792545, - 47.5635894 - ], - [ - 7.5578565, - 47.5635894 - ], - [ - 7.5578565, - 47.5469387 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "KaiPankrath", - "uid": "4067009", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-10T16:35:45Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/A9kdpTy.jpg", - "https://i.imgur.com/s3nEb5z.jpg", - "https://i.imgur.com/W516tpg.jpg", - "https://i.imgur.com/Oni0Qeb.jpg", - "https://i.imgur.com/WhgCbzB.jpg", - "https://i.imgur.com/5aSt0YL.jpg" - ], - "bottle": [ - "yes" - ], - "amenity": [ - "drinking_water" - ], - "historic": [ - "drinking_fountain" - ], - "man_made": [ - "drinking_fountain", - "water_well" - ], - "operational_status": [ - "broken" - ] - }, - "create": 0, - "modify": 10, - "delete": 0, - "area": 0.000356291678599999, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 6, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 6 - }, - "id": 123439303 - } - }, - { - "id": 123439236, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -92.7465526, - 44.976961 - ], - [ - -92.7393588, - 44.976961 - ], - [ - -92.7393588, - 44.9777303 - ], - [ - -92.7465526, - 44.9777303 - ], - [ - -92.7465526, - 44.976961 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "noliver", - "uid": "91568", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-10T16:34:22Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "yes" - ], - "highway": [ - "tertiary" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000553419033995841, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 123439236 - } - }, - { - "id": 123438304, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -92.5990713, - 38.1499529 - ], - [ - -92.5990713, - 38.1499529 - ], - [ - -92.5990713, - 38.1499529 - ], - [ - -92.5990713, - 38.1499529 - ], - [ - -92.5990713, - 38.1499529 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Kanellar", - "uid": "16249964", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-10T16:08:20Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "drinking_water" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 123438304 - } - }, - { - "id": 123436871, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.8804384, - 49.8002851 - ], - [ - 9.8881355, - 49.8002851 - ], - [ - 9.8881355, - 49.8054609 - ], - [ - 9.8804384, - 49.8054609 - ], - [ - 9.8804384, - 49.8002851 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "hiierundda", - "uid": "14063915", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-10T15:29:31Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "tertiary", - "unclassified" - ], - "maxspeed": [ - "50" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.0000398386501799798, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "theme": "maxspeed", - "answer": 3, - "locale": "de", - "imagery": "osm" - }, - "id": 123436871 - } - }, - { - "id": 123436464, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "KaiPankrath", - "uid": "4067009", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-10T15:18:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 123436464 - } - }, - { - "id": 123432869, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.4758835, - 46.990792 - ], - [ - 7.4758835, - 46.990792 - ], - [ - 7.4758835, - 46.990792 - ], - [ - 7.4758835, - 46.990792 - ], - [ - 7.4758835, - 46.990792 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "habi", - "uid": "15671", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-10T13:39:05Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "sanitary_dump_station" - ], - "power_supply": [ - "no" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/campersite.html", - "theme": "campersite", - "answer": 2, - "locale": "en", - "imagery": "osm", - "change_within_25m": 2 - }, - "id": 123432869 - } - }, - { - "id": 123429820, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.545827, - 48.015408 - ], - [ - 8.545827, - 48.015408 - ], - [ - 8.545827, - 48.015408 - ], - [ - 8.545827, - 48.015408 - ], - [ - 8.545827, - 48.015408 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "osmdees", - "uid": "16492361", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-10T12:11:33Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/5vDXeGe.jpg" - ], - "amenity": [ - "recycling" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 123429820 - } - }, - { - "id": 123429607, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5311886, - 48.0354555 - ], - [ - 8.532637, - 48.0354555 - ], - [ - 8.532637, - 48.0370641 - ], - [ - 8.5311886, - 48.0370641 - ], - [ - 8.5311886, - 48.0354555 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "osmdees", - "uid": "16492361", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-10T12:03:52Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "yes" - ], - "highway": [ - "service" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00000232989624000515, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 123429607 - } - }, - { - "id": 123428098, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.016502, - 50.9443955 - ], - [ - 5.0185882, - 50.9443955 - ], - [ - 5.0185882, - 50.9473178 - ], - [ - 5.016502, - 50.9473178 - ], - [ - 5.016502, - 50.9443955 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "mjans", - "uid": "5199038", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-10T11:12:00Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 1, - "modify": 0, - "delete": 1, - "area": 0.00000609650226000312, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "deletion": 1, - "change_over_5000m": 1, - "change_within_25m": 2, - "deletion:node/2560337679": "not found" - }, - "id": 123428098 - } - }, - { - "id": 123426168, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3226006, - 52.4735694 - ], - [ - 13.3226006, - 52.4735694 - ], - [ - 13.3226006, - 52.4735694 - ], - [ - 13.3226006, - 52.4735694 - ], - [ - 13.3226006, - 52.4735694 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "miwie", - "uid": "57526", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-10T10:10:56Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "pump:status": [ - "ok" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 1, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123426168 - } - }, - { - "id": 123425965, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6248593, - 52.450505 - ], - [ - 13.6355299, - 52.450505 - ], - [ - 13.6355299, - 52.4537454 - ], - [ - 13.6248593, - 52.4537454 - ], - [ - 13.6248593, - 52.450505 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Fusselwurm", - "uid": "63552", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-10T10:04:05Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-10", - "2020-02-15", - "2022-07-09" - ], - "pump:status": [ - "ok" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000345770122400274, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 6, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123425965 - } - }, - { - "id": 123424395, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3628262, - 52.48134 - ], - [ - 13.3628262, - 52.48134 - ], - [ - 13.3628262, - 52.48134 - ], - [ - 13.3628262, - 52.48134 - ], - [ - 13.3628262, - 52.48134 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Baeumegiessen", - "uid": "16503567", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-10T08:58:42Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-10", - "2018-04-18" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 1, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123424395 - } - }, - { - "id": 123424289, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6324487, - 52.450505 - ], - [ - 13.6324487, - 52.450505 - ], - [ - 13.6324487, - 52.450505 - ], - [ - 13.6324487, - 52.450505 - ], - [ - 13.6324487, - 52.450505 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Fusselwurm", - "uid": "63552", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-10T08:54:12Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-09" - ], - "pump:status": [ - "ok" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123424289 - } - }, - { - "id": 123422569, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.2584894, - 48.1021991 - ], - [ - 11.6066386, - 48.1021991 - ], - [ - 11.6066386, - 48.9060403 - ], - [ - 2.2584894, - 48.9060403 - ], - [ - 2.2584894, - 48.1021991 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Sukkoria", - "uid": "3083013", - "editor": "MapComplete 0.2.2a", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-10T07:49:19Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "sports_centre" - ], - "climbing:sport": [ - "no" - ], - "climbing:toprope": [ - "no" - ], - "climbing:traditional": [ - "no" - ] - }, - "create": 0, - "modify": 25, - "delete": 0, - "area": 7.51442747070705, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "climbing", - "language": "en", - "theme-creator": "Christian Neumann " - }, - "id": 123422569 - } - }, - { - "id": 123421596, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.6810695, - 50.5560441 - ], - [ - 9.6932099, - 50.5560441 - ], - [ - 9.6932099, - 50.5664921 - ], - [ - 9.6810695, - 50.5664921 - ], - [ - 9.6810695, - 50.5560441 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "DL2ZAV", - "uid": "11637040", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-10T07:07:12Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential", - "service", - "secondary" - ], - "name:etymology:wikidata": [ - "Q37542732", - "Q684479", - "Q75780", - "Q836028", - "Q153858", - "Q124638", - "Q2515205" - ] - }, - "create": 0, - "modify": 63, - "delete": 0, - "area": 0.000126842899199958, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 82, - "locale": "de", - "imagery": "osm" - }, - "id": 123421596 - } - }, - { - "id": 123421013, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5823176, - 51.1427792 - ], - [ - 4.5823176, - 51.1427792 - ], - [ - 4.5823176, - 51.1427792 - ], - [ - 4.5823176, - 51.1427792 - ], - [ - 4.5823176, - 51.1427792 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-10T06:38:51Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/pN8i5IU.jpg" - ], - "amenity": [ - "bicycle_parking" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 1 - }, - "id": 123421013 - } - }, - { - "id": 123420942, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5823152, - 51.1427924 - ], - [ - 4.5823152, - 51.1427924 - ], - [ - 4.5823152, - 51.1427924 - ], - [ - 4.5823152, - 51.1427924 - ], - [ - 4.5823152, - 51.1427924 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-10T06:35:34Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "charging_station" - ], - "authentication:app": [ - "no" - ], - "authentication:nfc": [ - "no" - ], - "authentication:none": [ - "yes" - ], - "authentication:debit_card": [ - "no" - ], - "authentication:money_card": [ - "no" - ], - "authentication:phone_call": [ - "no" - ], - "authentication:short_message": [ - "no" - ], - "authentication:membership_card": [ - "no" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1 - }, - "id": 123420942 - } - }, - { - "id": 123420883, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5823152, - 51.1427924 - ], - [ - 4.5823152, - 51.1427924 - ], - [ - 4.5823152, - 51.1427924 - ], - [ - 4.5823152, - 51.1427924 - ], - [ - 4.5823152, - 51.1427924 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-10T06:33:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 4, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 5 - }, - "id": 123420883 - } - }, - { - "id": 123418574, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.2276746, - 52.7233234 - ], - [ - 13.2401327, - 52.7233234 - ], - [ - 13.2401327, - 52.7277979 - ], - [ - 13.2276746, - 52.7277979 - ], - [ - 13.2276746, - 52.7233234 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "SebastianFranz", - "uid": "16395555", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-10T03:41:33Z", - "reviewed_features": [], - "tag_changes": { - "fire_hydrant:type": [ - "underground" - ], - "fire_hydrant:diameter": [ - "150" - ] - }, - "create": 2, - "modify": 4, - "delete": 0, - "area": 0.0000557437684500071, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123418574 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-11.json b/Docs/Tools/stats/stats.2022-7-11.json deleted file mode 100644 index 4de39c4b83..0000000000 --- a/Docs/Tools/stats/stats.2022-7-11.json +++ /dev/null @@ -1,6568 +0,0 @@ -{ - "features": [ - { - "id": 123493714, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6041888, - 50.8311269 - ], - [ - 3.6164238, - 50.8311269 - ], - [ - 3.6164238, - 50.8390776 - ], - [ - 3.6041888, - 50.8390776 - ], - [ - 3.6041888, - 50.8311269 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-11T22:38:27Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/OB313fB.jpg", - "https://i.imgur.com/eGIft93.jpg" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000972768145000255, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 123493714 - } - }, - { - "id": 123493413, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1152607, - 50.2909972 - ], - [ - 9.1159426, - 50.2909972 - ], - [ - 9.1159426, - 50.2915393 - ], - [ - 9.1152607, - 50.2915393 - ], - [ - 9.1152607, - 50.2909972 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Richiii", - "uid": "16508603", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T22:17:22Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "access": [ - "yes" - ], - "leisure": [ - "playground" - ], - "wheelchair": [ - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 3.69657989997956e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 2, - "locale": "de", - "imagery": "osm", - "change_within_5000m": 2 - }, - "id": 123493413 - } - }, - { - "id": 123493410, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1152607, - 50.2909972 - ], - [ - 9.1159426, - 50.2909972 - ], - [ - 9.1159426, - 50.2915393 - ], - [ - 9.1152607, - 50.2915393 - ], - [ - 9.1152607, - 50.2909972 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Richiii", - "uid": "16508603", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T22:17:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 3.69657989997956e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 3, - "locale": "de", - "imagery": "osm", - "change_within_5000m": 3 - }, - "id": 123493410 - } - }, - { - "id": 123493269, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1054022, - 50.2035946 - ], - [ - 9.1350675, - 50.2035946 - ], - [ - 9.1350675, - 50.2915739 - ], - [ - 9.1054022, - 50.2915739 - ], - [ - 9.1054022, - 50.2035946 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Richiii", - "uid": "16508603", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T22:07:19Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "cafe" - ] - }, - "create": 5, - "modify": 1, - "delete": 1, - "area": 0.00260993232828998, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 6, - "create": 6, - "locale": "de", - "imagery": "osm", - "deletion": 1, - "change_over_5000m": 6, - "change_within_1000m": 6, - "change_within_5000m": 1, - "deletion:node/9881975006": "not found" - }, - "id": 123493269 - } - }, - { - "id": 123492994, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0349709, - 48.8130411 - ], - [ - 21.8951351, - 48.8130411 - ], - [ - 21.8951351, - 50.2991565 - ], - [ - 9.0349709, - 50.2991565 - ], - [ - 9.0349709, - 48.8130411 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Richiii", - "uid": "16508603", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T21:53:30Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential", - "tertiary", - "primary" - ], - "maxspeed": [ - "30", - "50", - "100", - "70" - ] - }, - "create": 2, - "modify": 16, - "delete": 0, - "area": 19.1116880641487, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "split": 3, - "theme": "maxspeed", - "answer": 14, - "locale": "de", - "imagery": "osm", - "relation-fix": 1, - "change_over_5000m": 8, - "change_within_5000m": 9 - }, - "id": 123492994 - } - }, - { - "id": 123491914, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0077544, - 51.1302393 - ], - [ - 5.0077544, - 51.1302393 - ], - [ - 5.0077544, - 51.1302393 - ], - [ - 5.0077544, - 51.1302393 - ], - [ - 5.0077544, - 51.1302393 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T21:04:36Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "restaurant" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 123491914 - } - }, - { - "id": 123490669, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2312099, - 48.8079918 - ], - [ - 9.2312099, - 48.8079918 - ], - [ - 9.2312099, - 48.8079918 - ], - [ - 9.2312099, - 48.8079918 - ], - [ - 9.2312099, - 48.8079918 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T20:20:38Z", - "reviewed_features": [], - "tag_changes": { - "bus": [ - "no" - ], - "hgv": [ - "no" - ], - "image": [ - "https://i.imgur.com/EOmYEc5.jpg" - ], - "amenity": [ - "charging_station" - ], - "bicycle": [ - "no" - ], - "scooter": [ - "no" - ], - "motorcar": [ - "yes" - ], - "operator": [ - "Stadwerke Stuttgart" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 2, - "locale": "de", - "imagery": "osmfr", - "add-image": 1, - "change_over_5000m": 3 - }, - "id": 123490669 - } - }, - { - "id": 123489845, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8892266, - 51.1558509 - ], - [ - 4.9077619, - 51.1558509 - ], - [ - 4.9077619, - 51.1652144 - ], - [ - 4.8892266, - 51.1652144 - ], - [ - 4.8892266, - 51.1558509 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T19:52:33Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "post_office", - "social_facility" - ], - "building": [ - "commercial", - "house", - "yes", - "roof" - ], - "addr:street": [ - "Oevelseweg", - "Elzenstraat", - "Eikenstraat" - ], - "addr:housenumber": [ - "62", - "2", - "2A", - "1", - "4" - ], - "source:geometry:ref": [ - "Gbg/3838410", - "Gbg/6508534", - "Gbg/3838409", - "Gbg/3838424", - "Gbg/3838408", - "Gbg/3838407", - "Gbg/4928364", - "Gba/292627", - "Gbg/3838357", - "Gbg/5403539", - "Gbg/3838368", - "Gbg/7019952", - "Gbg/3838381", - "Gbg/3838369", - "Gbg/3838380", - "Gbg/3838379", - "Gbg/3838370", - "Gbg/3838402", - "Gbg/4928378", - "Gbg/4011455", - "Gbg/4013150", - "Gbg/4011657", - "Gbg/4011636", - "Gbg/4928299", - "Gbg/3838428", - "Gbg/3838286", - "Gbg/3838589", - "Gbg/3838166", - "Gbg/4011294", - "Gbg/4011293", - "Gbg/4011292", - "Gbg/4679015", - "Gbg/4011289", - "Gbg/4011290", - "Gbg/4011291", - "Gbg/4011446", - "Gbg/3838590", - "Gbg/3838591", - "Gbg/5862415", - "Gbg/3838593", - "Gbg/3838594", - "Gbg/3838595", - "Gbg/3838596", - "Gbg/3838597", - "Gbg/4928224", - "Gbg/3838160", - "Gbg/3838251", - "Gbg/3838287", - "Gbg/3838252", - "Gbg/3838149", - "Gbg/3838150", - "Gbg/3838281", - "Gbg/3838264", - "Gbg/3838282", - "Gbg/3838283", - "Gbg/5862321", - "Gbg/3838296", - "Gbg/4679006", - "Gbg/3838285", - "Gbg/3838294", - "Gbg/3838293", - "Gbg/3838292", - "Gbg/3838598", - "Gbg/3838599", - "Gbg/3838600", - "Gbg/3838291", - "Gbg/5862392", - "Gbg/3838288", - "Gbg/5862473" - ], - "source:geometry:date": [ - "2012-09-17", - "2018-10-24", - "2014-12-04", - "2015-11-24", - "2021-10-25", - "2013-02-20", - "2016-05-02", - "2013-01-07", - "2018-09-13", - "2017-03-01", - "2014-05-02", - "2015-05-06", - "2020-06-05" - ] - }, - "create": 833, - "modify": 452, - "delete": 6, - "area": 0.000173555281550116, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 380, - "theme": "grb", - "answer": 5, - "delete": 6, - "import": 83, - "locale": "nl", - "imagery": "AGIV", - "conflation": 136 - }, - "id": 123489845 - } - }, - { - "id": 123489623, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8983617, - 51.1604248 - ], - [ - 4.9007123, - 51.1604248 - ], - [ - 4.9007123, - 51.1648757 - ], - [ - 4.8983617, - 51.1648757 - ], - [ - 4.8983617, - 51.1604248 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T19:44:41Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "supermarket" - ], - "building": [ - "house", - "retail", - "yes", - "roof" - ], - "addr:housenumber": [ - "44;44A", - "44", - "71", - "71A" - ], - "source:geometry:ref": [ - "Gbg/3838374", - "Gbg/3838234", - "Gbg/3838359", - "Gbg/5862323", - "Gbg/3838371", - "Gbg/3838372", - "Gbg/3838373", - "Gbg/3838363", - "Gbg/3838364", - "Gbg/3838362", - "Gbg/3838375", - "Gbg/3838376", - "Gbg/3838392", - "Gbg/3838393", - "Gbg/5862486", - "Gbg/3838395", - "Gbg/3838411", - "Gbg/3838391", - "Gbg/3838401", - "Gbg/3838403", - "Gbg/6508194" - ], - "source:geometry:date": [ - "2012-09-17", - "2013-02-20", - "2017-03-01", - "2021-10-25", - "2015-11-24", - "2018-10-24" - ] - }, - "create": 193, - "modify": 128, - "delete": 0, - "area": 0.0000104622855400074, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 105, - "theme": "grb", - "answer": 2, - "import": 13, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "conflation": 42 - }, - "id": 123489623 - } - }, - { - "id": 123489599, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8982939, - 51.1646438 - ], - [ - 4.9005228, - 51.1646438 - ], - [ - 4.9005228, - 51.1658987 - ], - [ - 4.8982939, - 51.1658987 - ], - [ - 4.8982939, - 51.1646438 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T19:43:28Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house" - ], - "source:geometry:ref": [ - "Gbg/3838356", - "Gbg/3838358", - "Gbg/4011566", - "Gbg/6508559", - "Gbg/5862381" - ], - "source:geometry:date": [ - "2012-09-17", - "2013-01-07", - "2018-10-24", - "2017-03-01" - ] - }, - "create": 15, - "modify": 29, - "delete": 0, - "area": 0.00000279704660999893, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 24, - "theme": "grb", - "locale": "nl", - "imagery": "AGIV", - "conflation": 10 - }, - "id": 123489599 - } - }, - { - "id": 123489214, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8969439, - 51.1645026 - ], - [ - 4.901359, - 51.1645026 - ], - [ - 4.901359, - 51.1679052 - ], - [ - 4.8969439, - 51.1679052 - ], - [ - 4.8969439, - 51.1645026 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T19:31:11Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "library", - "bank" - ], - "building": [ - "house", - "yes", - "commercial", - "school", - "roof" - ], - "source:geometry:ref": [ - "Gbg/3838229", - "Gbg/3838228", - "Gbg/3838232", - "Gbg/3838351", - "Gbg/3838230", - "Gbg/3838352", - "Gbg/3838231", - "Gbg/4011553", - "Gbg/4011505", - "Gbg/4011562", - "Gbg/4011561", - "Gbg/4011560", - "Gbg/4011559", - "Gbg/4011558", - "Gbg/5862404", - "Gbg/4011504", - "Gbg/4011507", - "Gbg/4011506", - "Gbg/4011537", - "Gbg/5862248", - "Gbg/4011509", - "Gbg/4011508", - "Gbg/4011513", - "Gbg/4011512", - "Gbg/4011510", - "Gbg/4011511", - "Gbg/4011540", - "Gbg/4011532" - ], - "source:geometry:date": [ - "2012-09-17", - "2013-02-20", - "2014-12-04", - "2013-01-07", - "2017-03-01", - "2021-10-25", - "2015-11-24" - ] - }, - "create": 232, - "modify": 210, - "delete": 0, - "area": 0.0000150228192600054, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 184, - "theme": "grb", - "import": 19, - "locale": "nl", - "imagery": "AGIV", - "conflation": 56 - }, - "id": 123489214 - } - }, - { - "id": 123489177, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7194186, - 50.9324716 - ], - [ - 3.7194186, - 50.9324716 - ], - [ - 3.7194186, - 50.9324716 - ], - [ - 3.7194186, - 50.9324716 - ], - [ - 3.7194186, - 50.9324716 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-11T19:30:06Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/y1WG8Dp.jpg" - ], - "amenity": [ - "public_bookcase" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 123489177 - } - }, - { - "id": 123488941, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7185752, - 50.9330447 - ], - [ - 3.7185752, - 50.9330447 - ], - [ - 3.7185752, - 50.9330447 - ], - [ - 3.7185752, - 50.9330447 - ], - [ - 3.7185752, - 50.9330447 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-11T19:22:53Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/YLueU3m.jpg" - ], - "amenity": [ - "bench" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 123488941 - } - }, - { - "id": 123488284, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3403407, - 52.4648407 - ], - [ - 13.3403407, - 52.4648407 - ], - [ - 13.3403407, - 52.4648407 - ], - [ - 13.3403407, - 52.4648407 - ], - [ - 13.3403407, - 52.4648407 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Duocervisia", - "uid": "16456166", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-11T19:03:59Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-11" - ], - "pump:status": [ - "ok" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123488284 - } - }, - { - "id": 123487988, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8983936, - 51.1656569 - ], - [ - 4.9082544, - 51.1656569 - ], - [ - 4.9082544, - 51.1723417 - ], - [ - 4.8983936, - 51.1723417 - ], - [ - 4.8983936, - 51.1656569 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T18:54:25Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "parking", - "pub" - ], - "building": [ - "house", - "yes", - "apartments", - "roof" - ], - "addr:housenumber": [ - "25;27", - "19", - "10", - "6" - ], - "source:geometry:ref": [ - "Gbg/3838526", - "Gbg/4011529", - "Gbg/4011933", - "Gbg/5862344", - "Gbg/3838148", - "Gbg/3838147", - "Gbg/3838146", - "Gbg/3838145", - "Gbg/3838225", - "Gbg/3838224", - "Gbg/4011219", - "Gbg/4011208", - "Gbg/3838551", - "Gbg/3838515", - "Gbg/3838550", - "Gbg/3838548", - "Gbg/3838549", - "Gbg/3838311", - "Gbg/3838203", - "Gbg/3838188", - "Gbg/3838187", - "Gbg/5862383", - "Gbg/3838185", - "Gbg/3838319", - "Gbg/4011207", - "Gbg/3838032", - "Gbg/4011198", - "Gbg/4011201", - "Gbg/5862398", - "Gbg/4011204", - "Gbg/3838194", - "Gbg/3838193", - "Gbg/3838191", - "Gbg/3838190", - "Gbg/3838248", - "Gbg/3838298", - "Gbg/3838249", - "Gbg/4928295", - "Gbg/5862328", - "Gbg/5862378", - "Gbg/3838303", - "Gbg/3838304", - "Gbg/3838555", - "Gbg/3838554", - "Gbg/3838552", - "Gbg/3838553", - "Gbg/3838721", - "Gbg/3838556", - "Gbg/3838301", - "Gbg/3838557", - "Gbg/5554868", - "Gbg/5554869", - "Gbg/3838247", - "Gbg/3838246", - "Gbg/3838227", - "Gbg/3838217", - "Gbg/3838218", - "Gbg/3838219", - "Gbg/3838220", - "Gbg/3838309", - "Gbg/3838221", - "Gbg/5862374", - "Gbg/6989652", - "Gbg/3838250", - "Gbg/3838327", - "Gbg/3838326", - "Gbg/3838325", - "Gbg/3838321", - "Gbg/3838329", - "Gbg/6910819", - "Gbg/3838328", - "Gbg/3838512", - "Gbg/3837908" - ], - "source:geometry:date": [ - "2013-02-20", - "2013-01-07", - "2017-03-01", - "2018-10-24", - "2012-09-17", - "2014-05-02", - "2014-12-04", - "2020-06-05", - "2019-09-04", - "2016-05-02", - "2021-10-25", - "2021-09-10" - ] - }, - "create": 674, - "modify": 456, - "delete": 5, - "area": 0.0000659174758399468, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 385, - "theme": "grb", - "answer": 6, - "delete": 5, - "import": 80, - "locale": "nl", - "imagery": "AGIV", - "conflation": 144 - }, - "id": 123487988 - } - }, - { - "id": 123487924, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9019646, - 51.1675244 - ], - [ - 4.9044834, - 51.1675244 - ], - [ - 4.9044834, - 51.1687499 - ], - [ - 4.9019646, - 51.1687499 - ], - [ - 4.9019646, - 51.1675244 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T18:52:38Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "pub" - ], - "building": [ - "house", - "yes", - "roof" - ], - "source:geometry:ref": [ - "Gbg/5403537", - "Gbg/3838312", - "Gbg/3838315", - "Gbg/3838316", - "Gbg/3838317", - "Gbg/3838318", - "Gbg/3838307", - "Gbg/3838313", - "Gbg/6508514", - "Gbg/3838211", - "Gbg/3838210", - "Gbg/3838306", - "Gbg/3838305" - ], - "source:geometry:date": [ - "2015-11-24", - "2013-02-20", - "2012-09-17", - "2017-03-01", - "2018-10-24" - ] - }, - "create": 53, - "modify": 72, - "delete": 0, - "area": 0.00000308678940000954, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 60, - "theme": "grb", - "import": 2, - "locale": "nl", - "imagery": "AGIV", - "conflation": 26 - }, - "id": 123487924 - } - }, - { - "id": 123487799, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.4489035, - 47.6307502 - ], - [ - 10.4499355, - 47.6307502 - ], - [ - 10.4499355, - 47.6313781 - ], - [ - 10.4489035, - 47.6313781 - ], - [ - 10.4489035, - 47.6307502 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "SanSim", - "uid": "2481180", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-11T18:48:39Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "no" - ], - "leisure": [ - "playground" - ], - "surface": [ - "grass" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 6.47992799997953e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 123487799 - } - }, - { - "id": 123486536, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.719266, - 50.9324422 - ], - [ - 3.7193138, - 50.9324422 - ], - [ - 3.7193138, - 50.9324854 - ], - [ - 3.719266, - 50.9324854 - ], - [ - 3.719266, - 50.9324422 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-11T18:08:11Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/FSTlrNA.jpg", - "https://i.imgur.com/BgCfrZk.jpg" - ], - "amenity": [ - "bench" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 2.06496000001395e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 123486536 - } - }, - { - "id": 123484705, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.2957318, - 51.3848996 - ], - [ - -0.2953733, - 51.3848996 - ], - [ - -0.2953733, - 51.385575 - ], - [ - -0.2957318, - 51.385575 - ], - [ - -0.2957318, - 51.3848996 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "hocu", - "uid": "374342", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T17:15:47Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "hairdresser", - "sports" - ], - "email": [ - "Surbiton@upandrunning.co.uk" - ], - "phone": [ - "+44 7961 120169", - "+44 20 8390 8771" - ], - "website": [ - "https://www.facebook.com/smartstylebarbers/", - "https://upandrunning.co.uk/pages/up-running-surbiton" - ], - "building": [ - "retail" - ], - "payment:cash": [ - "yes" - ], - "opening_hours": [ - "Tu-Fr 11:00-19:00; Sa 09:00-18:00; Su 10:00-15:00;PH off;", - "Tu-Fr 11:00-19:00; Sa 09:00-18:00; Su 10:00-15:00; PH,Mo off", - "Mo-We 09:30-17:30; Th 09:30-19:30; Fr 09:30-17:30; Sa 09:00-18:00; Su 10:30-16:30;PH off;" - ], - "payment:cards": [ - "yes" - ] - }, - "create": 0, - "modify": 8, - "delete": 0, - "area": 2.42130900002056e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 10, - "locale": "en", - "imagery": "osm" - }, - "id": 123484705 - } - }, - { - "id": 123483512, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3327324, - 52.4588758 - ], - [ - 13.3386562, - 52.4588758 - ], - [ - 13.3386562, - 52.4619129 - ], - [ - 13.3327324, - 52.4619129 - ], - [ - 13.3327324, - 52.4588758 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Duocervisia", - "uid": "16456166", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-11T16:43:51Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-11", - "2020-09-11" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.0000179911729800059, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 3, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123483512 - } - }, - { - "id": 123482406, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3226006, - 52.4735694 - ], - [ - 13.3226006, - 52.4735694 - ], - [ - 13.3226006, - 52.4735694 - ], - [ - 13.3226006, - 52.4735694 - ], - [ - 13.3226006, - 52.4735694 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "KiraSchramm", - "uid": "16464117", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-11T16:10:25Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-11" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 1, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123482406 - } - }, - { - "id": 123479757, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6913764, - 50.1230201 - ], - [ - 8.6913764, - 50.1230201 - ], - [ - 8.6913764, - 50.1230201 - ], - [ - 8.6913764, - 50.1230201 - ], - [ - 8.6913764, - 50.1230201 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "symtll", - "uid": "16362995", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T15:03:51Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "material": [ - "wood" - ], - "direction": [ - "265" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 2, - "locale": "de", - "imagery": "osm", - "change_within_25m": 2 - }, - "id": 123479757 - } - }, - { - "id": 123479728, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6913764, - 50.1230201 - ], - [ - 8.6913764, - 50.1230201 - ], - [ - 8.6913764, - 50.1230201 - ], - [ - 8.6913764, - 50.1230201 - ], - [ - 8.6913764, - 50.1230201 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "symtll", - "uid": "16362995", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T15:03:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 1, - "create": 1, - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 123479728 - } - }, - { - "id": 123479694, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6914623, - 50.1232161 - ], - [ - 8.6914623, - 50.1232161 - ], - [ - 8.6914623, - 50.1232161 - ], - [ - 8.6914623, - 50.1232161 - ], - [ - 8.6914623, - 50.1232161 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "mathildane", - "uid": "16445312", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T15:02:26Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 4, - "create": 1, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 123479694 - } - }, - { - "id": 123479595, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "symtll", - "uid": "16362995", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T15:00:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "waste", - "answer": 1, - "create": 1, - "locale": "de", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 123479595 - } - }, - { - "id": 123479294, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6920269, - 50.1245385 - ], - [ - 8.6920269, - 50.1245385 - ], - [ - 8.6920269, - 50.1245385 - ], - [ - 8.6920269, - 50.1245385 - ], - [ - 8.6920269, - 50.1245385 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "mathildane", - "uid": "16445312", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T14:52:46Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 1, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 1, - "create": 1, - "locale": "de", - "imagery": "osm", - "deletion": 1, - "change_over_5000m": 1, - "change_within_50m": 2, - "deletion:node/9881200327": "duplicate" - }, - "id": 123479294 - } - }, - { - "id": 123479223, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6915374, - 50.1247896 - ], - [ - 8.6915374, - 50.1247896 - ], - [ - 8.6915374, - 50.1247896 - ], - [ - 8.6915374, - 50.1247896 - ], - [ - 8.6915374, - 50.1247896 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "mathildane", - "uid": "16445312", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T14:51:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 1, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 1, - "create": 1, - "locale": "de", - "imagery": "osm", - "deletion": 1, - "change_over_5000m": 1, - "change_within_25m": 2, - "deletion:node/9881135668": "duplicate" - }, - "id": 123479223 - } - }, - { - "id": 123479188, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6919343, - 50.1246297 - ], - [ - 8.6919343, - 50.1246297 - ], - [ - 8.6919343, - 50.1246297 - ], - [ - 8.6919343, - 50.1246297 - ], - [ - 8.6919343, - 50.1246297 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "symtll", - "uid": "16362995", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T14:50:42Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bar" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 5, - "create": 1, - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 1, - "change_within_50m": 5 - }, - "id": 123479188 - } - }, - { - "id": 123478902, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6915454, - 50.1231663 - ], - [ - 8.6916903, - 50.1231663 - ], - [ - 8.6916903, - 50.1262117 - ], - [ - 8.6915454, - 50.1262117 - ], - [ - 8.6915454, - 50.1231663 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "mathildane", - "uid": "16445312", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #parkings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T14:44:40Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "bus" - ], - "amenity": [ - "bicycle_parking", - "waste_basket", - "parking" - ], - "barrier": [ - "kerb" - ], - "highway": [ - "primary" - ] - }, - "create": 4, - "modify": 0, - "delete": 0, - "area": 4.41278459995628e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/parkings.html", - "theme": "parkings", - "create": 4, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 4 - }, - "id": 123478902 - } - }, - { - "id": 123478549, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6922026, - 50.1268565 - ], - [ - 8.6922026, - 50.1268565 - ], - [ - 8.6922026, - 50.1268565 - ], - [ - 8.6922026, - 50.1268565 - ], - [ - 8.6922026, - 50.1268565 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "symtll", - "uid": "16362995", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #parkings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T14:37:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 1, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/parkings.html", - "theme": "parkings", - "create": 1, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 123478549 - } - }, - { - "id": 123478422, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6915749, - 50.1234707 - ], - [ - 8.6918968, - 50.1234707 - ], - [ - 8.6918968, - 50.1273776 - ], - [ - 8.6915749, - 50.1273776 - ], - [ - 8.6915749, - 50.1234707 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "mathildane", - "uid": "16445312", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T14:33:51Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "bus" - ], - "amenity": [ - "waste_basket", - "bicycle_parking" - ], - "barrier": [ - "bollard", - "kerb" - ], - "highway": [ - "path", - "primary" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 0.00000125763110999908, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "theme": "waste_basket", - "answer": 2, - "create": 2, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 2 - }, - "id": 123478422 - } - }, - { - "id": 123478373, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6913355, - 50.1226316 - ], - [ - 8.6919236, - 50.1226316 - ], - [ - 8.6919236, - 50.1275181 - ], - [ - 8.6913355, - 50.1275181 - ], - [ - 8.6913355, - 50.1226316 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "mathildane", - "uid": "16445312", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T14:32:28Z", - "reviewed_features": [], - "tag_changes": { - "kerb": [ - "lowered" - ], - "route": [ - "bus" - ], - "amenity": [ - "waste_basket", - "bicycle_parking" - ], - "barrier": [ - "kerb", - "bollard" - ], - "highway": [ - "path", - "crossing", - "primary" - ], - "tactile_paving": [ - "yes" - ] - }, - "create": 3, - "modify": 5, - "delete": 0, - "area": 0.00000287375065001092, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/kerbs_and_crossings.html", - "theme": "kerbs_and_crossings", - "answer": 8, - "create": 8, - "locale": "de", - "imagery": "osm", - "change_within_25m": 14 - }, - "id": 123478373 - } - }, - { - "id": 123478363, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6915106, - 50.1235962 - ], - [ - 8.6919665, - 50.1235962 - ], - [ - 8.6919665, - 50.1277404 - ], - [ - 8.6915106, - 50.1277404 - ], - [ - 8.6915106, - 50.1235962 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "symtll", - "uid": "16362995", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T14:32:20Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "bus" - ], - "access": [ - "customers" - ], - "amenity": [ - "bicycle_parking", - "waste_basket" - ], - "barrier": [ - "bollard" - ], - "highway": [ - "path" - ], - "cargo_bike": [ - "no" - ], - "capacity:cargo_bike": [ - "0" - ] - }, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0.0000018893407799938, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 7, - "create": 1, - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 8 - }, - "id": 123478363 - } - }, - { - "id": 123478351, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6919665, - 50.1277404 - ], - [ - 8.6919665, - 50.1277404 - ], - [ - 8.6919665, - 50.1277404 - ], - [ - 8.6919665, - 50.1277404 - ], - [ - 8.6919665, - 50.1277404 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "symtll", - "uid": "16362995", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T14:32:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 3, - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 4 - }, - "id": 123478351 - } - }, - { - "id": 123478212, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6919665, - 50.1277404 - ], - [ - 8.6923796, - 50.1277404 - ], - [ - 8.6923796, - 50.1280378 - ], - [ - 8.6919665, - 50.1280378 - ], - [ - 8.6919665, - 50.1277404 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "symtll", - "uid": "16362995", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T14:29:26Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/ARLFJ1v.jpg" - ], - "route": [ - "bus" - ], - "amenity": [ - "bicycle_parking" - ], - "highway": [ - "path" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 1.22855940000715e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "create": 1, - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 2, - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 123478212 - } - }, - { - "id": 123478172, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6923796, - 50.1280378 - ], - [ - 8.6923796, - 50.1280378 - ], - [ - 8.6923796, - 50.1280378 - ], - [ - 8.6923796, - 50.1280378 - ], - [ - 8.6923796, - 50.1280378 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "symtll", - "uid": "16362995", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T14:28:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 4, - "create": 1, - "locale": "de", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 123478172 - } - }, - { - "id": 123478167, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6916393, - 50.1241465 - ], - [ - 8.6920792, - 50.1241465 - ], - [ - 8.6920792, - 50.1279622 - ], - [ - 8.6916393, - 50.1279622 - ], - [ - 8.6916393, - 50.1241465 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "mathildane", - "uid": "16445312", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T14:28:35Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "bus" - ], - "amenity": [ - "waste_basket", - "bicycle_parking" - ], - "barrier": [ - "bollard" - ], - "highway": [ - "primary", - "path" - ] - }, - "create": 3, - "modify": 3, - "delete": 0, - "area": 0.00000167852642999843, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 12, - "create": 3, - "locale": "de", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 3, - "change_within_25m": 12 - }, - "id": 123478167 - } - }, - { - "id": 123477968, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6913409, - 50.1283948 - ], - [ - 8.6926415, - 50.1283948 - ], - [ - 8.6926415, - 50.1292933 - ], - [ - 8.6913409, - 50.1292933 - ], - [ - 8.6913409, - 50.1283948 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "symtll", - "uid": "16362995", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T14:24:10Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "pedestrian" - ], - "cycleway": [ - "no", - "lane" - ], - "maxspeed": [ - "30", - "50" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.00000116858909999796, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/kerbs_and_crossings.html", - "theme": "kerbs_and_crossings", - "answer": 5, - "locale": "de", - "imagery": "osm", - "change_within_50m": 5 - }, - "id": 123477968 - } - }, - { - "id": 123477719, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6865479, - 50.1262991 - ], - [ - 8.6926415, - 50.1262991 - ], - [ - 8.6926415, - 50.1292933 - ], - [ - 8.6865479, - 50.1292933 - ], - [ - 8.6865479, - 50.1262991 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "mathildane", - "uid": "16445312", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T14:17:39Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "no", - "yes" - ], - "image": [ - "https://i.imgur.com/vC6BNGV.jpg" - ], - "route": [ - "bus" - ], - "amenity": [ - "waste_basket" - ], - "barrier": [ - "bollard" - ], - "bicycle": [ - "yes" - ], - "highway": [ - "primary", - "crossing", - "residential", - "path", - "pedestrian" - ], - "cycleway": [ - "lane" - ], - "maxspeed": [ - "50" - ], - "cycleway:separation": [ - "solid_line" - ], - "cycleway:smoothness": [ - "intermediate" - ] - }, - "create": 4, - "modify": 6, - "delete": 0, - "area": 0.0000182454571200201, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 13, - "create": 8, - "locale": "de", - "imagery": "CartoDB.Voyager", - "change_within_25m": 17 - }, - "id": 123477719 - } - }, - { - "id": 123477649, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6913409, - 50.1263158 - ], - [ - 8.6926415, - 50.1263158 - ], - [ - 8.6926415, - 50.1292933 - ], - [ - 8.6913409, - 50.1292933 - ], - [ - 8.6913409, - 50.1263158 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "symtll", - "uid": "16362995", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 1, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T14:15:50Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "no", - "yes" - ], - "image": [ - "https://i.imgur.com/vC6BNGV.jpg" - ], - "route": [ - "bus" - ], - "amenity": [ - "waste_basket" - ], - "barrier": [ - "bollard" - ], - "highway": [ - "primary", - "pedestrian" - ], - "cycleway": [ - "lane" - ], - "maxspeed": [ - "50" - ], - "cycleway:separation": [ - "solid_line" - ], - "cycleway:smoothness": [ - "intermediate" - ] - }, - "create": 3, - "modify": 4, - "delete": 0, - "area": 0.00000387253650000138, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 7, - "create": 6, - "locale": "de", - "imagery": "CartoDB.Voyager", - "change_within_25m": 13 - }, - "id": 123477649 - } - }, - { - "id": 123477531, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3276934, - 52.4746317 - ], - [ - 13.3276934, - 52.4746317 - ], - [ - 13.3276934, - 52.4746317 - ], - [ - 13.3276934, - 52.4746317 - ], - [ - 13.3276934, - 52.4746317 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "miwie", - "uid": "57526", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-11T14:12:33Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "pump:status": [ - "ok" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 1, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123477531 - } - }, - { - "id": 123477331, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6913228, - 50.1232161 - ], - [ - 8.6927739, - 50.1232161 - ], - [ - 8.6927739, - 50.1293515 - ], - [ - 8.6913228, - 50.1293515 - ], - [ - 8.6913228, - 50.1232161 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "symtll", - "uid": "16362995", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T14:07:37Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "bus" - ], - "amenity": [ - "waste_basket" - ], - "natural": [ - "tree" - ], - "leaf_cycle": [ - "deciduous" - ] - }, - "create": 2, - "modify": 3, - "delete": 0, - "area": 0.00000890307894000076, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 5, - "create": 2, - "locale": "de", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 2, - "change_within_25m": 7 - }, - "id": 123477331 - } - }, - { - "id": 123477218, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6748457, - 50.9146258 - ], - [ - 3.8115773, - 50.9146258 - ], - [ - 3.8115773, - 50.999479 - ], - [ - 3.6748457, - 50.999479 - ], - [ - 3.6748457, - 50.9146258 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-11T14:04:56Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/ohqcvek.jpg", - "https://i.imgur.com/YVPbGPc.jpg", - "https://i.imgur.com/MbiqvPC.jpg", - "https://i.imgur.com/JlguPlA.jpg", - "https://i.imgur.com/sEI9vk2.jpg", - "https://i.imgur.com/h7jkdGo.jpg" - ], - "route": [ - "bicycle", - "hiking" - ], - "amenity": [ - "bench" - ], - "highway": [ - "unclassified" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.0116021138011197, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 6 - }, - "id": 123477218 - } - }, - { - "id": 123477207, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6927202, - 50.1288116 - ], - [ - 8.6934927, - 50.1288116 - ], - [ - 8.6934927, - 50.1293326 - ], - [ - 8.6927202, - 50.1293326 - ], - [ - 8.6927202, - 50.1288116 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "mathildane", - "uid": "16445312", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-11T14:04:44Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 5, - "modify": 3, - "delete": 0, - "area": 4.02472499999343e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 10, - "create": 5, - "locale": "de", - "imagery": "osm", - "add-image": 2 - }, - "id": 123477207 - } - }, - { - "id": 123477140, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6914757, - 50.1229754 - ], - [ - 8.6914757, - 50.1229754 - ], - [ - 8.6914757, - 50.1229754 - ], - [ - 8.6914757, - 50.1229754 - ], - [ - 8.6914757, - 50.1229754 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Richiii", - "uid": "16508603", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #parkings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T14:03:22Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "parking" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "parkings", - "create": 1, - "locale": "de", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1 - }, - "id": 123477140 - } - }, - { - "id": 123477106, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6912692, - 50.1229719 - ], - [ - 8.6931226, - 50.1229719 - ], - [ - 8.6931226, - 50.1292656 - ], - [ - 8.6912692, - 50.1292656 - ], - [ - 8.6912692, - 50.1229719 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "symtll", - "uid": "16362995", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T14:02:06Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "no", - "yes" - ], - "image": [ - "https://i.imgur.com/vC6BNGV.jpg" - ], - "route": [ - "bus" - ], - "amenity": [ - "waste_basket" - ], - "highway": [ - "pedestrian" - ], - "natural": [ - "tree" - ], - "cycleway": [ - "lane" - ], - "maxspeed": [ - "50" - ], - "cycleway:separation": [ - "solid_line" - ], - "cycleway:smoothness": [ - "intermediate" - ] - }, - "create": 7, - "modify": 6, - "delete": 0, - "area": 0.0000116647435799871, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "theme": "waste_basket", - "answer": 7, - "create": 7, - "locale": "de", - "imagery": "osm", - "add-image": 6, - "change_over_5000m": 7, - "change_within_25m": 12, - "change_within_50m": 1 - }, - "id": 123477106 - } - }, - { - "id": 123476859, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.2532632, - 52.7684747 - ], - [ - 13.2685903, - 52.7684747 - ], - [ - 13.2685903, - 52.7785124 - ], - [ - 13.2532632, - 52.7785124 - ], - [ - 13.2532632, - 52.7684747 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "SebastianFranz", - "uid": "16395555", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T13:56:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 17, - "modify": 16, - "delete": 0, - "area": 0.000153848831669974, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123476859 - } - }, - { - "id": 123476840, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6932245, - 50.1295475 - ], - [ - 8.6932379, - 50.1295475 - ], - [ - 8.6932379, - 50.1295682 - ], - [ - 8.6932245, - 50.1295682 - ], - [ - 8.6932245, - 50.1295475 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "symtll", - "uid": "16362995", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T13:55:45Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 2.77380000009935e-10, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 8, - "create": 2, - "locale": "de", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 2, - "change_within_25m": 10 - }, - "id": 123476840 - } - }, - { - "id": 123476802, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6890559, - 50.1188837 - ], - [ - 8.6936241, - 50.1188837 - ], - [ - 8.6936241, - 50.1296799 - ], - [ - 8.6890559, - 50.1296799 - ], - [ - 8.6890559, - 50.1188837 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Richiii", - "uid": "16508603", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T13:54:33Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/lOrFnWG.jpg" - ], - "amenity": [ - "bicycle_parking" - ], - "natural": [ - "tree" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 0.0000493192008400022, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 6, - "create": 2, - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 2, - "change_within_25m": 7 - }, - "id": 123476802 - } - }, - { - "id": 123476508, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6913409, - 50.1283948 - ], - [ - 8.6941096, - 50.1283948 - ], - [ - 8.6941096, - 50.1296851 - ], - [ - 8.6913409, - 50.1296851 - ], - [ - 8.6913409, - 50.1283948 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "symtll", - "uid": "16362995", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T13:46:22Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "no", - "yes" - ], - "uid": [ - "16362995" - ], - "user": [ - "symtll" - ], - "image": [ - "https://i.imgur.com/ZZdHfod.jpg", - "https://i.imgur.com/vC6BNGV.jpg" - ], - "highway": [ - "street_lamp", - "pedestrian" - ], - "natural": [ - "tree" - ], - "version": [ - "5" - ], - "cycleway": [ - "lane" - ], - "maxspeed": [ - "50" - ], - "changeset": [ - "123476013" - ], - "timestamp": [ - "2022-07-11T13:45:40Z" - ], - "cycleway:separation": [ - "solid_line" - ], - "cycleway:smoothness": [ - "intermediate" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000357245361000331, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 2, - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_within_50m": 3 - }, - "id": 123476508 - } - }, - { - "id": 123476013, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6928199, - 50.1292973 - ], - [ - 8.6941096, - 50.1292973 - ], - [ - 8.6941096, - 50.1296851 - ], - [ - 8.6928199, - 50.1296851 - ], - [ - 8.6928199, - 50.1292973 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "symtll", - "uid": "16362995", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T13:36:41Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/DV7GFMP.jpg" - ], - "highway": [ - "cycleway", - "street_lamp" - ] - }, - "create": 1, - "modify": 5, - "delete": 0, - "area": 5.00145660007734e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 2, - "create": 1, - "locale": "de", - "imagery": "osm", - "add-image": 3, - "change_over_5000m": 1, - "change_within_25m": 1, - "change_within_50m": 4 - }, - "id": 123476013 - } - }, - { - "id": 123475919, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6921664, - 50.1292931 - ], - [ - 8.6934203, - 50.1292931 - ], - [ - 8.6934203, - 50.1296971 - ], - [ - 8.6921664, - 50.1296971 - ], - [ - 8.6921664, - 50.1292931 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Richiii", - "uid": "16508603", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T13:34:34Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ] - }, - "create": 5, - "modify": 7, - "delete": 0, - "area": 5.06575600003999e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "move": 2, - "theme": "street_lighting", - "answer": 13, - "create": 5, - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 5, - "change_within_25m": 14, - "change_within_50m": 2, - "move:node/9880974147": "improve_accuracy", - "move:node/9881022949": "improve_accuracy" - }, - "id": 123475919 - } - }, - { - "id": 123475855, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6927739, - 50.1291933 - ], - [ - 8.6928729, - 50.1291933 - ], - [ - 8.6928729, - 50.1294461 - ], - [ - 8.6927739, - 50.1294461 - ], - [ - 8.6927739, - 50.1291933 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "symtll", - "uid": "16362995", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T13:32:28Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "leaf_type": [ - "needleleaved" - ], - "denotation": [ - "park" - ], - "leaf_cycle": [ - "deciduous" - ] - }, - "create": 2, - "modify": 4, - "delete": 0, - "area": 2.5027200000225e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 3, - "create": 3, - "locale": "de", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 3, - "change_within_25m": 5 - }, - "id": 123475855 - } - }, - { - "id": 123475411, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9069708, - 51.2121941 - ], - [ - 2.9106296, - 51.2121941 - ], - [ - 2.9106296, - 51.2249319 - ], - [ - 2.9069708, - 51.2249319 - ], - [ - 2.9069708, - 51.2121941 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T13:21:13Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 7, - "modify": 1, - "delete": 0, - "area": 0.0000466050626400154, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "import": 7, - "locale": "en", - "imagery": "AGIV", - "change_over_5000m": 9, - "import:node/9880963495": "source: https://osm.org/note/3262187", - "import:node/9880993223": "source: https://osm.org/note/3261963", - "import:node/9881011165": "source: https://osm.org/note/3262099", - "import:node/9881015542": "source: https://osm.org/note/3261324", - "import:node/9881023467": "source: https://osm.org/note/3261248", - "import:node/9881024666": "source: https://osm.org/note/3261210", - "import:node/9881024667": "source: https://osm.org/note/3261807" - }, - "id": 123475411 - } - }, - { - "id": 123475293, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7687297, - -34.6660352 - ], - [ - -58.5224712, - -34.6660352 - ], - [ - -58.5224712, - -34.638539 - ], - [ - -58.7687297, - -34.638539 - ], - [ - -58.7687297, - -34.6660352 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AgusQui", - "uid": "331218", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T13:17:08Z", - "reviewed_features": [], - "tag_changes": { - "ref": [ - "REP LS 3/9", - "A 288", - "A 293", - "RO 352", - "HD 51" - ], - "note": [ - "SP 236" - ], - "railway": [ - "signal" - ], - "operator": [ - "Trenes Argentinos" - ], - "railway:signal:main": [ - "yes" - ], - "railway:signal:route": [ - "yes" - ], - "railway:signal:combined": [ - "yes" - ], - "railway:signal:main:form": [ - "light" - ], - "railway:signal:route:form": [ - "light" - ], - "railway:signal:main:height": [ - "normal" - ], - "railway:signal:route:height": [ - "normal" - ], - "railway:signal:combined:form": [ - "light" - ], - "railway:signal:main:function": [ - "exit", - "block" - ], - "railway:signal:combined:height": [ - "normal" - ], - "railway:signal:combined:deactivated": [ - "no" - ] - }, - "create": 2, - "modify": 9, - "delete": 0, - "area": 0.00677117296770049, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "answer": 33, - "create": 2, - "locale": "es", - "imagery": "EsriWorldImageryClarity", - "change_over_5000m": 2, - "change_within_25m": 23, - "change_within_50m": 10 - }, - "id": 123475293 - } - }, - { - "id": 123474099, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 74.9997005, - 13.0268871 - ], - [ - 93.9795006, - 13.0268871 - ], - [ - 93.9795006, - 31.4008421 - ], - [ - 74.9997005, - 31.4008421 - ], - [ - 74.9997005, - 13.0268871 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 531, - "name": "Mapbox: Overlapping features" - } - ], - "tags": [], - "features": [ - { - "url": "way-265900949", - "note": "Overlapping features reported in [\"name:etymology:wikidata\"] tags in the feature", - "osm_id": 265900949, - "reasons": [ - 531 - ], - "version": 2 - } - ], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-11T12:43:45Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "college" - ], - "highway": [ - "residential" - ], - "leisure": [ - "stadium" - ], - "name:etymology:wikidata": [ - "Q3633008" - ] - }, - "create": 0, - "modify": 48, - "delete": 0, - "area": 348.733992946395, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 68, - "locale": "en", - "imagery": "osm" - }, - "id": 123474099 - } - }, - { - "id": 123471923, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6132195, - 50.8399301 - ], - [ - 3.6806659, - 50.8399301 - ], - [ - 3.6806659, - 50.8933468 - ], - [ - 3.6132195, - 50.8933468 - ], - [ - 3.6132195, - 50.8399301 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-11T11:54:06Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/WWkCAW0.jpg", - "https://i.imgur.com/OsTB8EA.jpg", - "https://i.imgur.com/lZx9zGL.jpg", - "https://i.imgur.com/Cstm1zR.jpg" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00360276411488046, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 4 - }, - "id": 123471923 - } - }, - { - "id": 123471410, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6028758, - 50.7487772 - ], - [ - 3.6028758, - 50.7487772 - ], - [ - 3.6028758, - 50.7487772 - ], - [ - 3.6028758, - 50.7487772 - ], - [ - 3.6028758, - 50.7487772 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-11T11:43:38Z", - "reviewed_features": [], - "tag_changes": { - "image:0": [ - "https://i.imgur.com/JSCTEBd.jpg" - ], - "tourism": [ - "artwork" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 123471410 - } - }, - { - "id": 123470798, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6687225, - 50.1139187 - ], - [ - 8.6687225, - 50.1139187 - ], - [ - 8.6687225, - 50.1139187 - ], - [ - 8.6687225, - 50.1139187 - ], - [ - 8.6687225, - 50.1139187 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "symtll", - "uid": "16362995", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #parkings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-11T11:29:54Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 1, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/parkings.html", - "theme": "parkings", - "create": 1, - "locale": "de", - "imagery": "osm", - "deletion": 1, - "deletion:node/9880818368": "testing point" - }, - "id": 123470798 - } - }, - { - "id": 123468355, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3543008, - 50.8582307 - ], - [ - 4.3543008, - 50.8582307 - ], - [ - 4.3543008, - 50.8582307 - ], - [ - 4.3543008, - 50.8582307 - ], - [ - 4.3543008, - 50.8582307 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T10:35:45Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "fast_food" - ] - }, - "create": 1, - "modify": 5, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/food.html", - "theme": "food", - "answer": 12, - "create": 1, - "locale": "en", - "imagery": "UrbisAdmNL", - "add-image": 2, - "change_over_5000m": 1, - "change_within_25m": 14 - }, - "id": 123468355 - } - }, - { - "id": 123467762, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3419465, - 50.8574806 - ], - [ - 4.3419465, - 50.8574806 - ], - [ - 4.3419465, - 50.8574806 - ], - [ - 4.3419465, - 50.8574806 - ], - [ - 4.3419465, - 50.8574806 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #healthcare", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T10:23:43Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "dentist" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/healthcare.html", - "theme": "healthcare", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 123467762 - } - }, - { - "id": 123467434, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.2805422, - 50.708206 - ], - [ - 7.3112322, - 50.708206 - ], - [ - 7.3112322, - 50.7288716 - ], - [ - 7.2805422, - 50.7288716 - ], - [ - 7.2805422, - 50.708206 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "neleostermann", - "uid": "16512997", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-11T10:15:42Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "bicycle", - "road" - ], - "highway": [ - "residential", - "unclassified", - "secondary" - ], - "maxspeed": [ - "30", - "100", - "50" - ] - }, - "create": 6, - "modify": 24, - "delete": 0, - "area": 0.000634227264000027, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "split": 9, - "theme": "maxspeed", - "answer": 22, - "locale": "de", - "imagery": "osm", - "relation-fix": 3 - }, - "id": 123467434 - } - }, - { - "id": 123467406, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3348097, - 50.8531142 - ], - [ - 4.3348816, - 50.8531142 - ], - [ - 4.3348816, - 50.853273 - ], - [ - 4.3348097, - 50.853273 - ], - [ - 4.3348097, - 50.8531142 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T10:14:48Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "sanitary_dump_station" - ], - "toilets": [ - "yes" - ], - "tourism": [ - "caravan_site" - ], - "internet_access": [ - "yes" - ], - "permanent_camping": [ - "no" - ], - "internet_access:fee": [ - "no" - ] - }, - "create": 1, - "modify": 4, - "delete": 0, - "area": 1.1417720000091e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/campersite.html", - "theme": "campersite", - "answer": 5, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 1, - "change_within_25m": 7 - }, - "id": 123467406 - } - }, - { - "id": 123467289, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.334718, - 50.8529461 - ], - [ - 4.334718, - 50.8529461 - ], - [ - 4.334718, - 50.8529461 - ], - [ - 4.334718, - 50.8529461 - ], - [ - 4.334718, - 50.8529461 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T10:12:25Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "pitch" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/sport_pitches.html", - "theme": "sport_pitches", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 123467289 - } - }, - { - "id": 123466602, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6928185, - 50.129827 - ], - [ - 8.6934088, - 50.129827 - ], - [ - 8.6934088, - 50.1302393 - ], - [ - 8.6928185, - 50.1302393 - ], - [ - 8.6928185, - 50.129827 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "neleostermann", - "uid": "16512997", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-11T10:02:40Z", - "reviewed_features": [], - "tag_changes": { - "door": [ - "hinged" - ], - "width": [ - "2" - ], - "entrance": [ - "secondary", - "yes", - "main" - ], - "automatic_door": [ - "button", - "no" - ] - }, - "create": 0, - "modify": 7, - "delete": 0, - "area": 2.43380690000705e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/entrances.html", - "theme": "entrances", - "answer": 12, - "locale": "de", - "imagery": "osm" - }, - "id": 123466602 - } - }, - { - "id": 123466505, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6919799, - 50.1303918 - ], - [ - 8.6919799, - 50.1303918 - ], - [ - 8.6919799, - 50.1303918 - ], - [ - 8.6919799, - 50.1303918 - ], - [ - 8.6919799, - 50.1303918 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "neleostermann", - "uid": "16512997", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-11T10:00:35Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "artwork" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 1, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 123466505 - } - }, - { - "id": 123466376, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6927471, - 50.1303557 - ], - [ - 8.6927471, - 50.1303557 - ], - [ - 8.6927471, - 50.1303557 - ], - [ - 8.6927471, - 50.1303557 - ], - [ - 8.6927471, - 50.1303557 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "neleostermann", - "uid": "16512997", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-11T09:57:31Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "direction": [ - "1" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 123466376 - } - }, - { - "id": 123466372, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "neleostermann", - "uid": "16512997", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-11T09:57:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 123466372 - } - }, - { - "id": 123466264, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6924788, - 50.1303557 - ], - [ - 8.6927471, - 50.1303557 - ], - [ - 8.6927471, - 50.1303677 - ], - [ - 8.6924788, - 50.1303677 - ], - [ - 8.6924788, - 50.1303557 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "neleostermann", - "uid": "16512997", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-11T09:54:54Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 4, - "modify": 3, - "delete": 0, - "area": 3.21959999949816e-9, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 11, - "create": 4, - "locale": "de", - "imagery": "osm" - }, - "id": 123466264 - } - }, - { - "id": 123466143, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6913679, - 50.1295397 - ], - [ - 8.6939725, - 50.1295397 - ], - [ - 8.6939725, - 50.1314411 - ], - [ - 8.6913679, - 50.1314411 - ], - [ - 8.6913679, - 50.1295397 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "K-Pete", - "uid": "9038981", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-11T09:51:41Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "yes" - ], - "amenity": [ - "waste_basket" - ], - "highway": [ - "footway", - "pedestrian" - ], - "surface": [ - "paving_stones" - ], - "cycleway": [ - "track" - ], - "cycleway:surface": [ - "paving_stones" - ], - "cycleway:smoothness": [ - "good" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00000495238644000281, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 5, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123466143 - } - }, - { - "id": 123465979, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6924493, - 50.1302095 - ], - [ - 8.6928222, - 50.1302095 - ], - [ - 8.6928222, - 50.1305259 - ], - [ - 8.6924493, - 50.1305259 - ], - [ - 8.6924493, - 50.1302095 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "neleostermann", - "uid": "16512997", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-11T09:47:56Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 8, - "modify": 3, - "delete": 0, - "area": 1.179855600011e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 8, - "create": 8, - "locale": "de", - "imagery": "osm" - }, - "id": 123465979 - } - }, - { - "id": 123465315, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9056906, - 51.2270708 - ], - [ - 2.9056906, - 51.2270708 - ], - [ - 2.9056906, - 51.2270708 - ], - [ - 2.9056906, - 51.2270708 - ], - [ - 2.9056906, - 51.2270708 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Toerisme Vlaanderen - Pin je punt", - "uid": "15015689", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T09:31:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "import": 1, - "locale": "nl", - "imagery": "AGIV", - "change_over_5000m": 2, - "import:node/9880599835": "source: https://osm.org/note/3261655" - }, - "id": 123465315 - } - }, - { - "id": 123464127, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5171091, - 44.8753434 - ], - [ - -0.5171091, - 44.8753434 - ], - [ - -0.5171091, - 44.8753434 - ], - [ - -0.5171091, - 44.8753434 - ], - [ - -0.5171091, - 44.8753434 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T09:07:24Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/UryHHLY.jpg" - ], - "man_made": [ - "surveillance" - ], - "camera:type": [ - "dome", - "fixed" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 1, - "locale": "fr", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 123464127 - } - }, - { - "id": 123461340, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.0299425, - 49.5977952 - ], - [ - 11.0299731, - 49.5977952 - ], - [ - 11.0299731, - 49.5979503 - ], - [ - 11.0299425, - 49.5979503 - ], - [ - 11.0299425, - 49.5977952 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "pascatl", - "uid": "1797719", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-11T08:11:49Z", - "reviewed_features": [], - "tag_changes": { - "door": [ - "hinged" - ], - "entrance": [ - "main", - "yes" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 4.74605999982857e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/entrances.html", - "theme": "entrances", - "answer": 3, - "locale": "de", - "imagery": "osm" - }, - "id": 123461340 - } - }, - { - "id": 123460536, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.3060286, - 51.4095369 - ], - [ - -0.1209766, - 51.4095369 - ], - [ - -0.1209766, - 51.4877939 - ], - [ - -0.3060286, - 51.4877939 - ], - [ - -0.3060286, - 51.4095369 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "hocu", - "uid": "374342", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T07:54:53Z", - "reviewed_features": [], - "tag_changes": { - "bottle": [ - "yes" - ], - "amenity": [ - "drinking_water" - ], - "operational_status": [ - "closed" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0144816143640001, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 5, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 2, - "change_within_1000m": 2, - "change_within_5000m": 1 - }, - "id": 123460536 - } - }, - { - "id": 123460484, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5823176, - 51.1427792 - ], - [ - 4.5823176, - 51.1427792 - ], - [ - 4.5823176, - 51.1427792 - ], - [ - 4.5823176, - 51.1427792 - ], - [ - 4.5823176, - 51.1427792 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-11T07:53:34Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ], - "image:0": [ - "https://i.imgur.com/CApde13.jpg" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 123460484 - } - }, - { - "id": 123460405, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.9607471, - 54.4334619 - ], - [ - -2.9605092, - 54.4334619 - ], - [ - -2.9605092, - 54.4336106 - ], - [ - -2.9607471, - 54.4336106 - ], - [ - -2.9607471, - 54.4334619 - ] - ] - ] - }, - "properties": { - "check_user": "gurglypipe", - "reasons": [], - "tags": [], - "features": [], - "user": "Mark_S", - "uid": "82820", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #uk_addresses", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-11T07:51:44Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "detached" - ], - "nohousenumber": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 3.53757300009036e-8, - "is_suspect": false, - "harmful": false, - "checked": true, - "check_date": "2022-07-11T15:03:23.168140Z", - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/uk_addresses.html", - "theme": "uk_addresses", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 123460405 - } - }, - { - "id": 123457873, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8825265, - 50.9008287 - ], - [ - 3.8846089, - 50.9008287 - ], - [ - 3.8846089, - 50.9026147 - ], - [ - 3.8825265, - 50.9026147 - ], - [ - 3.8825265, - 50.9008287 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "AlexanderReb", - "uid": "16447083", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-11T06:53:44Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house" - ] - }, - "create": 2, - "modify": 1, - "delete": 0, - "area": 0.00000371916640000556, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/entrances.html", - "theme": "entrances", - "answer": 4, - "create": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 123457873 - } - }, - { - "id": 123456373, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2317284, - 50.8530122 - ], - [ - 4.3248045, - 50.8530122 - ], - [ - 4.3248045, - 51.2097688 - ], - [ - 3.2317284, - 51.2097688 - ], - [ - 3.2317284, - 50.8530122 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-11T06:12:56Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Copy Center" - ], - "shop": [ - "copyshop" - ], - "service:print:A0": [ - "yes", - "no" - ], - "service:print:A1": [ - "yes", - "no" - ], - "service:print:A2": [ - "yes", - "no" - ], - "service:print:A3": [ - "yes" - ], - "service:print:A4": [ - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.389962112977257, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/shops.html", - "theme": "shops", - "answer": 3, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_1000m": 2 - }, - "id": 123456373 - } - }, - { - "id": 123452760, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2326157, - -39.8414862 - ], - [ - -73.2326157, - -39.8414862 - ], - [ - -73.2326157, - -39.8414862 - ], - [ - -73.2326157, - -39.8414862 - ], - [ - -73.2326157, - -39.8414862 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-11T03:42:44Z", - "reviewed_features": [], - "tag_changes": { - "image:1": [ - "https://i.imgur.com/DT2UzH4.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osm", - "add-image": 1 - }, - "id": 123452760 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-12.json b/Docs/Tools/stats/stats.2022-7-12.json deleted file mode 100644 index 3e289befaf..0000000000 --- a/Docs/Tools/stats/stats.2022-7-12.json +++ /dev/null @@ -1,3261 +0,0 @@ -{ - "features": [ - { - "id": 123539087, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -86.1283817, - 39.9631764 - ], - [ - -86.1283817, - 39.9631764 - ], - [ - -86.1283817, - 39.9631764 - ], - [ - -86.1283817, - 39.9631764 - ], - [ - -86.1283817, - 39.9631764 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Kanellar", - "uid": "16249964", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-12T22:42:56Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "US_Forest_Service_roads", - "change_over_5000m": 1, - "change_within_500m": 3 - }, - "id": 123539087 - } - }, - { - "id": 123537005, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-12T20:56:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_1000m": 1 - }, - "id": 123537005 - } - }, - { - "id": 123536568, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3679935, - 50.8585277 - ], - [ - 4.8358542, - 50.8585277 - ], - [ - 4.8358542, - 50.9854011 - ], - [ - 4.3679935, - 50.9854011 - ], - [ - 4.3679935, - 50.8585277 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-12T20:40:39Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/dF3ZYor.jpg" - ], - "access": [ - "yes" - ], - "amenity": [ - "bicycle_parking" - ], - "covered": [ - "no" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0593590777353771, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 1, - "change_within_5000m": 2 - }, - "id": 123536568 - } - }, - { - "id": 123530414, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 70.8108088, - 12.2933577 - ], - [ - 91.7867131, - 12.2933577 - ], - [ - 91.7867131, - 30.726409 - ], - [ - 70.8108088, - 30.726409 - ], - [ - 70.8108088, - 12.2933577 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-12T17:32:44Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "hospital" - ], - "barrier": [ - "wall" - ], - "highway": [ - "tertiary", - "residential" - ], - "leisure": [ - "park" - ], - "name:etymology:wikidata": [ - "Q1325652", - "Q715607", - "Q11359", - "Q9045", - "Q3521481", - "Q241900", - "Q231690", - "Q796591", - "Q1391321" - ] - }, - "create": 0, - "modify": 106, - "delete": 0, - "area": 386.649920025791, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 132, - "locale": "en", - "imagery": "osm" - }, - "id": 123530414 - } - }, - { - "id": 123526942, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3389398, - 50.8554437 - ], - [ - 4.3389398, - 50.8554437 - ], - [ - 4.3389398, - 50.8554437 - ], - [ - 4.3389398, - 50.8554437 - ], - [ - 4.3389398, - 50.8554437 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-12T15:49:17Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_repair_station" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", - "theme": "cyclofix", - "answer": 4, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_100m": 5 - }, - "id": 123526942 - } - }, - { - "id": 123525185, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.3444757, - 50.8696492 - ], - [ - 9.3447129, - 50.8696492 - ], - [ - 9.3447129, - 50.86979 - ], - [ - 9.3444757, - 50.86979 - ], - [ - 9.3444757, - 50.8696492 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "TimBlumenauer", - "uid": "16525025", - "editor": "iD 2.21.1", - "comment": "Adding data with #MapComplete for theme", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Hesse DOP20", - "date": "2022-07-12T15:01:28Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "parking" - ], - "operator": [ - "Stadt" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 3.33977600008265e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://www.openstreetmap.org/edit", - "locale": "de", - "hashtags": "#MapComplete", - "changesets_count": 10 - }, - "id": 123525185 - } - }, - { - "id": 123524309, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3276934, - 52.4746317 - ], - [ - 13.3276934, - 52.4746317 - ], - [ - 13.3276934, - 52.4746317 - ], - [ - 13.3276934, - 52.4746317 - ], - [ - 13.3276934, - 52.4746317 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "miwie", - "uid": "57526", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-12T14:36:33Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-11" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123524309 - } - }, - { - "id": 123523395, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -86.1299599, - 39.9783015 - ], - [ - -86.129592, - 39.9783015 - ], - [ - -86.129592, - 39.9783985 - ], - [ - -86.1299599, - 39.9783985 - ], - [ - -86.1299599, - 39.9783015 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9883321348", - "name": "Carmel Bike Share", - "osm_id": 9883321348, - "reasons": [ - 43 - ], - "version": 1, - "primary_tags": { - "amenity": "bicycle_library" - } - } - ], - "user": "Kanellar", - "uid": "16249964", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-12T14:13:00Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking", - "bicycle_library" - ], - "cargo_bike": [ - "no" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 3.56862999988313e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "US_Forest_Service_roads", - "change_over_5000m": 1, - "change_within_25m": 1, - "change_within_50m": 2 - }, - "id": 123523395 - } - }, - { - "id": 123523022, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5319971, - 50.8025429 - ], - [ - 4.5319971, - 50.8025429 - ], - [ - 4.5319971, - 50.8025429 - ], - [ - 4.5319971, - 50.8025429 - ], - [ - 4.5319971, - 50.8025429 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Visit Tervuren", - "uid": "16525640", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-12T14:01:29Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_5000m": 2 - }, - "id": 123523022 - } - }, - { - "id": 123522299, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6865672, - 50.1149765 - ], - [ - 8.6865672, - 50.1149765 - ], - [ - 8.6865672, - 50.1149765 - ], - [ - 8.6865672, - 50.1149765 - ], - [ - 8.6865672, - 50.1149765 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "symtll", - "uid": "16362995", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-12T13:42:37Z", - "reviewed_features": [], - "tag_changes": { - "barrier": [ - "kerb" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/kerbs_and_crossings.html", - "theme": "kerbs_and_crossings", - "answer": 3, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 123522299 - } - }, - { - "id": 123522092, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0222752, - 50.3444745 - ], - [ - 9.0222752, - 50.3444745 - ], - [ - 9.0222752, - 50.3444745 - ], - [ - 9.0222752, - 50.3444745 - ], - [ - 9.0222752, - 50.3444745 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Richiii", - "uid": "16508603", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-12T13:35:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 1, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "create": 1, - "locale": "de", - "imagery": "osm", - "deletion": 1, - "change_over_5000m": 2, - "deletion:node/9883245813": "testing point" - }, - "id": 123522092 - } - }, - { - "id": 123521283, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5995594, - 50.9512467 - ], - [ - 3.6023274, - 50.9512467 - ], - [ - 3.6023274, - 50.9568487 - ], - [ - 3.5995594, - 50.9568487 - ], - [ - 3.5995594, - 50.9512467 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-12T13:13:37Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/94mRahu.jpg", - "https://i.imgur.com/Lr86Wi6.jpg", - "https://i.imgur.com/ayb12wr.jpg", - "https://i.imgur.com/qk9O01i.jpg" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 1, - "modify": 5, - "delete": 0, - "area": 0.0000155063360000095, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 5 - }, - "id": 123521283 - } - }, - { - "id": 123519910, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1001478, - 50.2926791 - ], - [ - 9.1013065, - 50.2926791 - ], - [ - 9.1013065, - 50.2928213 - ], - [ - 9.1001478, - 50.2928213 - ], - [ - 9.1001478, - 50.2926791 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Richiii", - "uid": "16508603", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-12T12:36:31Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 6, - "modify": 4, - "delete": 0, - "area": 1.6476713999888e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 11, - "create": 6, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 17 - }, - "id": 123519910 - } - }, - { - "id": 123519605, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0998548, - 50.2895435 - ], - [ - 9.1046119, - 50.2895435 - ], - [ - 9.1046119, - 50.2910398 - ], - [ - 9.0998548, - 50.2910398 - ], - [ - 9.0998548, - 50.2895435 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Richiii", - "uid": "16508603", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", - "comments_count": 1, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-12T12:29:02Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "bus", - "road" - ], - "barrier": [ - "kerb" - ], - "bicycle": [ - "yes" - ], - "highway": [ - "crossing", - "residential", - "primary" - ] - }, - "create": 5, - "modify": 8, - "delete": 0, - "area": 0.00000711804872999865, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/kerbs_and_crossings.html", - "theme": "kerbs_and_crossings", - "answer": 12, - "create": 10, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 22 - }, - "id": 123519605 - } - }, - { - "id": 123519352, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6352727, - 50.2499464 - ], - [ - 8.6498762, - 50.2499464 - ], - [ - 8.6498762, - 50.256739 - ], - [ - 8.6352727, - 50.256739 - ], - [ - 8.6352727, - 50.2499464 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Richiii", - "uid": "16508603", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-12T12:24:08Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential" - ], - "maxspeed": [ - "30" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.0000991957341000606, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "theme": "maxspeed", - "answer": 6, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 6 - }, - "id": 123519352 - } - }, - { - "id": 123518163, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.3441644, - 50.8698144 - ], - [ - 9.3441644, - 50.8698144 - ], - [ - 9.3441644, - 50.8698144 - ], - [ - 9.3441644, - 50.8698144 - ], - [ - 9.3441644, - 50.8698144 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "TimBlumenauer", - "uid": "16525025", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #bicycle_rental", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-12T11:57:38Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "rental" - ], - "amenity": [ - "bicycle_rental" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bicycle_rental.html", - "theme": "bicycle_rental", - "answer": 2, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 123518163 - } - }, - { - "id": 123517910, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.3097383, - 50.8697569 - ], - [ - 9.3442905, - 50.8697569 - ], - [ - 9.3442905, - 50.8779489 - ], - [ - 9.3097383, - 50.8779489 - ], - [ - 9.3097383, - 50.8697569 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "TimBlumenauer", - "uid": "16525025", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-12T11:53:18Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "charging_station" - ] - }, - "create": 2, - "modify": 1, - "delete": 0, - "area": 0.00028305162240004, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 5, - "create": 2, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123517910 - } - }, - { - "id": 123517478, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6023241, - 50.9514423 - ], - [ - 3.6023241, - 50.9514423 - ], - [ - 3.6023241, - 50.9514423 - ], - [ - 3.6023241, - 50.9514423 - ], - [ - 3.6023241, - 50.9514423 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-12T11:45:16Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "picnic_table" - ] - }, - "create": 0, - "modify": 1, - "delete": 1, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "deletion": 1, - "add-image": 1, - "deletion:node/8528356079": "testing point" - }, - "id": 123517478 - } - }, - { - "id": 123517283, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.3188122, - 50.8748549 - ], - [ - 9.3188122, - 50.8748549 - ], - [ - 9.3188122, - 50.8748549 - ], - [ - 9.3188122, - 50.8748549 - ], - [ - 9.3188122, - 50.8748549 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "TimBlumenauer", - "uid": "16525025", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-12T11:41:27Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "caravan_site" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/campersite.html", - "theme": "campersite", - "answer": 3, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 123517283 - } - }, - { - "id": 123517139, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.3066028, - 50.8794616 - ], - [ - 9.3066028, - 50.8794616 - ], - [ - 9.3066028, - 50.8794616 - ], - [ - 9.3066028, - 50.8794616 - ], - [ - 9.3066028, - 50.8794616 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "TimBlumenauer", - "uid": "16525025", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-12T11:38:52Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "playground" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 5, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 123517139 - } - }, - { - "id": 123517034, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.3141893, - 50.875913 - ], - [ - 9.323727, - 50.875913 - ], - [ - 9.323727, - 50.8782465 - ], - [ - 9.3141893, - 50.8782465 - ], - [ - 9.3141893, - 50.875913 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "TimBlumenauer", - "uid": "16525025", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-12T11:36:37Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "fire_station" - ], - "addr:place": [ - "Riebelsdorf", - "Rückershausen" - ], - "operator:type": [ - "ngo" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000222562229500552, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "answer": 4, - "locale": "de", - "imagery": "HDM_HOT" - }, - "id": 123517034 - } - }, - { - "id": 123516811, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.3054226, - 50.8788369 - ], - [ - 9.3054226, - 50.8788369 - ], - [ - 9.3054226, - 50.8788369 - ], - [ - 9.3054226, - 50.8788369 - ], - [ - 9.3054226, - 50.8788369 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "TimBlumenauer", - "uid": "16525025", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-12T11:32:04Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 5, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 123516811 - } - }, - { - "id": 123516508, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2922177, - 50.8776845 - ], - [ - 9.3143222, - 50.8776845 - ], - [ - 9.3143222, - 50.8962798 - ], - [ - 9.2922177, - 50.8962798 - ], - [ - 9.2922177, - 50.8776845 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "TimBlumenauer", - "uid": "16525025", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-12T11:26:28Z", - "reviewed_features": [], - "tag_changes": { - "waste": [ - "dog_excrement;plastic;trash" - ], - "amenity": [ - "waste_basket" - ] - }, - "create": 2, - "modify": 1, - "delete": 0, - "area": 0.000411039808850014, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "theme": "waste_basket", - "answer": 3, - "create": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 123516508 - } - }, - { - "id": 123516301, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.3087137, - 50.8793023 - ], - [ - 9.3087137, - 50.8793023 - ], - [ - 9.3087137, - 50.8793023 - ], - [ - 9.3087137, - 50.8793023 - ], - [ - 9.3087137, - 50.8793023 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "TimBlumenauer", - "uid": "16525025", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-12T11:22:04Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 3, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 123516301 - } - }, - { - "id": 123516050, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3332078, - 50.8515033 - ], - [ - 4.3332078, - 50.8515033 - ], - [ - 4.3332078, - 50.8515033 - ], - [ - 4.3332078, - 50.8515033 - ], - [ - 4.3332078, - 50.8515033 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-12T11:16:57Z", - "reviewed_features": [], - "tag_changes": { - "fixme": [ - "Freeform tag `cuisine` used, to be doublechecked" - ], - "amenity": [ - "restaurant" - ], - "cuisine": [ - "breakfast" - ], - "takeaway": [ - "yes" - ], - "wheelchair": [ - "limited" - ], - "payment:cash": [ - "yes" - ], - "payment:cards": [ - "yes" - ], - "diet:vegetarian": [ - "limited" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 5, - "locale": "en", - "imagery": "osm", - "change_within_25m": 5 - }, - "id": 123516050 - } - }, - { - "id": 123515973, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.514584, - 50.5444601 - ], - [ - 8.5146283, - 50.5444601 - ], - [ - 8.5146283, - 50.5449527 - ], - [ - 8.514584, - 50.5449527 - ], - [ - 8.514584, - 50.5444601 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jules99", - "uid": "16524952", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-12T11:15:21Z", - "reviewed_features": [], - "tag_changes": { - "seats": [ - "3" - ], - "amenity": [ - "bench" - ], - "material": [ - "wood" - ], - "direction": [ - "284" - ], - "survey:date": [ - "2022-07-12" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 2.18221800004335e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 8, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 123515973 - } - }, - { - "id": 123515759, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.3086413, - 50.8829911 - ], - [ - 9.3089564, - 50.8829911 - ], - [ - 9.3089564, - 50.8866715 - ], - [ - 9.3086413, - 50.8866715 - ], - [ - 9.3086413, - 50.8829911 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "TimBlumenauer", - "uid": "16525025", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-12T11:10:17Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 2, - "modify": 1, - "delete": 0, - "area": 0.00000115969403999975, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "move": 1, - "theme": "benches", - "answer": 4, - "create": 2, - "locale": "de", - "imagery": "osm", - "move:node/9882977876": "improve_accuracy" - }, - "id": 123515759 - } - }, - { - "id": 123513965, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 77.1589455, - 28.3860632 - ], - [ - 77.2966603, - 28.3860632 - ], - [ - 77.2966603, - 28.6945214 - ], - [ - 77.1589455, - 28.6945214 - ], - [ - 77.1589455, - 28.3860632 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-12T10:32:46Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "secondary" - ], - "leisure": [ - "stadium" - ], - "name:etymology:wikidata": [ - "Q16205193", - "Q6959192" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.0424792593213594, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 6, - "locale": "en", - "imagery": "osm" - }, - "id": 123513965 - } - }, - { - "id": 123513059, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6012911, - 50.9007556 - ], - [ - 3.6012911, - 50.9007556 - ], - [ - 3.6012911, - 50.9007556 - ], - [ - 3.6012911, - 50.9007556 - ], - [ - 3.6012911, - 50.9007556 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-12T10:13:16Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/0XuHFgV.jpg" - ], - "tourism": [ - "artwork" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 123513059 - } - }, - { - "id": 123511246, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.349391, - 50.8532547 - ], - [ - 4.3500585, - 50.8532547 - ], - [ - 4.3500585, - 50.8534549 - ], - [ - 4.349391, - 50.8534549 - ], - [ - 4.349391, - 50.8532547 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-12T09:36:48Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "living_street" - ], - "cycleway": [ - "no" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.33633500001346e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 123511246 - } - }, - { - "id": 123510338, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5640763, - 53.0198777 - ], - [ - 6.5640763, - 53.0198777 - ], - [ - 6.5640763, - 53.0198777 - ], - [ - 6.5640763, - 53.0198777 - ], - [ - 6.5640763, - 53.0198777 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-12T09:21:08Z", - "reviewed_features": [], - "tag_changes": { - "noname": [ - "yes" - ], - "amenity": [ - "public_bookcase" - ], - "nobrand": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 2 - }, - "id": 123510338 - } - }, - { - "id": 123507890, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7547815, - 51.0543547 - ], - [ - 3.754811, - 51.0543547 - ], - [ - 3.754811, - 51.0543763 - ], - [ - 3.7547815, - 51.0543763 - ], - [ - 3.7547815, - 51.0543547 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ruben Van de Velde", - "uid": "2676725", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #healthcare", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-12T08:40:30Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "doctors" - ] - }, - "create": 2, - "modify": 4, - "delete": 0, - "area": 6.37200000112763e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/healthcare.html", - "theme": "healthcare", - "answer": 4, - "create": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 123507890 - } - }, - { - "id": 123507240, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 20.6798315, - 49.0043284 - ], - [ - 21.2672299, - 49.0043284 - ], - [ - 21.2672299, - 49.3093435 - ], - [ - 20.6798315, - 49.3093435 - ], - [ - 20.6798315, - 49.0043284 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Richiii", - "uid": "16508603", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-12T08:32:55Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "charging_station" - ] - }, - "create": 5, - "modify": 1, - "delete": 0, - "area": 0.17916538171584, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "move": 1, - "theme": "charging_stations", - "answer": 10, - "create": 5, - "locale": "de", - "imagery": "CartoDB.Voyager", - "move:node/9882637868": "improve_accuracy" - }, - "id": 123507240 - } - }, - { - "id": 123506946, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 20.9690708, - 49.1521785 - ], - [ - 20.9699017, - 49.1521785 - ], - [ - 20.9699017, - 49.1522925 - ], - [ - 20.9690708, - 49.1522925 - ], - [ - 20.9690708, - 49.1521785 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Richiii", - "uid": "16508603", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-12T08:26:26Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 6, - "modify": 6, - "delete": 0, - "area": 9.47226000029553e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "move": 1, - "theme": "trees", - "answer": 9, - "create": 6, - "locale": "de", - "imagery": "osm", - "move:node/9882666500": "improve_accuracy" - }, - "id": 123506946 - } - }, - { - "id": 123506496, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 20.8783767, - 49.1519802 - ], - [ - 20.9671766, - 49.1519802 - ], - [ - 20.9671766, - 49.2608522 - ], - [ - 20.8783767, - 49.2608522 - ], - [ - 20.8783767, - 49.1519802 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Richiii", - "uid": "16508603", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #parkings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-12T08:16:54Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "parking" - ] - }, - "create": 4, - "modify": 0, - "delete": 0, - "area": 0.00966782271280024, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/parkings.html", - "theme": "parkings", - "create": 4, - "locale": "de", - "imagery": "osm" - }, - "id": 123506496 - } - }, - { - "id": 123505300, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.213656, - 51.2095519 - ], - [ - 3.2137156, - 51.2095519 - ], - [ - 3.2137156, - 51.2097069 - ], - [ - 3.213656, - 51.2097069 - ], - [ - 3.213656, - 51.2095519 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #rainbow_crossings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-12T07:54:34Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "crossing" - ], - "crossing:marking": [ - "rainbow" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 9.23799999999261e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "http://127.0.0.1:1234/theme.html", - "theme": "rainbow_crossings", - "answer": 3, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 123505300 - } - }, - { - "id": 123504800, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9746683, - 51.2524583 - ], - [ - 2.9747008, - 51.2524583 - ], - [ - 2.9747008, - 51.2524679 - ], - [ - 2.9746683, - 51.2524679 - ], - [ - 2.9746683, - 51.2524583 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-12T07:43:21Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/Idc2szp.jpg", - "https://i.imgur.com/CdCiw6p.jpg" - ], - "amenity": [ - "charging_station", - "bicycle_repair_station" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 3.11999999952218e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 2 - }, - "id": 123504800 - } - }, - { - "id": 123503971, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0050615, - 49.1507551 - ], - [ - 20.968778, - 49.1507551 - ], - [ - 20.968778, - 50.3425215 - ], - [ - 9.0050615, - 50.3425215 - ], - [ - 9.0050615, - 49.1507551 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Richiii", - "uid": "16508603", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-12T07:26:05Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential" - ], - "maxspeed": [ - "30", - "50" - ] - }, - "create": 0, - "modify": 18, - "delete": 0, - "area": 14.2579553438256, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "theme": "maxspeed", - "answer": 18, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 4 - }, - "id": 123503971 - } - }, - { - "id": 123503961, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5337258, - 53.2412012 - ], - [ - 6.5337258, - 53.2412012 - ], - [ - 6.5337258, - 53.2412012 - ], - [ - 6.5337258, - 53.2412012 - ], - [ - 6.5337258, - 53.2412012 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-12T07:25:51Z", - "reviewed_features": [], - "tag_changes": { - "survey:date": [ - "2022-07-12" - ], - "opening_hours": [ - "24/7" - ], - "defibrillator:location": [ - "Op de muur, vlak bij de hoek van het gebouw", - "On wall, near corner of building" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 3 - }, - "id": 123503961 - } - }, - { - "id": 123503896, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5337258, - 53.2412012 - ], - [ - 6.5337258, - 53.2412012 - ], - [ - 6.5337258, - 53.2412012 - ], - [ - 6.5337258, - 53.2412012 - ], - [ - 6.5337258, - 53.2412012 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-12T07:24:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 3 - }, - "id": 123503896 - } - }, - { - "id": 123503619, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6863661, - 50.114875 - ], - [ - 8.6864385, - 50.114875 - ], - [ - 8.6864385, - 50.114961 - ], - [ - 8.6863661, - 50.114961 - ], - [ - 8.6863661, - 50.114875 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "symtll", - "uid": "16362995", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-12T07:18:59Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 6.22640000011988e-9, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 2, - "create": 2, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 2 - }, - "id": 123503619 - } - }, - { - "id": 123500798, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0555614, - 48.5142707 - ], - [ - 9.0566021, - 48.5142707 - ], - [ - 9.0566021, - 48.5146322 - ], - [ - 9.0555614, - 48.5146322 - ], - [ - 9.0555614, - 48.5142707 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-12T06:11:10Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ] - }, - "create": 6, - "modify": 1, - "delete": 0, - "area": 3.762130500037e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "move": 1, - "theme": "street_lighting", - "create": 6, - "locale": "de", - "imagery": "Mapbox", - "change_over_5000m": 6, - "change_within_25m": 1, - "move:node/9882447303": "improve_accuracy" - }, - "id": 123500798 - } - }, - { - "id": 123500387, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4669206, - 50.8169471 - ], - [ - 3.4669206, - 50.8169471 - ], - [ - 3.4669206, - 50.8169471 - ], - [ - 3.4669206, - 50.8169471 - ], - [ - 3.4669206, - 50.8169471 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-12T05:59:50Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/hu3q0Ri.jpg" - ], - "amenity": [ - "bicycle_repair_station" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 123500387 - } - }, - { - "id": 123496828, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 76.2166965, - 11.8175209 - ], - [ - 88.3533848, - 11.8175209 - ], - [ - 88.3533848, - 22.7617837 - ], - [ - 76.2166965, - 22.7617837 - ], - [ - 76.2166965, - 11.8175209 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-12T03:45:47Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "park" - ], - "name:etymology:wikidata": [ - "Q382027", - "Q2652624" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 132.827106276885, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 123496828 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-13.json b/Docs/Tools/stats/stats.2022-7-13.json deleted file mode 100644 index 51a87738b3..0000000000 --- a/Docs/Tools/stats/stats.2022-7-13.json +++ /dev/null @@ -1,2527 +0,0 @@ -{ - "features": [ - { - "id": 123583324, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3942232, - 51.04045 - ], - [ - 3.3989598, - 51.04045 - ], - [ - 3.3989598, - 51.0424636 - ], - [ - 3.3942232, - 51.0424636 - ], - [ - 3.3942232, - 51.04045 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-13T22:38:41Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "De Brug" - ], - "email": [ - "info@tomdebaets.be" - ], - "amenity": [ - "restaurant", - "recycling", - "dentist", - "doctors", - "bicycle_parking" - ], - "payment:cash": [ - "yes" - ], - "opening_hours": [ - "24/7" - ], - "payment:cards": [ - "yes" - ] - }, - "create": 0, - "modify": 4, - "delete": 3, - "area": 0.0000095376177599907, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/personal.html", - "theme": "personal", - "answer": 4, - "locale": "en", - "imagery": "osm", - "deletion": 3, - "change_within_100m": 1, - "change_within_500m": 5, - "deletion:node/7842744387": "disused", - "deletion:node/7842744388": "disused", - "deletion:node/7842746742": "disused" - }, - "id": 123583324 - } - }, - { - "id": 123582881, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3343652, - 50.8526095 - ], - [ - 4.3347668, - 50.8526095 - ], - [ - 4.3347668, - 50.853048 - ], - [ - 4.3343652, - 50.853048 - ], - [ - 4.3343652, - 50.8526095 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-13T22:16:08Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "hostel" - ], - "building": [ - "hotel" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 1.76101600000539e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/onwheels.html", - "theme": "onwheels", - "answer": 2, - "create": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_50m": 2, - "change_within_100m": 2 - }, - "id": 123582881 - } - }, - { - "id": 123581789, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4632837, - 50.7412053 - ], - [ - 3.557482, - 50.7412053 - ], - [ - 3.557482, - 50.7532739 - ], - [ - 3.4632837, - 50.7532739 - ], - [ - 3.4632837, - 50.7412053 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-13T21:25:40Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/IU2TrTj.jpg", - "https://i.imgur.com/ubN3KVM.jpg", - "https://i.imgur.com/hGR9tuH.jpg", - "https://i.imgur.com/mNxojzV.jpg" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00113684160338059, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 4 - }, - "id": 123581789 - } - }, - { - "id": 123580447, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.742891, - 50.9455809 - ], - [ - 3.8040841, - 50.9455809 - ], - [ - 3.8040841, - 50.9943685 - ], - [ - 3.742891, - 50.9943685 - ], - [ - 3.742891, - 50.9455809 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #maps", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-13T20:39:37Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/pOs0YVB.jpg", - "https://i.imgur.com/lM5VumJ.jpg" - ], - "tourism": [ - "information" - ], - "map_source": [ - "openstreetmap.org/relation/1135915", - "openstreetmap.org/relation/1992867" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00298546448555981, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maps.html", - "theme": "maps", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 123580447 - } - }, - { - "id": 123578265, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5338631, - 50.8408215 - ], - [ - 3.5338631, - 50.8408215 - ], - [ - 3.5338631, - 50.8408215 - ], - [ - 3.5338631, - 50.8408215 - ], - [ - 3.5338631, - 50.8408215 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-13T19:27:17Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/I2Z2Zww.jpg" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 123578265 - } - }, - { - "id": 123577170, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3367176, - 50.8525364 - ], - [ - 4.3388345, - 50.8525364 - ], - [ - 4.3388345, - 50.8540375 - ], - [ - 4.3367176, - 50.8540375 - ], - [ - 4.3367176, - 50.8525364 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-13T18:49:34Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "artwork" - ] - }, - "create": 2, - "modify": 1, - "delete": 0, - "area": 0.00000317767858999705, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/artwork.html", - "theme": "artwork", - "answer": 3, - "create": 2, - "locale": "fr", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 2, - "change_within_50m": 4 - }, - "id": 123577170 - } - }, - { - "id": 123576595, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.2415137, - 53.304136 - ], - [ - 14.2469566, - 53.304136 - ], - [ - 14.2469566, - 53.3062177 - ], - [ - 14.2415137, - 53.3062177 - ], - [ - 14.2415137, - 53.304136 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Brandoberinspektor Erdmann", - "uid": "13364061", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-13T18:30:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 1, - "delete": 0, - "area": 0.0000113304849299894, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123576595 - } - }, - { - "id": 123576498, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6606496, - 50.9014988 - ], - [ - 3.6612496, - 50.9014988 - ], - [ - 3.6612496, - 50.902276 - ], - [ - 3.6606496, - 50.902276 - ], - [ - 3.6606496, - 50.9014988 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-13T18:26:41Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/vE5fIdH.jpg" - ], - "leisure": [ - "playground" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 4.66320000000968e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 123576498 - } - }, - { - "id": 123576355, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3926468, - 50.975754 - ], - [ - 4.3927765, - 50.975754 - ], - [ - 4.3927765, - 50.975898 - ], - [ - 4.3926468, - 50.975898 - ], - [ - 4.3926468, - 50.975754 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Janimatie", - "uid": "15735226", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-13T18:21:03Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/dP944Qu.jpg", - "https://i.imgur.com/LbY8H6X.jpg", - "https://i.imgur.com/vcPZ0Yn.jpg" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 1.86767999999113e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "locale": "nl", - "imagery": "osm", - "add-image": 4, - "change_within_500m": 4 - }, - "id": 123576355 - } - }, - { - "id": 123575910, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5514969, - 50.8702317 - ], - [ - 3.5514969, - 50.8702317 - ], - [ - 3.5514969, - 50.8702317 - ], - [ - 3.5514969, - 50.8702317 - ], - [ - 3.5514969, - 50.8702317 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-13T18:04:54Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/dLl8mHz.jpg" - ], - "amenity": [ - "public_bookcase" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 123575910 - } - }, - { - "id": 123573901, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3907064, - 50.8576985 - ], - [ - 4.3907631, - 50.8576985 - ], - [ - 4.3907631, - 50.8577816 - ], - [ - 4.3907064, - 50.8577816 - ], - [ - 4.3907064, - 50.8576985 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-13T17:03:00Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/bbvt3Ya.jpg", - "https://i.imgur.com/994DnyS.jpg" - ], - "access": [ - "yes" - ], - "amenity": [ - "bicycle_parking" - ], - "covered": [ - "no" - ], - "capacity": [ - "6" - ] - }, - "create": 1, - "modify": 4, - "delete": 0, - "area": 4.71177000027255e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "UrbISOrtho", - "add-image": 3 - }, - "id": 123573901 - } - }, - { - "id": 123573298, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3382987, - 50.8527023 - ], - [ - 4.3382987, - 50.8527023 - ], - [ - 4.3382987, - 50.8527023 - ], - [ - 4.3382987, - 50.8527023 - ], - [ - 4.3382987, - 50.8527023 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-13T16:44:21Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "public_bookcase" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/bookcases.html", - "theme": "bookcases", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 123573298 - } - }, - { - "id": 123573111, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3385817, - 50.8525592 - ], - [ - 4.3385817, - 50.8525592 - ], - [ - 4.3385817, - 50.8525592 - ], - [ - 4.3385817, - 50.8525592 - ], - [ - 4.3385817, - 50.8525592 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #fitness_station", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-13T16:37:09Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "fitness_station" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "fitness_station", - "create": 1, - "locale": "en", - "imagery": "AGIV", - "add-image": 1, - "change_over_5000m": 1, - "change_within_100m": 1 - }, - "id": 123573111 - } - }, - { - "id": 123570562, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2844324, - 50.8089564 - ], - [ - 4.2844324, - 50.8089564 - ], - [ - 4.2844324, - 50.8089564 - ], - [ - 4.2844324, - 50.8089564 - ], - [ - 4.2844324, - 50.8089564 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Mizuna", - "uid": "12496737", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-13T15:27:55Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 123570562 - } - }, - { - "id": 123569966, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5511951, - 50.8698674 - ], - [ - 3.5808711, - 50.8698674 - ], - [ - 3.5808711, - 50.8837289 - ], - [ - 3.5511951, - 50.8837289 - ], - [ - 3.5511951, - 50.8698674 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-13T15:13:25Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/AfMgIb2.jpg", - "https://i.imgur.com/1IjhL0n.jpg" - ], - "amenity": [ - "bench" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.000411353874000128, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 3 - }, - "id": 123569966 - } - }, - { - "id": 123568212, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5671514, - 53.0305795 - ], - [ - 6.5715972, - 53.0305795 - ], - [ - 6.5715972, - 53.0314796 - ], - [ - 6.5671514, - 53.0314796 - ], - [ - 6.5671514, - 53.0305795 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting_assen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-13T14:25:54Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ] - }, - "create": 5, - "modify": 0, - "delete": 0, - "area": 0.00000400166457998013, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "http://localhost:1234/theme.html", - "theme": "street_lighting_assen", - "create": 1, - "import": 4, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 5 - }, - "id": 123568212 - } - }, - { - "id": 123567799, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5565109, - 50.8930177 - ], - [ - 3.5565109, - 50.8930177 - ], - [ - 3.5565109, - 50.8930177 - ], - [ - 3.5565109, - 50.8930177 - ], - [ - 3.5565109, - 50.8930177 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9399512656", - "osm_id": 9399512656, - "reasons": [ - 43 - ], - "version": 4, - "primary_tags": { - "amenity": "binoculars" - } - } - ], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #binoculars", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-13T14:15:28Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/gX4ny5v.jpg" - ], - "amenity": [ - "binoculars" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/binoculars.html", - "theme": "binoculars", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 123567799 - } - }, - { - "id": 123566608, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5514928, - 50.8898673 - ], - [ - 3.5514928, - 50.8898673 - ], - [ - 3.5514928, - 50.8898673 - ], - [ - 3.5514928, - 50.8898673 - ], - [ - 3.5514928, - 50.8898673 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-13T13:47:51Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/hkLzjem.jpg" - ], - "tourism": [ - "artwork" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 123566608 - } - }, - { - "id": 123562801, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5594674, - 52.9945342 - ], - [ - 6.5595607, - 52.9945342 - ], - [ - 6.5595607, - 52.9945592 - ], - [ - 6.5594674, - 52.9945592 - ], - [ - 6.5594674, - 52.9945342 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #rainbow_crossings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-13T12:11:16Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "crossing" - ], - "crossing:marking": [ - "rainbow" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 2.33250000006818e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/rainbow_crossings.html", - "theme": "rainbow_crossings", - "answer": 3, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_5000m": 3 - }, - "id": 123562801 - } - }, - { - "id": 123562789, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.4150697, - 39.50862 - ], - [ - -0.4150697, - 39.50862 - ], - [ - -0.4150697, - 39.50862 - ], - [ - -0.4150697, - 39.50862 - ], - [ - -0.4150697, - 39.50862 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "MrAldisa", - "uid": "5006221", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-13T12:11:03Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "crossing" - ], - "crossing": [ - "uncontrolled", - "marked" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 123562789 - } - }, - { - "id": 123561105, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 44.0076953, - 56.3289023 - ], - [ - 44.0089211, - 56.3289023 - ], - [ - 44.0089211, - 56.3300142 - ], - [ - 44.0076953, - 56.3300142 - ], - [ - 44.0076953, - 56.3289023 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "alexashh", - "uid": "9054103", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-13T11:35:10Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ] - }, - "create": 2, - "modify": 3, - "delete": 0, - "area": 0.00000136296701999779, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 8, - "create": 2, - "locale": "ru", - "imagery": "CartoDB.Voyager", - "add-image": 2, - "change_over_5000m": 2, - "change_within_25m": 10 - }, - "id": 123561105 - } - }, - { - "id": 123559287, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.562502, - 50.9413953 - ], - [ - 3.596977, - 50.9413953 - ], - [ - 3.596977, - 50.9604303 - ], - [ - 3.562502, - 50.9604303 - ], - [ - 3.562502, - 50.9413953 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-13T10:53:02Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/EOPG9mX.jpg", - "https://i.imgur.com/EFE2Yxj.jpg", - "https://i.imgur.com/jWdoVqx.jpg" - ], - "route": [ - "bicycle" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.000656231624999837, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 3 - }, - "id": 123559287 - } - }, - { - "id": 123555663, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5687446, - 53.0315828 - ], - [ - 6.5687446, - 53.0315828 - ], - [ - 6.5687446, - 53.0315828 - ], - [ - 6.5687446, - 53.0315828 - ], - [ - 6.5687446, - 53.0315828 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #street_lighting_assen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-13T09:46:30Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "http://localhost:1234/theme.html", - "theme": "street_lighting_assen", - "import": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 123555663 - } - }, - { - "id": 123551822, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.3495739, - 53.2272169 - ], - [ - 6.3495739, - 53.2272169 - ], - [ - 6.3495739, - 53.2272169 - ], - [ - 6.3495739, - 53.2272169 - ], - [ - 6.3495739, - 53.2272169 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-13T08:33:50Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/E9VN8Mf.jpg" - ], - "amenity": [ - "waste_basket" - ], - "not:vending": [ - "dog_excrement_bag" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 123551822 - } - }, - { - "id": 123551791, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.3495438, - 53.2272128 - ], - [ - 6.3495438, - 53.2272128 - ], - [ - 6.3495438, - 53.2272128 - ], - [ - 6.3495438, - 53.2272128 - ], - [ - 6.3495438, - 53.2272128 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-13T08:33:09Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/D08PGeC.jpg" - ], - "colour": [ - "black" - ], - "amenity": [ - "bench" - ], - "material": [ - "plastic" - ], - "survey:date": [ - "2022-07-13" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 4 - }, - "id": 123551791 - } - }, - { - "id": 123551582, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.7367824, - 44.4245821 - ], - [ - 6.7367824, - 44.4245821 - ], - [ - 6.7367824, - 44.4245821 - ], - [ - 6.7367824, - 44.4245821 - ], - [ - 6.7367824, - 44.4245821 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Brec10", - "uid": "13615286", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-13T08:28:55Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "picnic_table" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/personal.html", - "theme": "personal", - "answer": 1, - "create": 1, - "locale": "fr", - "imagery": "osm" - }, - "id": 123551582 - } - }, - { - "id": 123550356, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1721384, - 50.8861478 - ], - [ - 4.1721384, - 50.8861478 - ], - [ - 4.1721384, - 50.8861478 - ], - [ - 4.1721384, - 50.8861478 - ], - [ - 4.1721384, - 50.8861478 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-13T07:59:48Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "amenity": [ - "charging_station" - ], - "opening_hours": [ - "24/7" - ], - "authentication:none": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "AGIV", - "change_within_500m": 2 - }, - "id": 123550356 - } - }, - { - "id": 123550329, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1721384, - 50.8861478 - ], - [ - 4.1721384, - 50.8861478 - ], - [ - 4.1721384, - 50.8861478 - ], - [ - 4.1721384, - 50.8861478 - ], - [ - 4.1721384, - 50.8861478 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-13T07:59:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "change_over_5000m": 1, - "change_within_500m": 2 - }, - "id": 123550329 - } - }, - { - "id": 123550018, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1723395, - 50.8853992 - ], - [ - 4.1729954, - 50.8853992 - ], - [ - 4.1729954, - 50.8859825 - ], - [ - 4.1723395, - 50.8859825 - ], - [ - 4.1723395, - 50.8853992 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-13T07:53:05Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "charging_station" - ] - }, - "create": 4, - "modify": 5, - "delete": 0, - "area": 3.82586469996871e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 20, - "create": 5, - "locale": "nl", - "imagery": "AGIV", - "add-image": 1, - "change_over_5000m": 5, - "change_within_25m": 11, - "change_within_100m": 10 - }, - "id": 123550018 - } - }, - { - "id": 123549605, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.4083808, - 53.2440872 - ], - [ - 6.4087947, - 53.2440872 - ], - [ - 6.4087947, - 53.2444001 - ], - [ - 6.4083808, - 53.2444001 - ], - [ - 6.4083808, - 53.2440872 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-13T07:44:46Z", - "reviewed_features": [], - "tag_changes": { - "colour": [ - "gray" - ], - "amenity": [ - "bench" - ], - "backrest": [ - "yes" - ], - "direction": [ - "354" - ], - "survey:date": [ - "2022-07-13" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 1.29509309998831e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "move": 3, - "theme": "benches", - "answer": 6, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "change_within_25m": 9, - "move:node/3340768220": "improve_accuracy", - "move:node/3340768221": "improve_accuracy", - "move:node/3340768222": "improve_accuracy" - }, - "id": 123549605 - } - }, - { - "id": 123549269, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.408385, - 53.2436763 - ], - [ - 6.4089189, - 53.2436763 - ], - [ - 6.4089189, - 53.2443918 - ], - [ - 6.408385, - 53.2443918 - ], - [ - 6.408385, - 53.2436763 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-13T07:37:21Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 11, - "modify": 7, - "delete": 0, - "area": 3.82005450002718e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 20, - "create": 11, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "add-image": 2, - "change_over_5000m": 11, - "change_within_25m": 22 - }, - "id": 123549269 - } - }, - { - "id": 123549234, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.6053385, - 49.9739277 - ], - [ - 5.6090991, - 49.9739277 - ], - [ - 5.6090991, - 49.9763404 - ], - [ - 5.6053385, - 49.9763404 - ], - [ - 5.6053385, - 49.9739277 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-13T07:36:34Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes" - ], - "addr:street": [ - "Poisson-Moulin" - ], - "addr:housenumber": [ - "18" - ], - "source:geometry:ref": [ - "Picc/104042" - ], - "source:geometry:date": [ - "2016-06-21" - ] - }, - "create": 86, - "modify": 11, - "delete": 0, - "area": 0.00000907319962000188, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "move": 10, - "theme": "grb", - "import": 22, - "locale": "en", - "imagery": "osm", - "conflation": 2 - }, - "id": 123549234 - } - }, - { - "id": 123549223, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.4083587, - 53.0199525 - ], - [ - 6.5650606, - 53.0199525 - ], - [ - 6.5650606, - 53.2443981 - ], - [ - 6.4083587, - 53.2443981 - ], - [ - 6.4083587, - 53.0199525 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-13T07:36:16Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/kTK4fja.jpg" - ], - "access": [ - "yes" - ], - "amenity": [ - "recycling", - "waste_disposal", - "waste_basket" - ], - "opening_hours": [ - "24/7" - ], - "recycling:glass": [ - "yes" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.0351710519666393, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 3, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_within_25m": 5 - }, - "id": 123549223 - } - }, - { - "id": 123548310, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.8009799, - 43.3224615 - ], - [ - -3.8009799, - 43.3224615 - ], - [ - -3.8009799, - 43.3224615 - ], - [ - -3.8009799, - 43.3224615 - ], - [ - -3.8009799, - 43.3224615 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ninopiña10", - "uid": "11138282", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-13T07:16:43Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "drinking_water" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 123548310 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-14.json b/Docs/Tools/stats/stats.2022-7-14.json deleted file mode 100644 index 2ef1a4d4bc..0000000000 --- a/Docs/Tools/stats/stats.2022-7-14.json +++ /dev/null @@ -1,4095 +0,0 @@ -{ - "features": [ - { - "id": 123627638, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3530562, - 50.8494852 - ], - [ - 4.3530562, - 50.8494852 - ], - [ - 4.3530562, - 50.8494852 - ], - [ - 4.3530562, - 50.8494852 - ], - [ - 4.3530562, - 50.8494852 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "bxl-forever", - "uid": "2644288", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #rainbow_crossings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-14T22:12:18Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/iTiLW6w.jpg" - ], - "highway": [ - "crossing" - ], - "crossing:marking": [ - "rainbow" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/rainbow_crossings.html", - "theme": "rainbow_crossings", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 123627638 - } - }, - { - "id": 123625442, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6487727, - 53.0449022 - ], - [ - 13.8482269, - 53.0449022 - ], - [ - 13.8482269, - 53.2139148 - ], - [ - 13.6487727, - 53.2139148 - ], - [ - 13.6487727, - 53.0449022 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Mathias Jordan", - "uid": "16545675", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-14T20:48:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 13, - "modify": 0, - "delete": 0, - "area": 0.033710272922919, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "Mapbox", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123625442 - } - }, - { - "id": 123625070, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2573601, - 53.2286934 - ], - [ - 6.2574039, - 53.2286934 - ], - [ - 6.2574039, - 53.2329848 - ], - [ - 6.2573601, - 53.2329848 - ], - [ - 6.2573601, - 53.2286934 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-14T20:37:57Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 1.879633200011e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 4, - "create": 2, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "add-image": 2, - "change_over_5000m": 2, - "change_within_25m": 6 - }, - "id": 123625070 - } - }, - { - "id": 123625047, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2573982, - 53.2286609 - ], - [ - 6.2574374, - 53.2286609 - ], - [ - 6.2574374, - 53.2329659 - ], - [ - 6.2573982, - 53.2329659 - ], - [ - 6.2573982, - 53.2286609 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-14T20:37:16Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/XNdhtJY.jpg", - "https://i.imgur.com/blIIay5.jpg" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.68755999999204e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_within_25m": 2 - }, - "id": 123625047 - } - }, - { - "id": 123625006, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2573315, - 53.232939 - ], - [ - 6.2574374, - 53.232939 - ], - [ - 6.2574374, - 53.2329793 - ], - [ - 6.2573315, - 53.2329793 - ], - [ - 6.2573315, - 53.232939 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-14T20:36:05Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/GHRUOQn.jpg" - ], - "seats": [ - "4" - ], - "colour": [ - "brown" - ], - "amenity": [ - "bench" - ], - "material": [ - "wood" - ], - "direction": [ - "263" - ], - "survey:date": [ - "2022-07-14" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 4.26776999943575e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "move": 1, - "theme": "benches", - "answer": 6, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "add-image": 1, - "change_within_25m": 8, - "move:node/2961150141": "improve_accuracy" - }, - "id": 123625006 - } - }, - { - "id": 123624840, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2571392, - 53.2329686 - ], - [ - 6.2623586, - 53.2329686 - ], - [ - 6.2623586, - 53.2357434 - ], - [ - 6.2571392, - 53.2357434 - ], - [ - 6.2571392, - 53.2329686 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-14T20:31:10Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "public_bookcase" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 0.0000144827911199855, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 4, - "create": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 2, - "change_within_25m": 6 - }, - "id": 123624840 - } - }, - { - "id": 123624359, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.1261967, - 45.856786 - ], - [ - 6.711281, - 45.856786 - ], - [ - 6.711281, - 50.9451273 - ], - [ - 3.1261967, - 50.9451273 - ], - [ - 3.1261967, - 45.856786 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibault Rommel", - "uid": "5846458", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-14T20:16:51Z", - "reviewed_features": [], - "tag_changes": { - "level": [ - "0" - ], - "access": [ - "yes" - ], - "amenity": [ - "place_of_worship" - ], - "building": [ - "yes", - "church" - ] - }, - "create": 3, - "modify": 12, - "delete": 0, - "area": 18.2421325076716, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 21, - "create": 5, - "locale": "nl", - "imagery": "osm", - "add-image": 3, - "change_over_5000m": 29 - }, - "id": 123624359 - } - }, - { - "id": 123623904, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.842235, - 50.9133423 - ], - [ - 3.842235, - 50.9133423 - ], - [ - 3.842235, - 50.9133423 - ], - [ - 3.842235, - 50.9133423 - ], - [ - 3.842235, - 50.9133423 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-14T20:06:09Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/IwKNXN2.jpg" - ], - "amenity": [ - "bench" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 123623904 - } - }, - { - "id": 123623175, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.3466049, - 51.6684015 - ], - [ - 14.3466049, - 51.6684015 - ], - [ - 14.3466049, - 51.6684015 - ], - [ - 14.3466049, - 51.6684015 - ], - [ - 14.3466049, - 51.6684015 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "tomtom616", - "uid": "16546724", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-14T19:43:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123623175 - } - }, - { - "id": 123623127, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3537472, - 50.8614361 - ], - [ - 4.3537472, - 50.8614361 - ], - [ - 4.3537472, - 50.8614361 - ], - [ - 4.3537472, - 50.8614361 - ], - [ - 4.3537472, - 50.8614361 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-14T19:41:32Z", - "reviewed_features": [], - "tag_changes": { - "image:0": [ - "https://i.imgur.com/4swXfCC.jpg" - ], - "tourism": [ - "artwork" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/artwork.html", - "theme": "artwork", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_500m": 1 - }, - "id": 123623127 - } - }, - { - "id": 123621853, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5186683, - 50.5592132 - ], - [ - 8.5186683, - 50.5592132 - ], - [ - 8.5186683, - 50.5592132 - ], - [ - 8.5186683, - 50.5592132 - ], - [ - 8.5186683, - 50.5592132 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jules99", - "uid": "16524952", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #observation_towers", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-14T18:54:14Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "viewpoint" - ], - "elevator": [ - "no" - ], - "historic": [ - "yes" - ], - "man_made": [ - "tower" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/observation_towers.html", - "theme": "observation_towers", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 123621853 - } - }, - { - "id": 123621793, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5147261, - 50.544431 - ], - [ - 8.5186683, - 50.544431 - ], - [ - 8.5186683, - 50.5592132 - ], - [ - 8.5147261, - 50.5592132 - ], - [ - 8.5147261, - 50.544431 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jules99", - "uid": "16524952", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #observation_towers", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-14T18:52:33Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "guided" - ], - "height": [ - "30 m" - ], - "tourism": [ - "viewpoint" - ], - "website": [ - "https://de.wikipedia.org/wiki/Br%C3%BChlsbacher_Warte" - ], - "man_made": [ - "tower" - ], - "operator": [ - "Stadt Wetzlar (4 Türme Weg)" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000582743888399833, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/observation_towers.html", - "theme": "observation_towers", - "answer": 6, - "locale": "de", - "imagery": "osm" - }, - "id": 123621793 - } - }, - { - "id": 123621751, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5260286, - 50.529657 - ], - [ - 8.5262354, - 50.529657 - ], - [ - 8.5262354, - 50.5297553 - ], - [ - 8.5260286, - 50.5297553 - ], - [ - 8.5260286, - 50.529657 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jules99", - "uid": "16524952", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #observation_towers", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-14T18:51:18Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "access": [ - "yes" - ], - "height": [ - "20 m" - ], - "building": [ - "yes" - ], - "elevator": [ - "no" - ], - "man_made": [ - "tower" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 2.03284399994249e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/observation_towers.html", - "theme": "observation_towers", - "answer": 4, - "locale": "de", - "imagery": "osm" - }, - "id": 123621751 - } - }, - { - "id": 123621481, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4590891, - 50.5259901 - ], - [ - 8.4877405, - 50.5259901 - ], - [ - 8.4877405, - 50.5409423 - ], - [ - 8.4590891, - 50.5409423 - ], - [ - 8.4590891, - 50.5259901 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jules99", - "uid": "16524952", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-14T18:42:37Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "drinking_water" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 0.000428401463079881, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 2, - "create": 2, - "locale": "de", - "imagery": "Hessen-DOP20" - }, - "id": 123621481 - } - }, - { - "id": 123621468, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7230132, - 53.0752917 - ], - [ - 13.7230132, - 53.0752917 - ], - [ - 13.7230132, - 53.0752917 - ], - [ - 13.7230132, - 53.0752917 - ], - [ - 13.7230132, - 53.0752917 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Piatkowskiflori", - "uid": "16545594", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-14T18:42:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "EsriWorldImagery", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123621468 - } - }, - { - "id": 123621382, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.9641853, - 48.8335071 - ], - [ - 12.9641853, - 48.8335071 - ], - [ - 12.9641853, - 48.8335071 - ], - [ - 12.9641853, - 48.8335071 - ], - [ - 12.9641853, - 48.8335071 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "APneunzehn74", - "uid": "12180500", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-14T18:38:27Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/zjE0M1J.jpg" - ], - "indoor": [ - "no" - ], - "amenity": [ - "public_bookcase" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 1, - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 123621382 - } - }, - { - "id": 123621151, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.9605191, - 48.8329294 - ], - [ - 12.9640151, - 48.8329294 - ], - [ - 12.9640151, - 48.8336766 - ], - [ - 12.9605191, - 48.8336766 - ], - [ - 12.9605191, - 48.8329294 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "APneunzehn74", - "uid": "12180500", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-14T18:30:55Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/i5Czobp.jpg", - "https://i.imgur.com/CWx9vrZ.jpg", - "https://i.imgur.com/i5K5OkI.jpg" - ], - "amenity": [ - "drinking_water" - ], - "tourism": [ - "artwork" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000261221119999629, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 3, - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 3, - "change_within_25m": 6 - }, - "id": 123621151 - } - }, - { - "id": 123621088, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.9620207, - 48.8329258 - ], - [ - 12.9620207, - 48.8329258 - ], - [ - 12.9620207, - 48.8329258 - ], - [ - 12.9620207, - 48.8329258 - ], - [ - 12.9620207, - 48.8329258 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "APneunzehn74", - "uid": "12180500", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-14T18:28:53Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/97tp1f5.jpg" - ], - "access": [ - "yes" - ], - "defibrillator:location": [ - "Direkt an der Außenmauer von der Straße aus einsehbar. Jederzeit zugänglich. Visible from the street directly on the outer wall. Accessible at any time.", - "Direkt an der Außenmauer von der Straße aus einsehbar. Jederzeit zugänglich.\nVisible from the street directly on the outer wall. Accessible at any time." - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 1, - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 123621088 - } - }, - { - "id": 123620962, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5329719, - 50.5529775 - ], - [ - 8.5329719, - 50.5529775 - ], - [ - 8.5329719, - 50.5529775 - ], - [ - 8.5329719, - 50.5529775 - ], - [ - 8.5329719, - 50.5529775 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jules99", - "uid": "16524952", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-14T18:24:30Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "yes" - ], - "amenity": [ - "charging_station" - ], - "maxstay": [ - "unlimited" - ], - "payment:app": [ - "yes" - ], - "payment:cash": [ - "no" - ], - "payment:cards": [ - "no" - ], - "payment:membership_card": [ - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 3, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123620962 - } - }, - { - "id": 123620887, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5329719, - 50.5529775 - ], - [ - 8.5333071, - 50.5529775 - ], - [ - 8.5333071, - 50.5530862 - ], - [ - 8.5329719, - 50.5530862 - ], - [ - 8.5329719, - 50.5529775 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jules99", - "uid": "16524952", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-14T18:22:43Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "charging_station" - ], - "maxstay": [ - "unlimited" - ], - "network": [ - "Enwag" - ] - }, - "create": 1, - "modify": 4, - "delete": 0, - "area": 3.64362400018819e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 8, - "create": 1, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123620887 - } - }, - { - "id": 123620884, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5333071, - 50.5530862 - ], - [ - 8.5333071, - 50.5530862 - ], - [ - 8.5333071, - 50.5530862 - ], - [ - 8.5333071, - 50.5530862 - ], - [ - 8.5333071, - 50.5530862 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jules99", - "uid": "16524952", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-14T18:22:30Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123620884 - } - }, - { - "id": 123620618, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5333071, - 50.5382418 - ], - [ - 8.5372403, - 50.5382418 - ], - [ - 8.5372403, - 50.5530862 - ], - [ - 8.5333071, - 50.5530862 - ], - [ - 8.5333071, - 50.5382418 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jules99", - "uid": "16524952", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-14T18:15:35Z", - "reviewed_features": [], - "tag_changes": { - "bus": [ - "no" - ], - "hgv": [ - "no" - ], - "amenity": [ - "charging_station" - ], - "bicycle": [ - "no" - ], - "network": [ - "Enwag" - ], - "scooter": [ - "no" - ], - "motorcar": [ - "yes" - ], - "socket:type1:current": [ - "32 A" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000583859940800125, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 4, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123620618 - } - }, - { - "id": 123620597, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5372403, - 50.5382418 - ], - [ - 8.5372403, - 50.5382418 - ], - [ - 8.5372403, - 50.5382418 - ], - [ - 8.5372403, - 50.5382418 - ], - [ - 8.5372403, - 50.5382418 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jules99", - "uid": "16524952", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-14T18:15:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 1, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123620597 - } - }, - { - "id": 123620588, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5372403, - 50.5382418 - ], - [ - 8.5372403, - 50.5382418 - ], - [ - 8.5372403, - 50.5382418 - ], - [ - 8.5372403, - 50.5382418 - ], - [ - 8.5372403, - 50.5382418 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jules99", - "uid": "16524952", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-14T18:14:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 1, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123620588 - } - }, - { - "id": 123620576, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5372403, - 50.5382418 - ], - [ - 8.5372403, - 50.5382418 - ], - [ - 8.5372403, - 50.5382418 - ], - [ - 8.5372403, - 50.5382418 - ], - [ - 8.5372403, - 50.5382418 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jules99", - "uid": "16524952", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-14T18:14:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 3, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123620576 - } - }, - { - "id": 123620174, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4760269, - 50.5322024 - ], - [ - 8.4953499, - 50.5322024 - ], - [ - 8.4953499, - 50.5493194 - ], - [ - 8.4760269, - 50.5493194 - ], - [ - 8.4760269, - 50.5322024 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jules99", - "uid": "16524952", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-14T18:03:23Z", - "reviewed_features": [], - "tag_changes": { - "seats": [ - "3", - "4" - ], - "amenity": [ - "bench" - ], - "backrest": [ - "yes" - ], - "material": [ - "wood" - ], - "direction": [ - "103", - "162", - "324" - ], - "survey:date": [ - "2022-07-14" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.000330751790999979, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 11, - "locale": "de", - "imagery": "Hessen-DOP20" - }, - "id": 123620174 - } - }, - { - "id": 123620138, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.242761, - 50.7348997 - ], - [ - 4.242761, - 50.7348997 - ], - [ - 4.242761, - 50.7348997 - ], - [ - 4.242761, - 50.7348997 - ], - [ - 4.242761, - 50.7348997 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #rainbow_crossings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-14T18:02:04Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "crossing" - ], - "crossing:marking": [ - "rainbow" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/rainbow_crossings.html", - "theme": "rainbow_crossings", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_5000m": 2 - }, - "id": 123620138 - } - }, - { - "id": 123618326, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.3503419, - 52.3227754 - ], - [ - 7.3503419, - 52.3227754 - ], - [ - 7.3503419, - 52.3227754 - ], - [ - 7.3503419, - 52.3227754 - ], - [ - 7.3503419, - 52.3227754 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "stinkmoloch", - "uid": "1698926", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-14T17:07:02Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "bicycle" - ], - "email": [ - "info@fahrrad-wanning.de" - ], - "phone": [ - "+49 5976 948450" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager", - "change_within_5000m": 2 - }, - "id": 123618326 - } - }, - { - "id": 123618296, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7191719, - 53.0564032 - ], - [ - 13.7553281, - 53.0564032 - ], - [ - 13.7553281, - 53.1465741 - ], - [ - 13.7191719, - 53.1465741 - ], - [ - 13.7191719, - 53.0564032 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Kusch", - "uid": "16545427", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-14T17:06:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 3, - "delete": 0, - "area": 0.0032602370945802, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123618296 - } - }, - { - "id": 123618212, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.8040421, - 53.1610486 - ], - [ - 13.8040682, - 53.1610486 - ], - [ - 13.8040682, - 53.1610528 - ], - [ - 13.8040421, - 53.1610528 - ], - [ - 13.8040421, - 53.1610486 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Davidsohn", - "uid": "16545422", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-14T17:03:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 2, - "delete": 0, - "area": 1.09619999980658e-10, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "EsriWorldImagery", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123618212 - } - }, - { - "id": 123618140, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7471712, - 53.1687541 - ], - [ - 13.7471712, - 53.1687541 - ], - [ - 13.7471712, - 53.1687541 - ], - [ - 13.7471712, - 53.1687541 - ], - [ - 13.7471712, - 53.1687541 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Olli FFW", - "uid": "16545420", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-14T17:00:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "Mapbox", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123618140 - } - }, - { - "id": 123618133, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7553549, - 53.1319227 - ], - [ - 13.7553549, - 53.1319227 - ], - [ - 13.7553549, - 53.1319227 - ], - [ - 13.7553549, - 53.1319227 - ], - [ - 13.7553549, - 53.1319227 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Brandoberinspektor Erdmann", - "uid": "13364061", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-14T17:00:42Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "EsriWorldImagery", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123618133 - } - }, - { - "id": 123617797, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3353671, - 52.4741701 - ], - [ - 13.3353671, - 52.4741701 - ], - [ - 13.3353671, - 52.4741701 - ], - [ - 13.3353671, - 52.4741701 - ], - [ - 13.3353671, - 52.4741701 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Wikinaut", - "uid": "120965", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-14T16:49:48Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-14", - "2020-09-11" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 1, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123617797 - } - }, - { - "id": 123617278, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -86.0700356, - 40.0035473 - ], - [ - -86.0700356, - 40.0035473 - ], - [ - -86.0700356, - 40.0035473 - ], - [ - -86.0700356, - 40.0035473 - ], - [ - -86.0700356, - 40.0035473 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Kanellar", - "uid": "16249964", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-14T16:32:31Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 123617278 - } - }, - { - "id": 123616728, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.0035812, - 49.5932311 - ], - [ - 11.0048521, - 49.5932311 - ], - [ - 11.0048521, - 49.5973048 - ], - [ - 11.0035812, - 49.5973048 - ], - [ - 11.0035812, - 49.5932311 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "FranoX", - "uid": "6558525", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-14T16:16:37Z", - "reviewed_features": [], - "tag_changes": { - "level": [ - "-1" - ], - "access": [ - "yes" - ], - "amenity": [ - "toilets" - ], - "payment:cash": [ - "yes" - ], - "payment:cards": [ - "no" - ], - "toilets:position": [ - "seated;urinal" - ], - "toilets:handwashing": [ - "yes" - ], - "toilets:paper_supplied": [ - "yes" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00000517726533001431, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 10, - "locale": "de", - "imagery": "osm" - }, - "id": 123616728 - } - }, - { - "id": 123616349, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.0017464, - 49.5937231 - ], - [ - 11.0329543, - 49.5937231 - ], - [ - 11.0329543, - 49.6013006 - ], - [ - 11.0017464, - 49.6013006 - ], - [ - 11.0017464, - 49.5937231 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "FranoX", - "uid": "6558525", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-14T16:05:39Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential", - "unclassified", - "footway", - "cycleway", - "pedestrian", - "living_street", - "disused", - "service" - ], - "name:etymology:wikidata": [ - "Q5879", - "Q2667", - "Q8442", - "Q101935", - "Q76323" - ] - }, - "create": 0, - "modify": 59, - "delete": 0, - "area": 0.000236477862250112, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 71, - "locale": "de", - "imagery": "osm" - }, - "id": 123616349 - } - }, - { - "id": 123614214, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.0835619, - 53.1141719 - ], - [ - 6.0837026, - 53.1141719 - ], - [ - 6.0837026, - 53.1151349 - ], - [ - 6.0835619, - 53.1151349 - ], - [ - 6.0835619, - 53.1141719 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-14T15:03:05Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 1.35494099999172e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 4, - "create": 2, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "change_over_5000m": 2, - "change_within_25m": 4 - }, - "id": 123614214 - } - }, - { - "id": 123612418, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3085216, - 50.986428 - ], - [ - 11.3085216, - 50.986428 - ], - [ - 11.3085216, - 50.986428 - ], - [ - 11.3085216, - 50.986428 - ], - [ - 11.3085216, - 50.986428 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "gartenfreund", - "uid": "5123448", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-14T14:15:43Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "playground" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 2, - "create": 1, - "locale": "de", - "imagery": "EsriWorldImagery", - "change_over_5000m": 1, - "change_within_1000m": 2 - }, - "id": 123612418 - } - }, - { - "id": 123611712, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.5085103, - 48.435458 - ], - [ - 9.5085103, - 48.435458 - ], - [ - 9.5085103, - 48.435458 - ], - [ - 9.5085103, - 48.435458 - ], - [ - 9.5085103, - 48.435458 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-14T13:56:33Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/rS5d5uL.jpg" - ], - "amenity": [ - "toilets" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 123611712 - } - }, - { - "id": 123611469, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3541549, - 50.8489746 - ], - [ - 4.3543695, - 50.8489746 - ], - [ - 4.3543695, - 50.8490417 - ], - [ - 4.3541549, - 50.8490417 - ], - [ - 4.3541549, - 50.8489746 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "bxl-forever", - "uid": "2644288", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-14T13:49:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 1.43996600005197e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/kerbs_and_crossings.html", - "theme": "kerbs_and_crossings", - "answer": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 123611469 - } - }, - { - "id": 123611387, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.5086042, - 48.4356241 - ], - [ - 9.5086042, - 48.4356241 - ], - [ - 9.5086042, - 48.4356241 - ], - [ - 9.5086042, - 48.4356241 - ], - [ - 9.5086042, - 48.4356241 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-14T13:47:28Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/9eNDZ4u.jpg" - ], - "access": [ - "yes" - ], - "manual": [ - "yes" - ], - "valves": [ - "sclaverand;dunlop;schrader" - ], - "amenity": [ - "bicycle_repair_station" - ], - "manometer": [ - "yes" - ], - "opening_hours": [ - "24/7" - ], - "service:bicycle:stand": [ - "yes" - ], - "service:bicycle:pump:operational_status": [ - "operational" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 7, - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 8 - }, - "id": 123611387 - } - }, - { - "id": 123611264, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3523036, - 50.8486237 - ], - [ - 4.3568698, - 50.8486237 - ], - [ - 4.3568698, - 50.8509287 - ], - [ - 4.3523036, - 50.8509287 - ], - [ - 4.3523036, - 50.8486237 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "bxl-forever", - "uid": "2644288", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-14T13:44:54Z", - "reviewed_features": [], - "tag_changes": { - "bicycle": [ - "yes", - "no" - ], - "highway": [ - "crossing" - ], - "tactile_paving": [ - "no" - ], - "crossing:island": [ - "no" - ] - }, - "create": 0, - "modify": 14, - "delete": 0, - "area": 0.0000105250909999994, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/kerbs_and_crossings.html", - "theme": "kerbs_and_crossings", - "answer": 21, - "locale": "en", - "imagery": "osm" - }, - "id": 123611264 - } - }, - { - "id": 123609185, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8668697, - 50.9147932 - ], - [ - 3.8668697, - 50.9147932 - ], - [ - 3.8668697, - 50.9147932 - ], - [ - 3.8668697, - 50.9147932 - ], - [ - 3.8668697, - 50.9147932 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-14T12:57:48Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/TyICYof.jpg" - ], - "amenity": [ - "bench" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 123609185 - } - }, - { - "id": 123608457, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.1531052, - 47.2650918 - ], - [ - 11.2536746, - 47.2650918 - ], - [ - 11.2536746, - 47.2853173 - ], - [ - 11.1531052, - 47.2853173 - ], - [ - 11.1531052, - 47.2650918 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "robelix", - "uid": "106509", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-14T12:40:10Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 0.00203406639970021, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "move": 1, - "theme": "benches", - "answer": 1, - "create": 2, - "locale": "en", - "imagery": "basemap.at-orthofoto", - "move:node/9887293853": "improve_accuracy" - }, - "id": 123608457 - } - }, - { - "id": 123608350, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.064464, - 48.8763218 - ], - [ - 13.064464, - 48.8763218 - ], - [ - 13.064464, - 48.8763218 - ], - [ - 13.064464, - 48.8763218 - ], - [ - 13.064464, - 48.8763218 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "APneunzehn74", - "uid": "12180500", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-14T12:38:00Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/VP2ZtyB.jpg" - ], - "access": [ - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 1, - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 123608350 - } - }, - { - "id": 123608313, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.0644565, - 48.8763257 - ], - [ - 13.0644565, - 48.8763257 - ], - [ - 13.0644565, - 48.8763257 - ], - [ - 13.0644565, - 48.8763257 - ], - [ - 13.0644565, - 48.8763257 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "APneunzehn74", - "uid": "12180500", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-14T12:37:20Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/5aerUVp.jpg" - ], - "access": [ - "yes" - ], - "amenity": [ - "bicycle_repair_station" - ], - "service:bicycle:pump:operational_status": [ - "operational" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 3 - }, - "id": 123608313 - } - }, - { - "id": 123607966, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2269935, - 50.8439519 - ], - [ - 3.2272047, - 50.8439519 - ], - [ - 3.2272047, - 50.8441088 - ], - [ - 3.2269935, - 50.8441088 - ], - [ - 3.2269935, - 50.8439519 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "beardhatcode", - "uid": "5439560", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-14T12:30:09Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house" - ] - }, - "create": 5, - "modify": 0, - "delete": 0, - "area": 3.31372800001207e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb", - "theme": "grb", - "import": 1, - "locale": "en", - "imagery": "AGIVFlandersGRB" - }, - "id": 123607966 - } - }, - { - "id": 123607149, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.5298026, - 62.5495334 - ], - [ - 12.5298026, - 62.5495334 - ], - [ - 12.5298026, - 62.5495334 - ], - [ - 12.5298026, - 62.5495334 - ], - [ - 12.5298026, - 62.5495334 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Polardfront", - "uid": "12630812", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-14T12:10:34Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "fast_food" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 4, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 123607149 - } - }, - { - "id": 123604343, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3547137, - 50.8587929 - ], - [ - 4.3547137, - 50.8587929 - ], - [ - 4.3547137, - 50.8587929 - ], - [ - 4.3547137, - 50.8587929 - ], - [ - 4.3547137, - 50.8587929 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-14T11:12:37Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/Pe5WyKU.jpg" - ], - "amenity": [ - "restaurant" - ], - "takeaway": [ - "yes" - ], - "payment:cash": [ - "yes" - ], - "payment:cards": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/food.html", - "theme": "food", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_100m": 3 - }, - "id": 123604343 - } - }, - { - "id": 123598974, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.9620296, - 48.8349041 - ], - [ - 12.9623636, - 48.8349041 - ], - [ - 12.9623636, - 48.8349854 - ], - [ - 12.9620296, - 48.8349854 - ], - [ - 12.9620296, - 48.8349041 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "APneunzehn74", - "uid": "12180500", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-14T09:19:02Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "charging_station", - "bicycle_parking" - ], - "authentication:app": [ - "no" - ], - "authentication:nfc": [ - "no" - ], - "authentication:none": [ - "yes" - ], - "socket:schuko:voltage": [ - "230 V" - ], - "authentication:debit_card": [ - "no" - ], - "authentication:money_card": [ - "no" - ], - "authentication:phone_call": [ - "no" - ], - "authentication:short_message": [ - "no" - ], - "authentication:membership_card": [ - "no" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 2.71541999993568e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 4, - "locale": "de", - "imagery": "CartoDB.Voyager", - "change_within_500m": 4 - }, - "id": 123598974 - } - }, - { - "id": 123598933, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.3689584, - 53.1618661 - ], - [ - 6.3689584, - 53.1618661 - ], - [ - 6.3689584, - 53.1618661 - ], - [ - 6.3689584, - 53.1618661 - ], - [ - 6.3689584, - 53.1618661 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #education", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-14T09:18:36Z", - "reviewed_features": [], - "tag_changes": { - "phone": [ - "+31 594 854 530" - ], - "amenity": [ - "school" - ], - "website": [ - "https://lindenborg.rsgdeborgen.nl/" - ], - "school:gender": [ - "mixed" - ], - "school:language": [ - "dutch" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/education.html", - "theme": "education", - "answer": 4, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 123598933 - } - }, - { - "id": 123597930, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 43.8774472, - 56.2496226 - ], - [ - 43.8774472, - 56.2496226 - ], - [ - 43.8774472, - 56.2496226 - ], - [ - 43.8774472, - 56.2496226 - ], - [ - 43.8774472, - 56.2496226 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "alexashh", - "uid": "9054103", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-14T08:56:55Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/xnS7PMz.jpg" - ], - "amenity": [ - "bicycle_parking" - ], - "covered": [ - "no" - ], - "capacity": [ - "12" - ], - "bicycle_parking": [ - "wall_loops" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 3, - "locale": "ru", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 4 - }, - "id": 123597930 - } - }, - { - "id": 123590499, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.9460765, - 48.8309655 - ], - [ - 12.9623788, - 48.8309655 - ], - [ - 12.9623788, - 48.8317551 - ], - [ - 12.9460765, - 48.8317551 - ], - [ - 12.9460765, - 48.8309655 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "APneunzehn74", - "uid": "12180500", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-14T05:50:21Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/e0VqhxP.jpg" - ], - "access": [ - "yes" - ], - "amenity": [ - "charging_station", - "drinking_water", - "bicycle_parking" - ], - "operational_status": [ - "broken" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.000012872296080073, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 4, - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_1000m": 3, - "change_within_5000m": 2 - }, - "id": 123590499 - } - }, - { - "id": 123587834, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.9776727, - 46.0954778 - ], - [ - 13.8056193, - 46.0954778 - ], - [ - 13.8056193, - 48.8143794 - ], - [ - 12.9776727, - 48.8143794 - ], - [ - 12.9776727, - 46.0954778 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "APneunzehn74", - "uid": "12180500", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-14T04:18:49Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/QHITh0s.jpg", - "https://i.imgur.com/ymeCVdj.jpg" - ], - "access": [ - "yes" - ], - "defibrillator:location": [ - "Direkt an der Außenmauer von der Straße aus einsehbar. Jederzeit zugänglich. Visible from the street directly on the outer wall. Accessible at any time.", - "Direkt an der Außenmauer von der Straße aus einsehbar. Jederzeit zugänglich.\nVisible from the street directly on the outer wall. Accessible at any time." - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 2.25110533545456, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 3, - "locale": "de", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 3, - "change_within_25m": 1, - "change_within_500m": 1 - }, - "id": 123587834 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-15.json b/Docs/Tools/stats/stats.2022-7-15.json deleted file mode 100644 index 624e2852e7..0000000000 --- a/Docs/Tools/stats/stats.2022-7-15.json +++ /dev/null @@ -1,6315 +0,0 @@ -{ - "features": [ - { - "id": 123669775, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5574802, - 50.7411852 - ], - [ - 3.8051032, - 50.7411852 - ], - [ - 3.8051032, - 50.946696 - ], - [ - 3.5574802, - 50.946696 - ], - [ - 3.5574802, - 50.7411852 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T21:22:58Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/clrLJ6n.jpg", - "https://i.imgur.com/9y6eYVb.jpg" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ], - "material": [ - "wood" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.0508892008284015, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 123669775 - } - }, - { - "id": 123667622, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0710929, - 51.7469348 - ], - [ - 0.0711757, - 51.7469348 - ], - [ - 0.0711757, - 51.7471331 - ], - [ - 0.0710929, - 51.7471331 - ], - [ - 0.0710929, - 51.7469348 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "thelazymapper", - "uid": "15054081", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #uk_addresses", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T20:01:25Z", - "reviewed_features": [], - "tag_changes": { - "addr:street": [ - "Taylifers" - ] - }, - "create": 4, - "modify": 4, - "delete": 0, - "area": 1.64192400000803e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/uk_addresses.html", - "theme": "uk_addresses", - "answer": 9, - "import": 4, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 4, - "change_within_25m": 7, - "change_within_50m": 2 - }, - "id": 123667622 - } - }, - { - "id": 123667202, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0710929, - 51.7471313 - ], - [ - 0.0716802, - 51.7471313 - ], - [ - 0.0716802, - 51.7471818 - ], - [ - 0.0710929, - 51.7471818 - ], - [ - 0.0710929, - 51.7471313 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "thelazymapper", - "uid": "15054081", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #uk_addresses", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T19:47:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 1, - "delete": 0, - "area": 2.96586500002334e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/uk_addresses.html", - "theme": "uk_addresses", - "answer": 12, - "import": 3, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 4 - }, - "id": 123667202 - } - }, - { - "id": 123666797, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.4189516, - 47.2153275 - ], - [ - 11.4196022, - 47.2153275 - ], - [ - 11.4196022, - 47.2155259 - ], - [ - 11.4189516, - 47.2155259 - ], - [ - 11.4189516, - 47.2153275 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "MaPeTh", - "uid": "197691", - "editor": "MapComplete 0.2.2a", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T19:32:41Z", - "reviewed_features": [], - "tag_changes": { - "url": [ - "https://www.thecrag.com/de/klettern/austria/area/3737199372" - ], - "climbing:boulder": [ - "yes" - ], - "climbing:toprope": [ - "yes" - ], - "climbing:traditional": [ - "no" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 1.29079040001434e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "theme": "climbing", - "language": "de", - "theme-creator": "Christian Neumann " - }, - "id": 123666797 - } - }, - { - "id": 123665710, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3293153, - 51.1282742 - ], - [ - 3.3325431, - 51.1282742 - ], - [ - 3.3325431, - 51.1291711 - ], - [ - 3.3293153, - 51.1291711 - ], - [ - 3.3293153, - 51.1282742 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T18:59:46Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/3AvLPWg.jpg", - "https://i.imgur.com/Eod8NEG.jpg" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000289501382000234, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 123665710 - } - }, - { - "id": 123664117, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3972354, - 51.2213769 - ], - [ - 4.3972354, - 51.2213769 - ], - [ - 4.3972354, - 51.2213769 - ], - [ - 4.3972354, - 51.2213769 - ], - [ - 4.3972354, - 51.2213769 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #rainbow_crossings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T18:06:31Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "crossing" - ], - "mapillary": [ - "3976169852499897" - ], - "crossing:marking": [ - "rainbow" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/rainbow_crossings.html", - "theme": "rainbow_crossings", - "answer": 2, - "locale": "nl", - "imagery": "AGIV", - "link-image": 2, - "change_over_5000m": 4 - }, - "id": 123664117 - } - }, - { - "id": 123663987, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.329485, - 51.1278819 - ], - [ - 3.329485, - 51.1278819 - ], - [ - 3.329485, - 51.1278819 - ], - [ - 3.329485, - 51.1278819 - ], - [ - 3.329485, - 51.1278819 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T18:01:39Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/6D5SzdA.jpg" - ], - "image:0": [ - "https://i.imgur.com/WzdqWCF.jpg" - ], - "survey:date": [ - "2022-07-15" - ], - "expected_rwn_route_relations": [ - "3" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "answer": 2, - "locale": "en", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 4 - }, - "id": 123663987 - } - }, - { - "id": 123663056, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.5030391, - 48.449626 - ], - [ - 9.5030391, - 48.449626 - ], - [ - 9.5030391, - 48.449626 - ], - [ - 9.5030391, - 48.449626 - ], - [ - 9.5030391, - 48.449626 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T17:32:36Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/4Q4TfVB.jpg" - ], - "access": [ - "yes" - ], - "amenity": [ - "toilets" - ], - "changing_table": [ - "no" - ], - "toilets:position": [ - "seated;urinal" - ], - "toilets:handwashing": [ - "yes" - ], - "toilets:paper_supplied": [ - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 5, - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 6 - }, - "id": 123663056 - } - }, - { - "id": 123660836, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.9461477, - 48.8318757 - ], - [ - 12.9462321, - 48.8318757 - ], - [ - 12.9462321, - 48.8319467 - ], - [ - 12.9461477, - 48.8319467 - ], - [ - 12.9461477, - 48.8318757 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "APneunzehn74", - "uid": "12180500", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T16:23:32Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/bL9ObTG.jpg" - ], - "amenity": [ - "toilets" - ], - "building": [ - "yes" - ], - "opening_hours": [ - "24/7" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 5.99240000049322e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 2, - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 3 - }, - "id": 123660836 - } - }, - { - "id": 123660757, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.9461018, - 48.8318732 - ], - [ - 12.9461018, - 48.8318732 - ], - [ - 12.9461018, - 48.8318732 - ], - [ - 12.9461018, - 48.8318732 - ], - [ - 12.9461018, - 48.8318732 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "APneunzehn74", - "uid": "12180500", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T16:22:03Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/sQeGww5.jpg" - ], - "access": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 1, - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 123660757 - } - }, - { - "id": 123660664, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.9460765, - 48.8312894 - ], - [ - 12.9483533, - 48.8312894 - ], - [ - 12.9483533, - 48.8317551 - ], - [ - 12.9460765, - 48.8317551 - ], - [ - 12.9460765, - 48.8312894 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "APneunzehn74", - "uid": "12180500", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T16:19:46Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/ExLndyc.jpg" - ], - "amenity": [ - "drinking_water", - "bicycle_parking" - ], - "operational_status": [ - "broken" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0.00000106030575999906, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 6, - "create": 1, - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 2, - "change_over_5000m": 1, - "change_within_25m": 8 - }, - "id": 123660664 - } - }, - { - "id": 123660657, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7607488, - 53.095486 - ], - [ - 13.760756, - 53.095486 - ], - [ - 13.760756, - 53.0954865 - ], - [ - 13.7607488, - 53.0954865 - ], - [ - 13.7607488, - 53.095486 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FFw Groß-Fredenwalde", - "uid": "16545424", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T16:19:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 3.59999999123644e-12, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123660657 - } - }, - { - "id": 123659720, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T15:51:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "AGIV", - "change_within_500m": 1 - }, - "id": 123659720 - } - }, - { - "id": 123659688, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T15:50:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "AGIV", - "change_within_500m": 1 - }, - "id": 123659688 - } - }, - { - "id": 123659685, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T15:50:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "AGIV", - "change_within_500m": 1 - }, - "id": 123659685 - } - }, - { - "id": 123659355, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3289462, - 51.1282551 - ], - [ - 3.3289462, - 51.1282551 - ], - [ - 3.3289462, - 51.1282551 - ], - [ - 3.3289462, - 51.1282551 - ], - [ - 3.3289462, - 51.1282551 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T15:42:07Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "material": [ - "metal" - ], - "survey:date": [ - "2022-07-15" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "AGIV", - "change_within_25m": 2 - }, - "id": 123659355 - } - }, - { - "id": 123659333, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3289462, - 51.1282551 - ], - [ - 3.3289462, - 51.1282551 - ], - [ - 3.3289462, - 51.1282551 - ], - [ - 3.3289462, - 51.1282551 - ], - [ - 3.3289462, - 51.1282551 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T15:41:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 123659333 - } - }, - { - "id": 123659305, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3293506, - 51.1282639 - ], - [ - 3.3293506, - 51.1282639 - ], - [ - 3.3293506, - 51.1282639 - ], - [ - 3.3293506, - 51.1282639 - ], - [ - 3.3293506, - 51.1282639 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T15:40:49Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "AGIV", - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 123659305 - } - }, - { - "id": 123659301, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6678623, - 53.1371774 - ], - [ - 13.7565243, - 53.1371774 - ], - [ - 13.7565243, - 53.1939919 - ], - [ - 13.6678623, - 53.1939919 - ], - [ - 13.6678623, - 53.1371774 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Wolfram Hoppe", - "uid": "16383946", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T15:40:45Z", - "reviewed_features": [], - "tag_changes": { - "note": [ - "- die Saugstelle ist durch sehr starken Schilfbewuchs, rund um den See, ... z.Zt. (15.07.2022) nicht zu gebrauchen -", - "- öffentliche Badestelle -" - ], - "image": [ - "https://i.imgur.com/VVNO6Sk.jpg", - "https://i.imgur.com/4robX7v.jpg", - "https://i.imgur.com/aWhDCk8.jpg", - "https://i.imgur.com/x7A2Uui.jpg", - "https://i.imgur.com/nt5K9B7.jpg", - "https://i.imgur.com/RKBF46i.jpg", - "https://i.imgur.com/ntOwp17.jpg", - "https://i.imgur.com/ORT7ZVg.jpg" - ], - "image:0": [ - "https://i.imgur.com/18jkAmk.jpg", - "https://i.imgur.com/kpf6JC6.jpg", - "https://i.imgur.com/T4VcexI.jpg", - "https://i.imgur.com/Dq7y6kS.jpg", - "https://i.imgur.com/A6rJDQm.jpg" - ], - "image:1": [ - "https://i.imgur.com/j05P9op.jpg" - ] - }, - "create": 15, - "modify": 63, - "delete": 0, - "area": 0.0050372871990002, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123659301 - } - }, - { - "id": 123659213, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.8117016, - 53.1595009 - ], - [ - 13.8204819, - 53.1595009 - ], - [ - 13.8204819, - 53.1617433 - ], - [ - 13.8117016, - 53.1617433 - ], - [ - 13.8117016, - 53.1595009 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Davidsohn", - "uid": "16545422", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T15:38:26Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 7, - "delete": 0, - "area": 0.0000196889447200042, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "EsriWorldImagery", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123659213 - } - }, - { - "id": 123658369, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7938218, - 53.1285286 - ], - [ - 13.7939242, - 53.1285286 - ], - [ - 13.7939242, - 53.1285629 - ], - [ - 13.7938218, - 53.1285629 - ], - [ - 13.7938218, - 53.1285286 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FFw Groß-Fredenwalde", - "uid": "16545424", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T15:13:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 3.5123199995515e-9, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "Mapbox", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123658369 - } - }, - { - "id": 123657462, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.273807, - 53.3025192 - ], - [ - 6.2739116, - 53.3025192 - ], - [ - 6.2739116, - 53.3025536 - ], - [ - 6.273807, - 53.3025536 - ], - [ - 6.273807, - 53.3025192 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T14:51:33Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 3.59824000043662e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 3, - "create": 2, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "change_over_5000m": 2, - "change_within_1000m": 3 - }, - "id": 123657462 - } - }, - { - "id": 123657454, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2737144, - 53.3025769 - ], - [ - 6.2737144, - 53.3025769 - ], - [ - 6.2737144, - 53.3025769 - ], - [ - 6.2737144, - 53.3025769 - ], - [ - 6.2737144, - 53.3025769 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T14:51:23Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "change_over_5000m": 1, - "change_within_1000m": 1 - }, - "id": 123657454 - } - }, - { - "id": 123657435, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2736125, - 53.3026001 - ], - [ - 6.2738244, - 53.3026001 - ], - [ - 6.2738244, - 53.3026273 - ], - [ - 6.2736125, - 53.3026273 - ], - [ - 6.2736125, - 53.3026001 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T14:51:02Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 5.76367999960228e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 3, - "create": 2, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "change_over_5000m": 2, - "change_within_1000m": 3 - }, - "id": 123657435 - } - }, - { - "id": 123657426, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2736246, - 53.302649 - ], - [ - 6.2738351, - 53.302649 - ], - [ - 6.2738351, - 53.3027082 - ], - [ - 6.2736246, - 53.3027082 - ], - [ - 6.2736246, - 53.302649 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T14:50:54Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 3, - "modify": 1, - "delete": 0, - "area": 1.24615999990826e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 5, - "create": 3, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "change_over_5000m": 3, - "change_within_1000m": 5 - }, - "id": 123657426 - } - }, - { - "id": 123657397, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2736393, - 53.3027251 - ], - [ - 6.2736393, - 53.3027251 - ], - [ - 6.2736393, - 53.3027251 - ], - [ - 6.2736393, - 53.3027251 - ], - [ - 6.2736393, - 53.3027251 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T14:50:26Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "change_over_5000m": 1, - "change_within_1000m": 2 - }, - "id": 123657397 - } - }, - { - "id": 123657324, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Karl Holzlehner", - "uid": "16513028", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T14:48:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/parkings.html", - "theme": "trees", - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 123657324 - } - }, - { - "id": 123657156, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6718392, - 50.1353073 - ], - [ - 8.6718392, - 50.1353073 - ], - [ - 8.6718392, - 50.1353073 - ], - [ - 8.6718392, - 50.1353073 - ], - [ - 8.6718392, - 50.1353073 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Karl Holzlehner", - "uid": "16513028", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T14:43:53Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "theme": "waste_basket", - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 123657156 - } - }, - { - "id": 123657071, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6719519, - 50.1343686 - ], - [ - 8.6719519, - 50.1343686 - ], - [ - 8.6719519, - 50.1343686 - ], - [ - 8.6719519, - 50.1343686 - ], - [ - 8.6719519, - 50.1343686 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Karl Holzlehner", - "uid": "16513028", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T14:42:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "create": 1, - "locale": "de", - "imagery": "HDM_HOT" - }, - "id": 123657071 - } - }, - { - "id": 123657021, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6716568, - 50.133729 - ], - [ - 8.6721987, - 50.133729 - ], - [ - 8.6721987, - 50.1363113 - ], - [ - 8.6716568, - 50.1363113 - ], - [ - 8.6716568, - 50.133729 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Karl Holzlehner", - "uid": "16513028", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #parkings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T14:40:32Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "parking" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 0.0000013993483700001, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/parkings.html", - "theme": "parkings", - "create": 3, - "locale": "de", - "imagery": "osm" - }, - "id": 123657021 - } - }, - { - "id": 123656944, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Karl Holzlehner", - "uid": "16513028", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T14:38:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/kerbs_and_crossings.html", - "theme": "kerbs_and_crossings", - "answer": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 123656944 - } - }, - { - "id": 123656265, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3856934, - 51.3450867 - ], - [ - 3.3856934, - 51.3450867 - ], - [ - 3.3856934, - 51.3450867 - ], - [ - 3.3856934, - 51.3450867 - ], - [ - 3.3856934, - 51.3450867 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T14:22:14Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "picnic_table" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 123656265 - } - }, - { - "id": 123654507, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2730656, - 53.3025066 - ], - [ - 6.273528, - 53.3025066 - ], - [ - 6.273528, - 53.3027777 - ], - [ - 6.2730656, - 53.3027777 - ], - [ - 6.2730656, - 53.3025066 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T13:39:04Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 10, - "modify": 5, - "delete": 0, - "area": 1.25356639999568e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 18, - "create": 10, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "change_over_5000m": 10, - "change_within_25m": 10, - "change_within_50m": 8 - }, - "id": 123654507 - } - }, - { - "id": 123653060, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3816379, - 51.3054761 - ], - [ - 3.3816379, - 51.3054761 - ], - [ - 3.3816379, - 51.3054761 - ], - [ - 3.3816379, - 51.3054761 - ], - [ - 3.3816379, - 51.3054761 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T13:10:13Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 123653060 - } - }, - { - "id": 123653017, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.0107959, - 45.83009 - ], - [ - 12.0108599, - 45.83009 - ], - [ - 12.0108599, - 45.8301341 - ], - [ - 12.0107959, - 45.8301341 - ], - [ - 12.0107959, - 45.83009 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "n4bC", - "uid": "1743828", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T13:09:06Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "amenity": [ - "toilets" - ], - "building": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 2.82240000024385e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 1, - "locale": "it", - "imagery": "osm" - }, - "id": 123653017 - } - }, - { - "id": 123652668, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.0116387, - 45.8375353 - ], - [ - 12.0126929, - 45.8375353 - ], - [ - 12.0126929, - 45.8385192 - ], - [ - 12.0116387, - 45.8385192 - ], - [ - 12.0116387, - 45.8375353 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "n4bC", - "uid": "1743828", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T13:01:07Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "recycling" - ], - "website": [ - "https://contarina.it/cittadino/raccolta-differenziata/ecocentro" - ], - "operator": [ - "Contarina S.p.A." - ], - "opening_hours": [ - "Mo 15:30-18:30; We 09:00-12:00; Sa 09:00-12:00, 15:30-18:30;PH off;" - ], - "recycling:glass": [ - "yes" - ], - "recycling:paper": [ - "yes" - ], - "recycling:clothes": [ - "yes" - ], - "recycling:plastic": [ - "yes" - ], - "recycling:batteries": [ - "yes" - ], - "recycling:engine_oil": [ - "yes" - ], - "recycling:cooking_oil": [ - "yes" - ], - "recycling:green_waste": [ - "yes" - ], - "recycling:scrap_metal": [ - "yes" - ], - "recycling:small_appliances": [ - "yes" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00000103722738000014, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 5, - "locale": "it", - "imagery": "osm" - }, - "id": 123652668 - } - }, - { - "id": 123651552, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8628806, - 51.2072346 - ], - [ - 2.8664258, - 51.2072346 - ], - [ - 2.8664258, - 51.2093863 - ], - [ - 2.8628806, - 51.2093863 - ], - [ - 2.8628806, - 51.2072346 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "AnneliesOosgis", - "uid": "9397254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T12:33:42Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 5, - "modify": 2, - "delete": 0, - "area": 0.00000762820683999604, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 14, - "create": 1, - "import": 4, - "locale": "nl", - "imagery": "AGIV", - "move:node/7816740990": "improve_accuracy", - "import:node/9889655810": "source: https://osm.org/note/3262236", - "import:node/9889674285": "source: https://osm.org/note/3261591", - "import:node/9889692742": "source: https://osm.org/note/3261387", - "import:node/9889718191": "source: https://osm.org/note/3261756" - }, - "id": 123651552 - } - }, - { - "id": 123651528, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8662432, - 51.2093176 - ], - [ - 2.8662432, - 51.2093176 - ], - [ - 2.8662432, - 51.2093176 - ], - [ - 2.8662432, - 51.2093176 - ], - [ - 2.8662432, - 51.2093176 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "AnneliesOosgis", - "uid": "9397254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T12:33:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 123651528 - } - }, - { - "id": 123651427, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.866173, - 51.2093113 - ], - [ - 2.8662432, - 51.2093113 - ], - [ - 2.8662432, - 51.2093284 - ], - [ - 2.866173, - 51.2093284 - ], - [ - 2.866173, - 51.2093113 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "AnneliesOosgis", - "uid": "9397254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T12:31:00Z", - "reviewed_features": [], - "tag_changes": { - "seats": [ - "4" - ], - "colour": [ - "brown" - ], - "amenity": [ - "bench" - ], - "backrest": [ - "yes" - ], - "material": [ - "wood" - ], - "direction": [ - "153" - ], - "survey:date": [ - "2022-07-15" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 1.20041999956524e-9, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 9, - "locale": "nl", - "imagery": "osm", - "move:node/7816741287": "improve_accuracy" - }, - "id": 123651427 - } - }, - { - "id": 123646769, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4989511, - 50.5558146 - ], - [ - 8.4989511, - 50.5558146 - ], - [ - 8.4989511, - 50.5558146 - ], - [ - 8.4989511, - 50.5558146 - ], - [ - 8.4989511, - 50.5558146 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-7203617945", - "osm_id": 7203617945, - "reasons": [ - 43 - ], - "version": 2, - "primary_tags": { - "amenity": "binoculars" - } - } - ], - "user": "Jules99", - "uid": "16524952", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #binoculars", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T10:37:37Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "yes" - ], - "charge": [ - "1" - ], - "amenity": [ - "binoculars" - ], - "direction": [ - "16" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/binoculars.html", - "theme": "binoculars", - "answer": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 123646769 - } - }, - { - "id": 123644215, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2480663, - 51.2142315 - ], - [ - 3.2480663, - 51.2142315 - ], - [ - 3.2480663, - 51.2142315 - ], - [ - 3.2480663, - 51.2142315 - ], - [ - 3.2480663, - 51.2142315 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T09:38:42Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "copyshop" - ], - "service:print:A0": [ - "yes" - ], - "service:print:A1": [ - "yes" - ], - "service:print:A2": [ - "yes" - ], - "service:print:A3": [ - "yes" - ], - "service:print:A4": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/shops.html", - "theme": "shops", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_500m": 1 - }, - "id": 123644215 - } - }, - { - "id": 123644146, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6703506, - 50.1395089 - ], - [ - 8.6703506, - 50.1395089 - ], - [ - 8.6703506, - 50.1395089 - ], - [ - 8.6703506, - 50.1395089 - ], - [ - 8.6703506, - 50.1395089 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Karl Holzlehner", - "uid": "16513028", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #bicycle_rental", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T09:37:21Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_rental" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bicycle_rental.html", - "theme": "bicycle_rental", - "create": 1, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 123644146 - } - }, - { - "id": 123644098, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6701245, - 50.1398241 - ], - [ - 8.670353, - 50.1398241 - ], - [ - 8.670353, - 50.1398885 - ], - [ - 8.6701245, - 50.1398885 - ], - [ - 8.6701245, - 50.1398241 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Karl Holzlehner", - "uid": "16513028", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T09:36:16Z", - "reviewed_features": [], - "tag_changes": { - "bicycle": [ - "yes" - ], - "highway": [ - "crossing", - "residential" - ], - "maxspeed": [ - "30", - "50" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.47153999998914e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "theme": "maxspeed", - "answer": 1, - "locale": "de", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 123644098 - } - }, - { - "id": 123643833, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6697417, - 50.1390663 - ], - [ - 8.6705451, - 50.1390663 - ], - [ - 8.6705451, - 50.1407793 - ], - [ - 8.6697417, - 50.1407793 - ], - [ - 8.6697417, - 50.1390663 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Karl Holzlehner", - "uid": "16513028", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T09:31:42Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "bicycle": [ - "yes" - ], - "highway": [ - "crossing" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 0.0000013762241999971, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 8, - "create": 2, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_25m": 3, - "change_within_50m": 5 - }, - "id": 123643833 - } - }, - { - "id": 123643753, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6693475, - 50.1414944 - ], - [ - 8.6693475, - 50.1414944 - ], - [ - 8.6693475, - 50.1414944 - ], - [ - 8.6693475, - 50.1414944 - ], - [ - 8.6693475, - 50.1414944 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Karl Holzlehner", - "uid": "16513028", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T09:30:15Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 1, - "create": 1, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 123643753 - } - }, - { - "id": 123643697, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6691262, - 50.1398566 - ], - [ - 8.6702493, - 50.1398566 - ], - [ - 8.6702493, - 50.1418597 - ], - [ - 8.6691262, - 50.1418597 - ], - [ - 8.6691262, - 50.1398566 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Karl Holzlehner", - "uid": "16513028", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T09:29:26Z", - "reviewed_features": [], - "tag_changes": { - "barrier": [ - "kerb" - ], - "bicycle": [ - "yes" - ], - "highway": [ - "crossing" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000224968160999742, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "theme": "kerbs_and_crossings", - "answer": 1, - "create": 1, - "locale": "de", - "imagery": "osm", - "change_within_50m": 1 - }, - "id": 123643697 - } - }, - { - "id": 123643547, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.4933667, - 48.4126507 - ], - [ - 9.4933667, - 48.4126507 - ], - [ - 9.4933667, - 48.4126507 - ], - [ - 9.4933667, - 48.4126507 - ], - [ - 9.4933667, - 48.4126507 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T09:26:24Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "image": [ - "https://i.imgur.com/tHcfgvG.jpg" - ], - "access": [ - "yes" - ], - "amenity": [ - "toilets" - ], - "toilets:position": [ - "seated;urinal" - ], - "toilets:handwashing": [ - "yes" - ], - "toilets:paper_supplied": [ - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 5, - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_within_50m": 6 - }, - "id": 123643547 - } - }, - { - "id": 123643496, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6690691, - 50.1426789 - ], - [ - 8.6690691, - 50.1426789 - ], - [ - 8.6690691, - 50.1426789 - ], - [ - 8.6690691, - 50.1426789 - ], - [ - 8.6690691, - 50.1426789 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Karl Holzlehner", - "uid": "16513028", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T09:25:39Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "recycling" - ], - "location": [ - "overground" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 1, - "locale": "de", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 123643496 - } - }, - { - "id": 123643367, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4651616, - 50.531759 - ], - [ - 8.4711483, - 50.531759 - ], - [ - 8.4711483, - 50.5408711 - ], - [ - 8.4651616, - 50.5408711 - ], - [ - 8.4651616, - 50.531759 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jules99", - "uid": "16524952", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T09:23:09Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "nature_reserve" - ] - }, - "create": 2, - "modify": 3, - "delete": 0, - "area": 0.0000545514090699692, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/nature.html", - "theme": "nature", - "answer": 10, - "create": 2, - "locale": "de", - "imagery": "Hessen-DOP20" - }, - "id": 123643367 - } - }, - { - "id": 123643355, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6687681, - 50.1419018 - ], - [ - 8.6691114, - 50.1419018 - ], - [ - 8.6691114, - 50.1431876 - ], - [ - 8.6687681, - 50.1431876 - ], - [ - 8.6687681, - 50.1419018 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Karl Holzlehner", - "uid": "16513028", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #parkings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T09:23:00Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "parking" - ] - }, - "create": 6, - "modify": 0, - "delete": 0, - "area": 4.41415140000374e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/parkings.html", - "theme": "parkings", - "create": 6, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 6 - }, - "id": 123643355 - } - }, - { - "id": 123643234, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.669445, - 50.1437085 - ], - [ - 8.6698345, - 50.1437085 - ], - [ - 8.6698345, - 50.144064 - ], - [ - 8.669445, - 50.144064 - ], - [ - 8.669445, - 50.1437085 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Karl Holzlehner", - "uid": "16513028", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T09:20:29Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "limited" - ], - "leisure": [ - "pitch" - ], - "surface": [ - "grass" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.38467249999369e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "answer": 2, - "locale": "de", - "imagery": "osm", - "change_within_100m": 2 - }, - "id": 123643234 - } - }, - { - "id": 123642872, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.4919341, - 48.412613 - ], - [ - 9.4936892, - 48.412613 - ], - [ - 9.4936892, - 48.4138377 - ], - [ - 9.4919341, - 48.4138377 - ], - [ - 9.4919341, - 48.412613 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T09:14:30Z", - "reviewed_features": [], - "tag_changes": { - "bus": [ - "no" - ], - "fee": [ - "yes" - ], - "hgv": [ - "no" - ], - "ref": [ - "1055" - ], - "image": [ - "https://i.imgur.com/5EdDUVN.jpg", - "https://i.imgur.com/yyzw4Rs.jpg" - ], - "access": [ - "yes" - ], - "amenity": [ - "charging_station" - ], - "bicycle": [ - "no" - ], - "scooter": [ - "no" - ], - "capacity": [ - "1" - ], - "motorcar": [ - "yes" - ], - "opening_hours": [ - "24/7" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.00000214947097000342, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 6, - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 2, - "change_within_25m": 8 - }, - "id": 123642872 - } - }, - { - "id": 123642665, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.743342, - 53.1618607 - ], - [ - 13.743342, - 53.1618607 - ], - [ - 13.743342, - 53.1618607 - ], - [ - 13.743342, - 53.1618607 - ], - [ - 13.743342, - 53.1618607 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Wolfram Hoppe", - "uid": "16383946", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T09:10:15Z", - "reviewed_features": [], - "tag_changes": { - "fire_hydrant:diameter": [ - "80" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123642665 - } - }, - { - "id": 123642608, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.4908514, - 48.4100013 - ], - [ - 9.493946, - 48.4100013 - ], - [ - 9.493946, - 48.4134178 - ], - [ - 9.4908514, - 48.4134178 - ], - [ - 9.4908514, - 48.4100013 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T09:09:05Z", - "reviewed_features": [], - "tag_changes": { - "brand": [ - "Schwalbe" - ], - "image": [ - "https://i.imgur.com/pqTrS4L.jpg", - "https://i.imgur.com/1bp6C8l.jpg", - "https://i.imgur.com/AT7pYNh.jpg", - "https://i.imgur.com/J1fefGE.jpg" - ], - "charge": [ - "8 €" - ], - "manual": [ - "yes" - ], - "amenity": [ - "charging_station", - "bicycle_repair_station", - "vending_machine" - ], - "manometer": [ - "yes" - ], - "socket:typee": [ - "4", - "1" - ], - "socket:bosch_3pin": [ - "1" - ], - "authentication:app": [ - "no" - ], - "authentication:nfc": [ - "no" - ], - "authentication:none": [ - "yes" - ], - "authentication:debit_card": [ - "no" - ], - "authentication:money_card": [ - "no" - ], - "authentication:phone_call": [ - "no" - ], - "authentication:short_message": [ - "no" - ], - "authentication:membership_card": [ - "no" - ], - "service:bicycle:pump:operational_status": [ - "broken" - ] - }, - "create": 0, - "modify": 8, - "delete": 0, - "area": 0.0000105727008999969, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 8, - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 4, - "change_within_25m": 11, - "change_within_100m": 1 - }, - "id": 123642608 - } - }, - { - "id": 123642565, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.493946, - 48.4134178 - ], - [ - 9.493946, - 48.4134178 - ], - [ - 9.493946, - 48.4134178 - ], - [ - 9.493946, - 48.4134178 - ], - [ - 9.493946, - 48.4134178 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T09:07:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 3 - }, - "id": 123642565 - } - }, - { - "id": 123640144, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3352758, - 52.4905674 - ], - [ - 13.3352758, - 52.4905674 - ], - [ - 13.3352758, - 52.4905674 - ], - [ - 13.3352758, - 52.4905674 - ], - [ - 13.3352758, - 52.4905674 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "matkit", - "uid": "16551713", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T08:10:44Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-02" - ], - "pump:status": [ - "broken" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123640144 - } - }, - { - "id": 123639752, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4891662, - 50.5230978 - ], - [ - 8.5027174, - 50.5230978 - ], - [ - 8.5027174, - 50.5300168 - ], - [ - 8.4891662, - 50.5300168 - ], - [ - 8.4891662, - 50.5230978 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jules99", - "uid": "16524952", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T08:00:04Z", - "reviewed_features": [], - "tag_changes": { - "dog": [ - "leashed" - ], - "access": [ - "yes" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "nature_reserve" - ], - "backrest": [ - "yes" - ], - "boundary": [ - "protected_area" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000937607527999519, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/nature.html", - "theme": "nature", - "answer": 3, - "locale": "de", - "imagery": "Hessen-DOP20" - }, - "id": 123639752 - } - }, - { - "id": 123639606, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5358271, - 50.5531522 - ], - [ - 8.5379031, - 50.5531522 - ], - [ - 8.5379031, - 50.5541372 - ], - [ - 8.5358271, - 50.5541372 - ], - [ - 8.5358271, - 50.5531522 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jules99", - "uid": "16524952", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T07:56:40Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "artwork" - ] - }, - "create": 2, - "modify": 3, - "delete": 0, - "area": 0.0000020448599999989, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 4, - "create": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 123639606 - } - }, - { - "id": 123639530, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.501719, - 50.5519811 - ], - [ - 8.501719, - 50.5519811 - ], - [ - 8.501719, - 50.5519811 - ], - [ - 8.501719, - 50.5519811 - ], - [ - 8.501719, - 50.5519811 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jules99", - "uid": "16524952", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T07:54:56Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ], - "toilets:handwashing": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 123639530 - } - }, - { - "id": 123639459, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4985218, - 50.5519811 - ], - [ - 8.501719, - 50.5519811 - ], - [ - 8.501719, - 50.5549962 - ], - [ - 8.4985218, - 50.5549962 - ], - [ - 8.4985218, - 50.5519811 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jules99", - "uid": "16524952", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T07:52:51Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ], - "building": [ - "yes" - ], - "description": [ - "Eigentlich die Toilette vom Biergarten, kann aber während der Öffnugszeiten kostenfrei von jedem genutzt werden" - ], - "toilets:paper_supplied": [ - "yes" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000963987771999329, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 7, - "locale": "de", - "imagery": "osm" - }, - "id": 123639459 - } - }, - { - "id": 123639444, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6633828, - 53.0449022 - ], - [ - 13.7711711, - 53.0449022 - ], - [ - 13.7711711, - 53.1336558 - ], - [ - 13.6633828, - 53.1336558 - ], - [ - 13.6633828, - 53.0449022 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Mathias Jordan", - "uid": "16545675", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T07:52:38Z", - "reviewed_features": [], - "tag_changes": { - "note": [ - "Wasserentnahme nur mit Tragkraftspritze möglich" - ], - "emergency": [ - "water_tank", - "fire_water_pond" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0.0095665996628796, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123639444 - } - }, - { - "id": 123639442, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4985218, - 50.5549419 - ], - [ - 8.4986106, - 50.5549419 - ], - [ - 8.4986106, - 50.5549962 - ], - [ - 8.4985218, - 50.5549962 - ], - [ - 8.4985218, - 50.5549419 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jules99", - "uid": "16524952", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T07:52:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 4.82183999948355e-9, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 5, - "locale": "de", - "imagery": "osm" - }, - "id": 123639442 - } - }, - { - "id": 123638349, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4597009, - 50.5488264 - ], - [ - 8.4597009, - 50.5488264 - ], - [ - 8.4597009, - 50.5488264 - ], - [ - 8.4597009, - 50.5488264 - ], - [ - 8.4597009, - 50.5488264 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jules99", - "uid": "16524952", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #fritures", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T07:24:40Z", - "reviewed_features": [], - "tag_changes": { - "dog": [ - "leashed" - ], - "amenity": [ - "restaurant" - ], - "diet:halal": [ - "no" - ], - "service:electricity": [ - "ask" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/fritures.html", - "theme": "fritures", - "answer": 3, - "locale": "de", - "imagery": "osm" - }, - "id": 123638349 - } - }, - { - "id": 123638325, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4597009, - 50.5488264 - ], - [ - 8.4597009, - 50.5488264 - ], - [ - 8.4597009, - 50.5488264 - ], - [ - 8.4597009, - 50.5488264 - ], - [ - 8.4597009, - 50.5488264 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jules99", - "uid": "16524952", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #fritures", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T07:24:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/fritures.html", - "theme": "fritures", - "answer": 5, - "locale": "de", - "imagery": "osm" - }, - "id": 123638325 - } - }, - { - "id": 123638251, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4696776, - 50.5505785 - ], - [ - 8.4698675, - 50.5505785 - ], - [ - 8.4698675, - 50.5509139 - ], - [ - 8.4696776, - 50.5509139 - ], - [ - 8.4696776, - 50.5505785 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jules99", - "uid": "16524952", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #fritures", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T07:22:24Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "fast_food" - ], - "building": [ - "retail" - ], - "diet:halal": [ - "no" - ], - "diet:vegan": [ - "limited" - ], - "service:electricity": [ - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 6.369245999907e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/fritures.html", - "theme": "fritures", - "answer": 3, - "locale": "de", - "imagery": "osm" - }, - "id": 123638251 - } - }, - { - "id": 123638242, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4696776, - 50.5505785 - ], - [ - 8.4698675, - 50.5505785 - ], - [ - 8.4698675, - 50.5509139 - ], - [ - 8.4696776, - 50.5509139 - ], - [ - 8.4696776, - 50.5505785 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jules99", - "uid": "16524952", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #fritures", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T07:22:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 6.369245999907e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/fritures.html", - "theme": "fritures", - "answer": 3, - "locale": "de", - "imagery": "osm" - }, - "id": 123638242 - } - }, - { - "id": 123637547, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4847647, - 50.5499594 - ], - [ - 8.5287352, - 50.5499594 - ], - [ - 8.5287352, - 50.5512864 - ], - [ - 8.4847647, - 50.5512864 - ], - [ - 8.4847647, - 50.5499594 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jules99", - "uid": "16524952", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #fritures", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T07:04:28Z", - "reviewed_features": [], - "tag_changes": { - "dog": [ - "leashed" - ], - "amenity": [ - "fast_food" - ], - "building": [ - "yes" - ], - "diet:halal": [ - "no" - ], - "diet:vegan": [ - "limited" - ], - "payment:cards": [ - "yes" - ], - "service:electricity": [ - "no" - ] - }, - "create": 1, - "modify": 5, - "delete": 0, - "area": 0.0000583488535001504, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/fritures.html", - "theme": "fritures", - "answer": 11, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 123637547 - } - }, - { - "id": 123637388, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3961838, - 51.0416652 - ], - [ - 3.3965168, - 51.0416652 - ], - [ - 3.3965168, - 51.0420165 - ], - [ - 3.3961838, - 51.0420165 - ], - [ - 3.3961838, - 51.0416652 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T07:00:42Z", - "reviewed_features": [], - "tag_changes": { - "door": [ - "hinged" - ], - "building": [ - "apartments" - ], - "entrance": [ - "home", - "main" - ], - "automatic_door": [ - "no" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 1.169829000018e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/entrances.html", - "theme": "entrances", - "answer": 6, - "create": 2, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 8 - }, - "id": 123637388 - } - }, - { - "id": 123637196, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4926918, - 50.5307464 - ], - [ - 8.4998882, - 50.5307464 - ], - [ - 8.4998882, - 50.5526028 - ], - [ - 8.4926918, - 50.5526028 - ], - [ - 8.4926918, - 50.5307464 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jules99", - "uid": "16524952", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T06:56:10Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Dominos Pizza", - "Havanna Bar" - ], - "amenity": [ - "restaurant", - "bar", - "pub" - ] - }, - "create": 2, - "modify": 4, - "delete": 0, - "area": 0.000157287396960026, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 13, - "create": 2, - "locale": "de", - "imagery": "Hessen-DOP20" - }, - "id": 123637196 - } - }, - { - "id": 123637085, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3964383, - 51.0416214 - ], - [ - 3.3966732, - 51.0416214 - ], - [ - 3.3966732, - 51.0418035 - ], - [ - 3.3964383, - 51.0418035 - ], - [ - 3.3964383, - 51.0416214 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T06:53:18Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house" - ], - "automatic_door": [ - "no" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 4.27752900008529e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/entrances.html", - "theme": "entrances", - "answer": 4, - "create": 2, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 6 - }, - "id": 123637085 - } - }, - { - "id": 123636917, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4892388, - 50.5350954 - ], - [ - 8.4901683, - 50.5350954 - ], - [ - 8.4901683, - 50.5356118 - ], - [ - 8.4892388, - 50.5356118 - ], - [ - 8.4892388, - 50.5350954 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jules99", - "uid": "16524952", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T06:49:13Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "lit": [ - "no" - ], - "access": [ - "yes" - ], - "leisure": [ - "playground" - ], - "max_age": [ - "12" - ], - "min_age": [ - "3" - ], - "surface": [ - "sand" - ], - "operator": [ - "Gemeinde Nauborn" - ], - "wheelchair": [ - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 4.79993799995333e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 7, - "locale": "de", - "imagery": "osm" - }, - "id": 123636917 - } - }, - { - "id": 123636861, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4904307, - 50.5304062 - ], - [ - 8.4907767, - 50.5304062 - ], - [ - 8.4907767, - 50.5306296 - ], - [ - 8.4904307, - 50.5306296 - ], - [ - 8.4904307, - 50.5304062 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jules99", - "uid": "16524952", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T06:47:25Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "access": [ - "yes" - ], - "leisure": [ - "playground" - ], - "operator": [ - "Gemeinde Nauborn" - ], - "wheelchair": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 7.72963999986631e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 3, - "locale": "de", - "imagery": "osm" - }, - "id": 123636861 - } - }, - { - "id": 123636824, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4904307, - 50.5304062 - ], - [ - 8.5048366, - 50.5304062 - ], - [ - 8.5048366, - 50.5314992 - ], - [ - 8.4904307, - 50.5314992 - ], - [ - 8.4904307, - 50.5304062 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jules99", - "uid": "16524952", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T06:46:22Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "no" - ], - "leisure": [ - "playground" - ], - "max_age": [ - "12" - ], - "surface": [ - "grass" - ], - "operator": [ - "Stadt Wetzlar" - ], - "wheelchair": [ - "no" - ], - "opening_hours": [ - "24/7" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.0000157456486999636, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 7, - "locale": "de", - "imagery": "osm" - }, - "id": 123636824 - } - }, - { - "id": 123636765, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5024524, - 50.5523751 - ], - [ - 8.5030612, - 50.5523751 - ], - [ - 8.5030612, - 50.5528284 - ], - [ - 8.5024524, - 50.5528284 - ], - [ - 8.5024524, - 50.5523751 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Jules99", - "uid": "16524952", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T06:44:50Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "no" - ], - "leisure": [ - "playground" - ], - "max_age": [ - "12" - ], - "surface": [ - "sand" - ], - "operator": [ - "Stadt Wetzlar" - ], - "wheelchair": [ - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 2.75969040002377e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 5, - "locale": "de", - "imagery": "osm" - }, - "id": 123636765 - } - }, - { - "id": 123636516, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3977601, - 51.0420087 - ], - [ - 3.3998307, - 51.0420087 - ], - [ - 3.3998307, - 51.0423731 - ], - [ - 3.3977601, - 51.0423731 - ], - [ - 3.3977601, - 51.0420087 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T06:38:17Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house" - ], - "entrance": [ - "main", - "yes" - ] - }, - "create": 1, - "modify": 4, - "delete": 0, - "area": 7.54526640004576e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/entrances.html", - "theme": "entrances", - "answer": 3, - "create": 2, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 5 - }, - "id": 123636516 - } - }, - { - "id": 123636499, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3996224, - 51.0423223 - ], - [ - 3.3996446, - 51.0423223 - ], - [ - 3.3996446, - 51.04236 - ], - [ - 3.3996224, - 51.04236 - ], - [ - 3.3996224, - 51.0423223 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T06:37:58Z", - "reviewed_features": [], - "tag_changes": { - "door": [ - "hinged" - ], - "automatic_door": [ - "no" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 8.36939999987049e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/entrances.html", - "theme": "entrances", - "answer": 4, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 4 - }, - "id": 123636499 - } - }, - { - "id": 123636231, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3964383, - 51.0409785 - ], - [ - 3.3994715, - 51.0409785 - ], - [ - 3.3994715, - 51.0427597 - ], - [ - 3.3964383, - 51.0427597 - ], - [ - 3.3964383, - 51.0409785 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T06:30:26Z", - "reviewed_features": [], - "tag_changes": { - "door": [ - "hinged" - ], - "amenity": [ - "townhall" - ], - "building": [ - "yes", - "house" - ], - "entrance": [ - "yes" - ], - "automatic_door": [ - "button", - "no" - ] - }, - "create": 4, - "modify": 14, - "delete": 0, - "area": 0.00000540273583998972, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/entrances.html", - "theme": "entrances", - "answer": 17, - "create": 10, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 25 - }, - "id": 123636231 - } - }, - { - "id": 123635991, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.601899, - 53.0764047 - ], - [ - 13.8534272, - 53.0764047 - ], - [ - 13.8534272, - 53.1865209 - ], - [ - 13.601899, - 53.1865209 - ], - [ - 13.601899, - 53.0764047 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Mathias Jordan", - "uid": "16545675", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T06:24:18Z", - "reviewed_features": [], - "tag_changes": { - "note": [ - "derzeit nicht nutzbar !", - "Fehleintrag- kein Löschwasserteich !" - ], - "natural": [ - "water" - ], - "water_tank:volume": [ - "110 m³", - "170 m³", - "170", - "180 m³", - "105 m³", - "150 m³", - "120 m³", - "96 m³", - "144 m³" - ] - }, - "create": 1, - "modify": 10, - "delete": 0, - "area": 0.0276973295768402, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123635991 - } - }, - { - "id": 123635852, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3228664, - 51.0027823 - ], - [ - 3.3971098, - 51.0027823 - ], - [ - 3.3971098, - 51.0414858 - ], - [ - 3.3228664, - 51.0414858 - ], - [ - 3.3228664, - 51.0027823 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T06:21:01Z", - "reviewed_features": [], - "tag_changes": { - "door": [ - "revolving", - "hinged" - ], - "entrance": [ - "main", - "yes" - ], - "automatic_door": [ - "button" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00287347943189976, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/entrances.html", - "theme": "onwheels", - "answer": 6, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 3, - "change_within_100m": 3 - }, - "id": 123635852 - } - }, - { - "id": 123635809, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.379381, - 50.8641872 - ], - [ - 4.379381, - 50.8641872 - ], - [ - 4.379381, - 50.8641872 - ], - [ - 4.379381, - 50.8641872 - ], - [ - 4.379381, - 50.8641872 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "StefDeGreef", - "uid": "1860737", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T06:19:52Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_repair_station" - ], - "manometer": [ - "broken" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "fr", - "imagery": "CartoDB.Voyager" - }, - "id": 123635809 - } - }, - { - "id": 123635795, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.379381, - 50.8641872 - ], - [ - 4.379381, - 50.8641872 - ], - [ - 4.379381, - 50.8641872 - ], - [ - 4.379381, - 50.8641872 - ], - [ - 4.379381, - 50.8641872 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "StefDeGreef", - "uid": "1860737", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T06:19:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 5, - "locale": "fr", - "imagery": "CartoDB.Voyager" - }, - "id": 123635795 - } - }, - { - "id": 123635252, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3213197, - 51.0006295 - ], - [ - 3.3244412, - 51.0006295 - ], - [ - 3.3244412, - 51.0033711 - ], - [ - 3.3213197, - 51.0033711 - ], - [ - 3.3213197, - 51.0006295 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #healthcare", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T06:03:18Z", - "reviewed_features": [], - "tag_changes": { - "email": [ - "info@sintandriestielt.be" - ], - "phone": [ - "+32 51 42 51 11" - ], - "amenity": [ - "hospital" - ], - "website": [ - "https://sintandriestielt.be" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000855790440000012, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/healthcare.html", - "theme": "healthcare", - "answer": 3, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_100m": 3 - }, - "id": 123635252 - } - }, - { - "id": 123632557, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.962014, - 48.8340852 - ], - [ - 12.962014, - 48.8340852 - ], - [ - 12.962014, - 48.8340852 - ], - [ - 12.962014, - 48.8340852 - ], - [ - 12.962014, - 48.8340852 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "APneunzehn74", - "uid": "12180500", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-15T04:24:25Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "toilets" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 1, - "locale": "de", - "imagery": "osm", - "change_within_1000m": 1 - }, - "id": 123632557 - } - }, - { - "id": 123632252, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8040841, - 50.9455809 - ], - [ - 3.8040841, - 50.9455809 - ], - [ - 3.8040841, - 50.9455809 - ], - [ - 3.8040841, - 50.9455809 - ], - [ - 3.8040841, - 50.9455809 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #maps", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-15T04:11:48Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "information" - ], - "map_source": [ - "cycling.waymarkedtrails.org/#route?id=1992867&type=relation&map=18.0/50.9454/3.805", - "https://cycling.waymarkedtrails.org/#route?id=1992867&type=relation&map=18.0/50.9454/3.8051" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maps.html", - "theme": "maps", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 123632252 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-16.json b/Docs/Tools/stats/stats.2022-7-16.json deleted file mode 100644 index d7241ee095..0000000000 --- a/Docs/Tools/stats/stats.2022-7-16.json +++ /dev/null @@ -1,4085 +0,0 @@ -{ - "features": [ - { - "id": 123705233, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.5728311, - 52.4547852 - ], - [ - 13.5741167, - 52.4547852 - ], - [ - 13.5741167, - 52.4706667 - ], - [ - 13.5728311, - 52.4706667 - ], - [ - 13.5728311, - 52.4547852 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Paulus Maximus", - "uid": "16562534", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-16T23:41:46Z", - "reviewed_features": [], - "tag_changes": { - "image:0": [ - "https://i.imgur.com/8VcijHe.jpg" - ], - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-16" - ], - "pump:status": [ - "ok" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.0000204172563999863, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 3, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123705233 - } - }, - { - "id": 123704516, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4128921, - 45.3147409 - ], - [ - 8.4247035, - 45.3147409 - ], - [ - 8.4247035, - 45.325316 - ], - [ - 8.4128921, - 45.325316 - ], - [ - 8.4128921, - 45.3147409 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ivanbranco", - "uid": "11220113", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-16T22:41:31Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "unclassified", - "secondary", - "residential", - "tertiary" - ], - "leisure": [ - "stadium" - ], - "name:etymology:wikidata": [ - "Q3947651", - "Q15042072", - "Q3579", - "Q3882204", - "Q113126008", - "Q42782", - "Q211866", - "Q1064", - "Q1873330", - "Q7322", - "Q21914886", - "Q1056738", - "Q44601", - "Q1403", - "Q15708195", - "Q296276" - ] - }, - "create": 0, - "modify": 34, - "delete": 0, - "area": 0.000124906736140039, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "answer": 41, - "locale": "it", - "imagery": "osm" - }, - "id": 123704516 - } - }, - { - "id": 123703735, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.992898, - 51.6729921 - ], - [ - 8.994659, - 51.6729921 - ], - [ - 8.994659, - 51.6742866 - ], - [ - 8.992898, - 51.6742866 - ], - [ - 8.992898, - 51.6729921 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Amenophis", - "uid": "53104", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T21:56:21Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential" - ], - "maxspeed": [ - "30" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.00000227961450000051, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "theme": "maxspeed", - "answer": 1, - "locale": "de", - "imagery": "osm", - "change_within_1000m": 1 - }, - "id": 123703735 - } - }, - { - "id": 123703623, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9999414, - 51.6764033 - ], - [ - 9.0000283, - 51.6764033 - ], - [ - 9.0000283, - 51.6764491 - ], - [ - 8.9999414, - 51.6764491 - ], - [ - 8.9999414, - 51.6764033 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Amenophis", - "uid": "53104", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-16T21:49:32Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 3.98002000017589e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/", - "move": 2, - "theme": "toilets", - "answer": 2, - "create": 1, - "locale": "de", - "move:node/9892326815": "improve_accuracy" - }, - "id": 123703623 - } - }, - { - "id": 123703031, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.1473812, - 52.3970232 - ], - [ - 14.1711617, - 52.3970232 - ], - [ - 14.1711617, - 52.4210025 - ], - [ - 14.1473812, - 52.4210025 - ], - [ - 14.1473812, - 52.3970232 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FFW OWS", - "uid": "16214974", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T21:19:38Z", - "reviewed_features": [], - "tag_changes": { - "water_tank:volume": [ - "96m³" - ] - }, - "create": 5, - "modify": 4, - "delete": 0, - "area": 0.000570239743650035, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123703031 - } - }, - { - "id": 123703013, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6007898, - 50.9555394 - ], - [ - 3.6007898, - 50.9555394 - ], - [ - 3.6007898, - 50.9555394 - ], - [ - 3.6007898, - 50.9555394 - ], - [ - 3.6007898, - 50.9555394 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-16T21:18:35Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/uBA2ouy.jpg" - ], - "waste": [ - "dog_excrement" - ], - "amenity": [ - "waste_basket" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 123703013 - } - }, - { - "id": 123700917, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6818929, - 50.9548146 - ], - [ - 3.6820547, - 50.9548146 - ], - [ - 3.6820547, - 50.954958 - ], - [ - 3.6818929, - 50.954958 - ], - [ - 3.6818929, - 50.9548146 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-16T19:53:21Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/5hWzUgq.jpg", - "https://i.imgur.com/R1UTwFK.jpg" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 2.32021199998692e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 123700917 - } - }, - { - "id": 123700428, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4138909, - 45.323411 - ], - [ - 8.4331646, - 45.323411 - ], - [ - 8.4331646, - 45.3349645 - ], - [ - 8.4138909, - 45.3349645 - ], - [ - 8.4138909, - 45.323411 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ivanbranco", - "uid": "11220113", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-16T19:35:17Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "school" - ], - "highway": [ - "unclassified", - "pedestrian", - "residential", - "tertiary", - "service" - ], - "landuse": [ - "education" - ], - "tourism": [ - "museum" - ], - "building": [ - "church", - "school" - ], - "name:etymology:wikidata": [ - "Q3649511", - "Q550262", - "Q2851732", - "Q102490", - "Q723652", - "Q721738", - "Q1241969", - "Q3719531", - "Q1395790", - "Q164294", - "Q1297903", - "Q2898897", - "Q113125217; Q113125226", - "Q113125494", - "Q113125237", - "Q113125250", - "Q7317", - "Q225937", - "Q469134", - "Q193660", - "Q1490296", - "Q17631842", - "Q113125204", - "Q166092", - "Q962574", - "Q3742254", - "Q330284", - "Q43440", - "Q41569098", - "Q16025272", - "Q31966", - "Q220", - "Q15708195", - "Q734108", - "Q669314" - ] - }, - "create": 0, - "modify": 86, - "delete": 0, - "area": 0.000222678692949954, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "answer": 109, - "locale": "it", - "imagery": "osm" - }, - "id": 123700428 - } - }, - { - "id": 123697542, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.320981, - 52.452696 - ], - [ - 13.325408, - 52.452696 - ], - [ - 13.325408, - 52.45295 - ], - [ - 13.320981, - 52.45295 - ], - [ - 13.320981, - 52.452696 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "ChSchadler", - "uid": "16563053", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-16T17:45:48Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-16" - ], - "pump:status": [ - "ok", - "broken" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000112445799999196, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 4, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123697542 - } - }, - { - "id": 123697228, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3396281, - 52.546576 - ], - [ - 13.3477554, - 52.546576 - ], - [ - 13.3477554, - 52.546782 - ], - [ - 13.3396281, - 52.546782 - ], - [ - 13.3396281, - 52.546576 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "wtRocks", - "uid": "16563010", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-16T17:34:28Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-16", - "2022-05-23", - "2020" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000167422379998858, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123697228 - } - }, - { - "id": 123696251, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.7645097, - 49.8151805 - ], - [ - 5.7645097, - 49.8151805 - ], - [ - 5.7645097, - 49.8151805 - ], - [ - 5.7645097, - 49.8151805 - ], - [ - 5.7645097, - 49.8151805 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "ClarissaWAM", - "uid": "13745921", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T17:02:27Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "public_bookcase" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases", - "theme": "bookcases", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 123696251 - } - }, - { - "id": 123695377, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.4799761, - 48.3601967 - ], - [ - 9.4799761, - 48.3601967 - ], - [ - 9.4799761, - 48.3601967 - ], - [ - 9.4799761, - 48.3601967 - ], - [ - 9.4799761, - 48.3601967 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T16:34:30Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/U9AfySA.jpg" - ], - "amenity": [ - "toilets" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_within_500m": 1 - }, - "id": 123695377 - } - }, - { - "id": 123695355, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.4799761, - 48.3601967 - ], - [ - 9.4799761, - 48.3601967 - ], - [ - 9.4799761, - 48.3601967 - ], - [ - 9.4799761, - 48.3601967 - ], - [ - 9.4799761, - 48.3601967 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T16:33:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 5, - "locale": "de", - "imagery": "osm", - "change_within_500m": 5 - }, - "id": 123695355 - } - }, - { - "id": 123694466, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.2833372, - 51.3813464 - ], - [ - -0.2833372, - 51.3813464 - ], - [ - -0.2833372, - 51.3813464 - ], - [ - -0.2833372, - 51.3813464 - ], - [ - -0.2833372, - 51.3813464 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "hocu", - "uid": "374342", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T16:00:48Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/uw4pVt5.jpg" - ], - "bottle": [ - "yes" - ], - "amenity": [ - "drinking_water" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 123694466 - } - }, - { - "id": 123692891, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5705629, - 50.7559247 - ], - [ - 3.7334713, - 50.7559247 - ], - [ - 3.7334713, - 50.9955201 - ], - [ - 3.5705629, - 50.9955201 - ], - [ - 3.5705629, - 50.7559247 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-16T15:08:01Z", - "reviewed_features": [], - "tag_changes": { - "note": [ - "originally mapped as picnic_site as a node, so there's a small chance there is more than one table around" - ], - "image": [ - "https://i.imgur.com/gpYJYRd.jpg", - "https://i.imgur.com/eSoOR3O.jpg", - "https://i.imgur.com/jteeXFP.jpg" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ], - "material": [ - "wood" - ] - }, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.0390321032613598, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 7 - }, - "id": 123692891 - } - }, - { - "id": 123692702, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.501533, - 48.334189 - ], - [ - 9.5017576, - 48.334189 - ], - [ - 9.5017576, - 48.3343149 - ], - [ - 9.501533, - 48.3343149 - ], - [ - 9.501533, - 48.334189 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T15:02:21Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/9LKGvO5.jpg" - ], - "amenity": [ - "fire_station" - ], - "building": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 2.8277140000007e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "locale": "de", - "imagery": "HDM_HOT", - "add-image": 1, - "change_within_5000m": 1 - }, - "id": 123692702 - } - }, - { - "id": 123692384, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3494282, - 52.5433557 - ], - [ - 13.3494282, - 52.5433557 - ], - [ - 13.3494282, - 52.5433557 - ], - [ - 13.3494282, - 52.5433557 - ], - [ - 13.3494282, - 52.5433557 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "wtRocks", - "uid": "16563010", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-16T14:53:35Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-16", - "2020" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 1, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123692384 - } - }, - { - "id": 123692313, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.8377016, - 48.6183345 - ], - [ - 9.8385239, - 48.6183345 - ], - [ - 9.8385239, - 48.618696 - ], - [ - 9.8377016, - 48.618696 - ], - [ - 9.8377016, - 48.6183345 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "SanSim", - "uid": "2481180", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T14:51:29Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "no" - ], - "leisure": [ - "playground" - ], - "surface": [ - "sand" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 2.97261449997143e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 3, - "locale": "en", - "imagery": "osm", - "change_within_25m": 2, - "change_within_50m": 1 - }, - "id": 123692313 - } - }, - { - "id": 123692290, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.4804874, - 48.3597746 - ], - [ - 9.4933764, - 48.3597746 - ], - [ - 9.4933764, - 48.4335803 - ], - [ - 9.4804874, - 48.4335803 - ], - [ - 9.4804874, - 48.3597746 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T14:50:34Z", - "reviewed_features": [], - "tag_changes": { - "books": [ - "adults" - ], - "image": [ - "https://i.imgur.com/duS62He.jpg", - "https://i.imgur.com/7Hlt67z.jpg" - ], - "amenity": [ - "public_bookcase" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.000951281667300108, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 1, - "locale": "de", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 123692290 - } - }, - { - "id": 123691995, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.5728311, - 52.4524625 - ], - [ - 13.5832241, - 52.4524625 - ], - [ - 13.5832241, - 52.4706667 - ], - [ - 13.5728311, - 52.4706667 - ], - [ - 13.5728311, - 52.4524625 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Paulus Maximus", - "uid": "16562534", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-16T14:41:59Z", - "reviewed_features": [], - "tag_changes": { - "image:0": [ - "https://i.imgur.com/8VcijHe.jpg", - "https://i.imgur.com/yWTeyjf.jpg" - ], - "image:1": [ - "https://i.imgur.com/bAqb4Ts.jpg" - ], - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-16", - "2018-07-14" - ], - "pump:status": [ - "ok", - "broken" - ] - }, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.000189196250600005, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 10, - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 3 - }, - "id": 123691995 - } - }, - { - "id": 123691874, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.4812102, - 48.359132 - ], - [ - 9.4812102, - 48.359132 - ], - [ - 9.4812102, - 48.359132 - ], - [ - 9.4812102, - 48.359132 - ], - [ - 9.4812102, - 48.359132 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #maps", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T14:37:26Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/Hnhe0lo.jpg" - ], - "tourism": [ - "information" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maps.html", - "theme": "maps", - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 123691874 - } - }, - { - "id": 123690012, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.2928969, - 52.4512699 - ], - [ - 13.3167194, - 52.4512699 - ], - [ - 13.3167194, - 52.4633525 - ], - [ - 13.2928969, - 52.4633525 - ], - [ - 13.2928969, - 52.4512699 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "ChSchadler", - "uid": "16563053", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-16T13:38:46Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-16", - "2018-08-28" - ], - "pump:status": [ - "ok", - "broken", - "funktioniert (<30x pumpen), allerdings geringe Hubwirkung, von Pflanzen zugewachsen", - "<10x pumpen" - ] - }, - "create": 0, - "modify": 12, - "delete": 0, - "area": 0.000287837738499981, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 12, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123690012 - } - }, - { - "id": 123689830, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3014904, - 52.459499 - ], - [ - 13.3167194, - 52.459499 - ], - [ - 13.3167194, - 52.4654288 - ], - [ - 13.3014904, - 52.4654288 - ], - [ - 13.3014904, - 52.459499 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "ChSchadler", - "uid": "16563053", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-16T13:32:13Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-16", - "2022-07-15" - ], - "pump:status": [ - "ok", - "broken", - "funktioniert, aber geringe Hubleistung", - "<10x pumpen" - ] - }, - "create": 0, - "modify": 9, - "delete": 0, - "area": 0.0000903049241999524, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 12, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123689830 - } - }, - { - "id": 123689131, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3366138, - 52.5445349 - ], - [ - 13.34861, - 52.5445349 - ], - [ - 13.34861, - 52.5484206 - ], - [ - 13.3366138, - 52.5484206 - ], - [ - 13.3366138, - 52.5445349 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "wtRocks", - "uid": "16563010", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-16T13:06:57Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-16", - "2020" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000466136343399764, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123689131 - } - }, - { - "id": 123688358, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "eMerzh", - "uid": "15399", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T12:42:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "fr", - "imagery": "CartoDB.Voyager", - "change_within_5000m": 1 - }, - "id": 123688358 - } - }, - { - "id": 123688338, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3648461, - 50.6446228 - ], - [ - 4.3648461, - 50.6446228 - ], - [ - 4.3648461, - 50.6446228 - ], - [ - 4.3648461, - 50.6446228 - ], - [ - 4.3648461, - 50.6446228 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "eMerzh", - "uid": "15399", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T12:41:31Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "bicycle_repair_station" - ], - "operator": [ - "Commune de Braine-l'Alleud" - ], - "service:bicycle:stand": [ - "yes" - ], - "service:bicycle:tools": [ - "yes" - ], - "service:bicycle:chain_tool": [ - "no" - ], - "service:bicycle:pump:operational_status": [ - "operational" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 6, - "locale": "fr", - "imagery": "CartoDB.Voyager", - "change_within_5000m": 6 - }, - "id": 123688338 - } - }, - { - "id": 123688325, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "eMerzh", - "uid": "15399", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T12:41:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "fr", - "imagery": "CartoDB.Voyager", - "change_within_1000m": 1 - }, - "id": 123688325 - } - }, - { - "id": 123688323, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "eMerzh", - "uid": "15399", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T12:41:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "fr", - "imagery": "CartoDB.Voyager", - "change_within_1000m": 1 - }, - "id": 123688323 - } - }, - { - "id": 123688313, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3866363, - 50.6782283 - ], - [ - 4.3866363, - 50.6782283 - ], - [ - 4.3866363, - 50.6782283 - ], - [ - 4.3866363, - 50.6782283 - ], - [ - 4.3866363, - 50.6782283 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "eMerzh", - "uid": "15399", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T12:40:39Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_repair_station" - ], - "operator": [ - "Commune de Braine-l'Alleud" - ], - "service:bicycle:stand": [ - "yes" - ], - "service:bicycle:chain_tool": [ - "no" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 3, - "locale": "fr", - "imagery": "CartoDB.Voyager", - "change_within_1000m": 3 - }, - "id": 123688313 - } - }, - { - "id": 123688310, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "eMerzh", - "uid": "15399", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T12:40:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "fr", - "imagery": "CartoDB.Voyager", - "change_within_1000m": 1 - }, - "id": 123688310 - } - }, - { - "id": 123688299, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3713821, - 50.6782283 - ], - [ - 4.3866363, - 50.6782283 - ], - [ - 4.3866363, - 50.6835178 - ], - [ - 4.3713821, - 50.6835178 - ], - [ - 4.3713821, - 50.6782283 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "eMerzh", - "uid": "15399", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T12:40:18Z", - "reviewed_features": [], - "tag_changes": { - "manual": [ - "yes" - ], - "amenity": [ - "bicycle_repair_station" - ], - "manometer": [ - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000806870908999461, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 3, - "locale": "fr", - "imagery": "CartoDB.Voyager", - "change_within_500m": 2, - "change_within_1000m": 1 - }, - "id": 123688299 - } - }, - { - "id": 123688110, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3713821, - 50.6835178 - ], - [ - 4.3762446, - 50.6835178 - ], - [ - 4.3762446, - 50.6844698 - ], - [ - 4.3713821, - 50.6844698 - ], - [ - 4.3713821, - 50.6835178 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "eMerzh", - "uid": "15399", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T12:32:56Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "manual": [ - "yes" - ], - "valves": [ - "sclaverand;dunlop;schrader" - ], - "amenity": [ - "bicycle_repair_station" - ], - "operator": [ - "Commune de Braine-l'Alleud" - ], - "manometer": [ - "yes" - ], - "service:bicycle:stand": [ - "yes" - ], - "service:bicycle:tools": [ - "yes" - ], - "service:bicycle:chain_tool": [ - "no" - ], - "service:bicycle:pump:operational_status": [ - "operational" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.00000462910000002492, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 15, - "locale": "fr", - "imagery": "CartoDB.Voyager", - "change_within_500m": 15 - }, - "id": 123688110 - } - }, - { - "id": 123687601, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.5983379, - 52.4512481 - ], - [ - 13.6011158, - 52.4512481 - ], - [ - 13.6011158, - 52.4532144 - ], - [ - 13.5983379, - 52.4532144 - ], - [ - 13.5983379, - 52.4512481 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Paulus Maximus", - "uid": "16562534", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-16T12:14:01Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-16" - ], - "pump:status": [ - "ok", - "broken" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000546218476999817, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 4, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123687601 - } - }, - { - "id": 123687406, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.598734, - 52.45106 - ], - [ - 13.598734, - 52.45106 - ], - [ - 13.598734, - 52.45106 - ], - [ - 13.598734, - 52.45106 - ], - [ - 13.598734, - 52.45106 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Paulus Maximus", - "uid": "16562534", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-16T12:05:21Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 5, - "create": 1, - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 123687406 - } - }, - { - "id": 123686322, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7106323, - 51.0337654 - ], - [ - 3.7106323, - 51.0337654 - ], - [ - 3.7106323, - 51.0337654 - ], - [ - 3.7106323, - 51.0337654 - ], - [ - 3.7106323, - 51.0337654 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T11:24:22Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "public_bookcase" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/bookcases.html", - "theme": "bookcases", - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 123686322 - } - }, - { - "id": 123685357, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.948541, - 48.8283068 - ], - [ - 12.9527034, - 48.8283068 - ], - [ - 12.9527034, - 48.8295964 - ], - [ - 12.948541, - 48.8295964 - ], - [ - 12.948541, - 48.8283068 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "APneunzehn74", - "uid": "12180500", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T10:51:34Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/v9czH68.jpg", - "https://i.imgur.com/HxbltPC.jpg" - ], - "waste": [ - "trash" - ], - "amenity": [ - "waste_basket" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000536783103999938, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 1, - "locale": "de", - "imagery": "osm", - "add-image": 2, - "change_within_5000m": 3 - }, - "id": 123685357 - } - }, - { - "id": 123685224, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.213656, - 51.2095519 - ], - [ - 3.213656, - 51.2095519 - ], - [ - 3.213656, - 51.2095519 - ], - [ - 3.213656, - 51.2095519 - ], - [ - 3.213656, - 51.2095519 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #rainbow_crossings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T10:46:19Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/h1uEjFM.jpg" - ], - "highway": [ - "crossing" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/rainbow_crossings.html", - "theme": "rainbow_crossings", - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_100m": 1 - }, - "id": 123685224 - } - }, - { - "id": 123683492, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7471712, - 53.1687541 - ], - [ - 13.8265709, - 53.1687541 - ], - [ - 13.8265709, - 53.1742049 - ], - [ - 13.7471712, - 53.1742049 - ], - [ - 13.7471712, - 53.1687541 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Mathias Jordan", - "uid": "16545675", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-16T09:49:23Z", - "reviewed_features": [], - "tag_changes": { - "note": [ - "Tragkraftspritze erforderlich" - ], - "image": [ - "https://i.imgur.com/4robX7v.jpg", - "https://i.imgur.com/RKBF46i.jpg" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.000432791884759873, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123683492 - } - }, - { - "id": 123679307, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.3626227, - 45.8033054 - ], - [ - 8.7834663, - 45.8033054 - ], - [ - 8.7834663, - 46.298054 - ], - [ - 8.3626227, - 46.298054 - ], - [ - 8.3626227, - 45.8033054 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Enrico Rossi", - "uid": "53188", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-16T08:07:52Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "yes" - ], - "toilets": [ - "no" - ], - "tourism": [ - "caravan_site" - ], - "website": [ - "https://www.alestecamping.it/" - ], - "internet_access": [ - "no" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.208211781918961, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/campersite.html", - "theme": "campersite", - "answer": 4, - "locale": "it", - "imagery": "osm", - "change_over_5000m": 2 - }, - "id": 123679307 - } - }, - { - "id": 123679175, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8901606, - 51.1670844 - ], - [ - 4.8959274, - 51.1670844 - ], - [ - 4.8959274, - 51.1745264 - ], - [ - 4.8901606, - 51.1745264 - ], - [ - 4.8901606, - 51.1670844 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T08:03:21Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes" - ], - "source:geometry:ref": [ - "Gbg/3948312", - "Gbg/6220688", - "Gbg/6427330" - ], - "source:geometry:date": [ - "2014-05-02", - "2018-02-26", - "2018-10-24" - ] - }, - "create": 29, - "modify": 15, - "delete": 0, - "area": 0.0000429165255999853, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 12, - "theme": "grb", - "import": 3, - "locale": "nl", - "imagery": "AGIV", - "conflation": 6 - }, - "id": 123679175 - } - }, - { - "id": 123678483, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8904247, - 51.1745987 - ], - [ - 4.8980733, - 51.1745987 - ], - [ - 4.8980733, - 51.178917 - ], - [ - 4.8904247, - 51.178917 - ], - [ - 4.8904247, - 51.1745987 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T07:38:21Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes", - "house" - ], - "addr:housenumber": [ - "87", - "47" - ], - "source:geometry:ref": [ - "Gbg/3951154", - "Gbg/3948335", - "Gbg/6508555", - "Gbg/3951181" - ], - "source:geometry:date": [ - "2013-02-20", - "2018-10-24", - "2012-11-15" - ] - }, - "create": 70, - "modify": 29, - "delete": 2, - "area": 0.0000330289493800121, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 26, - "theme": "grb", - "answer": 1, - "delete": 2, - "import": 6, - "locale": "nl", - "imagery": "AGIV", - "conflation": 8, - "change_over_5000m": 3 - }, - "id": 123678483 - } - }, - { - "id": 123678424, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8983717, - 51.1784901 - ], - [ - 4.8987046, - 51.1784901 - ], - [ - 4.8987046, - 51.1787187 - ], - [ - 4.8983717, - 51.1787187 - ], - [ - 4.8983717, - 51.1784901 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T07:36:54Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house" - ], - "source:geometry:ref": [ - "Gbg/3948357" - ], - "source:geometry:date": [ - "2013-02-20" - ] - }, - "create": 10, - "modify": 7, - "delete": 0, - "area": 7.61009399999522e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 6, - "theme": "grb", - "locale": "nl", - "imagery": "AGIV", - "conflation": 2 - }, - "id": 123678424 - } - }, - { - "id": 123678413, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8981058, - 51.1778025 - ], - [ - 4.8992891, - 51.1778025 - ], - [ - 4.8992891, - 51.1782242 - ], - [ - 4.8981058, - 51.1782242 - ], - [ - 4.8981058, - 51.1778025 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T07:36:25Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house" - ], - "source:geometry:ref": [ - "Gbg/3948413", - "Gbg/3948434" - ], - "source:geometry:date": [ - "2013-02-20", - "2017-03-01" - ] - }, - "create": 17, - "modify": 10, - "delete": 0, - "area": 4.98997610004739e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 8, - "theme": "grb", - "locale": "nl", - "imagery": "AGIV", - "conflation": 4 - }, - "id": 123678413 - } - }, - { - "id": 123678234, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8986852, - 51.1752148 - ], - [ - 4.9027244, - 51.1752148 - ], - [ - 4.9027244, - 51.1796332 - ], - [ - 4.8986852, - 51.1796332 - ], - [ - 4.8986852, - 51.1752148 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T07:30:01Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "roof", - "yes" - ], - "source:geometry:ref": [ - "Gbg/3948557", - "Gbg/3948031", - "Gbg/4928262", - "Gbg/5862403", - "Gbg/4928326", - "Gbg/3948554", - "Gbg/3948108", - "Gbg/3948107", - "Gbg/5862518", - "Gbg/3948110", - "Gbg/3948111", - "Gbg/3948558", - "Gbg/3948560", - "Gbg/3948399", - "Gbg/3948400", - "Gbg/3948378", - "Gbg/3948537", - "Gbg/3947848" - ], - "source:geometry:date": [ - "2012-11-15", - "2015-11-24", - "2017-03-01", - "2014-12-04", - "2013-02-20", - "2021-10-25", - "2020-03-16" - ] - }, - "create": 116, - "modify": 113, - "delete": 0, - "area": 0.0000178468012799959, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 97, - "theme": "grb", - "import": 9, - "locale": "nl", - "imagery": "AGIV", - "conflation": 36, - "change_over_5000m": 9 - }, - "id": 123678234 - } - }, - { - "id": 123678224, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9021193, - 51.1778979 - ], - [ - 4.9023911, - 51.1778979 - ], - [ - 4.9023911, - 51.1780085 - ], - [ - 4.9021193, - 51.1780085 - ], - [ - 4.9021193, - 51.1778979 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T07:29:43Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house" - ], - "source:geometry:ref": [ - "Gbg/3948109" - ], - "source:geometry:date": [ - "2013-02-20" - ] - }, - "create": 6, - "modify": 5, - "delete": 0, - "area": 3.00610799998254e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 4, - "theme": "grb", - "locale": "nl", - "imagery": "AGIV", - "conflation": 2 - }, - "id": 123678224 - } - }, - { - "id": 123678216, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9021894, - 51.1777193 - ], - [ - 4.9024621, - 51.1777193 - ], - [ - 4.9024621, - 51.1778337 - ], - [ - 4.9021894, - 51.1778337 - ], - [ - 4.9021894, - 51.1777193 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T07:29:29Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house" - ], - "source:geometry:ref": [ - "Gbg/3948102" - ], - "source:geometry:date": [ - "2015-11-24" - ] - }, - "create": 2, - "modify": 5, - "delete": 0, - "area": 3.11968800002932e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 4, - "theme": "grb", - "locale": "nl", - "imagery": "AGIV", - "conflation": 2 - }, - "id": 123678216 - } - }, - { - "id": 123678204, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9022195, - 51.1769164 - ], - [ - 4.9027329, - 51.1769164 - ], - [ - 4.9027329, - 51.1775875 - ], - [ - 4.9022195, - 51.1775875 - ], - [ - 4.9022195, - 51.1769164 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T07:28:55Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house" - ], - "source:geometry:ref": [ - "Gbg/3948054", - "Gbg/3948053", - "Gbg/3948055", - "Gbg/3948056" - ], - "source:geometry:date": [ - "2018-10-24", - "2015-11-24", - "2013-02-20", - "2014-12-04" - ] - }, - "create": 15, - "modify": 28, - "delete": 0, - "area": 3.44542739999047e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 24, - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "AGIV", - "conflation": 8, - "change_over_5000m": 1 - }, - "id": 123678204 - } - }, - { - "id": 123677869, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8995658, - 51.1750843 - ], - [ - 4.9025739, - 51.1750843 - ], - [ - 4.9025739, - 51.1771931 - ], - [ - 4.8995658, - 51.1771931 - ], - [ - 4.8995658, - 51.1750843 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T07:14:47Z", - "reviewed_features": [], - "tag_changes": { - "landuse": [ - "residential", - "forest" - ], - "building": [ - "house", - "yes", - "roof" - ], - "addr:street": [ - "Lichtaartseweg" - ], - "addr:housenumber": [ - "9" - ], - "source:geometry:ref": [ - "Gbg/3948016", - "Gbg/3948019", - "Gbg/3948021", - "Gbg/3948051", - "Gbg/3948398", - "Gbg/3948393", - "Gbg/3948432", - "Gbg/3948394", - "Gbg/3948433", - "Gbg/3948395", - "Gbg/7019771", - "Gbg/3948381", - "Gbg/3948115", - "Gbg/3948392", - "Gbg/3948116", - "Gbg/3948117", - "Gbg/3948397", - "Gbg/3948114", - "Gbg/3948015", - "Gbg/3948017", - "Gbg/3948018", - "Gbg/5403581", - "Gbg/5862269" - ], - "source:geometry:date": [ - "2012-11-15", - "2018-10-24", - "2013-02-20", - "2021-10-25", - "2014-05-02", - "2015-11-24", - "2017-03-01" - ] - }, - "create": 273, - "modify": 146, - "delete": 0, - "area": 0.00000634348127998415, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 127, - "theme": "grb", - "answer": 1, - "import": 12, - "locale": "nl", - "imagery": "AGIV", - "conflation": 46 - }, - "id": 123677869 - } - }, - { - "id": 123676767, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8983425, - 51.1721806 - ], - [ - 4.9028566, - 51.1721806 - ], - [ - 4.9028566, - 51.1770687 - ], - [ - 4.8983425, - 51.1770687 - ], - [ - 4.8983425, - 51.1721806 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T06:28:58Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "pub" - ], - "building": [ - "house", - "yes", - "roof" - ], - "addr:housenumber": [ - "27;27A", - "27" - ], - "source:geometry:ref": [ - "Gbg/3948022", - "Gbg/6910823", - "Gbg/3948047", - "Gbg/3948048", - "Gbg/3948049", - "Gbg/3948050", - "Gbg/4011925", - "Gbg/4011924", - "Gbg/4012155", - "Gbg/4011923", - "Gbg/4011922", - "Gbg/4011921", - "Gbg/4012162", - "Gbg/4011920", - "Gbg/4012161", - "Gbg/4012160", - "Gbg/4012153", - "Gbg/4012149", - "Gbg/4012150", - "Gbg/4012151", - "Gbg/4012157", - "Gbg/4012163", - "Gbg/5862547", - "Gbg/4012164", - "Gbg/4012147", - "Gbg/4012165", - "Gbg/4012148", - "Gbg/4928207", - "Gbg/4011215", - "Gbg/4011217", - "Gbg/3948121", - "Gbg/3948122", - "Gbg/4678954", - "Gbg/4012158", - "Gbg/4012159", - "Gbg/6057090", - "Gbg/6507908", - "Gbg/3948131" - ], - "source:geometry:date": [ - "2018-10-24", - "2021-10-25", - "2012-11-15", - "2013-02-20", - "2015-11-24", - "2013-01-07", - "2017-03-01", - "2014-12-04", - "2021-09-10", - "2017-10-16" - ] - }, - "create": 240, - "modify": 222, - "delete": 6, - "area": 0.000022065372210009, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 187, - "theme": "grb", - "answer": 1, - "delete": 6, - "import": 27, - "locale": "nl", - "imagery": "AGIV", - "conflation": 76, - "change_over_5000m": 18 - }, - "id": 123676767 - } - }, - { - "id": 123676751, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8998183, - 51.1727238 - ], - [ - 4.9003626, - 51.1727238 - ], - [ - 4.9003626, - 51.1730773 - ], - [ - 4.8998183, - 51.1730773 - ], - [ - 4.8998183, - 51.1727238 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T06:28:18Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "roof", - "yes" - ], - "source:geometry:ref": [ - "Gbg/4012154" - ], - "source:geometry:date": [ - "2013-02-20" - ] - }, - "create": 23, - "modify": 5, - "delete": 0, - "area": 1.9241005000169e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 4, - "theme": "grb", - "import": 4, - "locale": "nl", - "imagery": "AGIV", - "conflation": 2, - "change_over_5000m": 4 - }, - "id": 123676751 - } - }, - { - "id": 123676721, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9003058, - 51.1724306 - ], - [ - 4.9014885, - 51.1724306 - ], - [ - 4.9014885, - 51.173164 - ], - [ - 4.9003058, - 51.173164 - ], - [ - 4.9003058, - 51.1724306 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-16T06:26:48Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "roof", - "yes" - ], - "source:geometry:ref": [ - "Gbg/5862505", - "Gbg/4011928", - "Gbg/4011194", - "Gbg/4012152", - "Gbg/4011202", - "Gbg/4011196", - "Gbg/4011195" - ], - "source:geometry:date": [ - "2017-03-01", - "2013-01-07", - "2013-02-20" - ] - }, - "create": 102, - "modify": 33, - "delete": 0, - "area": 8.6739218000185e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 28, - "theme": "grb", - "import": 8, - "locale": "nl", - "imagery": "AGIV", - "conflation": 14, - "change_over_5000m": 8 - }, - "id": 123676721 - } - }, - { - "id": 123672585, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5059007, - 50.6135052 - ], - [ - 4.5059007, - 50.6135052 - ], - [ - 4.5059007, - 50.6135052 - ], - [ - 4.5059007, - 50.6135052 - ], - [ - 4.5059007, - 50.6135052 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "eMerzh", - "uid": "15399", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-16T00:28:50Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_repair_station" - ], - "manometer": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "fr", - "imagery": "CartoDB.Voyager" - }, - "id": 123672585 - } - }, - { - "id": 123672576, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5059007, - 50.6135052 - ], - [ - 4.5059007, - 50.6135052 - ], - [ - 4.5059007, - 50.6135052 - ], - [ - 4.5059007, - 50.6135052 - ], - [ - 4.5059007, - 50.6135052 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "eMerzh", - "uid": "15399", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-16T00:28:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 5, - "locale": "fr", - "imagery": "CartoDB.Voyager" - }, - "id": 123672576 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-17.json b/Docs/Tools/stats/stats.2022-7-17.json deleted file mode 100644 index 13bc39d72b..0000000000 --- a/Docs/Tools/stats/stats.2022-7-17.json +++ /dev/null @@ -1,2293 +0,0 @@ -{ - "features": [ - { - "id": 123738095, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "degutant", - "uid": "4974073", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-17T23:49:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123738095 - } - }, - { - "id": 123737100, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.9126061, - 40.7065429 - ], - [ - -73.910608, - 40.7065429 - ], - [ - -73.910608, - 40.7085286 - ], - [ - -73.9126061, - 40.7085286 - ], - [ - -73.9126061, - 40.7065429 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "davidtorcivia", - "uid": "1798584", - "editor": "iD 2.21.1", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "local knowledge;streetlevel imagery;survey", - "imagery_used": "OpenStreetMap (Standard)", - "date": "2022-07-17T22:31:20Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "apartments", - "industrial", - "yes", - "office" - ], - "man_made": [ - "surveillance" - ], - "camera:type": [ - "fixed", - "panning", - "dome" - ], - "camera:mount": [ - "wall" - ], - "surveillance": [ - "public", - "outdoor" - ], - "camera:direction": [ - "80", - "180", - "300", - "150" - ], - "surveillance:type": [ - "camera" - ], - "surveillance:zone": [ - "street" - ] - }, - "create": 42, - "modify": 33, - "delete": 0, - "area": 0.00000396762717001472, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://www.openstreetmap.org/edit", - "locale": "en", - "hashtags": "#MapComplete;#surveillance", - "changesets_count": 178 - }, - "id": 123737100 - } - }, - { - "id": 123736584, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2953526, - 51.1142874 - ], - [ - 3.2953573, - 51.1142874 - ], - [ - 3.2953573, - 51.1143143 - ], - [ - 3.2953526, - 51.1143143 - ], - [ - 3.2953526, - 51.1142874 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-17T22:00:19Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/UW1jv6O.jpg" - ], - "amenity": [ - "bench" - ], - "survey:date": [ - "2022-07-17" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 1.26429999970845e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 2, - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 123736584 - } - }, - { - "id": 123736272, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7318155, - 51.0103227 - ], - [ - 4.7318155, - 51.0103227 - ], - [ - 4.7318155, - 51.0103227 - ], - [ - 4.7318155, - 51.0103227 - ], - [ - 4.7318155, - 51.0103227 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-17T21:40:07Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "picnic_table" - ], - "material": [ - "wood" - ], - "mapillary": [ - "726243168527043" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "en", - "imagery": "AGIV", - "link-image": 1 - }, - "id": 123736272 - } - }, - { - "id": 123736230, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "davidtorcivia", - "uid": "1798584", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-17T21:38:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_5000m": 1 - }, - "id": 123736230 - } - }, - { - "id": 123736210, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.9120589, - 40.707555 - ], - [ - -73.9117892, - 40.707555 - ], - [ - -73.9117892, - 40.7077315 - ], - [ - -73.9120589, - 40.7077315 - ], - [ - -73.9120589, - 40.707555 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "davidtorcivia", - "uid": "1798584", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-17T21:37:14Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "apartments" - ], - "man_made": [ - "surveillance" - ] - }, - "create": 2, - "modify": 5, - "delete": 0, - "area": 4.76020500012578e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 6, - "create": 4, - "locale": "en", - "imagery": "osm", - "change_within_5000m": 10 - }, - "id": 123736210 - } - }, - { - "id": 123736202, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "davidtorcivia", - "uid": "1798584", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-17T21:36:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_5000m": 1 - }, - "id": 123736202 - } - }, - { - "id": 123736093, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.9127789, - 40.7073409 - ], - [ - -73.9122046, - 40.7073409 - ], - [ - -73.9122046, - 40.7079326 - ], - [ - -73.9127789, - 40.7079326 - ], - [ - -73.9127789, - 40.7073409 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "davidtorcivia", - "uid": "1798584", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-17T21:31:29Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "apartments" - ], - "man_made": [ - "surveillance" - ], - "camera:type": [ - "fixed" - ], - "camera:mount": [ - "wall" - ], - "surveillance": [ - "public" - ], - "camera:direction": [ - "60" - ], - "surveillance:type": [ - "camera" - ], - "surveillance:zone": [ - "corridor" - ] - }, - "create": 6, - "modify": 13, - "delete": 0, - "area": 3.39813310007076e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 25, - "create": 13, - "locale": "en", - "imagery": "osm", - "change_within_5000m": 37 - }, - "id": 123736093 - } - }, - { - "id": 123735832, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.28407, - 51.1133528 - ], - [ - 3.2953639, - 51.1133528 - ], - [ - 3.2953639, - 51.1144932 - ], - [ - 3.28407, - 51.1144932 - ], - [ - 3.28407, - 51.1133528 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-17T21:18:07Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/S5KHp4D.jpg", - "https://i.imgur.com/udPdfLY.jpg" - ], - "survey:date": [ - "2022-07-17", - "2022-05-21" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.0000128795635599667, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", - "answer": 1, - "locale": "en", - "imagery": "osm", - "add-image": 2 - }, - "id": 123735832 - } - }, - { - "id": 123734126, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3684603, - 50.866271 - ], - [ - 4.3684603, - 50.866271 - ], - [ - 4.3684603, - 50.866271 - ], - [ - 4.3684603, - 50.866271 - ], - [ - 4.3684603, - 50.866271 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #rainbow_crossings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-17T20:13:53Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/60psbgZ.jpg" - ], - "highway": [ - "crossing" - ], - "crossing:marking": [ - "rainbow" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/rainbow_crossings.html", - "theme": "rainbow_crossings", - "answer": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_within_500m": 2 - }, - "id": 123734126 - } - }, - { - "id": 123732793, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 29.5114034, - 64.1234707 - ], - [ - 29.5114034, - 64.1234707 - ], - [ - 29.5114034, - 64.1234707 - ], - [ - 29.5114034, - 64.1234707 - ], - [ - 29.5114034, - 64.1234707 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "houtari", - "uid": "2186388", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-17T19:22:15Z", - "reviewed_features": [], - "tag_changes": { - "bus": [ - "no" - ], - "hgv": [ - "no" - ], - "access": [ - "yes" - ], - "amenity": [ - "charging_station" - ], - "bicycle": [ - "no" - ], - "network": [ - "ABC-lataus" - ], - "scooter": [ - "no" - ], - "motorcar": [ - "yes" - ], - "opening_hours": [ - "24/7" - ], - "authentication:app": [ - "yes" - ], - "authentication:nfc": [ - "no" - ], - "authentication:none": [ - "no" - ], - "authentication:debit_card": [ - "no" - ], - "authentication:money_card": [ - "no" - ], - "authentication:phone_call": [ - "no" - ], - "authentication:short_message": [ - "no" - ], - "authentication:membership_card": [ - "no" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 5, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 123732793 - } - }, - { - "id": 123732607, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 29.5043359, - 64.1264983 - ], - [ - 29.5043359, - 64.1264983 - ], - [ - 29.5043359, - 64.1264983 - ], - [ - 29.5043359, - 64.1264983 - ], - [ - 29.5043359, - 64.1264983 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "houtari", - "uid": "2186388", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-17T19:16:23Z", - "reviewed_features": [], - "tag_changes": { - "door": [ - "hinged" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/entrances.html", - "theme": "entrances", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 123732607 - } - }, - { - "id": 123732117, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 29.4781819, - 64.1254735 - ], - [ - 29.5063141, - 64.1254735 - ], - [ - 29.5063141, - 64.1288879 - ], - [ - 29.4781819, - 64.1288879 - ], - [ - 29.4781819, - 64.1254735 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "houtari", - "uid": "2186388", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-17T18:59:01Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ], - "material": [ - "wood" - ], - "direction": [ - "184", - "129" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.0000960545836799195, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 6, - "locale": "en", - "imagery": "osm" - }, - "id": 123732117 - } - }, - { - "id": 123730326, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0227652, - 38.8177393 - ], - [ - 0.1081794, - 38.8177393 - ], - [ - 0.1081794, - 38.8409952 - ], - [ - 0.0227652, - 38.8409952 - ], - [ - 0.0227652, - 38.8177393 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-17T18:04:40Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes", - "customers" - ], - "amenity": [ - "toilets" - ], - "toilets:position": [ - "seated;urinal" - ], - "toilets:handwashing": [ - "yes" - ], - "toilets:paper_supplied": [ - "yes" - ], - "changing_table:location": [ - "dedicated_room" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0019863840937802, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 8, - "locale": "ca", - "imagery": "osm", - "change_over_5000m": 5, - "change_within_500m": 1, - "change_within_5000m": 2 - }, - "id": 123730326 - } - }, - { - "id": 123730241, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3431349, - 50.8343268 - ], - [ - 4.3431349, - 50.8343268 - ], - [ - 4.3431349, - 50.8343268 - ], - [ - 4.3431349, - 50.8343268 - ], - [ - 4.3431349, - 50.8343268 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #rainbow_crossings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-17T18:01:16Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "crossing" - ], - "crossing:marking": [ - "rainbow" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/rainbow_crossings.html", - "theme": "rainbow_crossings", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_25m": 1 - }, - "id": 123730241 - } - }, - { - "id": 123730224, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7106323, - 51.0337654 - ], - [ - 3.7106323, - 51.0337654 - ], - [ - 3.7106323, - 51.0337654 - ], - [ - 3.7106323, - 51.0337654 - ], - [ - 3.7106323, - 51.0337654 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-17T18:00:30Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/awrONsS.jpg" - ], - "amenity": [ - "public_bookcase" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/", - "theme": "bookcases", - "locale": "en", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 123730224 - } - }, - { - "id": 123730185, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3244702, - 52.4798497 - ], - [ - 13.3261039, - 52.4798497 - ], - [ - 13.3261039, - 52.4828121 - ], - [ - 13.3244702, - 52.4828121 - ], - [ - 13.3244702, - 52.4798497 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Wikinaut", - "uid": "120965", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-17T17:59:07Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-17", - "2020-09-11" - ], - "pump:status": [ - "ok", - "broken" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00000483967287998835, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 6, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123730185 - } - }, - { - "id": 123728785, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.742032, - 45.8224151 - ], - [ - 8.742032, - 45.8224151 - ], - [ - 8.742032, - 45.8224151 - ], - [ - 8.742032, - 45.8224151 - ], - [ - 8.742032, - 45.8224151 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Enrico Rossi", - "uid": "53188", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-17T17:14:13Z", - "reviewed_features": [], - "tag_changes": { - "opening_hours": [ - "24/7" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 1, - "locale": "it", - "imagery": "osm" - }, - "id": 123728785 - } - }, - { - "id": 123728685, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6744806, - 45.807953 - ], - [ - 8.742032, - 45.807953 - ], - [ - 8.742032, - 45.8224151 - ], - [ - 8.6744806, - 45.8224151 - ], - [ - 8.6744806, - 45.807953 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Enrico Rossi", - "uid": "53188", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-17T17:11:29Z", - "reviewed_features": [], - "tag_changes": { - "level": [ - "0" - ], - "defibrillator:location": [ - "entrata" - ], - "defibrillator:location:en": [ - "entrance" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.000976935101940187, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 7, - "locale": "it", - "imagery": "osm" - }, - "id": 123728685 - } - }, - { - "id": 123727615, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 43.9580074, - 56.3257362 - ], - [ - 43.9580074, - 56.3257362 - ], - [ - 43.9580074, - 56.3257362 - ], - [ - 43.9580074, - 56.3257362 - ], - [ - 43.9580074, - 56.3257362 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "alexashh", - "uid": "9054103", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-17T16:35:20Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 4, - "create": 1, - "locale": "ru", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 5 - }, - "id": 123727615 - } - }, - { - "id": 123725573, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2732669, - 53.3027304 - ], - [ - 6.2732669, - 53.3027304 - ], - [ - 6.2732669, - 53.3027304 - ], - [ - 6.2732669, - 53.3027304 - ], - [ - 6.2732669, - 53.3027304 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-17T15:33:48Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 7 - }, - "id": 123725573 - } - }, - { - "id": 123723796, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3109171, - 52.4614888 - ], - [ - 13.3285439, - 52.4614888 - ], - [ - 13.3285439, - 52.4670047 - ], - [ - 13.3109171, - 52.4670047 - ], - [ - 13.3109171, - 52.4614888 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "ChSchadler", - "uid": "16563053", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-17T14:38:45Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-17", - "2022-07-16", - "2022-07-15", - "2020-09-11" - ], - "pump:status": [ - "ok", - "es kommt Wasser, aber die Pumpe blockiert manchmal", - "blocked" - ] - }, - "create": 0, - "modify": 9, - "delete": 0, - "area": 0.0000972276661199829, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 11, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123723796 - } - }, - { - "id": 123721698, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.5728311, - 52.4706667 - ], - [ - 13.5728311, - 52.4706667 - ], - [ - 13.5728311, - 52.4706667 - ], - [ - 13.5728311, - 52.4706667 - ], - [ - 13.5728311, - 52.4706667 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Paulus Maximus", - "uid": "16562534", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-17T13:39:55Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-16" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 1, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123721698 - } - }, - { - "id": 123719624, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7938218, - 53.1285286 - ], - [ - 13.7939242, - 53.1285286 - ], - [ - 13.7939242, - 53.1285629 - ], - [ - 13.7938218, - 53.1285629 - ], - [ - 13.7938218, - 53.1285286 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FFw Groß-Fredenwalde", - "uid": "16545424", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-17T12:31:24Z", - "reviewed_features": [], - "tag_changes": { - "note": [ - "Fehleintrag" - ], - "image": [ - "https://i.imgur.com/fsRvh6G.jpg" - ], - "fire_hydrant:diameter": [ - "100" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 3.5123199995515e-9, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "EsriWorldImagery", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123719624 - } - }, - { - "id": 123716294, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3141906, - 52.4544938 - ], - [ - 13.3254543, - 52.4544938 - ], - [ - 13.3254543, - 52.4613384 - ], - [ - 13.3141906, - 52.4613384 - ], - [ - 13.3141906, - 52.4544938 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "ChSchadler", - "uid": "16563053", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-17T10:45:46Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-17" - ], - "pump:status": [ - "broken", - "ok" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.0000770955210200142, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 6, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123716294 - } - }, - { - "id": 123715601, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.5030276, - 48.3736517 - ], - [ - 9.5030276, - 48.3736517 - ], - [ - 9.5030276, - 48.3736517 - ], - [ - 9.5030276, - 48.3736517 - ], - [ - 9.5030276, - 48.3736517 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #maps", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-17T10:22:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maps.html", - "theme": "maps", - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 123715601 - } - }, - { - "id": 123715522, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.8221405, - 53.3021287 - ], - [ - 13.8525769, - 53.3021287 - ], - [ - 13.8525769, - 53.3800462 - ], - [ - 13.8221405, - 53.3800462 - ], - [ - 13.8221405, - 53.3021287 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FFw Groß-Fredenwalde", - "uid": "16545424", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-17T10:20:43Z", - "reviewed_features": [], - "tag_changes": { - "note": [ - "Nicht zugänglich", - "Fehleintrag, Hydrant ist nur Deko der FFw", - "Bei Nutzung fehlt Anwohnern nach geraumer Zeit das Wasser in den Häusern" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0.00237152819700024, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "EsriWorldImagery", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123715522 - } - }, - { - "id": 123715039, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.3424824, - 51.6648863 - ], - [ - 14.3495554, - 51.6648863 - ], - [ - 14.3495554, - 51.6703711 - ], - [ - 14.3424824, - 51.6703711 - ], - [ - 14.3424824, - 51.6648863 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "tomtom616", - "uid": "16546724", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-17T10:06:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 8, - "modify": 7, - "delete": 0, - "area": 0.0000387939903999854, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123715039 - } - }, - { - "id": 123711005, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.1609223, - 52.3981639 - ], - [ - 14.1661124, - 52.3981639 - ], - [ - 14.1661124, - 52.3982441 - ], - [ - 14.1609223, - 52.3982441 - ], - [ - 14.1609223, - 52.3981639 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FFW OWS", - "uid": "16214974", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-17T08:05:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 2, - "delete": 0, - "area": 4.16246019996418e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123711005 - } - }, - { - "id": 123710987, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4057141, - 45.3228077 - ], - [ - 8.4304936, - 45.3228077 - ], - [ - 8.4304936, - 45.3344139 - ], - [ - 8.4057141, - 45.3344139 - ], - [ - 8.4057141, - 45.3228077 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ivanbranco", - "uid": "11220113", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-17T08:04:42Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "school" - ], - "highway": [ - "tertiary", - "secondary", - "unclassified", - "residential" - ], - "landuse": [ - "education" - ], - "name:etymology:wikidata": [ - "Q3376", - "Q113127925", - "Q42945", - "Q9275", - "Q19886017", - "Q3770509", - "Q113128010", - "Q6596", - "Q6537", - "Q3861764", - "Q13670", - "Q39473", - "Q13410", - "Q103842234", - "Q3724277", - "Q43440", - "Q375769" - ] - }, - "create": 0, - "modify": 32, - "delete": 0, - "area": 0.000287595832900061, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "answer": 35, - "locale": "it", - "imagery": "osm" - }, - "id": 123710987 - } - }, - { - "id": 123706455, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -87.6339968, - 41.4676676 - ], - [ - -87.0616656, - 41.4676676 - ], - [ - -87.0616656, - 41.8934169 - ], - [ - -87.6339968, - 41.8934169 - ], - [ - -87.6339968, - 41.4676676 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9890724657", - "name": "Valparaiso Bike Share", - "osm_id": 9890724657, - "reasons": [ - 43 - ], - "version": 2, - "primary_tags": { - "amenity": "bicycle_library" - } - } - ], - "user": "Kanellar", - "uid": "16249964", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-17T01:49:29Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Valparaiso Bike Share" - ], - "amenity": [ - "bicycle_library", - "bicycle_parking" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0.243669607768163, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 4, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 123706455 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-18.json b/Docs/Tools/stats/stats.2022-7-18.json deleted file mode 100644 index 008ada35b6..0000000000 --- a/Docs/Tools/stats/stats.2022-7-18.json +++ /dev/null @@ -1,3226 +0,0 @@ -{ - "features": [ - { - "id": 123783119, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1115228, - 38.8393253 - ], - [ - 0.1117144, - 38.8393253 - ], - [ - 0.1117144, - 38.8394937 - ], - [ - 0.1115228, - 38.8394937 - ], - [ - 0.1115228, - 38.8393253 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T23:59:21Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "playground" - ], - "surface": [ - "paving_stones" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 3.22654399999493e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 1, - "locale": "ca", - "imagery": "osm", - "change_within_500m": 1 - }, - "id": 123783119 - } - }, - { - "id": 123783090, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1022411, - 38.837667 - ], - [ - 0.1051336, - 38.837667 - ], - [ - 0.1051336, - 38.8389325 - ], - [ - 0.1022411, - 38.8389325 - ], - [ - 0.1022411, - 38.837667 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #education", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T23:56:25Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "school" - ], - "landuse": [ - "education" - ], - "school:gender": [ - "mixed" - ], - "school:language": [ - "ca;es" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000366045874998627, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/education.html", - "theme": "education", - "answer": 4, - "locale": "ca", - "imagery": "CartoDB.Voyager", - "change_within_1000m": 4 - }, - "id": 123783090 - } - }, - { - "id": 123783066, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -78.6618868, - 26.5233694 - ], - [ - -78.6613369, - 26.5233694 - ], - [ - -78.6613369, - 26.5238844 - ], - [ - -78.6618868, - 26.5238844 - ], - [ - -78.6618868, - 26.5233694 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "InsertUser", - "uid": "89098", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #healthcare", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-18T23:54:55Z", - "reviewed_features": [], - "tag_changes": { - "phone": [ - "+1 242 373 7400", - "+242 373 7400" - ], - "amenity": [ - "hospital" - ], - "building": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 2.83198500005166e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/healthcare.html", - "theme": "healthcare", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 123783066 - } - }, - { - "id": 123783037, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1026098, - 38.8342001 - ], - [ - 0.1090525, - 38.8342001 - ], - [ - 0.1090525, - 38.8370447 - ], - [ - 0.1026098, - 38.8370447 - ], - [ - 0.1026098, - 38.8342001 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T23:52:00Z", - "reviewed_features": [], - "tag_changes": { - "bus": [ - "no" - ], - "hgv": [ - "no" - ], - "access": [ - "yes" - ], - "amenity": [ - "charging_station" - ], - "bicycle": [ - "no" - ], - "scooter": [ - "yes" - ], - "motorcar": [ - "yes" - ], - "parking:fee": [ - "no" - ], - "socket:type2": [ - "2" - ], - "opening_hours": [ - "24/7" - ], - "socket:type2:output": [ - "22 kW" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.0000183269044200199, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 9, - "locale": "ca", - "imagery": "CartoDB.Voyager", - "change_within_500m": 3, - "change_within_1000m": 6 - }, - "id": 123783037 - } - }, - { - "id": 123783019, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1090525, - 38.8370447 - ], - [ - 0.1090525, - 38.8370447 - ], - [ - 0.1090525, - 38.8370447 - ], - [ - 0.1090525, - 38.8370447 - ], - [ - 0.1090525, - 38.8370447 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T23:51:10Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 3, - "locale": "ca", - "imagery": "CartoDB.Voyager", - "change_within_500m": 3 - }, - "id": 123783019 - } - }, - { - "id": 123782333, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4731632, - 50.1840832 - ], - [ - 8.5688285, - 50.1840832 - ], - [ - 8.5688285, - 50.2252182 - ], - [ - 8.4731632, - 50.2252182 - ], - [ - 8.4731632, - 50.1840832 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Elch12", - "uid": "20736", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-18T22:56:20Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "leisure": [ - "nature_reserve" - ], - "boundary": [ - "protected_area" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00393519211549973, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/nature.html", - "theme": "nature", - "answer": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 123782333 - } - }, - { - "id": 123782297, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Elch12", - "uid": "20736", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-18T22:54:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/kerbs_and_crossings.html", - "theme": "kerbs_and_crossings", - "answer": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 123782297 - } - }, - { - "id": 123782241, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4054672, - 51.0449415 - ], - [ - 3.4110054, - 51.0449415 - ], - [ - 3.4110054, - 51.0467913 - ], - [ - 3.4054672, - 51.0467913 - ], - [ - 3.4054672, - 51.0449415 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T22:51:06Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "industrial", - "house" - ] - }, - "create": 4, - "modify": 4, - "delete": 0, - "area": 0.0000102445623600127, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/entrances.html", - "theme": "entrances", - "answer": 5, - "create": 8, - "locale": "en", - "imagery": "osm" - }, - "id": 123782241 - } - }, - { - "id": 123782204, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T22:49:07Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/entrances.html", - "theme": "entrances", - "answer": 1, - "locale": "en", - "imagery": "AGIV" - }, - "id": 123782204 - } - }, - { - "id": 123782115, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4084145, - 51.0430034 - ], - [ - 3.4109973, - 51.0430034 - ], - [ - 3.4109973, - 51.0445817 - ], - [ - 3.4084145, - 51.0445817 - ], - [ - 3.4084145, - 51.0430034 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T22:44:42Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "industrial" - ] - }, - "create": 4, - "modify": 6, - "delete": 0, - "area": 0.00000407643323999589, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/entrances.html", - "theme": "entrances", - "answer": 9, - "create": 8, - "locale": "en", - "imagery": "AGIV" - }, - "id": 123782115 - } - }, - { - "id": 123782107, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T22:44:07Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/entrances.html", - "theme": "entrances", - "answer": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 123782107 - } - }, - { - "id": 123781969, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3874313, - 51.0335647 - ], - [ - 3.3957666, - 51.0335647 - ], - [ - 3.3957666, - 51.0458705 - ], - [ - 3.3874313, - 51.0458705 - ], - [ - 3.3874313, - 51.0335647 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T22:37:06Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "sports_hall" - ], - "building": [ - "yes", - "house", - "retail" - ] - }, - "create": 6, - "modify": 9, - "delete": 0, - "area": 0.000102572534740002, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/entrances.html", - "theme": "entrances", - "answer": 14, - "create": 12, - "locale": "en", - "imagery": "osm" - }, - "id": 123781969 - } - }, - { - "id": 123781953, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T22:36:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/entrances.html", - "theme": "entrances", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 123781953 - } - }, - { - "id": 123781940, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T22:36:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/entrances.html", - "theme": "entrances", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 123781940 - } - }, - { - "id": 123781878, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3896606, - 51.0387509 - ], - [ - 3.3933092, - 51.0387509 - ], - [ - 3.3933092, - 51.0430739 - ], - [ - 3.3896606, - 51.0430739 - ], - [ - 3.3896606, - 51.0387509 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T22:34:07Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house" - ], - "entrance": [ - "yes" - ] - }, - "create": 3, - "modify": 6, - "delete": 0, - "area": 0.0000157728978000238, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/entrances.html", - "theme": "entrances", - "answer": 6, - "create": 7, - "locale": "en", - "imagery": "osm" - }, - "id": 123781878 - } - }, - { - "id": 123781297, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0713783, - 51.1283031 - ], - [ - 5.0849258, - 51.1283031 - ], - [ - 5.0849258, - 51.1325064 - ], - [ - 5.0713783, - 51.1325064 - ], - [ - 5.0713783, - 51.1283031 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - }, - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "relation-12915298", - "osm_id": 12915298, - "reasons": [ - 43 - ], - "version": 2, - "primary_tags": { - "building": "castle" - } - } - ], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T22:06:00Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "school" - ], - "building": [ - "house", - "school", - "yes", - "castle", - "roof" - ], - "addr:street": [ - "Veldstraat" - ], - "addr:housenumber": [ - "81", - "22;24", - "22-24", - "72" - ], - "source:geometry:ref": [ - "Gbg/1042596", - "Gbg/1042516", - "Gbg/1042512", - "Gbg/1042513", - "Gbg/1044548", - "Gbg/1044547", - "Gbg/1042615", - "Gbg/1042594", - "Gbg/1042937", - "Gbg/1043101", - "Gbg/1042995", - "Gbg/1042997", - "Gbg/1043254", - "Gbg/1043227", - "Gbg/5774663", - "Gbg/1042515", - "Gbg/1042487", - "Gbg/5256101", - "Gbg/1043025", - "Gbg/1045167", - "Gbg/5774850", - "Gbg/5774611", - "Gbg/1042597" - ], - "source:geometry:date": [ - "2008-09-01", - "2016-11-21", - "2018-08-29", - "2020-04-20" - ] - }, - "create": 91, - "modify": 250, - "delete": 4, - "area": 0.0000569442067500031, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 227, - "theme": "grb", - "answer": 2, - "delete": 4, - "import": 5, - "locale": "nl", - "imagery": "AGIV", - "conflation": 46, - "change_over_5000m": 2, - "change_within_5000m": 5 - }, - "id": 123781297 - } - }, - { - "id": 123781002, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0683191, - 51.12767 - ], - [ - 5.0715949, - 51.12767 - ], - [ - 5.0715949, - 51.1303416 - ], - [ - 5.0683191, - 51.1303416 - ], - [ - 5.0683191, - 51.12767 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T21:52:15Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes", - "apartments", - "garages", - "shed", - "roof" - ], - "source:geometry:ref": [ - "Gbg/1042602", - "Gbg/1042439", - "Gbg/4857245", - "Gbg/4855859", - "Gbg/1042593", - "Gbg/1042604", - "Gbg/4857014", - "Gbg/5774788", - "Gbg/4855857", - "Gbg/1042599", - "Gbg/1044860", - "Gbg/4857016", - "Gbg/1045194", - "Gbg/5774479", - "Gbg/5774815", - "Gbg/5255998", - "Gbg/4857147", - "Gbg/6528439" - ], - "source:geometry:date": [ - "2018-08-29", - "2008-09-01", - "2014-10-01", - "2015-07-13", - "2016-11-21", - "2018-12-19" - ] - }, - "create": 52, - "modify": 139, - "delete": 2, - "area": 0.00000875162727999765, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 121, - "theme": "grb", - "answer": 1, - "delete": 2, - "import": 7, - "locale": "nl", - "imagery": "AGIV", - "conflation": 36, - "change_within_5000m": 8 - }, - "id": 123781002 - } - }, - { - "id": 123780927, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0666078, - 51.1279041 - ], - [ - 5.0690539, - 51.1279041 - ], - [ - 5.0690539, - 51.1302586 - ], - [ - 5.0666078, - 51.1302586 - ], - [ - 5.0666078, - 51.1279041 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T21:49:15Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes" - ], - "source:geometry:ref": [ - "Gbg/1044536", - "Gbg/4856061", - "Gbg/4856062", - "Gbg/1042611", - "Gbg/1042609", - "Gbg/1042612", - "Gbg/1042610", - "Gbg/1042608", - "Gbg/5774600", - "Gbg/1043661", - "Gbg/5774789", - "Gbg/5774089", - "Gbg/5773921", - "Gbg/4857018", - "Gbg/1045168" - ], - "source:geometry:date": [ - "2008-09-01", - "2014-10-01", - "2016-11-21" - ] - }, - "create": 37, - "modify": 109, - "delete": 0, - "area": 0.00000575934244998977, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 94, - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "AGIV", - "conflation": 30, - "change_within_5000m": 1 - }, - "id": 123780927 - } - }, - { - "id": 123780594, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2774477, - 53.2131072 - ], - [ - 6.2774477, - 53.2131072 - ], - [ - 6.2774477, - 53.2131072 - ], - [ - 6.2774477, - 53.2131072 - ], - [ - 6.2774477, - 53.2131072 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #healthcare", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T21:31:03Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Gezondheidscentrum Grootegast" - ], - "amenity": [ - "doctors" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/healthcare.html", - "theme": "healthcare", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 123780594 - } - }, - { - "id": 123778704, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3902626, - 50.8228124 - ], - [ - 4.3907799, - 50.8228124 - ], - [ - 4.3907799, - 50.8230062 - ], - [ - 4.3902626, - 50.8230062 - ], - [ - 4.3902626, - 50.8228124 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "bxl-forever", - "uid": "2644288", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #rainbow_crossings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-18T20:22:27Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/5O61YZA.jpg" - ], - "highway": [ - "crossing" - ], - "crossing:marking": [ - "rainbow" - ] - }, - "create": 0, - "modify": 8, - "delete": 0, - "area": 1.00252740002764e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/rainbow_crossings.html", - "theme": "rainbow_crossings", - "answer": 7, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 2 - }, - "id": 123778704 - } - }, - { - "id": 123776560, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.3470763, - 44.4985392 - ], - [ - 11.3470763, - 44.4985392 - ], - [ - 11.3470763, - 44.4985392 - ], - [ - 11.3470763, - 44.4985392 - ], - [ - 11.3470763, - 44.4985392 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "WinstonSmith", - "uid": "36030", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T19:09:26Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "bicycle_parking" - ], - "capacity": [ - "12", - "8" - ], - "cargo_bike": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix", - "theme": "cyclofix", - "answer": 3, - "locale": "it", - "imagery": "CartoDB.Voyager", - "change_within_1000m": 3 - }, - "id": 123776560 - } - }, - { - "id": 123773372, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.346194, - 44.4985327 - ], - [ - 11.3475305, - 44.4985327 - ], - [ - 11.3475305, - 44.501977 - ], - [ - 11.346194, - 44.501977 - ], - [ - 11.346194, - 44.4985327 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "WinstonSmith", - "uid": "36030", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T17:30:06Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ] - }, - "create": 3, - "modify": 3, - "delete": 0, - "area": 0.000004603306949994, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix", - "theme": "cyclofix", - "answer": 14, - "create": 3, - "locale": "it", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 3, - "change_within_25m": 4, - "change_within_500m": 10 - }, - "id": 123773372 - } - }, - { - "id": 123770631, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4501049, - 52.5078826 - ], - [ - 13.4501049, - 52.5078826 - ], - [ - 13.4501049, - 52.5078826 - ], - [ - 13.4501049, - 52.5078826 - ], - [ - 13.4501049, - 52.5078826 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Huglu96", - "uid": "722577", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #healthcare", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-18T16:05:56Z", - "reviewed_features": [], - "tag_changes": { - "email": [ - "praxis@drcordes.de" - ], - "phone": [ - "+49 30 97002288" - ], - "amenity": [ - "doctors" - ], - "website": [ - "https://www.drcordes.de/" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/healthcare.html", - "theme": "healthcare", - "answer": 3, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 123770631 - } - }, - { - "id": 123770126, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0144789, - 38.8300585 - ], - [ - 0.0144789, - 38.8300585 - ], - [ - 0.0144789, - 38.8300585 - ], - [ - 0.0144789, - 38.8300585 - ], - [ - 0.0144789, - 38.8300585 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T15:49:51Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "charging_station" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 2, - "create": 1, - "locale": "ca", - "imagery": "PNOA-Spain-TMS", - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 123770126 - } - }, - { - "id": 123769865, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.1390476, - 52.4033615 - ], - [ - 14.1657275, - 52.4033615 - ], - [ - 14.1657275, - 52.4071856 - ], - [ - 14.1390476, - 52.4071856 - ], - [ - 14.1390476, - 52.4033615 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FFW OWS", - "uid": "16214974", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T15:41:30Z", - "reviewed_features": [], - "tag_changes": { - "fire_hydrant:diameter": [ - "80" - ] - }, - "create": 4, - "modify": 5, - "delete": 0, - "area": 0.000102026605589883, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123769865 - } - }, - { - "id": 123769720, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.393582, - 51.039923 - ], - [ - 3.3948453, - 51.039923 - ], - [ - 3.3948453, - 51.040994 - ], - [ - 3.393582, - 51.040994 - ], - [ - 3.393582, - 51.039923 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T15:37:41Z", - "reviewed_features": [], - "tag_changes": { - "door": [ - "sliding" - ], - "building": [ - "retail" - ], - "entrance": [ - "main" - ], - "automatic_door": [ - "motion" - ] - }, - "create": 1, - "modify": 5, - "delete": 0, - "area": 0.00000135299429999521, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/entrances.html", - "theme": "entrances", - "answer": 7, - "create": 4, - "locale": "en", - "imagery": "AGIV", - "change_within_500m": 9 - }, - "id": 123769720 - } - }, - { - "id": 123769714, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -122.6331758, - 45.5364897 - ], - [ - -122.6260894, - 45.5364897 - ], - [ - -122.6260894, - 45.5413743 - ], - [ - -122.6331758, - 45.5413743 - ], - [ - -122.6331758, - 45.5364897 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Timothy Smith", - "uid": "115918", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #education", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-18T15:37:31Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "school" - ], - "school:gender": [ - "mixed" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.0000346142294400563, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/education", - "theme": "education", - "answer": 3, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 123769714 - } - }, - { - "id": 123768932, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3609464, - 50.8687751 - ], - [ - 4.3609753, - 50.8687751 - ], - [ - 4.3609753, - 50.8688026 - ], - [ - 4.3609464, - 50.8688026 - ], - [ - 4.3609464, - 50.8687751 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T15:13:59Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/UQdA6KT.jpg", - "https://i.imgur.com/cJ43ftL.jpg" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 7.94750000052979e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "en", - "imagery": "osm", - "add-image": 2 - }, - "id": 123768932 - } - }, - { - "id": 123768856, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.36006, - 50.8682456 - ], - [ - 4.3604555, - 50.8682456 - ], - [ - 4.3604555, - 50.8684735 - ], - [ - 4.36006, - 50.8684735 - ], - [ - 4.36006, - 50.8682456 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T15:11:32Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/DNvSfKC.jpg" - ], - "image:0": [ - "https://i.imgur.com/zk9G1HT.jpg" - ], - "leisure": [ - "park", - "playground" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 9.01344499994441e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "locale": "en", - "imagery": "osm", - "add-image": 2 - }, - "id": 123768856 - } - }, - { - "id": 123768550, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3620081, - 50.8582088 - ], - [ - 4.3627148, - 50.8582088 - ], - [ - 4.3627148, - 50.8583627 - ], - [ - 4.3620081, - 50.8583627 - ], - [ - 4.3620081, - 50.8582088 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T15:02:40Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/PDA9bjU.jpg" - ], - "amenity": [ - "bicycle_parking" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 1.08761130000621e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "AGIV", - "add-image": 2 - }, - "id": 123768550 - } - }, - { - "id": 123768324, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1036134, - 52.092132 - ], - [ - 5.1036134, - 52.092132 - ], - [ - 5.1036134, - 52.092132 - ], - [ - 5.1036134, - 52.092132 - ], - [ - 5.1036134, - 52.092132 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T14:56:53Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "public_bookcase" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 4, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 5 - }, - "id": 123768324 - } - }, - { - "id": 123768265, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7423413, - 51.1712899 - ], - [ - 4.7423413, - 51.1712899 - ], - [ - 4.7423413, - 51.1712899 - ], - [ - 4.7423413, - 51.1712899 - ], - [ - 4.7423413, - 51.1712899 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Stinus_Clasius", - "uid": "1086503", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #healthcare", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-18T14:55:47Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "doctors" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/healthcare.html", - "theme": "healthcare", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 123768265 - } - }, - { - "id": 123765542, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1147296, - 52.092603 - ], - [ - 5.1147422, - 52.092603 - ], - [ - 5.1147422, - 52.0928868 - ], - [ - 5.1147296, - 52.0928868 - ], - [ - 5.1147296, - 52.092603 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T13:46:41Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "leaf_type": [ - "broadleaved" - ], - "denotation": [ - "urban" - ], - "leaf_cycle": [ - "deciduous" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 3.57588000001314e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 9, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "change_within_25m": 9 - }, - "id": 123765542 - } - }, - { - "id": 123765498, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1147656, - 52.0922445 - ], - [ - 5.1147656, - 52.0922445 - ], - [ - 5.1147656, - 52.0922445 - ], - [ - 5.1147656, - 52.0922445 - ], - [ - 5.1147656, - 52.0922445 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T13:45:35Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "leaf_type": [ - "broadleaved" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "change_within_25m": 1 - }, - "id": 123765498 - } - }, - { - "id": 123765494, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T13:45:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "change_within_25m": 1 - }, - "id": 123765494 - } - }, - { - "id": 123765488, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1148364, - 52.0920425 - ], - [ - 5.1148364, - 52.0920425 - ], - [ - 5.1148364, - 52.0920425 - ], - [ - 5.1148364, - 52.0920425 - ], - [ - 5.1148364, - 52.0920425 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T13:45:27Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "leaf_type": [ - "broadleaved" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "change_within_25m": 1 - }, - "id": 123765488 - } - }, - { - "id": 123765486, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T13:45:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "change_within_25m": 1 - }, - "id": 123765486 - } - }, - { - "id": 123765046, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Amenophis", - "uid": "53104", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T13:34:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "maxspeed", - "answer": 1, - "locale": "de", - "imagery": "osm", - "change_within_1000m": 1 - }, - "id": 123765046 - } - }, - { - "id": 123764852, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1146062, - 52.091637 - ], - [ - 5.1150921, - 52.091637 - ], - [ - 5.1150921, - 52.0924457 - ], - [ - 5.1146062, - 52.0924457 - ], - [ - 5.1146062, - 52.091637 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T13:28:38Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "leaf_type": [ - "broadleaved" - ], - "denotation": [ - "urban" - ], - "leaf_cycle": [ - "deciduous" - ] - }, - "create": 0, - "modify": 5, - "delete": 2, - "area": 3.92947330000281e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 13, - "locale": "nl", - "imagery": "Actueel_orthoHR_WMTS", - "deletion": 2, - "change_within_25m": 4, - "change_within_50m": 11, - "deletion:node/3105562570": "disused", - "deletion:node/3105562573": "disused" - }, - "id": 123764852 - } - }, - { - "id": 123754334, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.6492433, - 40.5548081 - ], - [ - -3.648967, - 40.5548081 - ], - [ - -3.648967, - 40.5548204 - ], - [ - -3.6492433, - 40.5548204 - ], - [ - -3.6492433, - 40.5548081 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9894888777", - "osm_id": 9894888777, - "reasons": [ - 43 - ], - "version": 1, - "primary_tags": { - "natural": "tree_stump" - } - } - ], - "user": "Cpalaciosh", - "uid": "16577158", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-18T09:41:38Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree_stump" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 3.39848999849145e-9, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://llefia.org/arbres/mapcomplete1.json", - "create": 2, - "locale": "ca", - "imagery": "HDM_HOT" - }, - "id": 123754334 - } - }, - { - "id": 123753063, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.2940957, - 52.4668034 - ], - [ - 13.303083, - 52.4668034 - ], - [ - 13.303083, - 52.4698146 - ], - [ - 13.2940957, - 52.4698146 - ], - [ - 13.2940957, - 52.4668034 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "ChSchadler", - "uid": "16563053", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-18T09:15:40Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-18" - ], - "pump:status": [ - "ok", - "locked", - "broken" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000270625577599674, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 4, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123753063 - } - }, - { - "id": 123752945, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1040407, - 52.091698 - ], - [ - 5.1040407, - 52.091698 - ], - [ - 5.1040407, - 52.091698 - ], - [ - 5.1040407, - 52.091698 - ], - [ - 5.1040407, - 52.091698 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T09:12:33Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/5yLQeX3.jpg" - ], - "amenity": [ - "drinking_water" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 123752945 - } - }, - { - "id": 123749589, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3797478, - 52.4945143 - ], - [ - 13.3797478, - 52.4945143 - ], - [ - 13.3797478, - 52.4945143 - ], - [ - 13.3797478, - 52.4945143 - ], - [ - 13.3797478, - 52.4945143 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Supaplex030", - "uid": "418040", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-18T08:07:10Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-17", - "2018" - ], - "pump:status": [ - "ok" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123749589 - } - }, - { - "id": 123745512, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7570313, - 53.1621226 - ], - [ - 13.7570313, - 53.1621226 - ], - [ - 13.7570313, - 53.1621226 - ], - [ - 13.7570313, - 53.1621226 - ], - [ - 13.7570313, - 53.1621226 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Mathias Jordan", - "uid": "16545675", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-18T06:36:09Z", - "reviewed_features": [], - "tag_changes": { - "emergency": [ - "water_tank", - "fire_water_pond" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "Mapbox", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123745512 - } - }, - { - "id": 123745419, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.843767, - 51.1486092 - ], - [ - 4.9055163, - 51.1486092 - ], - [ - 4.9055163, - 51.2016047 - ], - [ - 4.843767, - 51.2016047 - ], - [ - 4.843767, - 51.1486092 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-18T06:34:13Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "bus" - ], - "amenity": [ - "parking", - "fast_food", - "restaurant" - ], - "barrier": [ - "fence" - ], - "highway": [ - "pedestrian", - "primary" - ], - "building": [ - "house", - "yes", - "roof" - ], - "addr:street": [ - "Olensteenweg" - ], - "addr:housenumber": [ - "45" - ], - "source:geometry:ref": [ - "Gbg/3073895", - "Gbg/5246130", - "Gbg/4045556", - "Gbg/3073891", - "Gbg/3075710", - "Gbg/6104853", - "Gbg/6104847", - "Gbg/6104338", - "Gbg/3073892", - "Gbg/4048570", - "Gbg/4048569", - "Gbg/1655518", - "Gbg/1655516", - "Gbg/1655517", - "Gbg/1657642", - "Gbg/1655279", - "Gbg/4045559", - "Gbg/4045560", - "Gbg/4045561", - "Gbg/4045562", - "Gbg/4045563", - "Gbg/4045580", - "Gbg/4048585", - "Gbg/4045576", - "Gbg/4045579", - "Gbg/4048573", - "Gbg/4045578", - "Gbg/4045577", - "Gbg/4045543", - "Gbg/5862379", - "Gbg/4046524", - "Gbg/4046535", - "Gbg/4045558", - "Gbg/4048571", - "Gbg/5861009", - "Gbg/5403705" - ], - "source:geometry:date": [ - "2011-07-27", - "2015-06-25", - "2013-01-16", - "2017-11-02", - "2016-02-10", - "2009-10-26", - "2017-06-29", - "2013-02-20", - "2017-03-01", - "2015-11-24" - ] - }, - "create": 355, - "modify": 283, - "delete": 3, - "area": 0.00327243502814969, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 247, - "theme": "grb", - "answer": 2, - "delete": 3, - "import": 40, - "locale": "nl", - "imagery": "AGIV", - "conflation": 72 - }, - "id": 123745419 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-19.json b/Docs/Tools/stats/stats.2022-7-19.json deleted file mode 100644 index 67d1bf64d9..0000000000 --- a/Docs/Tools/stats/stats.2022-7-19.json +++ /dev/null @@ -1,4794 +0,0 @@ -{ - "features": [ - { - "id": 123827065, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0577158, - 38.8264945 - ], - [ - 0.1103227, - 38.8264945 - ], - [ - 0.1103227, - 38.8382582 - ], - [ - 0.0577158, - 38.8382582 - ], - [ - 0.0577158, - 38.8264945 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #healthcare", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T23:34:59Z", - "reviewed_features": [], - "tag_changes": { - "email": [ - "info@dermopremium.es", - "info@marinasalud.es", - "direccion_hlapedrera@gva.es" - ], - "phone": [ - "+34 966 42 90 00", - "+34 966 46 71 70" - ], - "amenity": [ - "pharmacy", - "hospital" - ], - "website": [ - "https://www.marinasalud.es/" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.000618851789529786, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/healthcare.html", - "theme": "healthcare", - "answer": 6, - "locale": "ca", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 6 - }, - "id": 123827065 - } - }, - { - "id": 123825809, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3391845, - 52.4720132 - ], - [ - 13.3391845, - 52.4720132 - ], - [ - 13.3391845, - 52.4720132 - ], - [ - 13.3391845, - 52.4720132 - ], - [ - 13.3391845, - 52.4720132 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Holger92", - "uid": "4797614", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T22:07:21Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-19" - ], - "pump:status": [ - "ok" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123825809 - } - }, - { - "id": 123825762, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3530806, - 51.0515668 - ], - [ - 3.4007486, - 51.0515668 - ], - [ - 3.4007486, - 51.0761865 - ], - [ - 3.3530806, - 51.0761865 - ], - [ - 3.3530806, - 51.0515668 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T22:03:57Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes" - ] - }, - "create": 2, - "modify": 3, - "delete": 0, - "area": 0.00117357185959977, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/entrances.html", - "theme": "entrances", - "answer": 6, - "create": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 123825762 - } - }, - { - "id": 123825178, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.379381, - 50.8641872 - ], - [ - 4.379381, - 50.8641872 - ], - [ - 4.379381, - 50.8641872 - ], - [ - 4.379381, - 50.8641872 - ], - [ - 4.379381, - 50.8641872 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T21:37:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_25m": 1 - }, - "id": 123825178 - } - }, - { - "id": 123824266, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3733812, - 50.8393385 - ], - [ - 4.3733812, - 50.8393385 - ], - [ - 4.3733812, - 50.8393385 - ], - [ - 4.3733812, - 50.8393385 - ], - [ - 4.3733812, - 50.8393385 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #rainbow_crossings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T20:56:35Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "crossing" - ], - "crossing:marking": [ - "rainbow" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/rainbow_crossings.html", - "theme": "rainbow_crossings", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 123824266 - } - }, - { - "id": 123823860, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.8687119, - 49.8697643 - ], - [ - 10.9398783, - 49.8697643 - ], - [ - 10.9398783, - 49.9578705 - ], - [ - 10.8687119, - 49.9578705 - ], - [ - 10.8687119, - 49.8697643 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "Marc Schütz", - "uid": "3555", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T20:42:10Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "school", - "social_facility", - "kindergarten" - ], - "highway": [ - "residential", - "service", - "unclassified", - "primary", - "path", - "living_street", - "primary_link", - "tertiary", - "tertiary_link", - "secondary", - "pedestrian" - ], - "leisure": [ - "park" - ], - "building": [ - "yes" - ], - "name:etymology:wikidata": [ - "Q3914", - "Q504808", - "Q277760", - "Q2090", - "Q1670", - "Q529392", - "Q553227", - "Q1726", - "Q37985", - "Q103556", - "Q494537", - "Q483522", - "Q522698", - "Q64", - "Q2492", - "Q61678", - "Q188780", - "Q168542", - "Q84280", - "Q504585", - "Q94836479", - "Q63434", - "Q9312", - "Q1498895", - "Q2531428", - "Q130875", - "Q81720", - "Q77098", - "Q58577", - "Q43948", - "Q539907", - "Q153085", - "Q171353", - "Q1581405", - "Q1583224", - "Q215092", - "Q67597", - "Q63243824", - "Q2120664", - "Q77204", - "Q61620", - "Q16116", - "Q2999", - "Q41257", - "Q12876", - "Q105923", - "Q97159077", - "Q72865", - "Q2582043", - "Q161204", - "Q8958", - "Q95589", - "Q1589611", - "Q302632", - "Q534442", - "Q745899", - "Q44723", - "Q5580", - "Q163800", - "Q9235", - "Q507533", - "Q76728", - "Q243778", - "Q35149", - "Q9021", - "Q57077", - "Q8473", - "Q43523", - "Q317991", - "Q3936", - "Q1771083", - "Q194242", - "Q21288593", - "Q14821", - "Q349313", - "Q44015", - "Q1411211", - "Q1870095" - ] - }, - "create": 0, - "modify": 1015, - "delete": 0, - "area": 0.00627020107167998, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "answer": 1198, - "locale": "de", - "imagery": "HDM_HOT" - }, - "id": 123823860 - } - }, - { - "id": 123823034, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -84.7093889, - 43.1829993 - ], - [ - -84.7089714, - 43.1829993 - ], - [ - -84.7089714, - 43.183175 - ], - [ - -84.7093889, - 43.183175 - ], - [ - -84.7093889, - 43.1829993 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "nickrosencrans", - "uid": "159484", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T20:11:07Z", - "reviewed_features": [], - "tag_changes": { - "phone": [ - "+1 989 236 7794" - ], - "amenity": [ - "restaurant" - ], - "website": [ - "https://www.facebook.com/MiddletonDiner" - ], - "building": [ - "yes" - ], - "delivery": [ - "no" - ], - "diet:halal": [ - "no" - ], - "wheelchair": [ - "limited" - ], - "payment:cash": [ - "yes" - ], - "opening_hours": [ - "Tu-Sa 11:00-19:00" - ], - "payment:cards": [ - "yes" - ], - "diet:vegetarian": [ - "limited" - ] - }, - "create": 0, - "modify": 7, - "delete": 0, - "area": 7.33547499994714e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 10, - "locale": "en", - "imagery": "osm" - }, - "id": 123823034 - } - }, - { - "id": 123822919, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -84.607421, - 43.2825875 - ], - [ - -84.6017836, - 43.2825875 - ], - [ - -84.6017836, - 43.2969716 - ], - [ - -84.607421, - 43.2969716 - ], - [ - -84.607421, - 43.2825875 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "nickrosencrans", - "uid": "159484", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #education", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T20:07:05Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Ithaca South Elementary School", - "South Elementary School" - ], - "amenity": [ - "school" - ], - "school:gender": [ - "mixed" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000810889253399717, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/education", - "theme": "education", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 123822919 - } - }, - { - "id": 123822797, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -84.7138917, - 43.1725988 - ], - [ - -84.5923021, - 43.1725988 - ], - [ - -84.5923021, - 43.3021566 - ], - [ - -84.7138917, - 43.3021566 - ], - [ - -84.7138917, - 43.1725988 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "nickrosencrans", - "uid": "159484", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #education", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T20:02:07Z", - "reviewed_features": [], - "tag_changes": { - "phone": [ - "+1 989 236 7300" - ], - "amenity": [ - "school" - ], - "website": [ - "https://www.fultonpirates.net/", - "https://www.ithacaschools.net/o/ijsh", - "https://www.ithacaschools.net/jr-sr" - ], - "school:gender": [ - "mixed" - ], - "school:language": [ - "en" - ] - }, - "create": 0, - "modify": 12, - "delete": 0, - "area": 0.015752881078881, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/education", - "theme": "education", - "answer": 14, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 123822797 - } - }, - { - "id": 123822341, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3246793, - 52.4640256 - ], - [ - 13.3246793, - 52.4640256 - ], - [ - 13.3246793, - 52.4640256 - ], - [ - 13.3246793, - 52.4640256 - ], - [ - 13.3246793, - 52.4640256 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "ChSchadler", - "uid": "16563053", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T19:45:43Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "pump:status": [ - "ok", - "blocked" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 1, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123822341 - } - }, - { - "id": 123821214, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3730894, - 50.8387723 - ], - [ - 4.3733404, - 50.8387723 - ], - [ - 4.3733404, - 50.8680973 - ], - [ - 4.3730894, - 50.8680973 - ], - [ - 4.3730894, - 50.8387723 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #rainbow_crossings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T19:03:07Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/n024eWQ.jpg", - "https://i.imgur.com/4h7F9DG.jpg" - ], - "highway": [ - "crossing" - ], - "crossing:marking": [ - "rainbow" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00000736057500001307, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/rainbow_crossings", - "theme": "rainbow_crossings", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 2, - "change_within_25m": 2 - }, - "id": 123821214 - } - }, - { - "id": 123821154, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9047659, - 51.1515703 - ], - [ - 4.9047659, - 51.1515703 - ], - [ - 4.9047659, - 51.1515703 - ], - [ - 4.9047659, - 51.1515703 - ], - [ - 4.9047659, - 51.1515703 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "philippec", - "uid": "76884", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T19:00:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1 - }, - "id": 123821154 - } - }, - { - "id": 123819841, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0968727, - 38.8492995 - ], - [ - 0.0969173, - 38.8492995 - ], - [ - 0.0969173, - 38.8493232 - ], - [ - 0.0968727, - 38.8493232 - ], - [ - 0.0968727, - 38.8492995 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T18:15:23Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "waste_disposal", - "recycling" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 1.05701999999307e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 4, - "create": 1, - "locale": "ca", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 123819841 - } - }, - { - "id": 123817922, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.3494213, - 51.6648863 - ], - [ - 14.3494213, - 51.6648863 - ], - [ - 14.3494213, - 51.6648863 - ], - [ - 14.3494213, - 51.6648863 - ], - [ - 14.3494213, - 51.6648863 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "tomtom616", - "uid": "16546724", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T17:19:18Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/VPPSGc9.jpg" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123817922 - } - }, - { - "id": 123816397, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4479798, - 51.0880293 - ], - [ - 3.4510042, - 51.0880293 - ], - [ - 3.4510042, - 51.0906397 - ], - [ - 3.4479798, - 51.0906397 - ], - [ - 3.4479798, - 51.0880293 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #education", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T16:47:54Z", - "reviewed_features": [], - "tag_changes": { - "school": [ - "kindergarten;primary" - ], - "amenity": [ - "school" - ], - "school:gender": [ - "mixed" - ], - "school:language": [ - "nl" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.00000789489375998315, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/education", - "theme": "education", - "answer": 3, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_within_1000m": 3 - }, - "id": 123816397 - } - }, - { - "id": 123816330, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4195343, - 45.3254724 - ], - [ - 8.4223636, - 45.3254724 - ], - [ - 8.4223636, - 45.328559 - ], - [ - 8.4195343, - 45.328559 - ], - [ - 8.4195343, - 45.3254724 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ivanbranco", - "uid": "11220113", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T16:46:32Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "unclassified", - "residential" - ], - "name:etymology:wikidata": [ - "Q112122633", - "Q113153204", - "Q170547" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00000873291737998928, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "answer": 4, - "locale": "it", - "imagery": "osm" - }, - "id": 123816330 - } - }, - { - "id": 123816296, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2367754, - 50.7330115 - ], - [ - 4.2367754, - 50.7330115 - ], - [ - 4.2367754, - 50.7330115 - ], - [ - 4.2367754, - 50.7330115 - ], - [ - 4.2367754, - 50.7330115 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #rainbow_crossings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T16:45:58Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "crossing" - ], - "crossing:marking": [ - "rainbow" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/rainbow_crossings.html", - "theme": "rainbow_crossings", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 123816296 - } - }, - { - "id": 123816238, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4479766, - 51.093353 - ], - [ - 3.4490044, - 51.093353 - ], - [ - 3.4490044, - 51.0940685 - ], - [ - 3.4479766, - 51.0940685 - ], - [ - 3.4479766, - 51.093353 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "L'imaginaire", - "uid": "654234", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T16:44:56Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "supermarket" - ], - "building": [ - "yes" - ], - "payment:cash": [ - "yes" - ], - "payment:cards": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 7.35390899998364e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_500m": 1 - }, - "id": 123816238 - } - }, - { - "id": 123815565, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2364602, - 50.7352864 - ], - [ - 4.2380559, - 50.7352864 - ], - [ - 4.2380559, - 50.7387442 - ], - [ - 4.2364602, - 50.7387442 - ], - [ - 4.2364602, - 50.7352864 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9897875136", - "name": "Inkoop Oud Goud", - "osm_id": 9897875136, - "reasons": [ - 43 - ], - "version": 6, - "primary_tags": { - "shop": "gold_buyer" - } - } - ], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T16:27:20Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "gold_buyer", - "estate_agent" - ] - }, - "create": 2, - "modify": 10, - "delete": 0, - "area": 0.00000551761146000009, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "move": 5, - "theme": "shops", - "answer": 5, - "create": 2, - "locale": "en", - "imagery": "osm", - "move:node/9897875136": "improve_accuracy", - "move:node/9897894179": "improve_accuracy" - }, - "id": 123815565 - } - }, - { - "id": 123815497, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6090254, - 52.4508092 - ], - [ - 13.6090254, - 52.4508092 - ], - [ - 13.6090254, - 52.4508092 - ], - [ - 13.6090254, - 52.4508092 - ], - [ - 13.6090254, - 52.4508092 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Paulus Maximus", - "uid": "16562534", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T16:25:41Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "theme": "waste_basket", - "answer": 1, - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 123815497 - } - }, - { - "id": 123815401, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6070842, - 52.4507756 - ], - [ - 13.608883, - 52.4507756 - ], - [ - 13.608883, - 52.4508399 - ], - [ - 13.6070842, - 52.4508399 - ], - [ - 13.6070842, - 52.4507756 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Paulus Maximus", - "uid": "16562534", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T16:23:29Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "survey:date": [ - "2022-07-19" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.1566283999692e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 123815401 - } - }, - { - "id": 123815332, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6070842, - 52.4508399 - ], - [ - 13.6070842, - 52.4508399 - ], - [ - 13.6070842, - 52.4508399 - ], - [ - 13.6070842, - 52.4508399 - ], - [ - 13.6070842, - 52.4508399 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Paulus Maximus", - "uid": "16562534", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T16:22:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 5, - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 123815332 - } - }, - { - "id": 123815257, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.608883, - 52.4506787 - ], - [ - 13.6108896, - 52.4506787 - ], - [ - 13.6108896, - 52.4507756 - ], - [ - 13.608883, - 52.4507756 - ], - [ - 13.608883, - 52.4506787 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Paulus Maximus", - "uid": "16562534", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T16:19:47Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/q02sjxM.jpg", - "https://i.imgur.com/zIlHdvA.jpg" - ], - "colour": [ - "brown" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ], - "material": [ - "wood" - ], - "direction": [ - "267" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 1.94439540005222e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 5, - "locale": "de", - "imagery": "osm", - "add-image": 2 - }, - "id": 123815257 - } - }, - { - "id": 123815223, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6108106, - 52.450749 - ], - [ - 13.6108106, - 52.450749 - ], - [ - 13.6108106, - 52.450749 - ], - [ - 13.6108106, - 52.450749 - ], - [ - 13.6108106, - 52.450749 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Paulus Maximus", - "uid": "16562534", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T16:18:12Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 1, - "create": 1, - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 123815223 - } - }, - { - "id": 123814684, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2362974, - 50.7353231 - ], - [ - 4.2364554, - 50.7353231 - ], - [ - 4.2364554, - 50.7362181 - ], - [ - 4.2362974, - 50.7362181 - ], - [ - 4.2362974, - 50.7353231 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Bart Hanssens", - "uid": "15770101", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T16:02:23Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "restaurant", - "fast_food" - ], - "website": [ - "https://loui-sushi.be" - ] - }, - "create": 0, - "modify": 1, - "delete": 1, - "area": 1.41409999999872e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 1, - "locale": "en", - "imagery": "osm", - "deletion": 1, - "deletion:node/5578934931": "testing point" - }, - "id": 123814684 - } - }, - { - "id": 123814448, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.5154911, - 52.4801358 - ], - [ - 13.5380989, - 52.4801358 - ], - [ - 13.5380989, - 52.4930464 - ], - [ - 13.5154911, - 52.4930464 - ], - [ - 13.5154911, - 52.4801358 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Paulus Maximus", - "uid": "16562534", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T15:56:19Z", - "reviewed_features": [], - "tag_changes": { - "image:0": [ - "https://i.imgur.com/NgC5toU.jpg", - "https://i.imgur.com/o7fgMQH.jpg", - "https://i.imgur.com/Md25pdR.jpg", - "https://i.imgur.com/58wlPWS.jpg" - ], - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-19" - ], - "pump:status": [ - "ok" - ] - }, - "create": 0, - "modify": 11, - "delete": 0, - "area": 0.000291880262679944, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 13, - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 6 - }, - "id": 123814448 - } - }, - { - "id": 123813920, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3507832, - 50.8617855 - ], - [ - 4.3514396, - 50.8617855 - ], - [ - 4.3514396, - 50.8621392 - ], - [ - 4.3507832, - 50.8621392 - ], - [ - 4.3507832, - 50.8617855 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T15:41:11Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "apartments" - ] - }, - "create": 1, - "modify": 4, - "delete": 0, - "area": 2.3216867999854e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/onwheels", - "theme": "onwheels", - "answer": 4, - "create": 2, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 7 - }, - "id": 123813920 - } - }, - { - "id": 123812940, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -123.062478, - 49.2428252 - ], - [ - -123.062478, - 49.2428252 - ], - [ - -123.062478, - 49.2428252 - ], - [ - -123.062478, - 49.2428252 - ], - [ - -123.062478, - 49.2428252 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Sieva", - "uid": "4860526", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T15:14:15Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "bicycle_repair_station" - ], - "opening_hours": [ - "24/7" - ], - "service:bicycle:stand": [ - "yes" - ], - "service:bicycle:tools": [ - "no" - ], - "service:bicycle:chain_tool": [ - "no" - ], - "service:bicycle:pump:operational_status": [ - "broken" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix", - "theme": "cyclofix", - "answer": 7, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 123812940 - } - }, - { - "id": 123811824, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 18.1973049, - 59.2604082 - ], - [ - 18.1973049, - 59.2604082 - ], - [ - 18.1973049, - 59.2604082 - ], - [ - 18.1973049, - 59.2604082 - ], - [ - 18.1973049, - 59.2604082 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AChoice", - "uid": "394089", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T14:44:30Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "playground" - ], - "surface": [ - "sand" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_500m": 1 - }, - "id": 123811824 - } - }, - { - "id": 123811123, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3427123, - 50.8734405 - ], - [ - 4.3427123, - 50.8734405 - ], - [ - 4.3427123, - 50.8734405 - ], - [ - 4.3427123, - 50.8734405 - ], - [ - 4.3427123, - 50.8734405 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "_AndrewsL_", - "uid": "8504164", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T14:26:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/onwheels", - "theme": "onwheels", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_25m": 3 - }, - "id": 123811123 - } - }, - { - "id": 123810686, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 18.2010981, - 59.2591532 - ], - [ - 18.2018878, - 59.2591532 - ], - [ - 18.2018878, - 59.2593223 - ], - [ - 18.2010981, - 59.2593223 - ], - [ - 18.2010981, - 59.2591532 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AChoice", - "uid": "394089", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T14:13:53Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential" - ], - "maxspeed": [ - "30" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.33538270000997e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "theme": "maxspeed", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 123810686 - } - }, - { - "id": 123810610, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3305606, - 50.8632293 - ], - [ - 4.3305606, - 50.8632293 - ], - [ - 4.3305606, - 50.8632293 - ], - [ - 4.3305606, - 50.8632293 - ], - [ - 4.3305606, - 50.8632293 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T14:11:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/onwheels", - "theme": "onwheels", - "answer": 5, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_25m": 5 - }, - "id": 123810610 - } - }, - { - "id": 123810225, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "IAmAlexRebai", - "uid": "16587324", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T14:00:04Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/onwheels", - "theme": "onwheels", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_25m": 1 - }, - "id": 123810225 - } - }, - { - "id": 123810202, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "IAmAlexRebai", - "uid": "16587324", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T13:59:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/onwheels", - "theme": "onwheels", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 123810202 - } - }, - { - "id": 123810147, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "IAmAlexRebai", - "uid": "16587324", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T13:58:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/onwheels", - "theme": "onwheels", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 123810147 - } - }, - { - "id": 123809685, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3526321, - 50.85658 - ], - [ - 4.3526321, - 50.85658 - ], - [ - 4.3526321, - 50.85658 - ], - [ - 4.3526321, - 50.85658 - ], - [ - 4.3526321, - 50.85658 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "IAmAlexRebai", - "uid": "16587324", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T13:46:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/onwheels", - "theme": "onwheels", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 123809685 - } - }, - { - "id": 123808116, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3551819, - 50.860181 - ], - [ - 4.3551819, - 50.860181 - ], - [ - 4.3551819, - 50.860181 - ], - [ - 4.3551819, - 50.860181 - ], - [ - 4.3551819, - 50.860181 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "IAmAlexRebai", - "uid": "16587324", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T13:10:21Z", - "reviewed_features": [], - "tag_changes": { - "width": [ - "0.94" - ], - "entrance": [ - "main", - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/entrances.html", - "theme": "entrances", - "answer": 8, - "locale": "en", - "imagery": "osm", - "change_within_25m": 8 - }, - "id": 123808116 - } - }, - { - "id": 123806886, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3559413, - 50.8605381 - ], - [ - 4.3559413, - 50.8605381 - ], - [ - 4.3559413, - 50.8605381 - ], - [ - 4.3559413, - 50.8605381 - ], - [ - 4.3559413, - 50.8605381 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T12:45:01Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/onwheels.html", - "theme": "onwheels", - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1 - }, - "id": 123806886 - } - }, - { - "id": 123806448, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.356063, - 50.8605468 - ], - [ - 4.3561591, - 50.8605468 - ], - [ - 4.3561591, - 50.8607836 - ], - [ - 4.356063, - 50.8607836 - ], - [ - 4.356063, - 50.8605468 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T12:35:42Z", - "reviewed_features": [], - "tag_changes": { - "width": [ - "0.95" - ], - "amenity": [ - "toilets" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 2.27564799997193e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/onwheels.html", - "theme": "onwheels", - "answer": 5, - "create": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_25m": 5 - }, - "id": 123806448 - } - }, - { - "id": 123805745, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T12:20:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/onwheels.html", - "theme": "onwheels", - "answer": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_within_25m": 1 - }, - "id": 123805745 - } - }, - { - "id": 123805743, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T12:20:33Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/onwheels.html", - "theme": "onwheels", - "answer": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_within_25m": 1 - }, - "id": 123805743 - } - }, - { - "id": 123805732, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3537721, - 50.8606179 - ], - [ - 4.3549681, - 50.8606179 - ], - [ - 4.3549681, - 50.8614007 - ], - [ - 4.3537721, - 50.8614007 - ], - [ - 4.3537721, - 50.8606179 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T12:20:19Z", - "reviewed_features": [], - "tag_changes": { - "office": [ - "company" - ], - "building": [ - "yes" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 9.36228799995474e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/onwheels.html", - "theme": "onwheels", - "answer": 3, - "create": 2, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_within_25m": 5 - }, - "id": 123805732 - } - }, - { - "id": 123804891, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T12:01:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/kerbs_and_crossings.html", - "theme": "kerbs_and_crossings", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 123804891 - } - }, - { - "id": 123804522, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3503112, - 50.8646408 - ], - [ - 4.3523403, - 50.8646408 - ], - [ - 4.3523403, - 50.8651701 - ], - [ - 4.3503112, - 50.8651701 - ], - [ - 4.3503112, - 50.8646408 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T11:52:26Z", - "reviewed_features": [], - "tag_changes": { - "kerb": [ - "lowered", - "raised" - ], - "barrier": [ - "kerb" - ], - "highway": [ - "crossing", - "footway" - ], - "tactile_paving": [ - "no" - ], - "button_operated": [ - "no" - ], - "crossing:island": [ - "no" - ] - }, - "create": 2, - "modify": 6, - "delete": 0, - "area": 0.00000107400263000739, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/kerbs_and_crossings.html", - "theme": "kerbs_and_crossings", - "answer": 6, - "create": 6, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 10 - }, - "id": 123804522 - } - }, - { - "id": 123804121, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3498441, - 50.8630167 - ], - [ - 4.3533158, - 50.8630167 - ], - [ - 4.3533158, - 50.8656632 - ], - [ - 4.3498441, - 50.8656632 - ], - [ - 4.3498441, - 50.8630167 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T11:43:14Z", - "reviewed_features": [], - "tag_changes": { - "door": [ - "sliding" - ], - "image": [ - "https://i.imgur.com/5EzcD8q.jpg" - ], - "width": [ - "0.82", - "0.93" - ], - "image:0": [ - "https://i.imgur.com/lGUnP7y.jpg" - ], - "building": [ - "office" - ], - "automatic_door": [ - "motion" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0.00000918785404998947, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/entrances.html", - "theme": "entrances", - "answer": 3, - "create": 2, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 5 - }, - "id": 123804121 - } - }, - { - "id": 123804110, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3493369, - 50.8655878 - ], - [ - 4.350863, - 50.8655878 - ], - [ - 4.350863, - 50.8668593 - ], - [ - 4.3493369, - 50.8668593 - ], - [ - 4.3493369, - 50.8655878 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "way-444059131", - "name": "Herman Teirlinckgebouw", - "osm_id": 444059131, - "reasons": [ - 43 - ], - "version": 16, - "primary_tags": { - "building": "government" - } - } - ], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T11:43:05Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "reception_desk" - ], - "building": [ - "government" - ] - }, - "create": 3, - "modify": 9, - "delete": 0, - "area": 0.00000194043615000271, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/onwheels", - "theme": "onwheels", - "answer": 12, - "create": 4, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 2, - "change_within_25m": 9, - "change_within_500m": 1 - }, - "id": 123804110 - } - }, - { - "id": 123802863, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3498343, - 50.8662424 - ], - [ - 4.3498343, - 50.8662424 - ], - [ - 4.3498343, - 50.8662424 - ], - [ - 4.3498343, - 50.8662424 - ], - [ - 4.3498343, - 50.8662424 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "RobinJulien", - "uid": "10173303", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T11:12:09Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/onwheels.html", - "theme": "onwheels", - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1 - }, - "id": 123802863 - } - }, - { - "id": 123798696, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3566973, - 50.8605715 - ], - [ - 4.3566973, - 50.8605715 - ], - [ - 4.3566973, - 50.8605715 - ], - [ - 4.3566973, - 50.8605715 - ], - [ - 4.3566973, - 50.8605715 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.22.1", - "comment": "Adding data with #MapComplete for theme #governments", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T09:38:43Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "FOD/SPF BOSA", - "Selor-Bosa" - ], - "office": [ - "government" - ], - "website": [ - "https://bosa.belgium.be", - "https://www.selor.be" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "http://127.0.0.1:1234/theme.html", - "theme": "governments", - "answer": 4, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 123798696 - } - }, - { - "id": 123795136, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4650744, - 50.8168273 - ], - [ - 3.4650744, - 50.8168273 - ], - [ - 3.4650744, - 50.8168273 - ], - [ - 3.4650744, - 50.8168273 - ], - [ - 3.4650744, - 50.8168273 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T08:34:02Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/9PUpCmc.jpg" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 123795136 - } - }, - { - "id": 123794909, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4659921, - 50.815764 - ], - [ - 3.4659921, - 50.815764 - ], - [ - 3.4659921, - 50.815764 - ], - [ - 3.4659921, - 50.815764 - ], - [ - 3.4659921, - 50.815764 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T08:29:04Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/jd93DkF.jpg" - ], - "amenity": [ - "public_bookcase" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 123794909 - } - }, - { - "id": 123794466, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #healthcare", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T08:19:52Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/", - "theme": "healthcare", - "answer": 1, - "locale": "en" - }, - "id": 123794466 - } - }, - { - "id": 123793778, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.0442275, - 48.4606276 - ], - [ - 8.0493357, - 48.4606276 - ], - [ - 8.0493357, - 48.463208 - ], - [ - 8.0442275, - 48.463208 - ], - [ - 8.0442275, - 48.4606276 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T08:06:08Z", - "reviewed_features": [], - "tag_changes": { - "seats": [ - "3" - ], - "colour": [ - "brown" - ], - "amenity": [ - "bench" - ], - "backrest": [ - "yes" - ], - "material": [ - "wood" - ], - "direction": [ - "96", - "84", - "317" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.000013181199279998, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 1, - "theme": "toerisme_vlaanderen", - "answer": 13, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 9, - "change_within_500m": 5, - "move:node/6307814155": "improve_accuracy" - }, - "id": 123793778 - } - }, - { - "id": 123789401, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8523612, - 51.1453604 - ], - [ - 4.8573638, - 51.1453604 - ], - [ - 4.8573638, - 51.149085 - ], - [ - 4.8523612, - 51.149085 - ], - [ - 4.8523612, - 51.1453604 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T06:22:09Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes", - "roof" - ], - "source:geometry:ref": [ - "Gbg/4046135", - "Gbg/4046121", - "Gbg/4046137", - "Gbg/4046124", - "Gbg/4046120", - "Gbg/4046138", - "Gbg/4046119", - "Gbg/4046123", - "Gbg/4049676", - "Gbg/4046122", - "Gbg/4046516", - "Gbg/4046517", - "Gbg/4046518", - "Gbg/4046621", - "Gbg/4046601", - "Gbg/4046559", - "Gbg/4046602", - "Gbg/4046558", - "Gbg/4046603", - "Gbg/4046557", - "Gbg/4046604", - "Gbg/4046556", - "Gbg/4046615", - "Gbg/4046639", - "Gbg/4928280", - "Gbg/4046616", - "Gbg/7020088", - "Gbg/4046619", - "Gbg/4046600", - "Gbg/4046682", - "Gbg/4046681", - "Gbg/5748697", - "Gbg/6757846", - "Gbg/4046140", - "Gbg/4928350", - "Gbg/4046623", - "Gbg/4046624", - "Gbg/4046679", - "Gbg/4046678", - "Gbg/4046352", - "Gbg/4046578", - "Gbg/4046622", - "Gbg/4046544", - "Gbg/4046543", - "Gbg/5862537", - "Gbg/5862531", - "Gbg/4046540", - "Gbg/4046539", - "Gbg/6803485", - "Gbg/4046136" - ], - "source:geometry:date": [ - "2013-01-16", - "2018-10-24", - "2018-09-13", - "2014-12-04", - "2021-10-25", - "2020-06-05", - "2013-02-20", - "2017-03-01" - ] - }, - "create": 645, - "modify": 301, - "delete": 0, - "area": 0.0000186326839599912, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 259, - "theme": "grb", - "import": 75, - "locale": "nl", - "imagery": "AGIV", - "conflation": 100 - }, - "id": 123789401 - } - }, - { - "id": 123789365, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8553528, - 51.1489028 - ], - [ - 4.8563636, - 51.1489028 - ], - [ - 4.8563636, - 51.1493779 - ], - [ - 4.8553528, - 51.1493779 - ], - [ - 4.8553528, - 51.1489028 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T06:21:22Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes", - "roof" - ], - "source:geometry:ref": [ - "Gbg/4046523", - "Gbg/4046537", - "Gbg/4046522", - "Gbg/5403713" - ], - "source:geometry:date": [ - "2014-12-04", - "2013-02-20", - "2013-01-16", - "2015-11-24" - ] - }, - "create": 53, - "modify": 20, - "delete": 0, - "area": 4.80231079995352e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 16, - "theme": "grb", - "import": 6, - "locale": "nl", - "imagery": "AGIV", - "conflation": 8 - }, - "id": 123789365 - } - }, - { - "id": 123788718, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.5154911, - 52.4801358 - ], - [ - 13.5380989, - 52.4801358 - ], - [ - 13.5380989, - 52.4930464 - ], - [ - 13.5154911, - 52.4930464 - ], - [ - 13.5154911, - 52.4801358 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Paulus Maximus", - "uid": "16562534", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T06:05:40Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "pump:status": [ - "broken", - "ok" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.000291880262679944, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 3, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123788718 - } - }, - { - "id": 123787306, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Paulus Maximus", - "uid": "16562534", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T05:13:43Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 123787306 - } - }, - { - "id": 123787196, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Paulus Maximus", - "uid": "16562534", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T05:08:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 123787196 - } - }, - { - "id": 123787186, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Paulus Maximus", - "uid": "16562534", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T05:08:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 123787186 - } - }, - { - "id": 123787009, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6090254, - 52.4508092 - ], - [ - 13.6090254, - 52.4508092 - ], - [ - 13.6090254, - 52.4508092 - ], - [ - 13.6090254, - 52.4508092 - ], - [ - 13.6090254, - 52.4508092 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Paulus Maximus", - "uid": "16562534", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T05:01:20Z", - "reviewed_features": [], - "tag_changes": { - "waste": [ - "dog_excrement;trash", - "trash" - ], - "amenity": [ - "waste_basket" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 1, - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 123787009 - } - }, - { - "id": 123786902, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Paulus Maximus", - "uid": "16562534", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T04:55:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 1, - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 123786902 - } - }, - { - "id": 123786822, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6122966, - 52.4517563 - ], - [ - 13.6122966, - 52.4517563 - ], - [ - 13.6122966, - 52.4517563 - ], - [ - 13.6122966, - 52.4517563 - ], - [ - 13.6122966, - 52.4517563 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Paulus Maximus", - "uid": "16562534", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T04:50:47Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 1, - "create": 1, - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 123786822 - } - }, - { - "id": 123786735, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6122434, - 52.4515561 - ], - [ - 13.6122434, - 52.4515561 - ], - [ - 13.6122434, - 52.4515561 - ], - [ - 13.6122434, - 52.4515561 - ], - [ - 13.6122434, - 52.4515561 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Paulus Maximus", - "uid": "16562534", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T04:46:07Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/kko982f.jpg" - ], - "colour": [ - "brown" - ], - "amenity": [ - "bench" - ], - "direction": [ - "259" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 18, - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 123786735 - } - }, - { - "id": 123786484, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6455658, - 50.7653174 - ], - [ - 3.6455658, - 50.7653174 - ], - [ - 3.6455658, - 50.7653174 - ], - [ - 3.6455658, - 50.7653174 - ], - [ - 3.6455658, - 50.7653174 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T04:32:15Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/7KTSGuv.jpg" - ], - "amenity": [ - "bicycle_parking" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 123786484 - } - }, - { - "id": 123785826, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6099936, - 50.7539139 - ], - [ - 3.6539158, - 50.7539139 - ], - [ - 3.6539158, - 50.7713386 - ], - [ - 3.6099936, - 50.7713386 - ], - [ - 3.6099936, - 50.7539139 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T03:58:05Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/jY5ZZ73.jpg", - "https://i.imgur.com/DLvte1A.jpg", - "https://i.imgur.com/KSIC14G.jpg" - ], - "route": [ - "bicycle", - "mtb", - "hiking" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.000765331158339972, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 7 - }, - "id": 123785826 - } - }, - { - "id": 123785275, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7993712, - 44.1399391 - ], - [ - 4.7998143, - 44.1399391 - ], - [ - 4.7998143, - 44.1411476 - ], - [ - 4.7993712, - 44.1411476 - ], - [ - 4.7993712, - 44.1399391 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "JLZIMMERMANN", - "uid": "188930", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-19T03:14:59Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential" - ], - "maxspeed": [ - "10" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 5.35486349998733e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "theme": "maxspeed", - "answer": 1, - "locale": "fr", - "imagery": "osm", - "change_within_5000m": 1 - }, - "id": 123785275 - } - }, - { - "id": 123784705, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 172.5586397, - -43.5236976 - ], - [ - 172.5587621, - -43.5236976 - ], - [ - 172.5587621, - -43.5234595 - ], - [ - 172.5586397, - -43.5234595 - ], - [ - 172.5586397, - -43.5236976 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "CoderThomas", - "uid": "11817585", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-19T02:21:51Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "direction": [ - "101", - "15", - "104", - "111" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 2.91434400018616e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 4, - "locale": "en", - "imagery": "LINZ_NZ_Aerial_Imagery" - }, - "id": 123784705 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-20.json b/Docs/Tools/stats/stats.2022-7-20.json deleted file mode 100644 index c3b91172b3..0000000000 --- a/Docs/Tools/stats/stats.2022-7-20.json +++ /dev/null @@ -1,3573 +0,0 @@ -{ - "features": [ - { - "id": 123869916, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -86.0715215, - 40.0403618 - ], - [ - -86.0714269, - 40.0403618 - ], - [ - -86.0714269, - 40.0404336 - ], - [ - -86.0715215, - 40.0404336 - ], - [ - -86.0715215, - 40.0403618 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9900802972", - "name": "Noblesville", - "osm_id": 9900802972, - "reasons": [ - 43 - ], - "version": 1, - "primary_tags": { - "amenity": "bicycle_library" - } - } - ], - "user": "Kanellar", - "uid": "16249964", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-20T23:59:52Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_repair_station", - "bicycle_parking", - "bicycle_library" - ] - }, - "create": 3, - "modify": 3, - "delete": 0, - "area": 6.79227999984756e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 8, - "create": 3, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 3, - "change_within_25m": 8 - }, - "id": 123869916 - } - }, - { - "id": 123868182, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.3089822, - 51.6747081 - ], - [ - 14.3093283, - 51.6747081 - ], - [ - 14.3093283, - 51.6749319 - ], - [ - 14.3089822, - 51.6749319 - ], - [ - 14.3089822, - 51.6747081 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "tomtom616", - "uid": "16546724", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T22:00:37Z", - "reviewed_features": [], - "tag_changes": { - "note": [ - "das ist leider falsch eingetragen" - ], - "landuse": [ - "basin" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 7.74571800001447e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123868182 - } - }, - { - "id": 123867395, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.0946968, - 51.8897052 - ], - [ - -2.0944922, - 51.8897052 - ], - [ - -2.0944922, - 51.8898033 - ], - [ - -2.0946968, - 51.8898033 - ], - [ - -2.0946968, - 51.8897052 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "InsertUser", - "uid": "89098", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-20T21:18:17Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "public" - ], - "leisure": [ - "pitch" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 2.00712599990438e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_500m": 1 - }, - "id": 123867395 - } - }, - { - "id": 123867066, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5997185, - 50.7485863 - ], - [ - 3.5997185, - 50.7485863 - ], - [ - 3.5997185, - 50.7485863 - ], - [ - 3.5997185, - 50.7485863 - ], - [ - 3.5997185, - 50.7485863 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T21:02:26Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/cB2PWWw.jpg" - ], - "tourism": [ - "artwork" - ], - "historic": [ - "memorial" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 123867066 - } - }, - { - "id": 123866427, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.9526508, - 48.8283096 - ], - [ - 12.9567737, - 48.8283096 - ], - [ - 12.9567737, - 48.8308515 - ], - [ - 12.9526508, - 48.8308515 - ], - [ - 12.9526508, - 48.8283096 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "APneunzehn74", - "uid": "12180500", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-20T20:36:10Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "university" - ], - "name:etymology:wikidata": [ - "Q468553" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.0000104799995100141, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 1, - "locale": "de", - "imagery": "osm", - "change_within_1000m": 1 - }, - "id": 123866427 - } - }, - { - "id": 123866299, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 43.8775688, - 56.2480817 - ], - [ - 43.8813524, - 56.2480817 - ], - [ - 43.8813524, - 56.2498446 - ], - [ - 43.8775688, - 56.2498446 - ], - [ - 43.8775688, - 56.2480817 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "alexashh", - "uid": "9054103", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T20:31:39Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/UuzVzpA.jpg" - ], - "access": [ - "yes" - ], - "amenity": [ - "bicycle_parking" - ] - }, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0.0000066701084400078, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 4, - "create": 1, - "locale": "ru", - "imagery": "CartoDB.Voyager", - "add-image": 2, - "change_over_5000m": 1, - "change_within_5000m": 3 - }, - "id": 123866299 - } - }, - { - "id": 123866281, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.5563084, - 50.8332773 - ], - [ - 3.6089142, - 50.8332773 - ], - [ - 3.6089142, - 50.8341479 - ], - [ - 3.5563084, - 50.8341479 - ], - [ - 3.5563084, - 50.8332773 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T20:30:41Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/YtJwMou.jpg", - "https://i.imgur.com/nEoWFah.jpg" - ], - "amenity": [ - "bench" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000457986094799447, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 123866281 - } - }, - { - "id": 123865689, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3428682, - 50.8572987 - ], - [ - 4.3428682, - 50.8572987 - ], - [ - 4.3428682, - 50.8572987 - ], - [ - 4.3428682, - 50.8572987 - ], - [ - 4.3428682, - 50.8572987 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #climbing", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T20:09:23Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "JES Stadsavontuur" - ], - "email": [ - "glenn.govaert@jes.be" - ], - "phone": [ - "+32 2 411 68 83" - ], - "leisure": [ - "sports_centre" - ], - "website": [ - "https://jesbrussels.be/vrije-tijd/stadsavontuur/" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/climbing", - "theme": "climbing", - "answer": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 123865689 - } - }, - { - "id": 123865007, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.3998477, - 45.3145448 - ], - [ - 8.4103905, - 45.3145448 - ], - [ - 8.4103905, - 45.3211854 - ], - [ - 8.3998477, - 45.3211854 - ], - [ - 8.3998477, - 45.3145448 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ivanbranco", - "uid": "11220113", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T19:45:47Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "unclassified", - "residential", - "service" - ], - "name:etymology:wikidata": [ - "Q202303", - "Q189015", - "Q5883980", - "Q113164895", - "Q101698", - "Q327237", - "Q113164812", - "Q25025", - "Q25050" - ] - }, - "create": 0, - "modify": 35, - "delete": 0, - "area": 0.0000700105176799682, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "answer": 43, - "locale": "it", - "imagery": "osm" - }, - "id": 123865007 - } - }, - { - "id": 123864455, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3520526, - 52.546131 - ], - [ - 13.3520526, - 52.546131 - ], - [ - 13.3520526, - 52.546131 - ], - [ - 13.3520526, - 52.546131 - ], - [ - 13.3520526, - 52.546131 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "wtRocks", - "uid": "16563010", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T19:26:49Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "drinking_water" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "create": 1, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123864455 - } - }, - { - "id": 123862902, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.384526, - 51.6463892 - ], - [ - 14.3857947, - 51.6463892 - ], - [ - 14.3857947, - 51.6507429 - ], - [ - 14.384526, - 51.6507429 - ], - [ - 14.384526, - 51.6463892 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "tomtom616", - "uid": "16546724", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T18:40:15Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 0.00000552353918999762, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123862902 - } - }, - { - "id": 123860844, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4250519, - 46.3838935 - ], - [ - 8.4250519, - 46.3838935 - ], - [ - 8.4250519, - 46.3838935 - ], - [ - 8.4250519, - 46.3838935 - ], - [ - 8.4250519, - 46.3838935 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Enrico Rossi", - "uid": "53188", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T17:28:17Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "yes" - ], - "toilets": [ - "yes" - ], - "tourism": [ - "caravan_site" - ], - "capacity": [ - "30" - ], - "sanitary_dump_station": [ - "yes" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/campersite.html", - "theme": "campersite", - "answer": 4, - "locale": "it", - "imagery": "osm" - }, - "id": 123860844 - } - }, - { - "id": 123860774, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 72.8134759, - 12.9651088 - ], - [ - 88.4189388, - 12.9651088 - ], - [ - 88.4189388, - 28.6166904 - ], - [ - 72.8134759, - 28.6166904 - ], - [ - 72.8134759, - 12.9651088 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T17:26:24Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "secondary", - "residential", - "unclassified", - "tertiary", - "primary" - ], - "leisure": [ - "park" - ], - "natural": [ - "water" - ], - "name:etymology:wikidata": [ - "Q55769", - "Q7282619" - ] - }, - "create": 0, - "modify": 80, - "delete": 0, - "area": 244.250175985123, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 101, - "locale": "en", - "imagery": "osm" - }, - "id": 123860774 - } - }, - { - "id": 123859702, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4093209, - 45.3133868 - ], - [ - 8.4293647, - 45.3133868 - ], - [ - 8.4293647, - 45.3236221 - ], - [ - 8.4093209, - 45.3236221 - ], - [ - 8.4093209, - 45.3133868 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ivanbranco", - "uid": "11220113", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T16:53:33Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "hospital", - "school" - ], - "highway": [ - "tertiary", - "residential", - "unclassified", - "secondary", - "footway" - ], - "landuse": [ - "education" - ], - "leisure": [ - "park" - ], - "name:etymology:wikidata": [ - "Q1025312", - "Q168962", - "Q806070", - "Q938903", - "Q166234", - "Q3136905", - "Q110279605", - "Q6101", - "Q316876", - "Q1016", - "Q172599", - "Q1399", - "Q182092", - "Q2714363", - "Q21077161", - "Q1401", - "Q44112", - "Q43399", - "Q313980", - "Q1242", - "Q296244", - "Q110160583", - "Q275635", - "Q53353158", - "Q715232", - "Q104694031", - "Q550262" - ] - }, - "create": 0, - "modify": 74, - "delete": 0, - "area": 0.000205154306139957, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "answer": 91, - "locale": "it", - "imagery": "osm" - }, - "id": 123859702 - } - }, - { - "id": 123859643, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.1067185, - 38.834806 - ], - [ - 0.1219017, - 38.834806 - ], - [ - 0.1219017, - 38.8455599 - ], - [ - 0.1067185, - 38.8455599 - ], - [ - 0.1067185, - 38.834806 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-20T16:51:18Z", - "reviewed_features": [], - "tag_changes": { - "bus": [ - "no" - ], - "fee": [ - "yes", - "no" - ], - "hgv": [ - "no" - ], - "access": [ - "yes" - ], - "amenity": [ - "charging_station" - ], - "bicycle": [ - "no" - ], - "maxstay": [ - "2 hours" - ], - "scooter": [ - "yes" - ], - "motorcar": [ - "yes" - ], - "parking:fee": [ - "yes", - "no" - ], - "payment:app": [ - "yes" - ], - "payment:cash": [ - "no" - ], - "socket:type2": [ - "1" - ], - "payment:cards": [ - "no" - ], - "authentication:app": [ - "yes" - ], - "authentication:nfc": [ - "no" - ], - "authentication:none": [ - "no" - ], - "socket:type2:output": [ - "7.4 kW", - "22 kW" - ], - "payment:membership_card": [ - "no" - ], - "authentication:debit_card": [ - "no" - ], - "authentication:money_card": [ - "no" - ], - "authentication:phone_call": [ - "no" - ], - "authentication:short_message": [ - "no" - ], - "authentication:membership_card": [ - "no" - ] - }, - "create": 1, - "modify": 15, - "delete": 0, - "area": 0.000163278614479961, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 23, - "create": 1, - "locale": "ca", - "imagery": "PNOA-Spain" - }, - "id": 123859643 - } - }, - { - "id": 123859610, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 29.5170757, - 64.1268042 - ], - [ - 29.5170757, - 64.1268042 - ], - [ - 29.5170757, - 64.1268042 - ], - [ - 29.5170757, - 64.1268042 - ], - [ - 29.5170757, - 64.1268042 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "houtari", - "uid": "2186388", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T16:50:08Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "bicycle" - ], - "service:bicycle:retail": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 123859610 - } - }, - { - "id": 123859116, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.106627, - 38.8342582 - ], - [ - 0.1087568, - 38.8342582 - ], - [ - 0.1087568, - 38.8354983 - ], - [ - 0.106627, - 38.8354983 - ], - [ - 0.106627, - 38.8342582 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-20T16:36:01Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "secondary" - ], - "maxspeed": [ - "50" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.00000264116497999331, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed", - "theme": "maxspeed", - "answer": 1, - "locale": "ca", - "imagery": "osm" - }, - "id": 123859116 - } - }, - { - "id": 123858848, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.1132885, - 38.8423754 - ], - [ - -0.1132885, - 38.8423754 - ], - [ - -0.1132885, - 38.8423754 - ], - [ - -0.1132885, - 38.8423754 - ], - [ - -0.1132885, - 38.8423754 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #healthcare", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-20T16:27:48Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "dentist" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/healthcare.html", - "theme": "healthcare", - "answer": 1, - "create": 1, - "locale": "ca", - "imagery": "PNOA-Spain" - }, - "id": 123858848 - } - }, - { - "id": 123858720, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4888146, - 50.7898645 - ], - [ - 3.4888146, - 50.7898645 - ], - [ - 3.4888146, - 50.7898645 - ], - [ - 3.4888146, - 50.7898645 - ], - [ - 3.4888146, - 50.7898645 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T16:23:35Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/981IcAa.jpg" - ], - "amenity": [ - "public_bookcase" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 123858720 - } - }, - { - "id": 123856751, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5922091, - 53.0267034 - ], - [ - 6.593019, - 53.0267034 - ], - [ - 6.593019, - 53.0271404 - ], - [ - 6.5922091, - 53.0271404 - ], - [ - 6.5922091, - 53.0267034 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Niels Elgaard Larsen", - "uid": "1288", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T15:29:16Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Hondenspeelplaats Marsdijk" - ], - "image": [ - "https://i.imgur.com/uBuhYp8.jpg" - ], - "amenity": [ - "waste_basket" - ], - "barrier": [ - "fence" - ], - "image:0": [ - "https://i.imgur.com/u84pN4T.jpg" - ], - "image:1": [ - "https://i.imgur.com/mEXtTfM.jpg" - ], - "image:2": [ - "https://i.imgur.com/8gFFdzv.jpg" - ], - "leisure": [ - "dog_park" - ], - "small_dog": [ - "shared" - ] - }, - "create": 1, - "modify": 8, - "delete": 0, - "area": 3.5392629999846e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "move": 1, - "theme": "pets", - "answer": 4, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 5, - "move:node/9900017686": "improve_accuracy" - }, - "id": 123856751 - } - }, - { - "id": 123855431, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4927793, - 50.7567379 - ], - [ - 3.6051468, - 50.7567379 - ], - [ - 3.6051468, - 50.8162546 - ], - [ - 3.4927793, - 50.8162546 - ], - [ - 3.4927793, - 50.7567379 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T14:56:38Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/Gptf5Ae.jpg", - "https://i.imgur.com/nPJcGEC.jpg", - "https://i.imgur.com/GMwu0U1.jpg", - "https://i.imgur.com/XZGxgv7.jpg" - ], - "route": [ - "foot", - "bicycle", - "hiking", - "bus" - ], - "amenity": [ - "bench" - ], - "highway": [ - "track", - "unclassified", - "footway", - "service", - "path", - "residential", - "tertiary" - ], - "landuse": [ - "farmyard" - ], - "building": [ - "yes" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00668774278725036, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 4 - }, - "id": 123855431 - } - }, - { - "id": 123853858, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.3397713, - 53.2513714 - ], - [ - 6.3397713, - 53.2513714 - ], - [ - 6.3397713, - 53.2513714 - ], - [ - 6.3397713, - 53.2513714 - ], - [ - 6.3397713, - 53.2513714 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-20T14:21:24Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "picnic_table" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "Actueel_orthoHR_WMTS", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 123853858 - } - }, - { - "id": 123853806, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.3397692, - 53.2513953 - ], - [ - 6.3397692, - 53.2513953 - ], - [ - 6.3397692, - 53.2513953 - ], - [ - 6.3397692, - 53.2513953 - ], - [ - 6.3397692, - 53.2513953 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-20T14:20:15Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "public_bookcase" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "Actueel_orthoHR_WMTS", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 2 - }, - "id": 123853806 - } - }, - { - "id": 123852812, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 72.8195054, - 11.9371712 - ], - [ - 79.8043921, - 11.9371712 - ], - [ - 79.8043921, - 28.5947474 - ], - [ - 72.8195054, - 28.5947474 - ], - [ - 72.8195054, - 11.9371712 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T13:57:48Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "school", - "library" - ], - "leisure": [ - "park" - ], - "name:etymology:wikidata": [ - "Q9513", - "Q19812241", - "Q3537634" - ] - }, - "create": 0, - "modify": 14, - "delete": 0, - "area": 116.351282453617, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 14, - "locale": "en", - "imagery": "osm" - }, - "id": 123852812 - } - }, - { - "id": 123852334, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3559547, - 50.8634729 - ], - [ - 4.3563651, - 50.8634729 - ], - [ - 4.3563651, - 50.8637827 - ], - [ - 4.3559547, - 50.8637827 - ], - [ - 4.3559547, - 50.8634729 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "RobinJulien", - "uid": "10173303", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T13:44:37Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "community_centre" - ], - "building": [ - "yes" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 1.27141920001456e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/onwheels", - "theme": "onwheels", - "create": 2, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 123852334 - } - }, - { - "id": 123852068, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.6314189, - -34.5874977 - ], - [ - -58.6314189, - -34.5874977 - ], - [ - -58.6314189, - -34.5874977 - ], - [ - -58.6314189, - -34.5874977 - ], - [ - -58.6314189, - -34.5874977 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AgusQui", - "uid": "331218", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-20T13:38:24Z", - "reviewed_features": [], - "tag_changes": { - "railway": [ - "signal" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "answer": 4, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 123852068 - } - }, - { - "id": 123849519, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.3595728, - 53.2289964 - ], - [ - 6.3748339, - 53.2289964 - ], - [ - 6.3748339, - 53.2327886 - ], - [ - 6.3595728, - 53.2327886 - ], - [ - 6.3595728, - 53.2289964 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-20T12:28:40Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "yes", - "no" - ], - "highway": [ - "secondary", - "cycleway", - "path", - "street_lamp" - ] - }, - "create": 1, - "modify": 5, - "delete": 0, - "area": 0.000057873143419992, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 9, - "create": 1, - "locale": "en", - "imagery": "Actueel_orthoHR_WMTS", - "change_over_5000m": 1, - "change_within_25m": 7, - "change_within_500m": 1, - "change_within_1000m": 1 - }, - "id": 123849519 - } - }, - { - "id": 123849450, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.2767473, - 53.2140205 - ], - [ - 6.2767473, - 53.2140205 - ], - [ - 6.2767473, - 53.2140205 - ], - [ - 6.2767473, - 53.2140205 - ], - [ - 6.2767473, - 53.2140205 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-20T12:26:41Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "recycling" - ], - "recycling:shoes": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "waste", - "answer": 1, - "locale": "en", - "imagery": "Actueel_orthoHR_WMTS", - "change_within_1000m": 1 - }, - "id": 123849450 - } - }, - { - "id": 123849449, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.3745581, - 53.2326105 - ], - [ - 6.3746506, - 53.2326105 - ], - [ - 6.3746506, - 53.2326837 - ], - [ - 6.3745581, - 53.2326837 - ], - [ - 6.3745581, - 53.2326105 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-20T12:26:41Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 3, - "modify": 0, - "delete": 0, - "area": 6.77100000026005e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 5, - "create": 3, - "locale": "en", - "imagery": "Actueel_orthoHR_WMTS", - "change_over_5000m": 3, - "change_within_25m": 5 - }, - "id": 123849449 - } - }, - { - "id": 123849211, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.8179812, - 53.0424808 - ], - [ - 8.8189602, - 53.0424808 - ], - [ - 8.8189602, - 53.0428776 - ], - [ - 8.8179812, - 53.0428776 - ], - [ - 8.8179812, - 53.0424808 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Niels Elgaard Larsen", - "uid": "1288", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T12:21:20Z", - "reviewed_features": [], - "tag_changes": { - "barrier": [ - "no" - ], - "leisure": [ - "dog_park" - ], - "small_dog": [ - "shared" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 3.88467199996931e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 123849211 - } - }, - { - "id": 123847579, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.8568433, - 47.9980214 - ], - [ - 7.8568433, - 47.9980214 - ], - [ - 7.8568433, - 47.9980214 - ], - [ - 7.8568433, - 47.9980214 - ], - [ - 7.8568433, - 47.9980214 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 1, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-20T11:42:56Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "image": [ - "https://i.imgur.com/igD30OX.jpg" - ], - "access": [ - "yes" - ], - "leisure": [ - "playground" - ], - "surface": [ - "woodchips" - ], - "wheelchair": [ - "limited" - ], - "opening_hours": [ - "sunrise-sunset" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 4, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 5 - }, - "id": 123847579 - } - }, - { - "id": 123846535, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.379468, - 50.8720933 - ], - [ - 4.379468, - 50.8720933 - ], - [ - 4.379468, - 50.8720933 - ], - [ - 4.379468, - 50.8720933 - ], - [ - 4.379468, - 50.8720933 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "AlexanderReb", - "uid": "16447083", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://8080-pietervdvn-mapcomplete-cbvf6umx6aw.ws-eu54.gitpod.io/assets/themes/onwheels/onwheels.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T11:17:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://8080-pietervdvn-mapcomplete-cbvf6umx6aw.ws-eu54.gitpod.io/assets/themes/onwheels/onwheels.json", - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 123846535 - } - }, - { - "id": 123846485, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3498343, - 50.8662424 - ], - [ - 4.3498343, - 50.8662424 - ], - [ - 4.3498343, - 50.8662424 - ], - [ - 4.3498343, - 50.8662424 - ], - [ - 4.3498343, - 50.8662424 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T11:15:54Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "image": [ - "https://i.imgur.com/rVxcIvd.jpg" - ], - "access": [ - "customers" - ], - "amenity": [ - "toilets" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/onwheels.html", - "theme": "onwheels", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 123846485 - } - }, - { - "id": 123846021, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3730894, - 50.8387723 - ], - [ - 4.3730894, - 50.8387723 - ], - [ - 4.3730894, - 50.8387723 - ], - [ - 4.3730894, - 50.8387723 - ], - [ - 4.3730894, - 50.8387723 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #rainbow_crossings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T11:05:24Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "crossing" - ], - "image:0": [ - "https://i.imgur.com/S3M59uZ.jpg" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/onwheels.html", - "theme": "rainbow_crossings", - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 123846021 - } - }, - { - "id": 123845951, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #rainbow_crossings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T11:03:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/index.html", - "theme": "rainbow_crossings", - "locale": "en", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 123845951 - } - }, - { - "id": 123844847, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3216341, - 52.465545 - ], - [ - 13.3216341, - 52.465545 - ], - [ - 13.3216341, - 52.465545 - ], - [ - 13.3216341, - 52.465545 - ], - [ - 13.3216341, - 52.465545 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "ChSchadler", - "uid": "16563053", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T10:36:31Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-20", - "2022-07-17" - ], - "pump:status": [ - "ok", - "blocked" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123844847 - } - }, - { - "id": 123844707, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.2871062, - 50.8013397 - ], - [ - 4.2871062, - 50.8013397 - ], - [ - 4.2871062, - 50.8013397 - ], - [ - 4.2871062, - 50.8013397 - ], - [ - 4.2871062, - 50.8013397 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Mizuna", - "uid": "12496737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T10:33:06Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "playground" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 2, - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 123844707 - } - }, - { - "id": 123844462, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.027127, - 51.9915138 - ], - [ - 14.0960091, - 51.9915138 - ], - [ - 14.0960091, - 52.0298784 - ], - [ - 14.027127, - 52.0298784 - ], - [ - 14.027127, - 51.9915138 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "LFFMH", - "uid": "14449743", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T10:26:58Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 5, - "modify": 2, - "delete": 0, - "area": 0.00264263421366008, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123844462 - } - }, - { - "id": 123841349, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.0260997, - 51.7782894 - ], - [ - 14.0260997, - 51.7782894 - ], - [ - 14.0260997, - 51.7782894 - ], - [ - 14.0260997, - 51.7782894 - ], - [ - 14.0260997, - 51.7782894 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "EnricoP71", - "uid": "15704807", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T09:16:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "www.waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123841349 - } - }, - { - "id": 123841037, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4062348, - 50.7594223 - ], - [ - 3.587651, - 50.7594223 - ], - [ - 3.587651, - 50.8349046 - ], - [ - 3.4062348, - 50.8349046 - ], - [ - 3.4062348, - 50.7594223 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T09:09:21Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/JSJEpQh.jpg", - "https://i.imgur.com/6NOgTR7.jpg" - ], - "tourism": [ - "artwork" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0136937120332608, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 123841037 - } - }, - { - "id": 123840168, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.007386, - 51.7861317 - ], - [ - 14.007386, - 51.7861317 - ], - [ - 14.007386, - 51.7861317 - ], - [ - 14.007386, - 51.7861317 - ], - [ - 14.007386, - 51.7861317 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9899285885", - "osm_id": 9899285885, - "reasons": [ - 43 - ], - "version": 3, - "primary_tags": { - "emergency": "Wasser tank unterirdisch" - } - } - ], - "user": "EnricoP71", - "uid": "15704807", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-20T08:50:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "www.waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123840168 - } - }, - { - "id": 123839939, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3780429, - 50.8691168 - ], - [ - 4.3790066, - 50.8691168 - ], - [ - 4.3790066, - 50.8713231 - ], - [ - 4.3780429, - 50.8713231 - ], - [ - 4.3780429, - 50.8691168 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "AlexanderReb", - "uid": "16447083", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://8081-pietervdvn-mapcomplete-cbvf6umx6aw.ws-eu54.gitpod.io/assets/themes/onwheels/onwheels.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T08:46:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 0.00000212621130999903, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://8081-pietervdvn-mapcomplete-cbvf6umx6aw.ws-eu54.gitpod.io/assets/themes/onwheels/onwheels.json", - "create": 2, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 123839939 - } - }, - { - "id": 123839852, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4666068, - 50.7893835 - ], - [ - 3.5706814, - 50.7893835 - ], - [ - 3.5706814, - 50.815326 - ], - [ - 3.4666068, - 50.815326 - ], - [ - 3.4666068, - 50.7893835 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T08:44:42Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/jGofxqH.jpg", - "https://i.imgur.com/4kpC07r.jpg", - "https://i.imgur.com/6OrmCfo.jpg", - "https://i.imgur.com/2rGvLlV.jpg" - ], - "amenity": [ - "bench" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00269995531049992, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 4 - }, - "id": 123839852 - } - }, - { - "id": 123837973, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3963653, - 51.0409765 - ], - [ - 3.3966545, - 51.0409765 - ], - [ - 3.3966545, - 51.0411284 - ], - [ - 3.3963653, - 51.0411284 - ], - [ - 3.3963653, - 51.0409765 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T08:00:50Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house" - ], - "source:geometry:date": [ - "2019-04-18", - "2012-09-24" - ] - }, - "create": 0, - "modify": 8, - "delete": 0, - "area": 4.3929479999657e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 7, - "theme": "grb", - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "conflation": 2 - }, - "id": 123837973 - } - }, - { - "id": 123837228, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.3307745, - 51.6631111 - ], - [ - 14.3398994, - 51.6631111 - ], - [ - 14.3398994, - 51.6702413 - ], - [ - 14.3307745, - 51.6702413 - ], - [ - 14.3307745, - 51.6631111 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "tomtom616", - "uid": "16546724", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T07:43:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 5, - "delete": 0, - "area": 0.000065062361979988, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123837228 - } - }, - { - "id": 123835174, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.61875, - 51.7096253 - ], - [ - 13.6511993, - 51.7096253 - ], - [ - 13.6511993, - 51.7212528 - ], - [ - 13.61875, - 51.7212528 - ], - [ - 13.61875, - 51.7096253 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FFw Zeckerin", - "uid": "16592520", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T06:48:36Z", - "reviewed_features": [], - "tag_changes": { - "note": [ - "800l/min.", - "600l/min.", - "1000l/min.", - "200m3" - ], - "natural": [ - "water" - ] - }, - "create": 5, - "modify": 13, - "delete": 0, - "area": 0.000377304235750094, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123835174 - } - }, - { - "id": 123832834, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.66065, - 50.9326706 - ], - [ - 3.66065, - 50.9326706 - ], - [ - 3.66065, - 50.9326706 - ], - [ - 3.66065, - 50.9326706 - ], - [ - 3.66065, - 50.9326706 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-20T05:41:35Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/BAfRjcK.jpg" - ], - "amenity": [ - "bench" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 123832834 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-21.json b/Docs/Tools/stats/stats.2022-7-21.json deleted file mode 100644 index a2ccac30cc..0000000000 --- a/Docs/Tools/stats/stats.2022-7-21.json +++ /dev/null @@ -1,4391 +0,0 @@ -{ - "features": [ - { - "id": 123913712, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.397104, - 51.0410662 - ], - [ - 3.397104, - 51.0410662 - ], - [ - 3.397104, - 51.0410662 - ], - [ - 3.397104, - 51.0410662 - ], - [ - 3.397104, - 51.0410662 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T23:16:11Z", - "reviewed_features": [], - "tag_changes": { - "office": [ - "government" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/personal.html", - "theme": "personal", - "create": 2, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 2 - }, - "id": 123913712 - } - }, - { - "id": 123912833, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4150553, - 45.3235043 - ], - [ - 8.4173997, - 45.3235043 - ], - [ - 8.4173997, - 45.3275375 - ], - [ - 8.4150553, - 45.3275375 - ], - [ - 8.4150553, - 45.3235043 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ivanbranco", - "uid": "11220113", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-21T22:36:36Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential" - ], - "name:etymology:wikidata": [ - "Q5625802", - "Q734108", - "Q113183089" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00000945543407998874, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "answer": 4, - "locale": "it", - "imagery": "osm" - }, - "id": 123912833 - } - }, - { - "id": 123909434, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.9632704, - 48.8283176 - ], - [ - 12.9632704, - 48.8283176 - ], - [ - 12.9632704, - 48.8283176 - ], - [ - 12.9632704, - 48.8283176 - ], - [ - 12.9632704, - 48.8283176 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "APneunzehn74", - "uid": "12180500", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T20:42:57Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "leaf_cycle": [ - "deciduous" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 123909434 - } - }, - { - "id": 123909381, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.0412151, - 48.8759329 - ], - [ - 13.0412151, - 48.8759329 - ], - [ - 13.0412151, - 48.8759329 - ], - [ - 13.0412151, - 48.8759329 - ], - [ - 13.0412151, - 48.8759329 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "APneunzehn74", - "uid": "12180500", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T20:40:31Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "yes" - ], - "tourism": [ - "caravan_site" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/campersite.html", - "theme": "campersite", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 123909381 - } - }, - { - "id": 123907594, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3739489, - 50.86695 - ], - [ - 4.3744523, - 50.86695 - ], - [ - 4.3744523, - 50.8678518 - ], - [ - 4.3739489, - 50.8678518 - ], - [ - 4.3739489, - 50.86695 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #rainbow_crossings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T19:44:42Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/RlDywPI.jpg", - "https://i.imgur.com/bjW4vOk.jpg", - "https://i.imgur.com/y12fs78.jpg" - ], - "highway": [ - "crossing" - ], - "crossing:marking": [ - "rainbow" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 4.53966119996552e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/rainbow_crossings.html", - "theme": "rainbow_crossings", - "answer": 3, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 3 - }, - "id": 123907594 - } - }, - { - "id": 123901728, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5585916, - 52.9944362 - ], - [ - 6.5585916, - 52.9944362 - ], - [ - 6.5585916, - 52.9944362 - ], - [ - 6.5585916, - 52.9944362 - ], - [ - 6.5585916, - 52.9944362 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T16:40:01Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/toilets.html", - "theme": "toilets", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 6 - }, - "id": 123901728 - } - }, - { - "id": 123900830, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6987581, - 50.5633838 - ], - [ - 4.6987581, - 50.5633838 - ], - [ - 4.6987581, - 50.5633838 - ], - [ - 4.6987581, - 50.5633838 - ], - [ - 4.6987581, - 50.5633838 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T16:13:02Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/yJjhM5t.jpg" - ], - "amenity": [ - "bicycle_parking" - ], - "capacity": [ - "16" - ], - "bicycle_parking": [ - "bollard", - "stands" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 3 - }, - "id": 123900830 - } - }, - { - "id": 123899774, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.540516, - 53.0068617 - ], - [ - 6.540516, - 53.0068617 - ], - [ - 6.540516, - 53.0068617 - ], - [ - 6.540516, - 53.0068617 - ], - [ - 6.540516, - 53.0068617 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T15:42:51Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "recycling" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/waste.html", - "theme": "waste", - "answer": 3, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 123899774 - } - }, - { - "id": 123898634, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T15:10:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_25m": 1 - }, - "id": 123898634 - } - }, - { - "id": 123898627, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T15:10:32Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 3 - }, - "id": 123898627 - } - }, - { - "id": 123898607, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T15:10:12Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_25m": 1 - }, - "id": 123898607 - } - }, - { - "id": 123898363, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.699198, - 50.5618002 - ], - [ - 4.699198, - 50.5618002 - ], - [ - 4.699198, - 50.5618002 - ], - [ - 4.699198, - 50.5618002 - ], - [ - 4.699198, - 50.5618002 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "FabienneWilmet", - "uid": "13029843", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T15:05:31Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 6, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_25m": 6 - }, - "id": 123898363 - } - }, - { - "id": 123898044, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4371683, - 50.8479392 - ], - [ - 4.4371683, - 50.8479392 - ], - [ - 4.4371683, - 50.8479392 - ], - [ - 4.4371683, - 50.8479392 - ], - [ - 4.4371683, - 50.8479392 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "StefDeGreef", - "uid": "1860737", - "editor": "MapComplete 0.22.2", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T14:57:12Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_repair_station" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "move": 1, - "theme": "cyclofix", - "answer": 9, - "create": 1, - "locale": "fr", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 11, - "move:node/9902102977": "improve_accuracy" - }, - "id": 123898044 - } - }, - { - "id": 123897820, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6413805, - -33.4579702 - ], - [ - -70.6413805, - -33.4579702 - ], - [ - -70.6413805, - -33.4579702 - ], - [ - -70.6413805, - -33.4579702 - ], - [ - -70.6413805, - -33.4579702 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #ghostbikes", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-21T14:51:10Z", - "reviewed_features": [], - "tag_changes": { - "historic": [ - "memorial" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/ghostbikes.html", - "theme": "ghostbikes", - "create": 1, - "locale": "en", - "imagery": "EsriWorldImagery", - "add-image": 1 - }, - "id": 123897820 - } - }, - { - "id": 123897817, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.393501, - 45.3216469 - ], - [ - 8.412255, - 45.3216469 - ], - [ - 8.412255, - 45.3283355 - ], - [ - 8.393501, - 45.3283355 - ], - [ - 8.393501, - 45.3216469 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ivanbranco", - "uid": "11220113", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-21T14:51:07Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential", - "unclassified", - "tertiary", - "living_street" - ], - "leisure": [ - "park" - ], - "name:etymology:wikidata": [ - "Q569213", - "Q583", - "Q2717091", - "Q428308", - "Q1373", - "Q1372", - "Q167457", - "Q1451146", - "Q495", - "Q982573", - "Q13376", - "Q13375", - "Q1248", - "Q113173142", - "Q15981", - "Q441294", - "Q69194", - "Q471166", - "Q463243", - "Q155691", - "Q93182", - "Q3064018", - "Q1982632", - "Q104694031" - ] - }, - "create": 0, - "modify": 43, - "delete": 0, - "area": 0.00012543800440007, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "answer": 50, - "locale": "it", - "imagery": "osm" - }, - "id": 123897817 - } - }, - { - "id": 123896993, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5695291, - 50.3628452 - ], - [ - 8.5695291, - 50.3628452 - ], - [ - 8.5695291, - 50.3628452 - ], - [ - 8.5695291, - 50.3628452 - ], - [ - 8.5695291, - 50.3628452 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Karl Holzlehner", - "uid": "16513028", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T14:31:03Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "create": 1, - "locale": "de", - "imagery": "HDM_HOT" - }, - "id": 123896993 - } - }, - { - "id": 123896964, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6628809, - 51.8123377 - ], - [ - 4.668645, - 51.8123377 - ], - [ - 4.668645, - 51.8135134 - ], - [ - 4.6628809, - 51.8135134 - ], - [ - 4.6628809, - 51.8123377 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Koen Rijnsent", - "uid": "4569696", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T14:30:18Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "artwork" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 0.0000067768523699847, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 3, - "create": 2, - "locale": "en", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 2, - "change_within_25m": 5 - }, - "id": 123896964 - } - }, - { - "id": 123896692, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -1.7918838, - 47.3280985 - ], - [ - -1.7918838, - 47.3280985 - ], - [ - -1.7918838, - 47.3280985 - ], - [ - -1.7918838, - 47.3280985 - ], - [ - -1.7918838, - 47.3280985 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T14:22:31Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "no" - ], - "amenity": [ - "toilets" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 123896692 - } - }, - { - "id": 123896476, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5037814, - 50.3404039 - ], - [ - 8.5037814, - 50.3404039 - ], - [ - 8.5037814, - 50.3404039 - ], - [ - 8.5037814, - 50.3404039 - ], - [ - 8.5037814, - 50.3404039 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Karl Holzlehner", - "uid": "16513028", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T14:16:02Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "caravan_site" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/campersite.html", - "theme": "campersite", - "answer": 2, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 123896476 - } - }, - { - "id": 123896244, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5905801, - -34.6444625 - ], - [ - -58.5905687, - -34.6444625 - ], - [ - -58.5905687, - -34.6444289 - ], - [ - -58.5905801, - -34.6444289 - ], - [ - -58.5905801, - -34.6444625 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AgusQui", - "uid": "331218", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T14:09:23Z", - "reviewed_features": [], - "tag_changes": { - "ref": [ - "HD 17", - "HD 8" - ], - "railway": [ - "signal" - ], - "railway:signal:route:caption": [ - "HD 17" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 3.83039999961278e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "answer": 5, - "locale": "en", - "imagery": "osm", - "change_within_25m": 5 - }, - "id": 123896244 - } - }, - { - "id": 123896121, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.3740477, - 52.1535371 - ], - [ - 5.3740477, - 52.1535371 - ], - [ - 5.3740477, - 52.1535371 - ], - [ - 5.3740477, - 52.1535371 - ], - [ - 5.3740477, - 52.1535371 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T14:06:00Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "elevator" - ], - "operational_status": [ - "broken" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/onwheels.html", - "theme": "onwheels", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_25m": 1 - }, - "id": 123896121 - } - }, - { - "id": 123895901, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5087851, - 50.3340268 - ], - [ - 8.5678554, - 50.3340268 - ], - [ - 8.5678554, - 50.3597918 - ], - [ - 8.5087851, - 50.3597918 - ], - [ - 8.5087851, - 50.3340268 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Karl Holzlehner", - "uid": "16513028", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T14:00:05Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "parking", - "recycling", - "waste_basket" - ] - }, - "create": 3, - "modify": 2, - "delete": 0, - "area": 0.00152194627950037, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 5, - "create": 3, - "locale": "de", - "imagery": "osm" - }, - "id": 123895901 - } - }, - { - "id": 123894890, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5279749, - 50.3310203 - ], - [ - 8.6034456, - 50.3310203 - ], - [ - 8.6034456, - 50.3582945 - ], - [ - 8.5279749, - 50.3582945 - ], - [ - 8.5279749, - 50.3310203 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Karl Holzlehner", - "uid": "16513028", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T13:35:04Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "parking", - "post_box" - ], - "highway": [ - "street_lamp" - ] - }, - "create": 4, - "modify": 0, - "delete": 0, - "area": 0.00205840296594007, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 11, - "create": 4, - "locale": "de", - "imagery": "osm" - }, - "id": 123894890 - } - }, - { - "id": 123894314, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5280581, - 50.3307887 - ], - [ - 11.2817734, - 50.3307887 - ], - [ - 11.2817734, - 51.5170603 - ], - [ - 8.5280581, - 51.5170603 - ], - [ - 8.5280581, - 50.3307887 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Karl Holzlehner", - "uid": "16513028", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #postboxes", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T13:19:54Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "bicycle", - "bus", - "road", - "hiking" - ], - "amenity": [ - "parking", - "post_box" - ], - "highway": [ - "residential", - "footway", - "secondary", - "secondary_link" - ] - }, - "create": 6, - "modify": 0, - "delete": 0, - "area": 3.26665425487547, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "postboxes", - "create": 5, - "locale": "de", - "imagery": "osm" - }, - "id": 123894314 - } - }, - { - "id": 123893924, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5282191, - 50.3306305 - ], - [ - 8.5282191, - 50.3306305 - ], - [ - 8.5282191, - 50.3306305 - ], - [ - 8.5282191, - 50.3306305 - ], - [ - 8.5282191, - 50.3306305 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Karl Holzlehner", - "uid": "16513028", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T13:09:05Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "amenity": [ - "toilets" - ], - "opening_hours": [ - "24/7" - ], - "toilets:position": [ - "seated;urinal" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 3, - "locale": "de", - "imagery": "osm" - }, - "id": 123893924 - } - }, - { - "id": 123893776, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5326661, - 50.333484 - ], - [ - 8.5326661, - 50.333484 - ], - [ - 8.5326661, - 50.333484 - ], - [ - 8.5326661, - 50.333484 - ], - [ - 8.5326661, - 50.333484 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Karl Holzlehner", - "uid": "16513028", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T13:05:29Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "charging_station" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "create": 1, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123893776 - } - }, - { - "id": 123893334, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5594561, - 52.9949319 - ], - [ - 6.56991, - 52.9949319 - ], - [ - 6.56991, - 52.9987231 - ], - [ - 6.5594561, - 52.9987231 - ], - [ - 6.5594561, - 52.9949319 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T12:55:45Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 0.0000396328256800205, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 3, - "create": 2, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 2, - "change_within_5000m": 3 - }, - "id": 123893334 - } - }, - { - "id": 123893302, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3495888, - 50.8658337 - ], - [ - 4.3496425, - 50.8658337 - ], - [ - 4.3496425, - 50.865873 - ], - [ - 4.3495888, - 50.865873 - ], - [ - 4.3495888, - 50.8658337 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T12:54:44Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "customers" - ], - "amenity": [ - "toilets" - ], - "toilets:position": [ - "seated" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 2.11040999984529e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 2, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 2 - }, - "id": 123893302 - } - }, - { - "id": 123893220, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5687148, - 50.3613198 - ], - [ - 8.5695618, - 50.3613198 - ], - [ - 8.5695618, - 50.3655401 - ], - [ - 8.5687148, - 50.3655401 - ], - [ - 8.5687148, - 50.3613198 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Karl Holzlehner", - "uid": "16513028", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T12:53:13Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "limited" - ], - "leisure": [ - "pitch" - ], - "surface": [ - "sand" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0.00000357459410000117, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "answer": 3, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 123893220 - } - }, - { - "id": 123893205, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Karl Holzlehner", - "uid": "16513028", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T12:52:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 123893205 - } - }, - { - "id": 123893185, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Karl Holzlehner", - "uid": "16513028", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T12:52:22Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "create": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 123893185 - } - }, - { - "id": 123893056, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5389986, - 50.35568 - ], - [ - 11.2818084, - 50.35568 - ], - [ - 11.2818084, - 51.5196996 - ], - [ - 8.5389986, - 51.5196996 - ], - [ - 8.5389986, - 50.35568 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Karl Holzlehner", - "uid": "16513028", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T12:48:51Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "bus" - ], - "highway": [ - "tertiary" - ], - "maxspeed": [ - "100" - ] - }, - "create": 3, - "modify": 7, - "delete": 0, - "area": 3.19268436627209, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "split": 4, - "theme": "maxspeed", - "answer": 3, - "locale": "de", - "imagery": "osm", - "relation-fix": 4 - }, - "id": 123893056 - } - }, - { - "id": 123892623, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6713859, - 50.1471514 - ], - [ - 8.6713859, - 50.1471514 - ], - [ - 8.6713859, - 50.1471514 - ], - [ - 8.6713859, - 50.1471514 - ], - [ - 8.6713859, - 50.1471514 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Karl Holzlehner", - "uid": "16513028", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T12:37:48Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "create": 1, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 123892623 - } - }, - { - "id": 123892582, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5570098, - 50.1469932 - ], - [ - 8.671284, - 50.1469932 - ], - [ - 8.671284, - 50.3624936 - ], - [ - 8.5570098, - 50.3624936 - ], - [ - 8.5570098, - 50.1469932 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Karl Holzlehner", - "uid": "16513028", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T12:36:40Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 4, - "modify": 0, - "delete": 0, - "area": 0.0246261358096805, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 2, - "create": 4, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_100m": 1 - }, - "id": 123892582 - } - }, - { - "id": 123892352, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6675987, - 50.1463126 - ], - [ - 8.6675987, - 50.1463126 - ], - [ - 8.6675987, - 50.1463126 - ], - [ - 8.6675987, - 50.1463126 - ], - [ - 8.6675987, - 50.1463126 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Karl Holzlehner", - "uid": "16513028", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T12:31:06Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "create": 1, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 123892352 - } - }, - { - "id": 123892252, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.9738122, - 48.6354205 - ], - [ - 9.9738122, - 48.6354205 - ], - [ - 9.9738122, - 48.6354205 - ], - [ - 9.9738122, - 48.6354205 - ], - [ - 9.9738122, - 48.6354205 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #parkings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T12:29:06Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/7OGD46H.jpg" - ], - "amenity": [ - "parking" - ], - "parking": [ - "surface" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/parkings.html", - "theme": "parkings", - "answer": 1, - "locale": "es", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 123892252 - } - }, - { - "id": 123891998, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.9740351, - 48.6354319 - ], - [ - 9.9740351, - 48.6354319 - ], - [ - 9.9740351, - 48.6354319 - ], - [ - 9.9740351, - 48.6354319 - ], - [ - 9.9740351, - 48.6354319 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #maps", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T12:23:59Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/L0hscmh.jpg" - ], - "tourism": [ - "information" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maps.html", - "theme": "maps", - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_within_50m": 1 - }, - "id": 123891998 - } - }, - { - "id": 123891978, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5123175, - 50.1467354 - ], - [ - 11.2793246, - 50.1467354 - ], - [ - 11.2793246, - 51.517556 - ], - [ - 8.5123175, - 51.517556 - ], - [ - 8.5123175, - 50.1467354 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Karl Holzlehner", - "uid": "16513028", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #parkings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T12:23:25Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "bicycle", - "bus", - "road", - "hiking" - ], - "amenity": [ - "parking" - ], - "highway": [ - "service", - "residential", - "footway", - "secondary", - "secondary_link", - "track" - ], - "landuse": [ - "cemetery", - "forest" - ], - "natural": [ - "wetland" - ], - "building": [ - "yes" - ], - "man_made": [ - "tower" - ] - }, - "create": 17, - "modify": 2, - "delete": 0, - "area": 3.79307033302627, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/parkings.html", - "theme": "parkings", - "answer": 5, - "create": 17, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 5 - }, - "id": 123891978 - } - }, - { - "id": 123891894, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6706027, - 50.1467457 - ], - [ - 8.6706027, - 50.1467457 - ], - [ - 8.6706027, - 50.1467457 - ], - [ - 8.6706027, - 50.1467457 - ], - [ - 8.6706027, - 50.1467457 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Karl Holzlehner", - "uid": "16513028", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T12:21:22Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "pub" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 1, - "create": 1, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_500m": 1 - }, - "id": 123891894 - } - }, - { - "id": 123891697, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.6709729, - 50.146995 - ], - [ - 8.6709729, - 50.146995 - ], - [ - 8.6709729, - 50.146995 - ], - [ - 8.6709729, - 50.146995 - ], - [ - 8.6709729, - 50.146995 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Karl Holzlehner", - "uid": "16513028", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T12:17:16Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "playground" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 4, - "create": 1, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_100m": 4 - }, - "id": 123891697 - } - }, - { - "id": 123889905, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3820021, - 52.976565 - ], - [ - 13.5094473, - 52.976565 - ], - [ - 13.5094473, - 53.0340861 - ], - [ - 13.3820021, - 53.0340861 - ], - [ - 13.3820021, - 52.976565 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Carsten OHV", - "uid": "16603575", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-21T11:34:57Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 7, - "modify": 3, - "delete": 0, - "area": 0.00733078809372033, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123889905 - } - }, - { - "id": 123889036, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.3936334, - 45.3183297 - ], - [ - 8.3980397, - 45.3183297 - ], - [ - 8.3980397, - 45.3218487 - ], - [ - 8.3936334, - 45.3218487 - ], - [ - 8.3936334, - 45.3183297 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ivanbranco", - "uid": "11220113", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-21T11:14:17Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential" - ], - "name:etymology:wikidata": [ - "Q113171133", - "Q113171076" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.0000155057696999855, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "answer": 6, - "locale": "it", - "imagery": "osm" - }, - "id": 123889036 - } - }, - { - "id": 123886242, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.9617953, - 48.8317808 - ], - [ - 12.9623943, - 48.8317808 - ], - [ - 12.9623943, - 48.8336155 - ], - [ - 12.9617953, - 48.8336155 - ], - [ - 12.9617953, - 48.8317808 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "APneunzehn74", - "uid": "12180500", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T10:06:37Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential", - "pedestrian" - ], - "name:etymology:wikidata": [ - "Q44785" - ] - }, - "create": 0, - "modify": 11, - "delete": 0, - "area": 0.00000109898530000085, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 15, - "locale": "de", - "imagery": "osm", - "change_within_500m": 2, - "change_within_1000m": 13 - }, - "id": 123886242 - } - }, - { - "id": 123885123, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.5209044, - 52.4861089 - ], - [ - 13.5246391, - 52.4861089 - ], - [ - 13.5246391, - 52.4890908 - ], - [ - 13.5209044, - 52.4890908 - ], - [ - 13.5209044, - 52.4861089 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Paulus Maximus", - "uid": "16562534", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-21T09:44:21Z", - "reviewed_features": [], - "tag_changes": { - "image:0": [ - "https://i.imgur.com/QW057Q3.jpg", - "https://i.imgur.com/ekZyUbf.jpg" - ], - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-21" - ], - "pump:status": [ - "ok" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.0000111365019300088, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 2 - }, - "id": 123885123 - } - }, - { - "id": 123885117, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9077325, - 51.1838971 - ], - [ - 4.9087142, - 51.1838971 - ], - [ - 4.9087142, - 51.1841112 - ], - [ - 4.9077325, - 51.1841112 - ], - [ - 4.9077325, - 51.1838971 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T09:44:14Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes", - "roof" - ], - "source:geometry:ref": [ - "Gbg/3948960", - "Gbg/3948972", - "Gbg/3948961" - ], - "source:geometry:date": [ - "2012-11-15" - ] - }, - "create": 41, - "modify": 15, - "delete": 0, - "area": 2.10181969994005e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 12, - "theme": "grb", - "import": 6, - "locale": "nl", - "imagery": "AGIV", - "conflation": 6 - }, - "id": 123885117 - } - }, - { - "id": 123884925, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9047111, - 51.1840674 - ], - [ - 4.9101519, - 51.1840674 - ], - [ - 4.9101519, - 51.1861051 - ], - [ - 4.9047111, - 51.1861051 - ], - [ - 4.9047111, - 51.1840674 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T09:39:47Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "shed", - "yes" - ], - "source:geometry:ref": [ - "Gbg/7019693", - "Gbg/1708461", - "Gbg/1708433", - "Gbg/1708430", - "Gbg/5125367", - "Gbg/6151978", - "Gbg/1708499", - "Gbg/1708488" - ], - "source:geometry:date": [ - "2021-10-25", - "2009-09-30", - "2015-03-30", - "2017-11-20", - "2019-07-09" - ] - }, - "create": 100, - "modify": 69, - "delete": 0, - "area": 0.0000110867181599742, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 61, - "theme": "grb", - "import": 17, - "locale": "nl", - "imagery": "AGIV", - "conflation": 16 - }, - "id": 123884925 - } - }, - { - "id": 123884855, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9040821, - 51.1851866 - ], - [ - 4.9072344, - 51.1851866 - ], - [ - 4.9072344, - 51.1867829 - ], - [ - 4.9040821, - 51.1867829 - ], - [ - 4.9040821, - 51.1851866 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T09:37:52Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes" - ], - "source:geometry:ref": [ - "Gbg/1708443", - "Gbg/1708474", - "Gbg/3948878", - "Gbg/5403592", - "Gbg/5554927" - ], - "source:geometry:date": [ - "2009-09-30", - "2015-03-30", - "2012-11-15", - "2015-11-24", - "2016-05-02" - ] - }, - "create": 82, - "modify": 43, - "delete": 0, - "area": 0.00000503201648998633, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 38, - "theme": "grb", - "import": 11, - "locale": "nl", - "imagery": "AGIV", - "conflation": 10 - }, - "id": 123884855 - } - }, - { - "id": 123884809, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9037825, - 51.1856357 - ], - [ - 4.9048358, - 51.1856357 - ], - [ - 4.9048358, - 51.1867593 - ], - [ - 4.9037825, - 51.1867593 - ], - [ - 4.9037825, - 51.1856357 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T09:37:03Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes" - ], - "source:geometry:ref": [ - "Gbg/3948861", - "Gbg/3948860", - "Gbg/3948859", - "Gbg/3948858", - "Gbg/5862421", - "Gbg/3948857", - "Gbg/3948873" - ], - "source:geometry:date": [ - "2021-10-25", - "2013-02-20", - "2012-11-15", - "2017-03-01", - "2018-10-24" - ] - }, - "create": 42, - "modify": 59, - "delete": 0, - "area": 0.00000118348787999932, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 52, - "theme": "grb", - "import": 4, - "locale": "nl", - "imagery": "AGIV", - "conflation": 14 - }, - "id": 123884809 - } - }, - { - "id": 123884763, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3527096, - 50.8566312 - ], - [ - 4.3527096, - 50.8566312 - ], - [ - 4.3527096, - 50.8566312 - ], - [ - 4.3527096, - 50.8566312 - ], - [ - 4.3527096, - 50.8566312 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 2, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T09:36:01Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "elevator" - ], - "operational_status": [ - "closed" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/onwheels.html", - "theme": "onwheels", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1 - }, - "id": 123884763 - } - }, - { - "id": 123883607, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4489835, - 52.5178773 - ], - [ - 13.4489835, - 52.5178773 - ], - [ - 13.4489835, - 52.5178773 - ], - [ - 13.4489835, - 52.5178773 - ], - [ - 13.4489835, - 52.5178773 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "paddymonsun", - "uid": "4574701", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-21T09:12:11Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-21", - "2018" - ], - "pump:status": [ - "ok" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 3, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123883607 - } - }, - { - "id": 123880704, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4503042, - 50.868903 - ], - [ - 4.4503968, - 50.868903 - ], - [ - 4.4503968, - 50.8689783 - ], - [ - 4.4503042, - 50.8689783 - ], - [ - 4.4503042, - 50.868903 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T08:10:11Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/tXYd7rE.jpg" - ], - "leisure": [ - "playground" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 6.97277999992217e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 123880704 - } - }, - { - "id": 123879737, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9019609, - 51.1841411 - ], - [ - 4.9098724, - 51.1841411 - ], - [ - 4.9098724, - 51.1860571 - ], - [ - 4.9019609, - 51.1860571 - ], - [ - 4.9019609, - 51.1841411 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T07:45:11Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "place_of_worship" - ], - "building": [ - "yes", - "house", - "church", - "roof", - "garage" - ], - "addr:housenumber": [ - "3;3A", - "3", - "8;8A", - "8" - ], - "source:geometry:ref": [ - "Gbg/5554909", - "Gbg/3948879", - "Gbg/3948993", - "Gbg/3948994", - "Gbg/3949001", - "Gbg/3949012", - "Gbg/3949013", - "Gbg/3948981", - "Gbg/3949014", - "Gbg/3949015", - "Gbg/3948880", - "Gbg/3948980", - "Gbg/3948881", - "Gbg/3948979", - "Gbg/3948892", - "Gbg/5862273", - "Gbg/5862476", - "Gbg/3948997", - "Gbg/3948995", - "Gbg/3949000", - "Gbg/3948998", - "Gbg/5403628", - "Gbg/3948996", - "Gbg/3952058", - "Gbg/3948999", - "Gbg/3948776", - "Gbg/3948775", - "Gbg/6508582", - "Gbg/3948774", - "Gbg/1708429", - "Gbg/1708428", - "Gbg/1708427", - "Gbg/1708435", - "Gbg/6966468", - "Gbg/6641292", - "Gbg/1708510", - "Gbg/1708511", - "Gbg/1708495", - "Gbg/1708490", - "Gbg/1708489", - "Gbg/1708485" - ], - "source:geometry:date": [ - "2016-05-02", - "2012-11-15", - "2013-02-20", - "2021-10-25", - "2017-03-01", - "2014-12-04", - "2015-11-24", - "2018-10-24", - "2020-06-05", - "2016-07-28", - "2009-09-30", - "2021-07-05", - "2019-07-09" - ] - }, - "create": 297, - "modify": 315, - "delete": 1, - "area": 0.0000151584340000118, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 277, - "theme": "grb", - "answer": 4, - "delete": 1, - "import": 21, - "locale": "nl", - "imagery": "AGIV", - "conflation": 82 - }, - "id": 123879737 - } - }, - { - "id": 123879132, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9038759, - 51.1844828 - ], - [ - 4.9093796, - 51.1844828 - ], - [ - 4.9093796, - 51.186959 - ], - [ - 4.9038759, - 51.186959 - ], - [ - 4.9038759, - 51.1844828 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T07:30:05Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes", - "roof" - ], - "source:geometry:ref": [ - "Gbg/1708475", - "Gbg/1708476", - "Gbg/3948894", - "Gbg/1708469", - "Gbg/1708471", - "Gbg/1708437", - "Gbg/1708444", - "Gbg/1708442", - "Gbg/1708441", - "Gbg/1708477", - "Gbg/1708440", - "Gbg/1708439", - "Gbg/1708438", - "Gbg/1708445", - "Gbg/1708446", - "Gbg/1708447", - "Gbg/1708473", - "Gbg/1708478", - "Gbg/1708472", - "Gbg/1708479", - "Gbg/1708432", - "Gbg/2915781", - "Gbg/1708467", - "Gbg/5125368", - "Gbg/5125370", - "Gbg/1708484", - "Gbg/5127670", - "Gbg/6155395", - "Gbg/7015234", - "Gbg/7015233", - "Gbg/1708561", - "Gbg/5127669" - ], - "source:geometry:date": [ - "2009-09-30", - "2018-10-24", - "2015-03-30", - "2017-11-20", - "2021-10-22" - ] - }, - "create": 195, - "modify": 216, - "delete": 2, - "area": 0.0000136282619400215, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 184, - "theme": "grb", - "answer": 1, - "delete": 2, - "import": 22, - "locale": "nl", - "imagery": "AGIV", - "conflation": 64 - }, - "id": 123879132 - } - }, - { - "id": 123873216, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.638044, - -33.4591118 - ], - [ - -70.6374868, - -33.4591118 - ], - [ - -70.6374868, - -33.4590409 - ], - [ - -70.638044, - -33.4590409 - ], - [ - -70.638044, - -33.4591118 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-21T04:31:02Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 2, - "modify": 3, - "delete": 0, - "area": 3.95054800016038e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 2, - "create": 2, - "locale": "es", - "imagery": "EsriWorldImagery", - "add-image": 2 - }, - "id": 123873216 - } - }, - { - "id": 123872768, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6407539, - -33.459011 - ], - [ - -70.6384776, - -33.459011 - ], - [ - -70.6384776, - -33.4577934 - ], - [ - -70.6407539, - -33.4577934 - ], - [ - -70.6407539, - -33.459011 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-21T04:09:59Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "artwork" - ] - }, - "create": 2, - "modify": 4, - "delete": 0, - "area": 0.0000027716228799994, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 1, - "create": 2, - "locale": "en", - "imagery": "EsriWorldImagery", - "add-image": 4 - }, - "id": 123872768 - } - }, - { - "id": 123872413, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.5148802, - 48.5319084 - ], - [ - 9.5148967, - 48.5319084 - ], - [ - 9.5148967, - 48.5319307 - ], - [ - 9.5148802, - 48.5319307 - ], - [ - 9.5148802, - 48.5319084 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #maps", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T03:48:31Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/vc0IPCm.jpg" - ], - "tourism": [ - "information" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 3.67949999944145e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maps.html", - "theme": "maps", - "locale": "de", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 2 - }, - "id": 123872413 - } - }, - { - "id": 123871418, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -142.9536456, - 61.4351523 - ], - [ - -142.953645, - 61.4351523 - ], - [ - -142.953645, - 61.4351523 - ], - [ - -142.9536456, - 61.4351523 - ], - [ - -142.9536456, - 61.4351523 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jeepjockey", - "uid": "354701", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T02:28:48Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 6, - "create": 1, - "locale": "en", - "imagery": "Mapbox", - "add-image": 1, - "change_over_5000m": 1, - "change_within_50m": 7 - }, - "id": 123871418 - } - }, - { - "id": 123869985, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 0.0235354, - 38.8267462 - ], - [ - 0.0913477, - 38.8267462 - ], - [ - 0.0913477, - 38.8430819 - ], - [ - 0.0235354, - 38.8430819 - ], - [ - 0.0235354, - 38.8267462 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "paunofu", - "uid": "13779940", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T00:05:51Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "no", - "yes" - ], - "highway": [ - "footway", - "path" - ], - "railway": [ - "abandoned" - ], - "separation": [ - "kerb" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00110776138910994, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 3, - "locale": "ca", - "imagery": "CartoDB.Voyager" - }, - "id": 123869985 - } - }, - { - "id": 123869928, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -86.0713223, - 40.0404075 - ], - [ - -86.0713223, - 40.0404075 - ], - [ - -86.0713223, - 40.0404075 - ], - [ - -86.0713223, - 40.0404075 - ], - [ - -86.0713223, - 40.0404075 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Kanellar", - "uid": "16249964", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-21T00:01:09Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "drinking_water" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1 - }, - "id": 123869928 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-22.json b/Docs/Tools/stats/stats.2022-7-22.json deleted file mode 100644 index 0c6e14a982..0000000000 --- a/Docs/Tools/stats/stats.2022-7-22.json +++ /dev/null @@ -1,2328 +0,0 @@ -{ - "features": [ - { - "id": 123958169, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4179056, - 45.3141245 - ], - [ - 10.2293608, - 45.3141245 - ], - [ - 10.2293608, - 45.5364354 - ], - [ - 8.4179056, - 45.5364354 - ], - [ - 8.4179056, - 45.3141245 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ivanbranco", - "uid": "11220113", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-22T22:54:45Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential", - "secondary", - "unclassified", - "tertiary", - "pedestrian" - ], - "name:etymology:wikidata": [ - "Q42595", - "Q113205720", - "Q3676162", - "Q851323" - ] - }, - "create": 0, - "modify": 23, - "delete": 0, - "area": 0.402706235821687, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "answer": 24, - "locale": "it", - "imagery": "osm" - }, - "id": 123958169 - } - }, - { - "id": 123956365, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6669809, - 50.8925019 - ], - [ - 3.6842596, - 50.8925019 - ], - [ - 3.6842596, - 50.9165227 - ], - [ - 3.6669809, - 50.9165227 - ], - [ - 3.6669809, - 50.8925019 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-22T21:21:52Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/Nb3XNrA.jpg", - "https://i.imgur.com/KZWoLwy.jpg", - "https://i.imgur.com/LQBJ7Tv.jpg", - "https://i.imgur.com/M1r8HKm.jpg", - "https://i.imgur.com/v8NePtn.jpg" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.000415048196960038, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 5 - }, - "id": 123956365 - } - }, - { - "id": 123955439, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -2.7102019, - 51.4750333 - ], - [ - -2.7102019, - 51.4750333 - ], - [ - -2.7102019, - 51.4750333 - ], - [ - -2.7102019, - 51.4750333 - ], - [ - -2.7102019, - 51.4750333 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jumaka", - "uid": "129182", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #ghostbikes", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-22T20:39:34Z", - "reviewed_features": [], - "tag_changes": { - "historic": [ - "memorial" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/ghostbikes.html", - "theme": "ghostbikes", - "create": 1, - "locale": "en", - "imagery": "CartoDB.Positron" - }, - "id": 123955439 - } - }, - { - "id": 123954361, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.97261, - 51.1666063 - ], - [ - 4.9890077, - 51.1666063 - ], - [ - 4.9890077, - 51.1843282 - ], - [ - 4.97261, - 51.1843282 - ], - [ - 4.97261, - 51.1666063 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-22T19:58:51Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Annigo", - "Friture Annigo" - ], - "amenity": [ - "fast_food" - ], - "website": [ - "https://www.pizza-masters-geel.be", - "https://www.pastabar-forza.be/", - "https://www.frietjesonline.be" - ], - "delivery": [ - "yes" - ], - "takeaway": [ - "yes" - ] - }, - "create": 1, - "modify": 6, - "delete": 0, - "area": 0.000290598399630078, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 10, - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 123954361 - } - }, - { - "id": 123954317, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9890077, - 51.1666063 - ], - [ - 4.9890077, - 51.1666063 - ], - [ - 4.9890077, - 51.1666063 - ], - [ - 4.9890077, - 51.1666063 - ], - [ - 4.9890077, - 51.1666063 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-22T19:57:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 123954317 - } - }, - { - "id": 123954272, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9889905, - 51.1666063 - ], - [ - 4.9890077, - 51.1666063 - ], - [ - 4.9890077, - 51.1666552 - ], - [ - 4.9889905, - 51.1666552 - ], - [ - 4.9889905, - 51.1666063 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-22T19:55:13Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "fast_food" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 8.41080000065203e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 7, - "create": 1, - "locale": "nl", - "imagery": "osm" - }, - "id": 123954272 - } - }, - { - "id": 123953209, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.3531549, - 51.6521558 - ], - [ - 14.354327, - 51.6521558 - ], - [ - 14.354327, - 51.6853963 - ], - [ - 14.3531549, - 51.6853963 - ], - [ - 14.3531549, - 51.6521558 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9904734695", - "osm_id": 9904734695, - "reasons": [ - 43 - ], - "version": 3, - "primary_tags": { - "emergency": "Wassertank" - } - } - ], - "user": "tomtom616", - "uid": "16546724", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-22T19:22:14Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 5, - "delete": 0, - "area": 0.0000389611900499906, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123953209 - } - }, - { - "id": 123952470, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.0083221, - 52.11064 - ], - [ - 14.0083221, - 52.11064 - ], - [ - 14.0083221, - 52.11064 - ], - [ - 14.0083221, - 52.11064 - ], - [ - 14.0083221, - 52.11064 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "LFFMH", - "uid": "14449743", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-22T18:57:24Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123952470 - } - }, - { - "id": 123949832, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.4787769, - 51.3617279 - ], - [ - 14.4820296, - 51.3617279 - ], - [ - 14.4820296, - 51.362392 - ], - [ - 14.4787769, - 51.362392 - ], - [ - 14.4787769, - 51.3617279 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Hufkratzer", - "uid": "1377473", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-22T17:46:18Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential" - ], - "maxspeed": [ - "30" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.00000216011807000583, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "theme": "maxspeed", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 123949832 - } - }, - { - "id": 123949311, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3737702, - 50.8671657 - ], - [ - 4.3737702, - 50.8671657 - ], - [ - 4.3737702, - 50.8671657 - ], - [ - 4.3737702, - 50.8671657 - ], - [ - 4.3737702, - 50.8671657 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-22T17:34:30Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "charging_station" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 123949311 - } - }, - { - "id": 123943881, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3410555, - 51.3343573 - ], - [ - 13.3410555, - 51.3343573 - ], - [ - 13.3410555, - 51.3343573 - ], - [ - 13.3410555, - 51.3343573 - ], - [ - 13.3410555, - 51.3343573 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "radler64ohne", - "uid": "2234817", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-22T15:00:34Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 2, - "create": 1, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 3 - }, - "id": 123943881 - } - }, - { - "id": 123942617, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2158218, - 51.2006089 - ], - [ - 3.2158218, - 51.2006089 - ], - [ - 3.2158218, - 51.2006089 - ], - [ - 3.2158218, - 51.2006089 - ], - [ - 3.2158218, - 51.2006089 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Simon Ongenae", - "uid": "16614724", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-22T14:30:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 1, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "locale": "nl", - "imagery": "osm", - "deletion": 1, - "deletion:node/6211698751": "disused" - }, - "id": 123942617 - } - }, - { - "id": 123942089, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.2642592, - 51.3040058 - ], - [ - 13.272504, - 51.3040058 - ], - [ - 13.272504, - 51.3117395 - ], - [ - 13.2642592, - 51.3117395 - ], - [ - 13.2642592, - 51.3040058 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "radler64ohne", - "uid": "2234817", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-22T14:17:05Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "bus" - ], - "highway": [ - "tertiary" - ], - "maxspeed": [ - "30", - "50", - "60" - ] - }, - "create": 2, - "modify": 7, - "delete": 0, - "area": 0.000063762809760023, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "split": 3, - "theme": "maxspeed", - "answer": 5, - "locale": "de", - "imagery": "osm", - "relation-fix": 2 - }, - "id": 123942089 - } - }, - { - "id": 123942073, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.9548761, - 48.8280456 - ], - [ - 12.9639595, - 48.8280456 - ], - [ - 12.9639595, - 48.8319086 - ], - [ - 12.9548761, - 48.8319086 - ], - [ - 12.9548761, - 48.8280456 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "APneunzehn74", - "uid": "12180500", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-22T14:16:44Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential", - "service" - ], - "tourism": [ - "museum" - ], - "building": [ - "school" - ], - "historic": [ - "building" - ], - "name:etymology:wikidata": [ - "Q75009459", - "Q1222050" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000350891741999582, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 5, - "locale": "de", - "imagery": "osm" - }, - "id": 123942073 - } - }, - { - "id": 123939815, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.9809878, - 49.4754608 - ], - [ - 10.9815566, - 49.4754608 - ], - [ - 10.9815566, - 49.4778511 - ], - [ - 10.9809878, - 49.4778511 - ], - [ - 10.9809878, - 49.4754608 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "delphiN", - "uid": "13192", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-22T13:24:12Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "leaf_type": [ - "broadleaved" - ], - "denotation": [ - "garden", - "urban" - ], - "leaf_cycle": [ - "deciduous" - ] - }, - "create": 0, - "modify": 18, - "delete": 0, - "area": 0.00000135960264000087, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees", - "theme": "trees", - "answer": 21, - "locale": "en", - "imagery": "osm" - }, - "id": 123939815 - } - }, - { - "id": 123939201, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9068028, - 51.1827995 - ], - [ - 4.9094513, - 51.1827995 - ], - [ - 4.9094513, - 51.1841659 - ], - [ - 4.9068028, - 51.1841659 - ], - [ - 4.9068028, - 51.1827995 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-22T13:10:23Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes" - ], - "source:geometry:ref": [ - "Gbg/3948977" - ], - "source:geometry:date": [ - "2012-11-15" - ] - }, - "create": 193, - "modify": 9, - "delete": 0, - "area": 0.00000361891040000443, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 8, - "theme": "grb", - "import": 28, - "locale": "nl", - "imagery": "AGIV", - "conflation": 2 - }, - "id": 123939201 - } - }, - { - "id": 123938771, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.26417, - 51.3048439 - ], - [ - 13.2643014, - 51.3048439 - ], - [ - 13.2643014, - 51.3049395 - ], - [ - 13.26417, - 51.3049395 - ], - [ - 13.26417, - 51.3048439 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "radler64ohne", - "uid": "2234817", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-22T12:59:24Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 1.256184000029e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 2, - "create": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 123938771 - } - }, - { - "id": 123938203, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.9421039, - 48.8274072 - ], - [ - 12.9637672, - 48.8274072 - ], - [ - 12.9637672, - 48.8434244 - ], - [ - 12.9421039, - 48.8434244 - ], - [ - 12.9421039, - 48.8274072 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "APneunzehn74", - "uid": "12180500", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-22T12:46:17Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "cinema" - ], - "highway": [ - "residential", - "path" - ], - "name:etymology:wikidata": [ - "Q50843436", - "Q260073", - "Q884746", - "Q884705", - "Q23787547" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.000346985408760009, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 6, - "locale": "de", - "imagery": "osm" - }, - "id": 123938203 - } - }, - { - "id": 123935612, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3405674, - 52.9765408 - ], - [ - 13.3405674, - 52.9765408 - ], - [ - 13.3405674, - 52.9765408 - ], - [ - 13.3405674, - 52.9765408 - ], - [ - 13.3405674, - 52.9765408 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Carsten OHV", - "uid": "16603575", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-22T11:44:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123935612 - } - }, - { - "id": 123935417, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.6942572, - 48.2401805 - ], - [ - 12.7079916, - 48.2401805 - ], - [ - 12.7079916, - 48.2411326 - ], - [ - 12.6942572, - 48.2411326 - ], - [ - 12.6942572, - 48.2401805 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "termoyer", - "uid": "782208", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-22T11:39:36Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "tertiary" - ], - "maxspeed": [ - "50" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.00001307652223999, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "theme": "maxspeed", - "answer": 1, - "locale": "de", - "imagery": "osm", - "change_within_1000m": 1 - }, - "id": 123935417 - } - }, - { - "id": 123934641, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.7998638, - 51.1514736 - ], - [ - 2.7998638, - 51.1514736 - ], - [ - 2.7998638, - 51.1514736 - ], - [ - 2.7998638, - 51.1514736 - ], - [ - 2.7998638, - 51.1514736 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Ambigirl", - "uid": "15314372", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-22T11:20:54Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_500m": 1 - }, - "id": 123934641 - } - }, - { - "id": 123931378, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.8441432, - 48.815412 - ], - [ - 11.8441432, - 48.815412 - ], - [ - 11.8441432, - 48.815412 - ], - [ - 11.8441432, - 48.815412 - ], - [ - 11.8441432, - 48.815412 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-22T10:10:13Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "access": [ - "yes" - ], - "amenity": [ - "toilets" - ], - "wheelchair": [ - "no" - ], - "changing_table": [ - "no" - ], - "toilets:position": [ - "seated;urinal" - ], - "toilets:handwashing": [ - "yes" - ], - "toilets:paper_supplied": [ - "yes" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 7, - "locale": "en", - "imagery": "osm", - "change_within_25m": 7 - }, - "id": 123931378 - } - }, - { - "id": 123929542, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.1151895, - 54.3236382 - ], - [ - 10.1223694, - 54.3236382 - ], - [ - 10.1223694, - 54.3256943 - ], - [ - 10.1151895, - 54.3256943 - ], - [ - 10.1151895, - 54.3236382 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Discostu36", - "uid": "8265165", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-22T09:32:44Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "secondary", - "residential", - "path" - ], - "cycleway": [ - "no", - "separate" - ], - "separation": [ - "parking_lane", - "dashed_line" - ], - "cycleway:surface": [ - "asphalt" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.0000147625923900323, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 5, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123929542 - } - }, - { - "id": 123929364, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.1154258, - 54.3270751 - ], - [ - 10.1161881, - 54.3270751 - ], - [ - 10.1161881, - 54.327493 - ], - [ - 10.1154258, - 54.327493 - ], - [ - 10.1154258, - 54.3270751 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Discostu36", - "uid": "8265165", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-22T09:28:54Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "playground" - ], - "surface": [ - "sand" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 3.18565169996205e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 123929364 - } - }, - { - "id": 123929001, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 72.822298, - 8.4813886 - ], - [ - 87.2989325, - 8.4813886 - ], - [ - 87.2989325, - 32.0484619 - ], - [ - 72.822298, - 32.0484619 - ], - [ - 72.822298, - 8.4813886 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-22T09:21:06Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential", - "tertiary", - "primary", - "primary_link", - "unclassified", - "living_street" - ], - "leisure": [ - "park" - ], - "name:etymology:wikidata": [ - "Q7785243", - "Q7129065", - "Q13021", - "Q9513" - ] - }, - "create": 0, - "modify": 96, - "delete": 0, - "area": 341.171906398809, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 112, - "locale": "en", - "imagery": "osm" - }, - "id": 123929001 - } - }, - { - "id": 123927518, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4138625, - 45.3198179 - ], - [ - 8.4363617, - 45.3198179 - ], - [ - 8.4363617, - 45.3291037 - ], - [ - 8.4138625, - 45.3291037 - ], - [ - 8.4138625, - 45.3198179 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ivanbranco", - "uid": "11220113", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-22T08:51:09Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "unclassified", - "residential", - "pedestrian", - "secondary" - ], - "name:etymology:wikidata": [ - "Q313188", - "Q3604376", - "Q51122", - "Q435151", - "Q113192457", - "Q2942854", - "Q113192081", - "Q47578", - "Q113192763", - "Q113193022", - "Q61970959", - "Q2851732", - "Q113192157", - "Q113192953", - "Q261082", - "Q3104278", - "Q113128010", - "Q113192038", - "Q318037", - "Q22338086", - "Q109758159" - ] - }, - "create": 0, - "modify": 43, - "delete": 0, - "area": 0.000208923071360019, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "answer": 47, - "locale": "it", - "imagery": "osm" - }, - "id": 123927518 - } - }, - { - "id": 123927026, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4062549, - 51.0430412 - ], - [ - 3.4071422, - 51.0430412 - ], - [ - 3.4071422, - 51.0445256 - ], - [ - 3.4062549, - 51.0445256 - ], - [ - 3.4062549, - 51.0430412 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-22T08:39:53Z", - "reviewed_features": [], - "tag_changes": { - "barrier": [ - "bollard" - ], - "bicycle": [ - "yes" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000131710812000227, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/personal.html", - "theme": "personal", - "answer": 3, - "locale": "en", - "imagery": "osm", - "change_within_1000m": 3 - }, - "id": 123927026 - } - }, - { - "id": 123925715, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3420219, - 52.546782 - ], - [ - 13.3477554, - 52.546782 - ], - [ - 13.3477554, - 52.5501085 - ], - [ - 13.3420219, - 52.5501085 - ], - [ - 13.3420219, - 52.546782 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "baumBefeuchter", - "uid": "16563010", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-22T08:07:38Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-29", - "2020", - "2022-07-22", - "2022-07-16" - ], - "pump:status": [ - "broken", - "ok" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000190724877499995, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 5, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123925715 - } - }, - { - "id": 123925501, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3356759, - 52.551622 - ], - [ - 13.3412022, - 52.551622 - ], - [ - 13.3412022, - 52.5572254 - ], - [ - 13.3356759, - 52.5572254 - ], - [ - 13.3356759, - 52.551622 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "baumBefeuchter", - "uid": "16563010", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-22T08:02:10Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-22", - "2020" - ], - "pump:status": [ - "ok", - "broken" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000309660694199884, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 3, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123925501 - } - }, - { - "id": 123924547, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7522283, - 51.0750636 - ], - [ - 3.7522283, - 51.0750636 - ], - [ - 3.7522283, - 51.0750636 - ], - [ - 3.7522283, - 51.0750636 - ], - [ - 3.7522283, - 51.0750636 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ruben Van de Velde", - "uid": "2676725", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #healthcare", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-22T07:38:02Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/98Wmtxj.jpg" - ], - "amenity": [ - "pharmacy" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/healthcare.html", - "theme": "healthcare", - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_500m": 1 - }, - "id": 123924547 - } - }, - { - "id": 123924110, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.9619123, - 48.8305709 - ], - [ - 12.9627891, - 48.8305709 - ], - [ - 12.9627891, - 48.8318053 - ], - [ - 12.9619123, - 48.8318053 - ], - [ - 12.9619123, - 48.8305709 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "APneunzehn74", - "uid": "12180500", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-22T07:26:35Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "pedestrian", - "residential" - ], - "name:etymology:wikidata": [ - "Q72959" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.00000108232192000157, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 9, - "locale": "de", - "imagery": "osm", - "change_within_1000m": 9 - }, - "id": 123924110 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-23.json b/Docs/Tools/stats/stats.2022-7-23.json deleted file mode 100644 index 32db3903a4..0000000000 --- a/Docs/Tools/stats/stats.2022-7-23.json +++ /dev/null @@ -1,3261 +0,0 @@ -{ - "features": [ - { - "id": 123991608, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -117.1874671, - 47.6366492 - ], - [ - -116.9332011, - 47.6366492 - ], - [ - -116.9332011, - 47.735686 - ], - [ - -117.1874671, - 47.735686 - ], - [ - -117.1874671, - 47.6366492 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Coloradohusky", - "uid": "16345213", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-23T22:05:35Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential", - "tertiary", - "secondary" - ], - "maxspeed": [ - "25 mph", - "35 mph" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.0251816909888002, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "theme": "maxspeed", - "answer": 5, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 1, - "change_within_50m": 1, - "change_within_100m": 1, - "change_within_500m": 1 - }, - "id": 123991608 - } - }, - { - "id": 123989489, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4382963, - 52.9738984 - ], - [ - 13.4680393, - 52.9738984 - ], - [ - 13.4680393, - 52.9859346 - ], - [ - 13.4382963, - 52.9859346 - ], - [ - 13.4382963, - 52.9738984 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Carsten OHV", - "uid": "16603575", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-23T20:30:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 0, - "delete": 0, - "area": 0.000357992696599914, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123989489 - } - }, - { - "id": 123989175, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.1449015, - 49.2861696 - ], - [ - 13.1449445, - 49.2861696 - ], - [ - 13.1449445, - 49.2861704 - ], - [ - 13.1449015, - 49.2861704 - ], - [ - 13.1449015, - 49.2861696 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #maps", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-23T20:17:29Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/Idb54LA.jpg", - "https://i.imgur.com/rQ0nVLx.jpg" - ], - "tourism": [ - "information" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 3.44000000963029e-11, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maps.html", - "theme": "maps", - "locale": "de", - "imagery": "osm", - "add-image": 2, - "change_within_50m": 2 - }, - "id": 123989175 - } - }, - { - "id": 123988928, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0053223, - 51.6715421 - ], - [ - 9.0053223, - 51.6715421 - ], - [ - 9.0053223, - 51.6715421 - ], - [ - 9.0053223, - 51.6715421 - ], - [ - 9.0053223, - 51.6715421 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Amenophis", - "uid": "53104", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-23T20:07:41Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "theme": "waste_basket", - "answer": 1, - "create": 1, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 2 - }, - "id": 123988928 - } - }, - { - "id": 123987966, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9287009, - 50.1727438 - ], - [ - 8.9301181, - 50.1727438 - ], - [ - 8.9301181, - 50.1744325 - ], - [ - 8.9287009, - 50.1744325 - ], - [ - 8.9287009, - 50.1727438 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-23T19:30:12Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "public", - "members" - ], - "leisure": [ - "pitch" - ], - "reservation": [ - "required" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000239322564000155, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "answer": 3, - "locale": "de", - "imagery": "osm" - }, - "id": 123987966 - } - }, - { - "id": 123987816, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3602027, - 50.8676644 - ], - [ - 4.3602027, - 50.8676644 - ], - [ - 4.3602027, - 50.8676644 - ], - [ - 4.3602027, - 50.8676644 - ], - [ - 4.3602027, - 50.8676644 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-23T19:24:24Z", - "reviewed_features": [], - "tag_changes": { - "barrier": [ - "kerb" - ], - "tactile_paving": [ - "no" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/kerbs_and_crossings.html", - "theme": "kerbs_and_crossings", - "answer": 1, - "locale": "en", - "imagery": "osm", - "change_within_1000m": 1 - }, - "id": 123987816 - } - }, - { - "id": 123987793, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9265257, - 50.1734093 - ], - [ - 8.9313928, - 50.1734093 - ], - [ - 8.9313928, - 50.1757807 - ], - [ - 8.9265257, - 50.1757807 - ], - [ - 8.9265257, - 50.1734093 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #parkings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-23T19:23:24Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "parking" - ], - "capacity": [ - "40", - "32", - "27" - ], - "capacity:disabled": [ - "1", - "2" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.000011541840939972, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/parkings.html", - "theme": "parkings", - "answer": 7, - "locale": "de", - "imagery": "osm" - }, - "id": 123987793 - } - }, - { - "id": 123987482, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.927329, - 50.1733706 - ], - [ - 8.9284026, - 50.1733706 - ], - [ - 8.9284026, - 50.1741353 - ], - [ - 8.927329, - 50.1741353 - ], - [ - 8.927329, - 50.1733706 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-23T19:11:13Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential" - ], - "cycleway": [ - "no" - ], - "smoothness": [ - "good" - ], - "width:carriageway": [ - "7" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 8.20981920005029e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 4, - "locale": "de", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 4 - }, - "id": 123987482 - } - }, - { - "id": 123987449, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6483447, - 50.9561049 - ], - [ - 3.6624708, - 50.9561049 - ], - [ - 3.6624708, - 50.956695 - ], - [ - 3.6483447, - 50.956695 - ], - [ - 3.6483447, - 50.9561049 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-23T19:09:51Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/QwQU0OE.jpg", - "https://i.imgur.com/1ZHHsdG.jpg" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000833581161005224, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 2 - }, - "id": 123987449 - } - }, - { - "id": 123986933, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.926653, - 50.172937 - ], - [ - 8.927329, - 50.172937 - ], - [ - 8.927329, - 50.1733706 - ], - [ - 8.926653, - 50.1733706 - ], - [ - 8.926653, - 50.172937 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-23T18:50:29Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential" - ], - "cycleway": [ - "no" - ], - "smoothness": [ - "good" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 2.93113600000772e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/kerbs_and_crossings.html", - "theme": "kerbs_and_crossings", - "answer": 7, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 7 - }, - "id": 123986933 - } - }, - { - "id": 123985493, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.6678789, - 49.2148328 - ], - [ - 12.6693365, - 49.2148328 - ], - [ - 12.6693365, - 49.215351 - ], - [ - 12.6678789, - 49.215351 - ], - [ - 12.6678789, - 49.2148328 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-23T17:58:19Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "image": [ - "https://i.imgur.com/XDG6ggy.jpg", - "https://i.imgur.com/Z72cYbR.jpg" - ], - "access": [ - "yes" - ], - "amenity": [ - "toilets" - ], - "building": [ - "yes" - ], - "wheelchair": [ - "no" - ], - "changing_table": [ - "no" - ], - "toilets:position": [ - "seated;urinal" - ], - "toilets:paper_supplied": [ - "yes" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 7.55328319992517e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 7, - "locale": "de", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 5, - "change_within_500m": 4 - }, - "id": 123985493 - } - }, - { - "id": 123984287, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3793154, - 52.493169 - ], - [ - 13.3793154, - 52.493169 - ], - [ - 13.3793154, - 52.493169 - ], - [ - 13.3793154, - 52.493169 - ], - [ - 13.3793154, - 52.493169 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "fillidefilla", - "uid": "10882026", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-23T17:17:22Z", - "reviewed_features": [], - "tag_changes": { - "email": [ - "eat@h2beveggie.de" - ], - "amenity": [ - "restaurant" - ], - "delivery": [ - "yes" - ], - "takeaway": [ - "yes" - ], - "diet:vegan": [ - "yes" - ], - "payment:cash": [ - "yes" - ], - "payment:cards": [ - "yes" - ], - "service:electricity": [ - "ask" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 6, - "locale": "en", - "imagery": "osm" - }, - "id": 123984287 - } - }, - { - "id": 123984213, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3811143, - 52.4956644 - ], - [ - 13.3811143, - 52.4956644 - ], - [ - 13.3811143, - 52.4956644 - ], - [ - 13.3811143, - 52.4956644 - ], - [ - 13.3811143, - 52.4956644 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "fillidefilla", - "uid": "10882026", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-23T17:14:30Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ], - "cargo_bike": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 123984213 - } - }, - { - "id": 123984121, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.3039594, - 46.7951302 - ], - [ - 13.3795744, - 46.7951302 - ], - [ - 13.3795744, - 52.4950171 - ], - [ - 10.3039594, - 52.4950171 - ], - [ - 10.3039594, - 46.7951302 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "fillidefilla", - "uid": "10882026", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-23T17:11:11Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 17.5306576479435, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 123984121 - } - }, - { - "id": 123983045, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.1397107, - 43.5358721 - ], - [ - 4.1397107, - 43.5358721 - ], - [ - 4.1397107, - 43.5358721 - ], - [ - 4.1397107, - 43.5358721 - ], - [ - 4.1397107, - 43.5358721 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LySioS", - "uid": "11579673", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-23T16:39:36Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 1, - "locale": "fr", - "imagery": "osm", - "change_over_5000m": 1 - }, - "id": 123983045 - } - }, - { - "id": 123980974, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3520526, - 52.546131 - ], - [ - 13.3520526, - 52.546131 - ], - [ - 13.3520526, - 52.546131 - ], - [ - 13.3520526, - 52.546131 - ], - [ - 13.3520526, - 52.546131 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "baumBefeuchter", - "uid": "16563010", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-23T15:43:01Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/z5RZhRg.jpg" - ], - "amenity": [ - "drinking_water" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 123980974 - } - }, - { - "id": 123978763, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3170306, - 52.0791492 - ], - [ - 4.3170306, - 52.0791492 - ], - [ - 4.3170306, - 52.0791492 - ], - [ - 4.3170306, - 52.0791492 - ], - [ - 4.3170306, - 52.0791492 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "guushoekman", - "uid": "2618153", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-23T14:48:19Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "toys" - ], - "opening_hours": [ - "Fr 12:00-18:00;Mo-We 11:00-18:00;Sa 11:00-18:00;Su 12:00-18:00;Th 12:00-21:00" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 123978763 - } - }, - { - "id": 123978524, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3530154, - 52.5398611 - ], - [ - 13.3530154, - 52.5398611 - ], - [ - 13.3530154, - 52.5398611 - ], - [ - 13.3530154, - 52.5398611 - ], - [ - 13.3530154, - 52.5398611 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "baumBefeuchter", - "uid": "16563010", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-23T14:42:36Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/r3LQoby.jpg" - ], - "bottle": [ - "yes" - ], - "amenity": [ - "drinking_water" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 123978524 - } - }, - { - "id": 123978274, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3529617, - 52.5402949 - ], - [ - 13.3569552, - 52.5402949 - ], - [ - 13.3569552, - 52.5420303 - ], - [ - 13.3529617, - 52.5420303 - ], - [ - 13.3529617, - 52.5402949 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "baumBefeuchter", - "uid": "16563010", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-23T14:37:06Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-23", - "2020" - ], - "pump:status": [ - "broken", - "ok" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000693031990000462, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 4, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123978274 - } - }, - { - "id": 123978125, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.0104384, - 51.3035242 - ], - [ - 13.0104384, - 51.3035242 - ], - [ - 13.0104384, - 51.3035242 - ], - [ - 13.0104384, - 51.3035242 - ], - [ - 13.0104384, - 51.3035242 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9905964354", - "osm_id": 9905964354, - "reasons": [ - 43 - ], - "version": 1, - "primary_tags": { - "amenity": "binoculars" - } - } - ], - "user": "radler64ohne", - "uid": "2234817", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #binoculars", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-23T14:33:57Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "binoculars" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/binoculars.html", - "theme": "binoculars", - "answer": 1, - "create": 1, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 2 - }, - "id": 123978125 - } - }, - { - "id": 123976619, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9013659, - 51.1798717 - ], - [ - 4.9060596, - 51.1798717 - ], - [ - 4.9060596, - 51.1829188 - ], - [ - 4.9013659, - 51.1829188 - ], - [ - 4.9013659, - 51.1798717 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-23T13:47:40Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "guest_house" - ], - "building": [ - "yes", - "house", - "residential", - "garage", - "roof" - ], - "source:geometry:ref": [ - "Gbg/3948719", - "Gbg/3948718", - "Gbg/3948715", - "Gbg/3948714", - "Gbg/3948800", - "Gbg/3948713", - "Gbg/3948801", - "Gbg/3948712", - "Gbg/3948812", - "Gbg/3948813", - "Gbg/7019716", - "Gbg/3948815", - "Gbg/7020227", - "Gbg/7019717", - "Gbg/3948817", - "Gbg/3948818", - "Gbg/3948753", - "Gbg/3948752", - "Gbg/3948741", - "Gbg/3948740", - "Gbg/3948739", - "Gbg/3948738", - "Gbg/3948737", - "Gbg/3948500", - "Gbg/5403591", - "Gbg/3948699", - "Gbg/3948700", - "Gbg/3948701", - "Gbg/3951917", - "Gbg/5860969", - "Gbg/3948779" - ], - "source:geometry:date": [ - "2012-11-15", - "2015-11-24", - "2017-03-01", - "2020-06-05", - "2021-10-25", - "2016-05-02", - "2013-02-20" - ] - }, - "create": 170, - "modify": 240, - "delete": 4, - "area": 0.0000143021732700154, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 209, - "theme": "grb", - "delete": 4, - "import": 15, - "locale": "nl", - "imagery": "AGIV", - "conflation": 62, - "change_over_5000m": 15 - }, - "id": 123976619 - } - }, - { - "id": 123976194, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0074511, - 52.3473238 - ], - [ - 5.0074511, - 52.3473238 - ], - [ - 5.0074511, - 52.3473238 - ], - [ - 5.0074511, - 52.3473238 - ], - [ - 5.0074511, - 52.3473238 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "DS_020", - "uid": "2771494", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-23T13:34:28Z", - "reviewed_features": [], - "tag_changes": { - "bus": [ - "no" - ], - "hgv": [ - "no" - ], - "access": [ - "yes" - ], - "amenity": [ - "charging_station" - ], - "bicycle": [ - "no" - ], - "scooter": [ - "no" - ], - "motorcar": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 2, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 123976194 - } - }, - { - "id": 123976010, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0019624, - 52.3460998 - ], - [ - 5.0022073, - 52.3460998 - ], - [ - 5.0022073, - 52.3462258 - ], - [ - 5.0019624, - 52.3462258 - ], - [ - 5.0019624, - 52.3460998 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "DS_020", - "uid": "2771494", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-23T13:29:49Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 3.08574000004249e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 3, - "create": 2, - "locale": "nl", - "imagery": "osm" - }, - "id": 123976010 - } - }, - { - "id": 123972387, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7697555, - 52.8421004 - ], - [ - 13.7724998, - 52.8421004 - ], - [ - 13.7724998, - 52.8428728 - ], - [ - 13.7697555, - 52.8428728 - ], - [ - 13.7697555, - 52.8421004 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Brandoberinspektor Erdmann", - "uid": "13364061", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-23T11:42:41Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 7, - "delete": 0, - "area": 0.00000211969732000657, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 123972387 - } - }, - { - "id": 123971306, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5024233, - 53.7303268 - ], - [ - -0.3610841, - 53.7303268 - ], - [ - -0.3610841, - 53.7926327 - ], - [ - -0.5024233, - 53.7926327 - ], - [ - -0.5024233, - 53.7303268 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "confusedbuffalo", - "uid": "242345", - "editor": "MapComplete 0.20.3", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-23T11:08:52Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "school" - ], - "highway": [ - "secondary", - "tertiary", - "residential" - ], - "name:etymology:wikidata": [ - "Q128147", - "Q667", - "Q6652464", - "Q1003286", - "Q350", - "Q208257", - "Q42462", - "Q28469715", - "Q28469731", - "Q28469739", - "Q28469735", - "Q28469737", - "Q28469736", - "Q28469742", - "Q28469741", - "Q28469743", - "Q28469717", - "Q28469721", - "Q28469719", - "Q28469716", - "Q28469718", - "Q28469724", - "Q28469728", - "Q28469726", - "Q28469738", - "Q28469740", - "Q28469744", - "Q28469748", - "Q28469746", - "Q28469734", - "Q28469730", - "Q28469722", - "Q28469720", - "Q28469732", - "Q28469714", - "Q2162945" - ] - }, - "create": 0, - "modify": 59, - "delete": 0, - "area": 0.00880626606127977, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "answer": 75, - "locale": "en", - "imagery": "osm" - }, - "id": 123971306 - } - }, - { - "id": 123971095, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.6664451, - 49.2177339 - ], - [ - 12.6664451, - 49.2177339 - ], - [ - 12.6664451, - 49.2177339 - ], - [ - 12.6664451, - 49.2177339 - ], - [ - 12.6664451, - 49.2177339 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-23T11:01:05Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/fzNT8su.jpg" - ], - "amenity": [ - "charging_station" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 123971095 - } - }, - { - "id": 123968681, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.309781, - 51.3010608 - ], - [ - 13.309781, - 51.3010608 - ], - [ - 13.309781, - 51.3010608 - ], - [ - 13.309781, - 51.3010608 - ], - [ - 13.309781, - 51.3010608 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "radler64ohne", - "uid": "2234817", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-23T09:44:01Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 6, - "create": 1, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_5000m": 6 - }, - "id": 123968681 - } - }, - { - "id": 123968669, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3499118, - 52.5476283 - ], - [ - 13.3532002, - 52.5476283 - ], - [ - 13.3532002, - 52.5477669 - ], - [ - 13.3499118, - 52.5477669 - ], - [ - 13.3499118, - 52.5476283 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "baumBefeuchter", - "uid": "16563010", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-23T09:43:36Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-23", - "2020" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 4.55772239998956e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123968669 - } - }, - { - "id": 123968507, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.1404155, - 48.5395496 - ], - [ - 8.1404155, - 48.5395496 - ], - [ - 8.1404155, - 48.5395496 - ], - [ - 8.1404155, - 48.5395496 - ], - [ - 8.1404155, - 48.5395496 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-23T09:38:53Z", - "reviewed_features": [], - "tag_changes": { - "colour": [ - "brown" - ], - "amenity": [ - "bench" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 1, - "locale": "nl", - "imagery": "osm", - "change_within_100m": 1 - }, - "id": 123968507 - } - }, - { - "id": 123968460, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.1373345, - 48.5395496 - ], - [ - 8.1404155, - 48.5395496 - ], - [ - 8.1404155, - 48.5449056 - ], - [ - 8.1373345, - 48.5449056 - ], - [ - 8.1373345, - 48.5395496 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "jospyck", - "uid": "12128135", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-23T09:37:21Z", - "reviewed_features": [], - "tag_changes": { - "seats": [ - "3" - ], - "colour": [ - "brown" - ], - "amenity": [ - "bench" - ], - "backrest": [ - "yes" - ], - "material": [ - "wood" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000165018359999964, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 7, - "locale": "nl", - "imagery": "osm", - "change_within_100m": 3, - "change_within_1000m": 4 - }, - "id": 123968460 - } - }, - { - "id": 123968033, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -0.5542052, - 44.8471924 - ], - [ - -0.5535989, - 44.8471924 - ], - [ - -0.5535989, - 44.8476683 - ], - [ - -0.5542052, - 44.8476683 - ], - [ - -0.5542052, - 44.8471924 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Marival", - "uid": "8238040", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-23T09:25:32Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "civic" - ], - "man_made": [ - "surveillance" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 2.88538170002989e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance.html", - "theme": "surveillance", - "answer": 2, - "create": 2, - "locale": "fr", - "imagery": "osm", - "add-image": 1, - "change_within_50m": 5 - }, - "id": 123968033 - } - }, - { - "id": 123965562, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "OpenStreetMapContributor1", - "uid": "16427682", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #surveillance", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-23T08:11:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/surveillance", - "theme": "surveillance", - "answer": 1, - "locale": "en", - "imagery": "AGIV" - }, - "id": 123965562 - } - }, - { - "id": 123964693, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.393988, - 45.3042777 - ], - [ - 8.4455933, - 45.3042777 - ], - [ - 8.4455933, - 45.3469655 - ], - [ - 8.393988, - 45.3469655 - ], - [ - 8.393988, - 45.3042777 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ivanbranco", - "uid": "11220113", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-23T07:38:27Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "secondary", - "residential", - "unclassified", - "cycleway", - "pedestrian", - "service" - ], - "leisure": [ - "park" - ], - "name:etymology:wikidata": [ - "Q113217011", - "Q676555", - "Q42788", - "Q9200", - "Q63953289", - "Q9064286", - "Q207073;Q312302", - "Q3760293", - "Q2851732", - "Q701820", - "Q62132", - "Q33", - "Q2292457", - "Q31966", - "Q18446457", - "Q3904123" - ] - }, - "create": 0, - "modify": 43, - "delete": 0, - "area": 0.00220291672534017, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "answer": 55, - "locale": "it", - "imagery": "osm" - }, - "id": 123964693 - } - }, - { - "id": 123963460, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7336678, - 50.9661758 - ], - [ - 3.9224237, - 50.9661758 - ], - [ - 3.9224237, - 51.0493556 - ], - [ - 3.7336678, - 51.0493556 - ], - [ - 3.7336678, - 50.9661758 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Erin76", - "uid": "8982454", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-23T06:40:25Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "school" - ], - "highway": [ - "residential", - "secondary", - "tertiary", - "unclassified", - "track", - "living_street", - "path", - "service", - "footway" - ], - "landuse": [ - "forest" - ], - "leisure": [ - "nature_reserve", - "park" - ], - "name:etymology:wikidata": [ - "Q2497011", - "Q597997", - "Q5599", - "Q628124", - "Q9147", - "Q7178", - "Q336977", - "Q730696", - "Q18789", - "Q3353007", - "Q160984", - "Q37620", - "Q1428668", - "Q2481320", - "Q696355", - "Q2152548", - "Q36380", - "Q456673", - "Q49836", - "Q847", - "Q2736", - "Q25352", - "Q1846662", - "Q21766131", - "Q133704", - "Q185187", - "Q21764570", - "Q156907", - "Q124969", - "Q81666", - "Q129324", - "Q146149", - "Q36050", - "Q61105", - "Q164294", - "Q25432", - "Q160642", - "Q147618", - "Q19707", - "Q1287283", - "Q127849", - "Q131113", - "Q42292", - "Q29858", - "Q39861", - "Q12688", - "Q309953", - "Q842477", - "Q522308" - ] - }, - "create": 0, - "modify": 135, - "delete": 0, - "area": 0.0157006780108193, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "answer": 191, - "locale": "nl", - "imagery": "osm" - }, - "id": 123963460 - } - }, - { - "id": 123963171, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9030216, - 51.1815838 - ], - [ - 4.9048822, - 51.1815838 - ], - [ - 4.9048822, - 51.1829256 - ], - [ - 4.9030216, - 51.1829256 - ], - [ - 4.9030216, - 51.1815838 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-23T06:28:51Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes", - "house", - "roof" - ], - "source:geometry:ref": [ - "Gbg/7019723", - "Gbg/3948792", - "Gbg/3948732", - "Gbg/3948793", - "Gbg/3948721", - "Gbg/3948794", - "Gbg/3948795", - "Gbg/3948796", - "Gbg/3948799", - "Gbg/3948780", - "Gbg/3948781", - "Gbg/3948754", - "Gbg/5862597", - "Gbg/3952017" - ], - "source:geometry:date": [ - "2021-10-25", - "2013-02-20", - "2012-11-15", - "2014-12-04", - "2015-11-24", - "2020-06-05" - ] - }, - "create": 66, - "modify": 93, - "delete": 2, - "area": 0.00000249655307999836, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 81, - "theme": "grb", - "delete": 2, - "import": 5, - "locale": "nl", - "imagery": "AGIV", - "conflation": 28 - }, - "id": 123963171 - } - }, - { - "id": 123963148, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9027495, - 51.1818574 - ], - [ - 4.9036406, - 51.1818574 - ], - [ - 4.9036406, - 51.1823321 - ], - [ - 4.9027495, - 51.1823321 - ], - [ - 4.9027495, - 51.1818574 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-23T06:27:29Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes", - "house" - ], - "source:geometry:ref": [ - "Gbg/3948734" - ], - "source:geometry:date": [ - "2019-09-04" - ] - }, - "create": 48, - "modify": 5, - "delete": 0, - "area": 4.23005170004822e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 4, - "theme": "grb", - "import": 7, - "locale": "nl", - "imagery": "AGIV", - "conflation": 2 - }, - "id": 123963148 - } - }, - { - "id": 123963069, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3666515, - 52.48983 - ], - [ - 13.369248, - 52.48983 - ], - [ - 13.369248, - 52.4919467 - ], - [ - 13.3666515, - 52.4919467 - ], - [ - 13.3666515, - 52.48983 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "queerfish", - "uid": "16620126", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-23T06:23:38Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-23" - ], - "pump:status": [ - "regelmäßig in Gebrauch für adoptierte Straßenbäume (giessdenkiez.de)", - "ok" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.00000549601155000723, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 11, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 123963069 - } - }, - { - "id": 123962538, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.4829772, - 49.0995796 - ], - [ - 12.4830293, - 49.0995796 - ], - [ - 12.4830293, - 49.0996375 - ], - [ - 12.4829772, - 49.0996375 - ], - [ - 12.4829772, - 49.0995796 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #maps", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-23T05:59:56Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/YhdFSGd.jpg", - "https://i.imgur.com/jNiL8Mh.jpg" - ], - "tourism": [ - "information" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 3.0165900000581e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maps.html", - "theme": "maps", - "locale": "en", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 2 - }, - "id": 123962538 - } - }, - { - "id": 123962256, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7060754, - 50.9767935 - ], - [ - 3.7060754, - 50.9767935 - ], - [ - 3.7060754, - 50.9767935 - ], - [ - 3.7060754, - 50.9767935 - ], - [ - 3.7060754, - 50.9767935 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-23T05:44:35Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/VBJ1TKv.jpg" - ], - "amenity": [ - "bench" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 123962256 - } - }, - { - "id": 123962019, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8958987, - 51.1809881 - ], - [ - 4.9070639, - 51.1809881 - ], - [ - 4.9070639, - 51.1845125 - ], - [ - 4.8958987, - 51.1845125 - ], - [ - 4.8958987, - 51.1809881 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-23T05:27:53Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "bus", - "bicycle" - ], - "highway": [ - "tertiary" - ], - "building": [ - "yes", - "house", - "apartments", - "industrial", - "roof" - ], - "addr:street": [ - "Heidehof" - ], - "addr:housenumber": [ - "117", - "115", - "164;166", - "166", - "2-3;5", - "7-8;10", - "12-13;15", - "178", - "176" - ], - "source:geometry:ref": [ - "Gbg/3947866", - "Gbg/3948778", - "Gbg/3948973", - "Gbg/3948759", - "Gbg/3948841", - "Gbg/3948834", - "Gbg/3948756", - "Gbg/5862447", - "Gbg/3948840", - "Gbg/3948835", - "Gbg/3948755", - "Gbg/3948839", - "Gbg/3948819", - "Gbg/3948838", - "Gbg/3949596", - "Gbg/3948837", - "Gbg/3949597", - "Gbg/3948773", - "Gbg/3948772", - "Gbg/3948761", - "Gbg/3948956", - "Gbg/3948853", - "Gbg/3948760", - "Gbg/3948852", - "Gbg/3948757", - "Gbg/3948758", - "Gbg/3948496", - "Gbg/5554924", - "Gbg/5862369", - "Gbg/5403838", - "Gbg/4928327", - "Gbg/3948615", - "Gbg/3948616", - "Gbg/4679001", - "Gbg/3948618", - "Gbg/6570657", - "Gbg/6427362", - "Gbg/3948492", - "Gbg/3948481", - "Gbg/3947779", - "Gbg/6427357", - "Gbg/6427356", - "Gbg/6836019", - "Gbg/3948833", - "Gbg/3948836", - "Gbg/3948957", - "Gbg/3948954", - "Gbg/3948620", - "Gbg/3948633" - ], - "source:geometry:date": [ - "2021-10-25", - "2012-11-15", - "2013-02-20", - "2017-03-01", - "2015-11-24", - "2014-12-04", - "2019-02-20", - "2018-09-13", - "2020-09-16", - "2020-06-05" - ] - }, - "create": 613, - "modify": 434, - "delete": 0, - "area": 0.0000393506308799581, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 385, - "theme": "grb", - "answer": 6, - "import": 69, - "locale": "nl", - "imagery": "AGIV", - "conflation": 98 - }, - "id": 123962019 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-24.json b/Docs/Tools/stats/stats.2022-7-24.json deleted file mode 100644 index cee9af1171..0000000000 --- a/Docs/Tools/stats/stats.2022-7-24.json +++ /dev/null @@ -1,7945 +0,0 @@ -{ - "features": [ - { - "id": 124023491, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9438773, - 47.0245703 - ], - [ - 8.9445161, - 47.0245703 - ], - [ - 8.9445161, - 47.0252068 - ], - [ - 8.9438773, - 47.0252068 - ], - [ - 8.9438773, - 47.0245703 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "habi", - "uid": "15671", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #campersite", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-24T20:20:59Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "customers" - ], - "amenity": [ - "sanitary_dump_station" - ], - "water_point": [ - "yes" - ], - "sanitary_dump_station:grey_water": [ - "yes", - "no" - ], - "sanitary_dump_station:chemical_toilet": [ - "no", - "yes" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 4.06596199998641e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/campersite.html", - "theme": "campersite", - "answer": 6, - "locale": "en", - "imagery": "osm", - "change_within_25m": 5, - "change_within_50m": 1 - }, - "id": 124023491 - } - }, - { - "id": 124022541, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.9018104, - 49.2584823 - ], - [ - 13.9018104, - 49.2584823 - ], - [ - 13.9018104, - 49.2584823 - ], - [ - 13.9018104, - 49.2584823 - ], - [ - 13.9018104, - 49.2584823 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-24T19:48:40Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "toilets" - ], - "toilets:position": [ - "seated;urinal" - ], - "toilets:handwashing": [ - "yes" - ], - "toilets:paper_supplied": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 4, - "locale": "de", - "imagery": "osm", - "change_over_5000m": 4 - }, - "id": 124022541 - } - }, - { - "id": 124022515, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.5722113, - 53.0263589 - ], - [ - 6.5722113, - 53.0263589 - ], - [ - 6.5722113, - 53.0263589 - ], - [ - 6.5722113, - 53.0263589 - ], - [ - 6.5722113, - 53.0263589 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-24T19:47:38Z", - "reviewed_features": [], - "tag_changes": { - "door": [ - "sliding" - ], - "automatic_door": [ - "motion" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/feature/onwheels-icons/onwheels.html", - "theme": "onwheels", - "answer": 2, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_within_50m": 2 - }, - "id": 124022515 - } - }, - { - "id": 124020138, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3569552, - 52.5420303 - ], - [ - 13.3569552, - 52.5420303 - ], - [ - 13.3569552, - 52.5420303 - ], - [ - 13.3569552, - 52.5420303 - ], - [ - 13.3569552, - 52.5420303 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "baumBefeuchter", - "uid": "16563010", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T18:27:31Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "pump:status": [ - "unbekannt, mehr Pumpen nötig bis zu 60x mal oder mehr", - "broken" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 1, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 124020138 - } - }, - { - "id": 124019465, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2960867, - 50.3041121 - ], - [ - 9.2960867, - 50.3041121 - ], - [ - 9.2960867, - 50.3041121 - ], - [ - 9.2960867, - 50.3041121 - ], - [ - 9.2960867, - 50.3041121 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Punchyrock636", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T18:04:02Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ], - "light:lit": [ - "dusk-dawn" - ], - "light:count": [ - "1" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 124019465 - } - }, - { - "id": 124019405, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2936263, - 50.3025707 - ], - [ - 9.2981399, - 50.3025707 - ], - [ - 9.2981399, - 50.3044993 - ], - [ - 9.2936263, - 50.3044993 - ], - [ - 9.2936263, - 50.3025707 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Punchyrock636", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T18:02:10Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "yes" - ], - "highway": [ - "street_lamp", - "residential" - ], - "light:lit": [ - "dusk-dawn" - ] - }, - "create": 1, - "modify": 5, - "delete": 0, - "area": 0.00000870492896003127, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 9, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124019405 - } - }, - { - "id": 124019396, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2960293, - 50.3035039 - ], - [ - 9.2960293, - 50.3035039 - ], - [ - 9.2960293, - 50.3035039 - ], - [ - 9.2960293, - 50.3035039 - ], - [ - 9.2960293, - 50.3035039 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Punchyrock636", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T18:01:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 3, - "locale": "de", - "imagery": "osm" - }, - "id": 124019396 - } - }, - { - "id": 124019383, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2960293, - 50.3035039 - ], - [ - 9.2960293, - 50.3035039 - ], - [ - 9.2960293, - 50.3035039 - ], - [ - 9.2960293, - 50.3035039 - ], - [ - 9.2960293, - 50.3035039 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Punchyrock636", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T18:01:29Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 1, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124019383 - } - }, - { - "id": 124019373, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2961092, - 50.3044626 - ], - [ - 9.2961092, - 50.3044626 - ], - [ - 9.2961092, - 50.3044626 - ], - [ - 9.2961092, - 50.3044626 - ], - [ - 9.2961092, - 50.3044626 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Punchyrock636", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T18:01:09Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ], - "light:lit": [ - "dusk-dawn" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124019373 - } - }, - { - "id": 124019368, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2961092, - 50.3044626 - ], - [ - 9.2961092, - 50.3044626 - ], - [ - 9.2961092, - 50.3044626 - ], - [ - 9.2961092, - 50.3044626 - ], - [ - 9.2961092, - 50.3044626 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Punchyrock636", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T18:00:56Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124019368 - } - }, - { - "id": 124019360, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2961092, - 50.3044626 - ], - [ - 9.2961092, - 50.3044626 - ], - [ - 9.2961092, - 50.3044626 - ], - [ - 9.2961092, - 50.3044626 - ], - [ - 9.2961092, - 50.3044626 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Punchyrock636", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T18:00:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 124019360 - } - }, - { - "id": 124019350, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Punchyrock636", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T18:00:31Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124019350 - } - }, - { - "id": 124019336, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2961092, - 50.3044626 - ], - [ - 9.2965668, - 50.3044626 - ], - [ - 9.2965668, - 50.3045205 - ], - [ - 9.2961092, - 50.3045205 - ], - [ - 9.2961092, - 50.3044626 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Punchyrock636", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T18:00:00Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ], - "light:direction": [ - "228" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 2.64950400007784e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 2, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124019336 - } - }, - { - "id": 124019331, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2965668, - 50.3045205 - ], - [ - 9.2965668, - 50.3045205 - ], - [ - 9.2965668, - 50.3045205 - ], - [ - 9.2965668, - 50.3045205 - ], - [ - 9.2965668, - 50.3045205 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Punchyrock636", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T17:59:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124019331 - } - }, - { - "id": 124019325, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2965668, - 50.3045205 - ], - [ - 9.2965668, - 50.3045205 - ], - [ - 9.2965668, - 50.3045205 - ], - [ - 9.2965668, - 50.3045205 - ], - [ - 9.2965668, - 50.3045205 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Punchyrock636", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T17:59:38Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124019325 - } - }, - { - "id": 124019319, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2965668, - 50.3045205 - ], - [ - 9.2965668, - 50.3045205 - ], - [ - 9.2965668, - 50.3045205 - ], - [ - 9.2965668, - 50.3045205 - ], - [ - 9.2965668, - 50.3045205 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Punchyrock636", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T17:59:20Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 2, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124019319 - } - }, - { - "id": 124018971, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2973017, - 50.3042015 - ], - [ - 9.2973017, - 50.3042015 - ], - [ - 9.2973017, - 50.3042015 - ], - [ - 9.2973017, - 50.3042015 - ], - [ - 9.2973017, - 50.3042015 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Punchyrock636", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T17:49:11Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 7, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124018971 - } - }, - { - "id": 124018828, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2884268, - 50.2584018 - ], - [ - 9.2884268, - 50.2584018 - ], - [ - 9.2884268, - 50.2584018 - ], - [ - 9.2884268, - 50.2584018 - ], - [ - 9.2884268, - 50.2584018 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Punchyrock636", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T17:45:18Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "artwork" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 1, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124018828 - } - }, - { - "id": 124018534, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2849793, - 50.2544477 - ], - [ - 9.3190703, - 50.2544477 - ], - [ - 9.3190703, - 50.3172014 - ], - [ - 9.2849793, - 50.3172014 - ], - [ - 9.2849793, - 50.2544477 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Punchyrock636", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T17:36:40Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential", - "primary", - "tertiary", - "unclassified" - ], - "maxspeed": [ - "30", - "80", - "70", - "100", - "50" - ] - }, - "create": 0, - "modify": 26, - "delete": 0, - "area": 0.00213933638670007, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "theme": "maxspeed", - "answer": 29, - "locale": "de", - "imagery": "osm" - }, - "id": 124018534 - } - }, - { - "id": 124018345, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3232036, - 52.454986 - ], - [ - 13.3232036, - 52.454986 - ], - [ - 13.3232036, - 52.454986 - ], - [ - 13.3232036, - 52.454986 - ], - [ - 13.3232036, - 52.454986 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "ChSchadler", - "uid": "16563053", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T17:31:20Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-24" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 1, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 124018345 - } - }, - { - "id": 124018315, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3296141, - 52.4570676 - ], - [ - 13.3314562, - 52.4570676 - ], - [ - 13.3314562, - 52.4583115 - ], - [ - 13.3296141, - 52.4583115 - ], - [ - 13.3296141, - 52.4570676 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "ChSchadler", - "uid": "16563053", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T17:30:04Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-24", - "2020-09-11" - ], - "pump:status": [ - "ok", - "blocked" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.0000022913881899966, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 4, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 124018315 - } - }, - { - "id": 124018230, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2924539, - 50.3058756 - ], - [ - 9.2977154, - 50.3058756 - ], - [ - 9.2977154, - 50.317875 - ], - [ - 9.2924539, - 50.317875 - ], - [ - 9.2924539, - 50.3058756 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Punchyrock636", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T17:26:34Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "direction": [ - "79" - ] - }, - "create": 3, - "modify": 2, - "delete": 0, - "area": 0.0000631348430999979, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "move": 1, - "theme": "benches", - "answer": 15, - "create": 3, - "locale": "de", - "imagery": "osm", - "move:node/9907957602": "improve_accuracy" - }, - "id": 124018230 - } - }, - { - "id": 124018214, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2976064, - 50.315605 - ], - [ - 9.2977154, - 50.315605 - ], - [ - 9.2977154, - 50.3159146 - ], - [ - 9.2976064, - 50.3159146 - ], - [ - 9.2976064, - 50.315605 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Punchyrock636", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T17:25:58Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 2, - "modify": 1, - "delete": 0, - "area": 3.37464000001898e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 6, - "create": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 124018214 - } - }, - { - "id": 124017743, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1830943, - 50.1813675 - ], - [ - 9.2980034, - 50.1813675 - ], - [ - 9.2980034, - 50.3164223 - ], - [ - 9.1830943, - 50.3164223 - ], - [ - 9.1830943, - 50.1813675 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Punchyrock636", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #parkings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T17:09:38Z", - "reviewed_features": [], - "tag_changes": { - "phone": [ - "+49 6054 909584" - ], - "amenity": [ - "school", - "parking" - ], - "website": [ - "https://www.grundschule-brachttal.de" - ], - "school:gender": [ - "mixed" - ], - "school:language": [ - "de" - ] - }, - "create": 4, - "modify": 1, - "delete": 0, - "area": 0.0155190255186799, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/parkings.html", - "theme": "parkings", - "answer": 8, - "create": 4, - "locale": "de", - "imagery": "osm" - }, - "id": 124017743 - } - }, - { - "id": 124017165, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2849405, - 50.2479555 - ], - [ - 9.3163781, - 50.2479555 - ], - [ - 9.3163781, - 50.3086641 - ], - [ - 9.2849405, - 50.3086641 - ], - [ - 9.2849405, - 50.2479555 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Punchyrock636", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #parkings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T16:50:58Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "parking" - ] - }, - "create": 6, - "modify": 1, - "delete": 0, - "area": 0.00190853268335996, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/parkings.html", - "theme": "parkings", - "answer": 11, - "create": 6, - "locale": "de", - "imagery": "osm" - }, - "id": 124017165 - } - }, - { - "id": 124017013, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2888751, - 50.2519141 - ], - [ - 9.2958618, - 50.2519141 - ], - [ - 9.2958618, - 50.2543374 - ], - [ - 9.2888751, - 50.2543374 - ], - [ - 9.2888751, - 50.2519141 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "way-161708142", - "osm_id": 161708142, - "reasons": [ - 43 - ], - "version": 4, - "primary_tags": { - "building": "sports_centre" - } - } - ], - "user": "Punchyrock636", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T16:46:58Z", - "reviewed_features": [], - "tag_changes": { - "door": [ - "sliding" - ], - "railway": [ - "station" - ], - "building": [ - "train_station", - "sports_centre" - ], - "entrance": [ - "yes" - ], - "kerb:height": [ - "0" - ], - "automatic_door": [ - "button" - ], - "public_transport": [ - "stop_area", - "station" - ] - }, - "create": 2, - "modify": 4, - "delete": 0, - "area": 0.0000169308701099782, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/entrances.html", - "theme": "entrances", - "answer": 7, - "create": 5, - "locale": "de", - "imagery": "osm" - }, - "id": 124017013 - } - }, - { - "id": 124016757, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2927889, - 50.2533183 - ], - [ - 9.2927889, - 50.2533183 - ], - [ - 9.2927889, - 50.2533183 - ], - [ - 9.2927889, - 50.2533183 - ], - [ - 9.2927889, - 50.2533183 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Punchyrock636", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #fritures", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T16:38:35Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "fast_food" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/fritures.html", - "theme": "fritures", - "answer": 2, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124016757 - } - }, - { - "id": 124016264, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1784919, - 50.1807113 - ], - [ - 9.3102466, - 50.1807113 - ], - [ - 9.3102466, - 50.3134722 - ], - [ - 9.1784919, - 50.3134722 - ], - [ - 9.1784919, - 50.1807113 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "edgartkoschlar187", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T16:22:45Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "yes" - ], - "route": [ - "bicycle", - "hiking", - "bus", - "road" - ], - "barrier": [ - "kerb" - ], - "highway": [ - "residential", - "primary" - ], - "leisure": [ - "pitch" - ], - "surface": [ - "asphalt" - ], - "maxspeed": [ - "30" - ], - "public_transport": [ - "stop_area" - ], - "width:carriageway": [ - "6.2", - "6.4" - ] - }, - "create": 3, - "modify": 1, - "delete": 0, - "area": 0.0174918725512301, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "answer": 10, - "create": 3, - "locale": "de", - "imagery": "osm" - }, - "id": 124016264 - } - }, - { - "id": 124015355, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.289122, - 50.2359961 - ], - [ - 9.3319601, - 50.2359961 - ], - [ - 9.3319601, - 50.3142841 - ], - [ - 9.289122, - 50.3142841 - ], - [ - 9.289122, - 50.2359961 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "edgartkoschlar187", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T15:58:08Z", - "reviewed_features": [], - "tag_changes": { - "bin": [ - "yes" - ], - "lit": [ - "yes" - ], - "kerb": [ - "raised" - ], - "name": [ - "Il Figaro" - ], - "shop": [ - "hairdresser", - "e-cigarette", - "weapons", - "car" - ], - "bench": [ - "yes", - "no" - ], - "phone": [ - "+49 6053 9507", - "+49 6054 909584" - ], - "route": [ - "bicycle", - "hiking", - "bus", - "road" - ], - "amenity": [ - "parking", - "school" - ], - "barrier": [ - "cycle_barrier", - "kerb" - ], - "bicycle": [ - "yes" - ], - "highway": [ - "residential", - "primary", - "bus_stop" - ], - "leisure": [ - "picnic_table" - ], - "shelter": [ - "yes" - ], - "surface": [ - "asphalt" - ], - "website": [ - "https://www.grundschule-brachttal.de" - ], - "capacity": [ - "18", - "2", - "3" - ], - "maxspeed": [ - "30" - ], - "wheelchair": [ - "yes" - ], - "kerb:height": [ - "7 cm" - ], - "opening_hours": [ - "Sa 08:00-14:00;Tu-Fr 09:00-18:00" - ], - "school:gender": [ - "mixed" - ], - "tactile_paving": [ - "yes" - ], - "school:language": [ - "de" - ], - "public_transport": [ - "stop_area", - "platform" - ], - "capacity:disabled": [ - "18", - "2", - "3" - ], - "width:carriageway": [ - "6.2", - "6.4" - ] - }, - "create": 6, - "modify": 21, - "delete": 0, - "area": 0.00335370917279995, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/personal.html", - "theme": "personal", - "answer": 42, - "create": 6, - "locale": "de", - "imagery": "osm" - }, - "id": 124015355 - } - }, - { - "id": 124015234, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Punchyrock636", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T15:54:55Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124015234 - } - }, - { - "id": 124015203, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2882138, - 50.3139672 - ], - [ - 9.2882138, - 50.3139672 - ], - [ - 9.2882138, - 50.3139672 - ], - [ - 9.2882138, - 50.3139672 - ], - [ - 9.2882138, - 50.3139672 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Punchyrock636", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T15:54:13Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 1, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124015203 - } - }, - { - "id": 124015152, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2983635, - 50.2994998 - ], - [ - 9.2998388, - 50.2994998 - ], - [ - 9.2998388, - 50.3029201 - ], - [ - 9.2983635, - 50.3029201 - ], - [ - 9.2983635, - 50.2994998 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Punchyrock636", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #transit", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T15:52:36Z", - "reviewed_features": [], - "tag_changes": { - "bin": [ - "yes" - ], - "lit": [ - "no" - ], - "bench": [ - "yes", - "no" - ], - "highway": [ - "bus_stop" - ], - "shelter": [ - "no" - ], - "wheelchair": [ - "yes" - ], - "public_transport": [ - "platform" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000504596859000004, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/transit.html", - "theme": "transit", - "answer": 6, - "locale": "de", - "imagery": "osm" - }, - "id": 124015152 - } - }, - { - "id": 124015132, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2981448, - 50.3029507 - ], - [ - 9.2981448, - 50.3029507 - ], - [ - 9.2981448, - 50.3029507 - ], - [ - 9.2981448, - 50.3029507 - ], - [ - 9.2981448, - 50.3029507 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Punchyrock636", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #transit", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T15:52:05Z", - "reviewed_features": [], - "tag_changes": { - "bin": [ - "yes" - ], - "bench": [ - "yes" - ], - "highway": [ - "bus_stop" - ], - "wheelchair": [ - "yes" - ], - "public_transport": [ - "platform" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/transit.html", - "theme": "transit", - "answer": 3, - "locale": "de", - "imagery": "osm" - }, - "id": 124015132 - } - }, - { - "id": 124014615, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2945456, - 50.2241335 - ], - [ - 9.3486436, - 50.2241335 - ], - [ - 9.3486436, - 50.3094745 - ], - [ - 9.2945456, - 50.3094745 - ], - [ - 9.2945456, - 50.2241335 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "edgartkoschlar187", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T15:36:01Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "yes" - ], - "route": [ - "hiking", - "bus", - "mtb", - "bicycle", - "road" - ], - "amenity": [ - "parking" - ], - "barrier": [ - "kerb" - ], - "highway": [ - "residential", - "primary", - "living_street" - ], - "surface": [ - "asphalt" - ], - "maxspeed": [ - "30" - ], - "public_transport": [ - "stop_area" - ], - "width:carriageway": [ - "6.2", - "6.4" - ] - }, - "create": 7, - "modify": 18, - "delete": 0, - "area": 0.00461677741800011, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/kerbs_and_crossings.html", - "theme": "kerbs_and_crossings", - "answer": 25, - "create": 14, - "locale": "de", - "imagery": "osm" - }, - "id": 124014615 - } - }, - { - "id": 124014417, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2945456, - 50.3044993 - ], - [ - 9.2966185, - 50.3044993 - ], - [ - 9.2966185, - 50.3059377 - ], - [ - 9.2945456, - 50.3059377 - ], - [ - 9.2945456, - 50.3044993 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "edgartkoschlar187", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T15:30:45Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "bus", - "road" - ], - "barrier": [ - "kerb" - ], - "highway": [ - "residential" - ] - }, - "create": 3, - "modify": 7, - "delete": 0, - "area": 0.00000298165935999543, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/kerbs_and_crossings.html", - "theme": "kerbs_and_crossings", - "answer": 9, - "create": 6, - "locale": "de", - "imagery": "osm" - }, - "id": 124014417 - } - }, - { - "id": 124014223, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2924555, - 50.3058358 - ], - [ - 9.2924555, - 50.3058358 - ], - [ - 9.2924555, - 50.3058358 - ], - [ - 9.2924555, - 50.3058358 - ], - [ - 9.2924555, - 50.3058358 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "edgartkoschlar187", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T15:26:40Z", - "reviewed_features": [], - "tag_changes": { - "barrier": [ - "bollard" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/kerbs_and_crossings.html", - "theme": "cycle_infra", - "answer": 3, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124014223 - } - }, - { - "id": 124014108, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2925547, - 50.2994537 - ], - [ - 9.3043858, - 50.2994537 - ], - [ - 9.3043858, - 50.3059438 - ], - [ - 9.2925547, - 50.3059438 - ], - [ - 9.2925547, - 50.2994537 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "edgartkoschlar187", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T15:23:56Z", - "reviewed_features": [], - "tag_changes": { - "barrier": [ - "cycle_barrier" - ], - "cycle_barrier": [ - "single", - "double" - ], - "maxwidth:physical": [ - "2" - ] - }, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0.0000767850221100085, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 14, - "create": 1, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 124014108 - } - }, - { - "id": 124014028, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2880996, - 50.3069956 - ], - [ - 9.2959021, - 50.3069956 - ], - [ - 9.2959021, - 50.3144896 - ], - [ - 9.2880996, - 50.3144896 - ], - [ - 9.2880996, - 50.3069956 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Punchyrock636", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #parkings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T15:21:16Z", - "reviewed_features": [], - "tag_changes": { - "route": [ - "bus", - "road" - ], - "amenity": [ - "parking" - ], - "capacity": [ - "18", - "9", - "10" - ], - "capacity:disabled": [ - "18", - "9", - "10" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0.0000584719349999991, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/parkings.html", - "theme": "parkings", - "answer": 7, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124014028 - } - }, - { - "id": 124013482, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2979231, - 50.3028584 - ], - [ - 9.2979231, - 50.3028584 - ], - [ - 9.2979231, - 50.3028584 - ], - [ - 9.2979231, - 50.3028584 - ], - [ - 9.2979231, - 50.3028584 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9907742954", - "osm_id": 9907742954, - "reasons": [ - 43 - ], - "version": 1, - "primary_tags": { - "tourism": "map" - } - } - ], - "user": "edgartkoschlar187", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #maps", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T15:06:23Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "map" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "maps", - "create": 1, - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 124013482 - } - }, - { - "id": 124013340, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2915824, - 50.2982806 - ], - [ - 9.3036963, - 50.2982806 - ], - [ - 9.3036963, - 50.3121225 - ], - [ - 9.2915824, - 50.3121225 - ], - [ - 9.2915824, - 50.2982806 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "edgartkoschlar187", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T15:03:06Z", - "reviewed_features": [], - "tag_changes": { - "waste": [ - "trash" - ], - "amenity": [ - "waste_basket", - "waste_disposal" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0.000167679392410047, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 1, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124013340 - } - }, - { - "id": 124013249, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1782698, - 50.2044785 - ], - [ - 9.1782698, - 50.2044785 - ], - [ - 9.1782698, - 50.2044785 - ], - [ - 9.1782698, - 50.2044785 - ], - [ - 9.1782698, - 50.2044785 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Gruppe 22", - "uid": "16631753", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T15:01:07Z", - "reviewed_features": [], - "tag_changes": { - "dog": [ - "leashed" - ], - "amenity": [ - "bar" - ], - "service:electricity": [ - "limited" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 124013249 - } - }, - { - "id": 124012526, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0421826, - 50.2179876 - ], - [ - 9.0442049, - 50.2179876 - ], - [ - 9.0442049, - 50.2193177 - ], - [ - 9.0421826, - 50.2193177 - ], - [ - 9.0421826, - 50.2179876 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #education", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T14:41:58Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "school" - ], - "school:gender": [ - "mixed" - ], - "school:language": [ - "de" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.00000268986122999413, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/education.html", - "theme": "education", - "answer": 3, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 124012526 - } - }, - { - "id": 124012485, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0421665, - 50.2180902 - ], - [ - 9.0421671, - 50.2180902 - ], - [ - 9.0421671, - 50.2180906 - ], - [ - 9.0421665, - 50.2180906 - ], - [ - 9.0421665, - 50.2180902 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T14:40:45Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "playground" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 2.39999998503899e-13, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 6, - "create": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 124012485 - } - }, - { - "id": 124012475, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T14:40:34Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124012475 - } - }, - { - "id": 124012468, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T14:40:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124012468 - } - }, - { - "id": 124012465, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T14:40:21Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124012465 - } - }, - { - "id": 124012331, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0454441, - 50.2204058 - ], - [ - 9.0454441, - 50.2204058 - ], - [ - 9.0454441, - 50.2204058 - ], - [ - 9.0454441, - 50.2204058 - ], - [ - 9.0454441, - 50.2204058 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T14:36:56Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 5, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124012331 - } - }, - { - "id": 124012108, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0563058, - 50.2298532 - ], - [ - 9.0567382, - 50.2298532 - ], - [ - 9.0567382, - 50.2305632 - ], - [ - 9.0563058, - 50.2305632 - ], - [ - 9.0563058, - 50.2298532 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #transit", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T14:30:27Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "yes" - ], - "highway": [ - "bus_stop" - ], - "wheelchair": [ - "yes", - "limited" - ], - "public_transport": [ - "platform" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 3.07003999998658e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/transit.html", - "theme": "transit", - "answer": 4, - "locale": "de", - "imagery": "osm" - }, - "id": 124012108 - } - }, - { - "id": 124012049, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0608132, - 50.2279186 - ], - [ - 9.0608132, - 50.2279186 - ], - [ - 9.0608132, - 50.2279186 - ], - [ - 9.0608132, - 50.2279186 - ], - [ - 9.0608132, - 50.2279186 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T14:28:25Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 10, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124012049 - } - }, - { - "id": 124012030, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.2628798, - 51.3046074 - ], - [ - 13.2628798, - 51.3046074 - ], - [ - 13.2628798, - 51.3046074 - ], - [ - 13.2628798, - 51.3046074 - ], - [ - 13.2628798, - 51.3046074 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "radler64ohne", - "uid": "2234817", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-24T14:27:55Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "pitch" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "answer": 3, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124012030 - } - }, - { - "id": 124012018, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0667501, - 50.2306514 - ], - [ - 9.0681465, - 50.2306514 - ], - [ - 9.0681465, - 50.2313418 - ], - [ - 9.0667501, - 50.2313418 - ], - [ - 9.0667501, - 50.2306514 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #sport_pitches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T14:27:27Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "limited" - ], - "leisure": [ - "pitch" - ], - "surface": [ - "Kunstrasen" - ], - "reservation": [ - "recommended" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 9.6407456000414e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/sport_pitches.html", - "theme": "sport_pitches", - "answer": 3, - "locale": "de", - "imagery": "osm" - }, - "id": 124012018 - } - }, - { - "id": 124011952, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0418333, - 50.2189251 - ], - [ - 9.0658909, - 50.2189251 - ], - [ - 9.0658909, - 50.2300067 - ], - [ - 9.0418333, - 50.2300067 - ], - [ - 9.0418333, - 50.2189251 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #parkings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T14:25:15Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "parking" - ], - "capacity": [ - "100", - "8", - "45" - ], - "capacity:disabled": [ - "2", - "4" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00026659670015992, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/parkings.html", - "theme": "parkings", - "answer": 5, - "locale": "de", - "imagery": "osm" - }, - "id": 124011952 - } - }, - { - "id": 124011894, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T14:23:18Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "theme": "maxspeed", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124011894 - } - }, - { - "id": 124011821, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0593702, - 50.2272365 - ], - [ - 9.0626417, - 50.2272365 - ], - [ - 9.0626417, - 50.2300535 - ], - [ - 9.0593702, - 50.2300535 - ], - [ - 9.0593702, - 50.2272365 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #kerbs_and_crossings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T14:21:19Z", - "reviewed_features": [], - "tag_changes": { - "barrier": [ - "kerb" - ], - "highway": [ - "residential" - ], - "smoothness": [ - "excellent" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0.00000921581550000184, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/kerbs_and_crossings.html", - "theme": "kerbs_and_crossings", - "answer": 6, - "create": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 124011821 - } - }, - { - "id": 124011774, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0582267, - 50.2276253 - ], - [ - 9.0608136, - 50.2276253 - ], - [ - 9.0608136, - 50.2305722 - ], - [ - 9.0582267, - 50.2305722 - ], - [ - 9.0582267, - 50.2276253 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T14:19:52Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house" - ], - "entrance": [ - "yes" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0.00000762333560999109, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/entrances.html", - "theme": "entrances", - "answer": 1, - "create": 3, - "locale": "de", - "imagery": "osm" - }, - "id": 124011774 - } - }, - { - "id": 124011704, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0593702, - 50.2272365 - ], - [ - 9.0626417, - 50.2272365 - ], - [ - 9.0626417, - 50.2300535 - ], - [ - 9.0593702, - 50.2300535 - ], - [ - 9.0593702, - 50.2272365 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T14:18:05Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000921581550000184, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 6, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 124011704 - } - }, - { - "id": 124011683, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.5064351, - 48.8196201 - ], - [ - 13.5064351, - 48.8196201 - ], - [ - 13.5064351, - 48.8196201 - ], - [ - 13.5064351, - 48.8196201 - ], - [ - 13.5064351, - 48.8196201 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "APneunzehn74", - "uid": "12180500", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T14:17:31Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "backrest": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/index.html", - "theme": "nature", - "answer": 1, - "locale": "de", - "change_within_100m": 1 - }, - "id": 124011683 - } - }, - { - "id": 124011635, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0602915, - 50.2382206 - ], - [ - 9.0602915, - 50.2382206 - ], - [ - 9.0602915, - 50.2382206 - ], - [ - 9.0602915, - 50.2382206 - ], - [ - 9.0602915, - 50.2382206 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9907611205", - "osm_id": 9907611205, - "reasons": [ - 43 - ], - "version": 1, - "primary_tags": { - "amenity": "binoculars" - } - } - ], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #binoculars", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T14:16:33Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "binoculars" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/binoculars.html", - "theme": "binoculars", - "answer": 3, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124011635 - } - }, - { - "id": 124011625, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1782698, - 50.1971951 - ], - [ - 9.1897837, - 50.1971951 - ], - [ - 9.1897837, - 50.2044785 - ], - [ - 9.1782698, - 50.2044785 - ], - [ - 9.1782698, - 50.1971951 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Gruppe 22", - "uid": "16631753", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T14:16:24Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bar", - "cafe" - ] - }, - "create": 5, - "modify": 8, - "delete": 0, - "area": 0.0000838603392599756, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 12, - "create": 5, - "locale": "de", - "imagery": "osm", - "add-image": 2 - }, - "id": 124011625 - } - }, - { - "id": 124011566, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0631735, - 50.2276681 - ], - [ - 9.0631735, - 50.2276681 - ], - [ - 9.0631735, - 50.2276681 - ], - [ - 9.0631735, - 50.2276681 - ], - [ - 9.0631735, - 50.2276681 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T14:15:02Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "material": [ - "wood" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124011566 - } - }, - { - "id": 124011483, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0588096, - 50.2261718 - ], - [ - 9.0631735, - 50.2261718 - ], - [ - 9.0631735, - 50.2301132 - ], - [ - 9.0588096, - 50.2301132 - ], - [ - 9.0588096, - 50.2261718 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T14:12:09Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 4, - "modify": 5, - "delete": 0, - "area": 0.0000171998754599768, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 18, - "create": 4, - "locale": "de", - "imagery": "osm" - }, - "id": 124011483 - } - }, - { - "id": 124011368, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0559477, - 50.2294277 - ], - [ - 9.0594158, - 50.2294277 - ], - [ - 9.0594158, - 50.2305576 - ], - [ - 9.0559477, - 50.2305576 - ], - [ - 9.0559477, - 50.2294277 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T14:09:13Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "artwork" - ] - }, - "create": 3, - "modify": 0, - "delete": 0, - "area": 0.00000391860618998221, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 3, - "create": 3, - "locale": "de", - "imagery": "osm" - }, - "id": 124011368 - } - }, - { - "id": 124011259, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0671787, - 50.2296791 - ], - [ - 9.0671787, - 50.2296791 - ], - [ - 9.0671787, - 50.2296791 - ], - [ - 9.0671787, - 50.2296791 - ], - [ - 9.0671787, - 50.2296791 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T14:06:05Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "restaurant" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124011259 - } - }, - { - "id": 124011123, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0431911, - 50.2182314 - ], - [ - 9.067286, - 50.2182314 - ], - [ - 9.067286, - 50.2314699 - ], - [ - 9.0431911, - 50.2314699 - ], - [ - 9.0431911, - 50.2182314 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T14:02:33Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "lit": [ - "no" - ], - "access": [ - "customers" - ], - "leisure": [ - "playground" - ], - "max_age": [ - "99" - ], - "min_age": [ - "1" - ], - "surface": [ - "grass" - ], - "website": [ - "https://www.jugendzentrum-ronneburg.de" - ], - "operator": [ - "Jugendzentrum Ronneburg (MKK)" - ], - "wheelchair": [ - "yes" - ], - "opening_hours": [ - "sunrise-sunset", - "24/7" - ] - }, - "create": 2, - "modify": 8, - "delete": 0, - "area": 0.000318980333649994, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 12, - "create": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 124011123 - } - }, - { - "id": 124011109, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0552588, - 50.2305434 - ], - [ - 9.0562589, - 50.2305434 - ], - [ - 9.0562589, - 50.2314699 - ], - [ - 9.0552588, - 50.2314699 - ], - [ - 9.0552588, - 50.2305434 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T14:02:07Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 9.26592649997421e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 4, - "locale": "de", - "imagery": "osm" - }, - "id": 124011109 - } - }, - { - "id": 124011062, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0577981, - 50.2308968 - ], - [ - 9.0583181, - 50.2308968 - ], - [ - 9.0583181, - 50.2312359 - ], - [ - 9.0577981, - 50.2312359 - ], - [ - 9.0577981, - 50.2308968 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T14:00:14Z", - "reviewed_features": [], - "tag_changes": { - "leisure": [ - "playground" - ], - "wheelchair": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.76332000002567e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124011062 - } - }, - { - "id": 124011034, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0577981, - 50.2308968 - ], - [ - 9.0583181, - 50.2308968 - ], - [ - 9.0583181, - 50.2312359 - ], - [ - 9.0577981, - 50.2312359 - ], - [ - 9.0577981, - 50.2308968 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T13:59:19Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 3, - "delete": 0, - "area": 1.76332000002567e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 5, - "locale": "de", - "imagery": "osm" - }, - "id": 124011034 - } - }, - { - "id": 124010983, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0587137, - 50.2300746 - ], - [ - 9.0587137, - 50.2300746 - ], - [ - 9.0587137, - 50.2300746 - ], - [ - 9.0587137, - 50.2300746 - ], - [ - 9.0587137, - 50.2300746 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T13:58:04Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "pub" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 1, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124010983 - } - }, - { - "id": 124010732, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0408532, - 50.2153289 - ], - [ - 9.0663797, - 50.2153289 - ], - [ - 9.0663797, - 50.2357814 - ], - [ - 9.0408532, - 50.2357814 - ], - [ - 9.0408532, - 50.2153289 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T13:50:43Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "tertiary", - "residential", - "secondary", - "living_street", - "track" - ], - "name:etymology": [ - "unknown" - ], - "name:etymology:wikidata": [ - "Q55488", - "Q39614", - "Q3802", - "Q1302299", - "Q382481", - "Q12280", - "Q148988", - "Q5879", - "Q659", - "Q1351785", - "Q182470", - "Q16970", - "Q8502", - "Q8359" - ] - }, - "create": 0, - "modify": 37, - "delete": 0, - "area": 0.000522080741249933, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 47, - "locale": "de", - "imagery": "osm" - }, - "id": 124010732 - } - }, - { - "id": 124010709, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.3064821, - 50.2719724 - ], - [ - 9.3064821, - 50.2719724 - ], - [ - 9.3064821, - 50.2719724 - ], - [ - 9.3064821, - 50.2719724 - ], - [ - 9.3064821, - 50.2719724 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "edgartkoschlar187", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T13:50:14Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "pub" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 6, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124010709 - } - }, - { - "id": 124010619, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9296719, - 50.1731825 - ], - [ - 8.9296719, - 50.1731825 - ], - [ - 8.9296719, - 50.1731825 - ], - [ - 8.9296719, - 50.1731825 - ], - [ - 8.9296719, - 50.1731825 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T13:47:57Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 2, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124010619 - } - }, - { - "id": 124009854, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2930922, - 50.2537018 - ], - [ - 9.2930922, - 50.2537018 - ], - [ - 9.2930922, - 50.2537018 - ], - [ - 9.2930922, - 50.2537018 - ], - [ - 9.2930922, - 50.2537018 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "edgartkoschlar187", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T13:27:13Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "fast_food" - ], - "cuisine": [ - "chinese" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124009854 - } - }, - { - "id": 124009720, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2930922, - 50.2537018 - ], - [ - 9.2930922, - 50.2537018 - ], - [ - 9.2930922, - 50.2537018 - ], - [ - 9.2930922, - 50.2537018 - ], - [ - 9.2930922, - 50.2537018 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "edgartkoschlar187", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #food", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T13:24:05Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "fast_food" - ] - }, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/food.html", - "theme": "food", - "answer": 5, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124009720 - } - }, - { - "id": 124009625, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.299688, - 50.3043557 - ], - [ - 9.299688, - 50.3043557 - ], - [ - 9.299688, - 50.3043557 - ], - [ - 9.299688, - 50.3043557 - ], - [ - 9.299688, - 50.3043557 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "edgartkoschlar187", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T13:20:38Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 2, - "create": 1, - "locale": "de", - "imagery": "osm" - }, - "id": 124009625 - } - }, - { - "id": 124009237, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2616594, - 50.2851045 - ], - [ - 9.3023795, - 50.2851045 - ], - [ - 9.3023795, - 50.3139636 - ], - [ - 9.2616594, - 50.3139636 - ], - [ - 9.2616594, - 50.2851045 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "edgartkoschlar187", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #parkings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T13:09:27Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "parking" - ], - "parking": [ - "street_side", - "surface" - ], - "capacity": [ - "5", - "10" - ], - "capacity:disabled": [ - "5", - "10" - ] - }, - "create": 4, - "modify": 6, - "delete": 0, - "area": 0.00117514543790997, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/parkings.html", - "theme": "parkings", - "answer": 18, - "create": 4, - "locale": "de", - "imagery": "osm" - }, - "id": 124009237 - } - }, - { - "id": 124009152, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.3028218, - 50.2994537 - ], - [ - 9.3043858, - 50.2994537 - ], - [ - 9.3043858, - 50.3006989 - ], - [ - 9.3028218, - 50.3006989 - ], - [ - 9.3028218, - 50.2994537 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "edgartkoschlar187", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T13:06:45Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "no" - ], - "route": [ - "bicycle" - ], - "barrier": [ - "cycle_barrier" - ], - "highway": [ - "cycleway" - ], - "smoothness": [ - "good" - ], - "cycle_barrier": [ - "double" - ] - }, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0.00000194749279999955, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 16, - "create": 2, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 124009152 - } - }, - { - "id": 124008929, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.2981364, - 50.3029782 - ], - [ - 9.2996644, - 50.3029782 - ], - [ - 9.2996644, - 50.304399 - ], - [ - 9.2981364, - 50.304399 - ], - [ - 9.2981364, - 50.3029782 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "edgartkoschlar187", - "uid": "16631222", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T13:01:13Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 0.00000217098239999536, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 2, - "create": 2, - "locale": "de", - "imagery": "osm" - }, - "id": 124008929 - } - }, - { - "id": 124007843, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4195831, - 50.7984455 - ], - [ - 4.4195831, - 50.7984455 - ], - [ - 4.4195831, - 50.7984455 - ], - [ - 4.4195831, - 50.7984455 - ], - [ - 4.4195831, - 50.7984455 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "StefDeGreef", - "uid": "1860737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-24T12:30:29Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/86a3NYP.jpg" - ], - "amenity": [ - "bicycle_repair_station" - ], - "opening_hours": [ - "24/7" - ], - "service:bicycle:pump:operational_status": [ - "broken" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 3 - }, - "id": 124007843 - } - }, - { - "id": 124007155, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -3.8395688, - 48.6975766 - ], - [ - -3.8395688, - 48.6975766 - ], - [ - -3.8395688, - 48.6975766 - ], - [ - -3.8395688, - 48.6975766 - ], - [ - -3.8395688, - 48.6975766 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "cyril42e", - "uid": "1801525", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-24T12:12:28Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 124007155 - } - }, - { - "id": 124007134, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.9351449, - 49.7813736 - ], - [ - 9.9351449, - 49.7813736 - ], - [ - 9.9351449, - 49.7813736 - ], - [ - 9.9351449, - 49.7813736 - ], - [ - 9.9351449, - 49.7813736 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wuerzblog", - "uid": "57291", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T12:11:53Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "public_bookcase" - ] - }, - "create": 1, - "modify": 7, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "answer": 10, - "create": 1, - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 124007134 - } - }, - { - "id": 124006851, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.5013039, - 52.4970694 - ], - [ - 13.5013039, - 52.4970694 - ], - [ - 13.5013039, - 52.4970694 - ], - [ - 13.5013039, - 52.4970694 - ], - [ - 13.5013039, - 52.4970694 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Walderfahrung", - "uid": "16630874", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T12:02:46Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "pump:status": [ - "ok" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 1, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 124006851 - } - }, - { - "id": 124006452, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.9287697, - 49.792706 - ], - [ - 9.9287697, - 49.792706 - ], - [ - 9.9287697, - 49.792706 - ], - [ - 9.9287697, - 49.792706 - ], - [ - 9.9287697, - 49.792706 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wuerzblog", - "uid": "57291", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T11:50:34Z", - "reviewed_features": [], - "tag_changes": { - "dog": [ - "yes" - ], - "amenity": [ - "cafe" - ], - "smoking": [ - "outside" - ], - "service:electricity": [ - "no" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 9, - "locale": "de", - "imagery": "osm" - }, - "id": 124006452 - } - }, - { - "id": 124003543, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8772387, - 51.1562631 - ], - [ - 5.0047352, - 51.1562631 - ], - [ - 5.0047352, - 51.2104771 - ], - [ - 2.8772387, - 51.2104771 - ], - [ - 2.8772387, - 51.1562631 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 4, - "name": "mass modification" - } - ], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-24T10:11:40Z", - "reviewed_features": [], - "tag_changes": { - "landuse": [ - "meadow", - "farmyard" - ], - "building": [ - "yes", - "house", - "office", - "roof" - ], - "addr:street": [ - "J.B.-Stessensstraat", - "J. B. Stessensstraat" - ], - "addr:housenumber": [ - "67;69", - "67,69", - "69;71", - "69-71" - ], - "source:geometry:ref": [ - "Gbg/1711298", - "Gbg/1713428", - "Gbg/1711297", - "Gbg/5124219", - "Gbg/1706211", - "Gbg/6155002", - "Gbg/1706216", - "Gbg/5124217", - "Gbg/6154405", - "Gbg/6153526", - "Gbg/6153174", - "Gbg/6152967", - "Gbg/1711415", - "Gbg/5126111" - ], - "source:geometry:date": [ - "2009-11-17", - "2015-03-30", - "2017-11-20", - "2012-10-10" - ] - }, - "create": 210, - "modify": 311, - "delete": 0, - "area": 0.115340095251004, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 297, - "theme": "grb", - "answer": 2, - "import": 14, - "locale": "nl", - "imagery": "AGIVFlandersGRB", - "conflation": 28, - "change_over_5000m": 1 - }, - "id": 124003543 - } - }, - { - "id": 124002833, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.4024884, - 45.3128165 - ], - [ - 9.0412114, - 45.3128165 - ], - [ - 9.0412114, - 45.6002287 - ], - [ - 8.4024884, - 45.6002287 - ], - [ - 8.4024884, - 45.3128165 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "ivanbranco", - "uid": "11220113", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T09:49:48Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "kindergarten", - "school" - ], - "highway": [ - "residential", - "primary", - "service", - "unclassified", - "tertiary" - ], - "landuse": [ - "education" - ], - "leisure": [ - "park", - "sports_centre" - ], - "building": [ - "yes" - ], - "name:etymology:wikidata": [ - "Q19001811", - "Q1286", - "Q47066", - "Q9409", - "Q273314", - "Q53133", - "Q3980759", - "Q3861947", - "Q113248387", - "Q182092", - "Q608238", - "Q113249925", - "Q128130", - "Q708202", - "Q963339", - "Q128226", - "Q48900", - "Q529146", - "Q872637", - "Q28870251", - "Q15924", - "Q625139", - "Q336731", - "Q183240", - "Q1374", - "Q762", - "Q113250495", - "Q680", - "Q3767329", - "Q81989", - "Q221503", - "Q676555", - "Q147015", - "Q1025312" - ] - }, - "create": 0, - "modify": 74, - "delete": 0, - "area": 0.183576782620604, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology", - "theme": "etymology", - "answer": 88, - "locale": "it", - "imagery": "osm" - }, - "id": 124002833 - } - }, - { - "id": 124002782, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "APneunzehn74", - "uid": "12180500", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #nature", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-24T09:48:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/nature.html", - "theme": "nature", - "answer": 1, - "locale": "de", - "imagery": "osm", - "change_within_100m": 1 - }, - "id": 124002782 - } - }, - { - "id": 124001148, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6248593, - 52.4509662 - ], - [ - 13.6248593, - 52.4509662 - ], - [ - 13.6248593, - 52.4509662 - ], - [ - 13.6248593, - 52.4509662 - ], - [ - 13.6248593, - 52.4509662 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Paulus Maximus", - "uid": "16562534", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T08:55:21Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-22", - "2022-07-10" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 124001148 - } - }, - { - "id": 123999652, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8803732, - 51.1776254 - ], - [ - 4.9012972, - 51.1776254 - ], - [ - 4.9012972, - 51.1867329 - ], - [ - 4.8803732, - 51.1867329 - ], - [ - 4.8803732, - 51.1776254 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-24T08:06:59Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "weighbridge" - ], - "building": [ - "office", - "industrial", - "house", - "yes", - "roof" - ], - "addr:street": [ - "Watertorenstraat" - ], - "addr:housenumber": [ - "35" - ], - "source:geometry:ref": [ - "Gbg/7019601", - "Gbg/3950728", - "Gbg/3949843", - "Gbg/3949869", - "Gbg/3947974", - "Gbg/3947973", - "Gbg/6508495", - "Gbg/3947781", - "Gbg/6508520", - "Gbg/3947798", - "Gbg/5862342", - "Gbg/3947799", - "Gbg/3947784", - "Gbg/3947800", - "Gbg/3947785", - "Gbg/3947801", - "Gbg/7019737", - "Gbg/3947802", - "Gbg/3947787", - "Gbg/3947803", - "Gbg/3947780", - "Gbg/3947855", - "Gbg/3947778", - "Gbg/5862350", - "Gbg/5862309", - "Gbg/3950034", - "Gbg/6508498", - "Gbg/3950070", - "Gbg/6507762", - "Gbg/3950036", - "Gbg/6803374", - "Gbg/6803373", - "Gbg/3950133", - "Gbg/3950047", - "Gbg/3950141", - "Gbg/3950041", - "Gbg/3950007", - "Gbg/3950008", - "Gbg/6507761", - "Gbg/3947867", - "Gbg/3950080", - "Gbg/3950073", - "Gbg/3950112", - "Gbg/5860845", - "Gbg/6507770", - "Gbg/3950072", - "Gbg/5860840", - "Gbg/7019739", - "Gbg/3950068", - "Gbg/3950069", - "Gbg/3950019", - "Gbg/3950075", - "Gbg/3950074", - "Gbg/6507767", - "Gbg/3950099", - "Gbg/3949999", - "Gbg/5860836", - "Gbg/3950062", - "Gbg/5860856", - "Gbg/3950064", - "Gbg/3950159", - "Gbg/3950160", - "Gbg/3950010", - "Gbg/6803380", - "Gbg/6803378", - "Gbg/3950005", - "Gbg/3950001", - "Gbg/3950000", - "Gbg/7019696", - "Gbg/5860841", - "Gbg/3950020", - "Gbg/5860838", - "Gbg/3947853" - ], - "source:geometry:date": [ - "2021-10-25", - "2012-11-15", - "2019-09-04", - "2018-10-24", - "2013-02-20", - "2017-03-01", - "2018-02-26", - "2020-06-05", - "2014-05-02" - ] - }, - "create": 659, - "modify": 527, - "delete": 3, - "area": 0.000190565330000126, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 452, - "theme": "grb", - "answer": 1, - "delete": 3, - "import": 65, - "locale": "nl", - "imagery": "AGIV", - "conflation": 146 - }, - "id": 123999652 - } - }, - { - "id": 123999606, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.5481008, - 48.8028911 - ], - [ - 13.5481008, - 48.8028911 - ], - [ - 13.5481008, - 48.8028911 - ], - [ - 13.5481008, - 48.8028911 - ], - [ - 13.5481008, - 48.8028911 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "APneunzehn74", - "uid": "12180500", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-24T08:05:29Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "bakery" - ], - "amenity": [ - "cafe" - ], - "website": [ - "https://m.baeckerei-kittl.de/de/fachgeschaefte.html" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cafes_and_pubs.html", - "theme": "cafes_and_pubs", - "answer": 1, - "locale": "de", - "imagery": "osm", - "change_within_25m": 1 - }, - "id": 123999606 - } - }, - { - "id": 123999591, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8991132, - 51.1795768 - ], - [ - 4.9026741, - 51.1795768 - ], - [ - 4.9026741, - 51.1809254 - ], - [ - 4.8991132, - 51.1809254 - ], - [ - 4.8991132, - 51.1795768 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-24T08:05:04Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes", - "roof" - ], - "source:geometry:ref": [ - "Gbg/3948674", - "Gbg/3947796", - "Gbg/6803384", - "Gbg/3947795" - ], - "source:geometry:date": [ - "2013-02-20", - "2017-03-01", - "2021-10-25" - ] - }, - "create": 73, - "modify": 22, - "delete": 0, - "area": 0.00000480222973999904, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 20, - "theme": "grb", - "import": 10, - "locale": "nl", - "imagery": "AGIV", - "conflation": 8 - }, - "id": 123999591 - } - }, - { - "id": 123999458, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9940673, - 51.1650967 - ], - [ - 5.001737, - 51.1650967 - ], - [ - 5.001737, - 51.1696616 - ], - [ - 4.9940673, - 51.1696616 - ], - [ - 4.9940673, - 51.1650967 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-24T08:00:24Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential", - "track", - "path" - ], - "name:etymology:wikidata": [ - "Q1258926", - "Q12892" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.0000350114135299876, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 12, - "locale": "nl", - "imagery": "osm" - }, - "id": 123999458 - } - }, - { - "id": 123999413, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9005069, - 51.1797587 - ], - [ - 4.90201, - 51.1797587 - ], - [ - 4.90201, - 51.1807503 - ], - [ - 4.9005069, - 51.1807503 - ], - [ - 4.9005069, - 51.1797587 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-24T07:59:05Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "roof", - "yes" - ], - "source:geometry:ref": [ - "Gbg/3947841", - "Gbg/3947842", - "Gbg/3947843", - "Gbg/3947844", - "Gbg/3948672", - "Gbg/3948661", - "Gbg/3948660", - "Gbg/3948659", - "Gbg/6508513", - "Gbg/3948657" - ], - "source:geometry:date": [ - "2020-06-05", - "2013-02-20", - "2015-11-24", - "2012-11-15", - "2018-10-24" - ] - }, - "create": 35, - "modify": 38, - "delete": 0, - "area": 0.00000149047395999834, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 35, - "theme": "grb", - "import": 4, - "locale": "nl", - "imagery": "AGIV", - "conflation": 14 - }, - "id": 123999413 - } - }, - { - "id": 123998940, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9005069, - 51.1802435 - ], - [ - 4.902542, - 51.1802435 - ], - [ - 4.902542, - 51.1814191 - ], - [ - 4.9005069, - 51.1814191 - ], - [ - 4.9005069, - 51.1802435 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-24T07:41:10Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes", - "roof" - ], - "addr:housenumber": [ - "134;134A", - "134" - ], - "source:geometry:ref": [ - "Gbg/3948654", - "Gbg/3948653", - "Gbg/3948652", - "Gbg/6508548", - "Gbg/3948640", - "Gbg/3948533", - "Gbg/6057084", - "Gbg/3948535", - "Gbg/3947841", - "Gbg/3947842", - "Gbg/3947843", - "Gbg/3947844", - "Gbg/5862279" - ], - "source:geometry:date": [ - "2013-02-20", - "2018-10-24", - "2021-10-25", - "2015-11-24", - "2017-10-16", - "2012-11-15", - "2020-06-05", - "2017-03-01" - ] - }, - "create": 136, - "modify": 87, - "delete": 0, - "area": 0.00000239246355999303, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 73, - "theme": "grb", - "answer": 1, - "import": 17, - "locale": "nl", - "imagery": "AGIV", - "conflation": 26 - }, - "id": 123998940 - } - }, - { - "id": 123998884, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9014402, - 51.1811318 - ], - [ - 4.9035953, - 51.1811318 - ], - [ - 4.9035953, - 51.183221 - ], - [ - 4.9014402, - 51.183221 - ], - [ - 4.9014402, - 51.1811318 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-24T07:38:19Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "roof", - "yes" - ], - "source:geometry:ref": [ - "Gbg/3948735", - "Gbg/5862427", - "Gbg/3948638", - "Gbg/3948637", - "Gbg/3948512", - "Gbg/5862506" - ], - "source:geometry:date": [ - "2019-09-04", - "2017-03-01", - "2013-02-20", - "2015-11-24" - ] - }, - "create": 56, - "modify": 45, - "delete": 0, - "area": 0.0000045024349200016, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 41, - "theme": "grb", - "import": 7, - "locale": "nl", - "imagery": "AGIV", - "conflation": 12 - }, - "id": 123998884 - } - }, - { - "id": 123998880, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9012347, - 51.1814424 - ], - [ - 4.9013678, - 51.1814424 - ], - [ - 4.9013678, - 51.1816028 - ], - [ - 4.9012347, - 51.1816028 - ], - [ - 4.9012347, - 51.1814424 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-24T07:38:09Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house" - ], - "source:geometry:ref": [ - "Gbg/3948516" - ], - "source:geometry:date": [ - "2013-02-20" - ] - }, - "create": 2, - "modify": 6, - "delete": 0, - "area": 2.13492399998511e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 5, - "theme": "grb", - "locale": "nl", - "imagery": "AGIV", - "conflation": 2 - }, - "id": 123998880 - } - }, - { - "id": 123998873, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.901508, - 51.1814589 - ], - [ - 4.901824, - 51.1814589 - ], - [ - 4.901824, - 51.1815731 - ], - [ - 4.901508, - 51.1815731 - ], - [ - 4.901508, - 51.1814589 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-24T07:37:52Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "roof" - ], - "source:geometry:ref": [ - "Gbg/3948515" - ], - "source:geometry:date": [ - "2012-11-15" - ] - }, - "create": 3, - "modify": 7, - "delete": 0, - "area": 3.60871999996734e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 6, - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "AGIV", - "conflation": 2 - }, - "id": 123998873 - } - }, - { - "id": 123998868, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9018061, - 51.1813328 - ], - [ - 4.9029086, - 51.1813328 - ], - [ - 4.9029086, - 51.1820404 - ], - [ - 4.9018061, - 51.1820404 - ], - [ - 4.9018061, - 51.1813328 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-24T07:37:28Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes", - "roof" - ], - "source:geometry:ref": [ - "Gbg/5862477", - "Gbg/3948636", - "Gbg/3948635" - ], - "source:geometry:date": [ - "2017-03-01", - "2012-11-15", - "2013-02-20" - ] - }, - "create": 39, - "modify": 21, - "delete": 0, - "area": 7.80128999998202e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 18, - "theme": "grb", - "import": 4, - "locale": "nl", - "imagery": "AGIV", - "conflation": 6 - }, - "id": 123998868 - } - }, - { - "id": 123997166, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.590452, - -33.4607463 - ], - [ - -70.5672321, - -33.4607463 - ], - [ - -70.5672321, - -33.4443225 - ], - [ - -70.590452, - -33.4443225 - ], - [ - -70.590452, - -33.4607463 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #ghostbikes", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T06:16:03Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Matias Rojas Guerrero" - ], - "image": [ - "https://i.imgur.com/Wv7Qqdp.jpg" - ], - "source": [ - "https://twitter.com/lareinapedalea/status/1309459574626422784" - ], - "historic": [ - "memorial" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.000381358993619975, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/ghostbikes.html", - "theme": "ghostbikes", - "answer": 2, - "locale": "es", - "imagery": "osmfr", - "add-image": 1 - }, - "id": 123997166 - } - }, - { - "id": 123996099, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.1443388, - 49.2848289 - ], - [ - 13.1449109, - 49.2848289 - ], - [ - 13.1449109, - 49.2860939 - ], - [ - 13.1443388, - 49.2860939 - ], - [ - 13.1443388, - 49.2848289 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-24T05:00:17Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "amenity": [ - "toilets" - ], - "building": [ - "yes" - ], - "opening_hours": [ - "24/7" - ], - "changing_table": [ - "no" - ], - "toilets:position": [ - "seated;urinal" - ], - "toilets:handwashing": [ - "yes" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 7.23706499997261e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 9, - "locale": "de", - "imagery": "osm" - }, - "id": 123996099 - } - }, - { - "id": 123995850, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.8547247, - 49.3486955 - ], - [ - 12.8547367, - 49.3486955 - ], - [ - 12.8547367, - 49.348934 - ], - [ - 12.8547247, - 49.348934 - ], - [ - 12.8547247, - 49.3486955 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-24T04:32:01Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Original Thai Massage" - ], - "shop": [ - "massage", - "hairdresser" - ], - "image": [ - "https://i.imgur.com/B5SwXgD.jpg", - "https://i.imgur.com/QVbiE3t.jpg" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 2.86199999999806e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 1, - "locale": "de", - "imagery": "osm", - "add-image": 2 - }, - "id": 123995850 - } - }, - { - "id": 123994765, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.7466533, - -33.4923029 - ], - [ - -70.6416714, - -33.4923029 - ], - [ - -70.6416714, - -33.4499735 - ], - [ - -70.7466533, - -33.4499735 - ], - [ - -70.7466533, - -33.4923029 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #ghostbikes", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T02:35:25Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Cristian Martínez" - ], - "image": [ - "https://i.imgur.com/M5PeTwh.jpg" - ], - "historic": [ - "memorial" - ], - "inscription": [ - "Hans Andres Venegas Salinas Q.E.P.D. 24-Dic-1988 / 19-Abr-2018", - "Hans Andres Venegas Salinas\nQ.E.P.D.\n24-Dic-1988 / 19-Abr-2018" - ] - }, - "create": 1, - "modify": 5, - "delete": 0, - "area": 0.00444382083785992, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/ghostbikes.html", - "theme": "ghostbikes", - "answer": 10, - "create": 1, - "locale": "es", - "imagery": "osmfr", - "add-image": 2 - }, - "id": 123994765 - } - }, - { - "id": 123993986, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6416714, - -33.4499735 - ], - [ - -70.6416714, - -33.4499735 - ], - [ - -70.6416714, - -33.4499735 - ], - [ - -70.6416714, - -33.4499735 - ], - [ - -70.6416714, - -33.4499735 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #ghostbikes", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T01:13:15Z", - "reviewed_features": [], - "tag_changes": { - "historic": [ - "memorial" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/ghostbikes.html", - "theme": "ghostbikes", - "create": 1, - "locale": "es", - "imagery": "EsriWorldImagery" - }, - "id": 123993986 - } - }, - { - "id": 123993932, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -92.71082, - 44.9504902 - ], - [ - -92.71082, - 44.9504902 - ], - [ - -92.71082, - 44.9504902 - ], - [ - -92.71082, - 44.9504902 - ], - [ - -92.71082, - 44.9504902 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "noliver", - "uid": "91568", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-24T01:07:01Z", - "reviewed_features": [], - "tag_changes": { - "colour": [ - "red" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "answer": 1, - "locale": "en", - "imagery": "USDA-NAIP" - }, - "id": 123993932 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-25.json b/Docs/Tools/stats/stats.2022-7-25.json deleted file mode 100644 index ee98fb4e88..0000000000 --- a/Docs/Tools/stats/stats.2022-7-25.json +++ /dev/null @@ -1,3340 +0,0 @@ -{ - "features": [ - { - "id": 124070832, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.5087183, - 47.3710668 - ], - [ - 8.5087897, - 47.3710668 - ], - [ - 8.5087897, - 47.3712519 - ], - [ - 8.5087183, - 47.3712519 - ], - [ - 8.5087183, - 47.3710668 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pascal Mages", - "uid": "30566", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-25T22:16:01Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "residents", - "private" - ], - "amenity": [ - "waste_disposal" - ], - "location": [ - "underground" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.32161399996176e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 3, - "locale": "en", - "imagery": "osm" - }, - "id": 124070832 - } - }, - { - "id": 124070530, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -117.2284295, - 47.6242028 - ], - [ - -117.1966007, - 47.6242028 - ], - [ - -117.1966007, - 47.635149 - ], - [ - -117.2284295, - 47.635149 - ], - [ - -117.2284295, - 47.6242028 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Coloradohusky", - "uid": "16345213", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-25T21:59:25Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential", - "tertiary" - ], - "maxspeed": [ - "25 mph" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.000348404410559974, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "theme": "maxspeed", - "answer": 3, - "locale": "en", - "imagery": "osm", - "change_within_5000m": 3 - }, - "id": 124070530 - } - }, - { - "id": 124070483, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -73.2380348, - -39.8144473 - ], - [ - -73.2380348, - -39.8144473 - ], - [ - -73.2380348, - -39.8144473 - ], - [ - -73.2380348, - -39.8144473 - ], - [ - -73.2380348, - -39.8144473 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-25T21:57:36Z", - "reviewed_features": [], - "tag_changes": { - "image:0": [ - "https://i.imgur.com/a6gMoq3.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osmfr", - "add-image": 1 - }, - "id": 124070483 - } - }, - { - "id": 124069117, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2097843, - 51.2188156 - ], - [ - 3.2215858, - 51.2188156 - ], - [ - 3.2215858, - 51.2217124 - ], - [ - 3.2097843, - 51.2217124 - ], - [ - 3.2097843, - 51.2188156 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-25T21:02:00Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "cycleway", - "residential", - "footway" - ], - "name:etymology:wikidata": [ - "Q24489" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.0000341865852000247, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 12, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 12 - }, - "id": 124069117 - } - }, - { - "id": 124069034, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.7519847, - 50.9957612 - ], - [ - 4.7554903, - 50.9957612 - ], - [ - 4.7554903, - 50.9962987 - ], - [ - 4.7519847, - 50.9962987 - ], - [ - 4.7519847, - 50.9957612 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-25T20:59:07Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "apartments", - "roof", - "yes" - ], - "source:geometry:ref": [ - "Gbg/2804401", - "Gbg/6924120" - ], - "source:geometry:date": [ - "2011-06-22", - "2021-03-19" - ] - }, - "create": 59, - "modify": 10, - "delete": 0, - "area": 0.00000188426000000004, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 8, - "theme": "grb", - "import": 6, - "locale": "nl", - "imagery": "AGIV", - "conflation": 4 - }, - "id": 124069034 - } - }, - { - "id": 124067614, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3495561, - 50.8459882 - ], - [ - 4.3497429, - 50.8459882 - ], - [ - 4.3497429, - 50.8460763 - ], - [ - 4.3495561, - 50.8460763 - ], - [ - 4.3495561, - 50.8459882 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "bxl-forever", - "uid": "2644288", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #rainbow_crossings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-25T20:11:43Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "crossing" - ], - "crossing:marking": [ - "rainbow" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.64570799998456e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/rainbow_crossings.html", - "theme": "rainbow_crossings", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 124067614 - } - }, - { - "id": 124067457, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3406296, - 50.8512164 - ], - [ - 4.3406296, - 50.8512164 - ], - [ - 4.3406296, - 50.8512164 - ], - [ - 4.3406296, - 50.8512164 - ], - [ - 4.3406296, - 50.8512164 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-25T20:04:56Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/AlurPOE.jpg" - ], - "amenity": [ - "bicycle_parking" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_5000m": 1 - }, - "id": 124067457 - } - }, - { - "id": 124064416, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.1443388, - 49.285973 - ], - [ - 13.1445051, - 49.285973 - ], - [ - 13.1445051, - 49.2860939 - ], - [ - 13.1443388, - 49.2860939 - ], - [ - 13.1443388, - 49.285973 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-25T18:30:30Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/FMeNokF.jpg" - ], - "amenity": [ - "toilets" - ], - "building": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 2.01056699998196e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1 - }, - "id": 124064416 - } - }, - { - "id": 124064180, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.1441347, - 49.2860596 - ], - [ - 13.1441347, - 49.2860596 - ], - [ - 13.1441347, - 49.2860596 - ], - [ - 13.1441347, - 49.2860596 - ], - [ - 13.1441347, - 49.2860596 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-25T18:24:10Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/H6NvOmK.jpg" - ], - "tourism": [ - "artwork" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1 - }, - "id": 124064180 - } - }, - { - "id": 124063862, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.6787536, - 45.3598609 - ], - [ - 9.7004696, - 45.3598609 - ], - [ - 9.7004696, - 45.3650902 - ], - [ - 9.6787536, - 45.3650902 - ], - [ - 9.6787536, - 45.3598609 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Mannivu", - "uid": "1950277", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-25T18:15:34Z", - "reviewed_features": [], - "tag_changes": { - "place": [ - "square" - ], - "amenity": [ - "school" - ], - "highway": [ - "residential", - "pedestrian", - "tertiary", - "service" - ], - "name:etymology:wikidata": [ - "Q83003", - "Q171834", - "Q539", - "Q1131884", - "Q333809", - "Q1064", - "Q187336", - "Q87620", - "Q53068", - "Q23873" - ] - }, - "create": 0, - "modify": 49, - "delete": 0, - "area": 0.000113559478799918, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 56, - "locale": "it", - "imagery": "osm", - "change_over_5000m": 56 - }, - "id": 124063862 - } - }, - { - "id": 124055667, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.5172315, - 52.4890908 - ], - [ - 13.5246391, - 52.4890908 - ], - [ - 13.5246391, - 52.5044307 - ], - [ - 13.5172315, - 52.5044307 - ], - [ - 13.5172315, - 52.4890908 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Paulus Maximus", - "uid": "16562534", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-25T14:36:24Z", - "reviewed_features": [], - "tag_changes": { - "image:0": [ - "https://i.imgur.com/ekZyUbf.jpg", - "https://i.imgur.com/Z0TPObS.jpg", - "https://i.imgur.com/cos7VMy.jpg", - "https://i.imgur.com/MEXFF84.jpg" - ], - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-25" - ], - "pump:status": [ - "ok", - "broken" - ] - }, - "create": 0, - "modify": 13, - "delete": 0, - "area": 0.000113631843240013, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 14, - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 7 - }, - "id": 124055667 - } - }, - { - "id": 124055535, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3501914, - 50.8662403 - ], - [ - 4.3502382, - 50.8662403 - ], - [ - 4.3502382, - 50.8663556 - ], - [ - 4.3501914, - 50.8663556 - ], - [ - 4.3501914, - 50.8662403 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "IAmAlexRebai", - "uid": "16587324", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-25T14:33:08Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/D8SIO6q.jpg", - "https://i.imgur.com/1EweTBU.jpg" - ], - "highway": [ - "elevator" - ], - "door:width": [ - "96 cm" - ], - "hearing_loop": [ - "yes" - ], - "elevator:depth": [ - "140 cm" - ], - "elevator:width": [ - "110 cm" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 5.39603999985314e-9, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/onwheels.html", - "theme": "onwheels", - "answer": 5, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 5 - }, - "id": 124055535 - } - }, - { - "id": 124054999, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3502264, - 50.8662403 - ], - [ - 4.3503424, - 50.8662403 - ], - [ - 4.3503424, - 50.8666378 - ], - [ - 4.3502264, - 50.8666378 - ], - [ - 4.3502264, - 50.8662403 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "AlexanderReb", - "uid": "16447083", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-25T14:20:36Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/j2B6p30.jpg" - ], - "highway": [ - "elevator" - ], - "door:width": [ - "96 cm" - ], - "hearing_loop": [ - "yes" - ], - "elevator:depth": [ - "140 cm" - ], - "elevator:width": [ - "110 cm" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 4.6109999999537e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://1234-pietervdvn-mapcomplete-cbvf6umx6aw.ws-eu54.gitpod.io/theme.html", - "theme": "onwheels", - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 124054999 - } - }, - { - "id": 124053521, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.6432498, - -34.6525167 - ], - [ - -58.6432498, - -34.6525167 - ], - [ - -58.6432498, - -34.6525167 - ], - [ - -58.6432498, - -34.6525167 - ], - [ - -58.6432498, - -34.6525167 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AgusQui", - "uid": "331218", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-25T13:42:32Z", - "reviewed_features": [], - "tag_changes": { - "ref": [ - "CL 51" - ], - "railway": [ - "signal" - ], - "railway:signal:main:ref": [ - "CL 51" - ], - "railway:signal:shunting:ref": [ - "CL 49;CL 50" - ], - "railway:signal:minor:caption": [ - "CL 51" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "answer": 7, - "locale": "en", - "imagery": "osm", - "change_within_25m": 7 - }, - "id": 124053521 - } - }, - { - "id": 124052211, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3753194, - 50.8411062 - ], - [ - 4.3753194, - 50.8411062 - ], - [ - 4.3753194, - 50.8411062 - ], - [ - 4.3753194, - 50.8411062 - ], - [ - 4.3753194, - 50.8411062 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "bxl-forever", - "uid": "2644288", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #rainbow_crossings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-25T13:11:33Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/psf4w4f.jpg" - ], - "highway": [ - "crossing" - ], - "crossing:marking": [ - "rainbow" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/rainbow_crossings.html", - "theme": "rainbow_crossings", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 124052211 - } - }, - { - "id": 124051981, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3493369, - 50.8655878 - ], - [ - 4.350863, - 50.8655878 - ], - [ - 4.350863, - 50.8668593 - ], - [ - 4.3493369, - 50.8668593 - ], - [ - 4.3493369, - 50.8655878 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "way-444059131", - "name": "Herman Teirlinckgebouw", - "osm_id": 444059131, - "reasons": [ - 43 - ], - "version": 24, - "primary_tags": { - "building": "government" - } - } - ], - "user": "RobinJulien", - "uid": "10173303", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-25T13:05:32Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "government" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0.00000194043615000271, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/onwheels", - "theme": "onwheels", - "create": 2, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 124051981 - } - }, - { - "id": 124051907, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.8836952, - 43.6353603 - ], - [ - 3.8921642, - 43.6353603 - ], - [ - 3.8921642, - 43.640662 - ], - [ - 3.8836952, - 43.640662 - ], - [ - 3.8836952, - 43.6353603 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LySioS", - "uid": "11579673", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-25T13:02:26Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/37A6fec.jpg", - "https://i.imgur.com/RWP9eWA.jpg", - "https://i.imgur.com/0VsdItt.jpg", - "https://i.imgur.com/VDqg5qJ.jpg", - "https://i.imgur.com/qF5P4sF.jpg", - "https://i.imgur.com/eRtHHcY.jpg", - "https://i.imgur.com/tIabUd1.jpg", - "https://i.imgur.com/FkHRL3y.jpg" - ] - }, - "create": 0, - "modify": 8, - "delete": 0, - "area": 0.0000449000972999725, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "locale": "fr", - "imagery": "HDM_HOT", - "add-image": 8 - }, - "id": 124051907 - } - }, - { - "id": 124050523, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.0386055, - 48.5209647 - ], - [ - 9.0416068, - 48.5209647 - ], - [ - 9.0416068, - 48.5221067 - ], - [ - 9.0386055, - 48.5221067 - ], - [ - 9.0386055, - 48.5209647 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ygramul", - "uid": "1230818", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-25T12:29:11Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential" - ], - "name:etymology:wikidata": [ - "Q61666" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0.00000342748460000584, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 1, - "locale": "de", - "imagery": "osm", - "change_within_500m": 1 - }, - "id": 124050523 - } - }, - { - "id": 124050434, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.354734, - 50.8484874 - ], - [ - 4.3615133, - 50.8484874 - ], - [ - 4.3615133, - 50.8544786 - ], - [ - 4.354734, - 50.8544786 - ], - [ - 4.354734, - 50.8484874 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Hasan2022", - "uid": "16476676", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-25T12:27:23Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "toilets", - "reception_desk" - ], - "highway": [ - "elevator" - ], - "building": [ - "yes" - ] - }, - "create": 12, - "modify": 4, - "delete": 0, - "area": 0.000040616142159983, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/onwheels.html", - "theme": "onwheels", - "answer": 17, - "create": 14, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 124050434 - } - }, - { - "id": 124049895, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4617128, - 50.8280792 - ], - [ - 4.4617128, - 50.8280792 - ], - [ - 4.4617128, - 50.8280792 - ], - [ - 4.4617128, - 50.8280792 - ], - [ - 4.4617128, - 50.8280792 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "StefDeGreef", - "uid": "1860737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-25T12:16:15Z", - "reviewed_features": [], - "tag_changes": { - "email": [ - "mobilite@woluwe1150.irisnet.be" - ], - "phone": [ - "+32 2 773 06 28" - ], - "manual": [ - "yes" - ], - "amenity": [ - "bicycle_repair_station" - ], - "operator": [ - "Commune de Woluwé-Saint-Pierre - Gemeente Woluwe-Sint-Pieter" - ], - "manometer": [ - "broken" - ], - "service:bicycle:pump": [ - "yes", - "no" - ], - "service:bicycle:pump:operational_status": [ - "broken" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 7, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_25m": 7 - }, - "id": 124049895 - } - }, - { - "id": 124049756, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.4617128, - 50.8280792 - ], - [ - 4.4617128, - 50.8280792 - ], - [ - 4.4617128, - 50.8280792 - ], - [ - 4.4617128, - 50.8280792 - ], - [ - 4.4617128, - 50.8280792 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "StefDeGreef", - "uid": "1860737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-25T12:13:08Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 5, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 6 - }, - "id": 124049756 - } - }, - { - "id": 124046263, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2069655, - 41.9225502 - ], - [ - 3.2069655, - 41.9225502 - ], - [ - 3.2069655, - 41.9225502 - ], - [ - 3.2069655, - 41.9225502 - ], - [ - 3.2069655, - 41.9225502 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "retiolus", - "uid": "11291363", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-25T10:53:12Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ], - "support": [ - "ceiling" - ], - "light:lit": [ - "dusk-dawn" - ], - "light:colour": [ - "orange" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/", - "theme": "street_lighting", - "answer": 3, - "locale": "en", - "change_within_25m": 3 - }, - "id": 124046263 - } - }, - { - "id": 124045947, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2069655, - 41.9225502 - ], - [ - 3.2069655, - 41.9225502 - ], - [ - 3.2069655, - 41.9225502 - ], - [ - 3.2069655, - 41.9225502 - ], - [ - 3.2069655, - 41.9225502 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "retiolus", - "uid": "11291363", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-25T10:45:49Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "create": 1, - "locale": "en", - "imagery": "PNOA-Spain-TMS", - "change_over_5000m": 1 - }, - "id": 124045947 - } - }, - { - "id": 124045061, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2160458, - 51.2193779 - ], - [ - 3.216644, - 51.2193779 - ], - [ - 3.216644, - 51.219777 - ], - [ - 3.2160458, - 51.219777 - ], - [ - 3.2160458, - 51.2193779 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-25T10:25:10Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "clothes" - ], - "building": [ - "yes" - ], - "payment:cash": [ - "yes" - ], - "payment:cards": [ - "yes" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 2.38741620001738e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 124045061 - } - }, - { - "id": 124044574, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9286044, - 50.1742784 - ], - [ - 8.9286044, - 50.1742784 - ], - [ - 8.9286044, - 50.1742784 - ], - [ - 8.9286044, - 50.1742784 - ], - [ - 8.9286044, - 50.1742784 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Maxiiizibo", - "uid": "16513273", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-25T10:14:08Z", - "reviewed_features": [], - "tag_changes": { - "bicycle": [ - "yes" - ], - "highway": [ - "crossing" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 1, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 124044574 - } - }, - { - "id": 124044339, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3498962, - 50.8662053 - ], - [ - 4.3504455, - 50.8662053 - ], - [ - 4.3504455, - 50.8668115 - ], - [ - 4.3498962, - 50.8668115 - ], - [ - 4.3498962, - 50.8662053 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "IAmAlexRebai", - "uid": "16587324", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-25T10:08:41Z", - "reviewed_features": [], - "tag_changes": { - "door": [ - "sliding" - ], - "image": [ - "https://i.imgur.com/E3qlRlI.jpg", - "https://i.imgur.com/28VGcPH.jpg", - "https://i.imgur.com/4LPlRW4.jpg" - ], - "width": [ - "0.98" - ], - "indoor": [ - "door" - ], - "amenity": [ - "cafe" - ], - "entrance": [ - "garage" - ], - "automatic_door": [ - "floor" - ] - }, - "create": 1, - "modify": 6, - "delete": 0, - "area": 3.32985660000187e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/onwheels.html", - "theme": "onwheels", - "answer": 9, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 4, - "change_over_5000m": 1, - "change_within_25m": 8, - "change_within_50m": 5 - }, - "id": 124044339 - } - }, - { - "id": 124043887, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3498962, - 50.8662053 - ], - [ - 4.3502264, - 50.8662053 - ], - [ - 4.3502264, - 50.8662572 - ], - [ - 4.3498962, - 50.8662572 - ], - [ - 4.3498962, - 50.8662053 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "IAmAlexRebai", - "uid": "16587324", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-25T09:58:53Z", - "reviewed_features": [], - "tag_changes": { - "width": [ - "1" - ], - "highway": [ - "elevator" - ] - }, - "create": 3, - "modify": 2, - "delete": 0, - "area": 1.71373800008671e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/onwheels.html", - "theme": "onwheels", - "answer": 7, - "create": 3, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 3, - "change_within_25m": 7 - }, - "id": 124043887 - } - }, - { - "id": 124043853, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 29.520316, - 64.1288649 - ], - [ - 29.5219468, - 64.1288649 - ], - [ - 29.5219468, - 64.1316505 - ], - [ - 29.520316, - 64.1316505 - ], - [ - 29.520316, - 64.1288649 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "houtari", - "uid": "2186388", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-25T09:58:13Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ], - "highway": [ - "cycleway" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 0.0000045427564800089, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 2, - "create": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 124043853 - } - }, - { - "id": 124043581, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3501083, - 50.8661304 - ], - [ - 4.3502366, - 50.8661304 - ], - [ - 4.3502366, - 50.8662286 - ], - [ - 4.3501083, - 50.8662286 - ], - [ - 4.3501083, - 50.8661304 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "IAmAlexRebai", - "uid": "16587324", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-25T09:52:43Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/ExjRMRI.jpg" - ], - "amenity": [ - "reception_desk", - "restaurant" - ], - "image:0": [ - "https://i.imgur.com/LLCHdfY.jpg" - ], - "desk:height": [ - "0.84 m" - ], - "hearing_loop": [ - "yes" - ] - }, - "create": 2, - "modify": 7, - "delete": 0, - "area": 1.25990599995583e-8, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/onwheels.html", - "theme": "onwheels", - "answer": 11, - "create": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 4, - "change_over_5000m": 2, - "change_within_25m": 15 - }, - "id": 124043581 - } - }, - { - "id": 124043304, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3493369, - 50.8655878 - ], - [ - 4.350863, - 50.8655878 - ], - [ - 4.350863, - 50.8668593 - ], - [ - 4.3493369, - 50.8668593 - ], - [ - 4.3493369, - 50.8655878 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - }, - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "way-444059131", - "name": "Herman Teirlinckgebouw", - "osm_id": 444059131, - "reasons": [ - 43 - ], - "version": 18, - "primary_tags": { - "building": "government" - } - } - ], - "user": "IAmAlexRebai", - "uid": "16587324", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-25T09:46:22Z", - "reviewed_features": [], - "tag_changes": { - "door": [ - "hinged" - ], - "image": [ - "https://i.imgur.com/lPfEPkE.jpg", - "https://i.imgur.com/WPi2Gbd.jpg", - "https://i.imgur.com/Vqv3EFb.jpg", - "https://i.imgur.com/9yaiiLW.jpg" - ], - "width": [ - "0.95", - "1" - ], - "indoor": [ - "door" - ], - "amenity": [ - "toilets" - ], - "image:0": [ - "https://i.imgur.com/z13SbJ5.jpg" - ], - "building": [ - "government" - ], - "entrance": [ - "yes" - ], - "door:width": [ - "0.90 m" - ], - "wheelchair": [ - "yes", - "designated" - ], - "kerb:height": [ - "0" - ], - "automatic_door": [ - "no" - ] - }, - "create": 1, - "modify": 7, - "delete": 0, - "area": 0.00000194043615000271, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/onwheels.html", - "theme": "onwheels", - "answer": 16, - "create": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 6, - "change_within_25m": 24 - }, - "id": 124043304 - } - }, - { - "id": 124043232, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.34978, - 50.8657444 - ], - [ - 4.3498375, - 50.8657444 - ], - [ - 4.3498375, - 50.8658205 - ], - [ - 4.34978, - 50.8658205 - ], - [ - 4.34978, - 50.8657444 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "IAmAlexRebai", - "uid": "16587324", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-25T09:44:28Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/FyPDozS.jpg" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 4.37575000003471e-9, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/onwheels.html", - "theme": "onwheels", - "answer": 5, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 6 - }, - "id": 124043232 - } - }, - { - "id": 124042921, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "womped", - "uid": "1880469", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-25T09:37:40Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 124042921 - } - }, - { - "id": 124042526, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.0228722, - 50.689731 - ], - [ - 7.0238991, - 50.689731 - ], - [ - 7.0238991, - 50.6945055 - ], - [ - 7.0228722, - 50.6945055 - ], - [ - 7.0228722, - 50.689731 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ogmios", - "uid": "81983", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-25T09:29:17Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ], - "support": [ - "pole", - "catenary" - ], - "lamp_mount": [ - "bent_mast" - ], - "light:count": [ - "1" - ], - "light:direction": [ - "280", - "293", - "291", - "292" - ] - }, - "create": 0, - "modify": 9, - "delete": 0, - "area": 0.00000490293404999757, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "theme": "street_lighting", - "answer": 17, - "locale": "en", - "imagery": "osm", - "change_within_50m": 8, - "change_within_100m": 8, - "change_within_500m": 1 - }, - "id": 124042526 - } - }, - { - "id": 124042317, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3496797, - 50.865936 - ], - [ - 4.3504159, - 50.865936 - ], - [ - 4.3504159, - 50.8663556 - ], - [ - 4.3496797, - 50.8663556 - ], - [ - 4.3496797, - 50.865936 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "AlexanderReb", - "uid": "16447083", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-25T09:25:03Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "reception_desk" - ], - "highway": [ - "elevator" - ], - "entrance": [ - "yes" - ] - }, - "create": 5, - "modify": 1, - "delete": 0, - "area": 3.08909520000345e-7, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/onwheels.html", - "theme": "onwheels", - "create": 6, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 5 - }, - "id": 124042317 - } - }, - { - "id": 124042112, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.1716972, - 52.2716106 - ], - [ - 13.2078612, - 52.2716106 - ], - [ - 13.2078612, - 52.2962372 - ], - [ - 13.1716972, - 52.2962372 - ], - [ - 13.1716972, - 52.2716106 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Alexx4", - "uid": "14523679", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-25T09:20:39Z", - "reviewed_features": [], - "tag_changes": { - "note": [ - "Bitte Löschen", - "Bitte löschen" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.000890596362399903, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 124042112 - } - }, - { - "id": 124041356, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 10.9317215, - 49.5991954 - ], - [ - 11.1568971, - 49.5991954 - ], - [ - 11.1568971, - 49.6336117 - ], - [ - 10.9317215, - 49.6336117 - ], - [ - 10.9317215, - 49.5991954 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "womped", - "uid": "1880469", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-25T09:05:14Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential", - "secondary", - "tertiary", - "service", - "path", - "living_street", - "footway", - "unclassified", - "track" - ], - "name:etymology:wikidata": [ - "Q157449", - "Q681224", - "Q1299978", - "Q64851922", - "Q2090", - "Q503092", - "Q49655", - "Q3126", - "Q1771083", - "Q16116", - "Q14859", - "Q2999", - "Q3936", - "Q3923", - "Q504762", - "Q1355993", - "Q64851973", - "Q60619", - "Q6938", - "Q12024", - "Q25618", - "Q57405461", - "Q66363887", - "Q2307369", - "Q503026", - "Q72606711", - "Q503237", - "Q72873621", - "Q503035", - "Q79915", - "Q131448", - "Q156767", - "Q29858", - "Q1604803", - "Q2503881", - "Q1602739", - "Q503233", - "Q506544", - "Q64851851", - "Q25243", - "Q9082", - "Q504567", - "Q502597", - "Q507090", - "Q25432", - "Q507319", - "Q64852050", - "Q74083105", - "Q1356757" - ] - }, - "create": 0, - "modify": 154, - "delete": 0, - "area": 0.00774971100228084, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 202, - "locale": "en", - "imagery": "osm" - }, - "id": 124041356 - } - }, - { - "id": 124040649, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3679458, - 52.502515 - ], - [ - 13.3920191, - 52.502515 - ], - [ - 13.3920191, - 52.5098523 - ], - [ - 13.3679458, - 52.5098523 - ], - [ - 13.3679458, - 52.502515 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Supaplex030", - "uid": "418040", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-25T08:51:32Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-24", - "2022-07-23", - "2020" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.000176633024089916, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 4, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 124040649 - } - }, - { - "id": 124037368, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.2901337, - 52.4261246 - ], - [ - 14.3318018, - 52.4261246 - ], - [ - 14.3318018, - 52.4400869 - ], - [ - 14.2901337, - 52.4400869 - ], - [ - 14.2901337, - 52.4261246 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Reiko Rockendorf", - "uid": "16637335", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-25T07:37:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 20, - "modify": 18, - "delete": 0, - "area": 0.000581782512629809, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 124037368 - } - }, - { - "id": 124033092, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.5428933, - 48.7983616 - ], - [ - 13.5428933, - 48.7983616 - ], - [ - 13.5428933, - 48.7983616 - ], - [ - 13.5428933, - 48.7983616 - ], - [ - 13.5428933, - 48.7983616 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "APneunzehn74", - "uid": "12180500", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-25T05:51:50Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/YkmuuVk.jpg" - ], - "image:0": [ - "https://i.imgur.com/nwH41L5.jpg" - ], - "tourism": [ - "artwork" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "locale": "de", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 2 - }, - "id": 124033092 - } - }, - { - "id": 124032436, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -117.1965875, - 47.6358446 - ], - [ - -117.060119, - 47.6358446 - ], - [ - -117.060119, - 47.667966 - ], - [ - -117.1965875, - 47.667966 - ], - [ - -117.1965875, - 47.6358446 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Coloradohusky", - "uid": "16345213", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-25T05:28:20Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential", - "tertiary", - "secondary", - "unclassified" - ], - "maxspeed": [ - "25 mph", - "35 mph", - "15 mph" - ] - }, - "create": 0, - "modify": 20, - "delete": 0, - "area": 0.00438355927590037, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "theme": "maxspeed", - "answer": 20, - "locale": "en", - "imagery": "osm", - "change_over_5000m": 3, - "change_within_1000m": 2, - "change_within_5000m": 15 - }, - "id": 124032436 - } - }, - { - "id": 124031363, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.9022846, - 49.2611934 - ], - [ - 13.9022846, - 49.2611934 - ], - [ - 13.9022846, - 49.2611934 - ], - [ - 13.9022846, - 49.2611934 - ], - [ - 13.9022846, - 49.2611934 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-25T04:50:07Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/psjbSOy.jpg" - ], - "tourism": [ - "artwork" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 124031363 - } - }, - { - "id": 124031263, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-25T04:46:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 124031263 - } - }, - { - "id": 124031185, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.9019509, - 49.2610888 - ], - [ - 13.9019509, - 49.2610888 - ], - [ - 13.9019509, - 49.2610888 - ], - [ - 13.9019509, - 49.2610888 - ], - [ - 13.9019509, - 49.2610888 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-25T04:42:40Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/7aeOkPr.jpg" - ], - "amenity": [ - "toilets" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "locale": "de", - "imagery": "osm", - "add-image": 2 - }, - "id": 124031185 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-26.json b/Docs/Tools/stats/stats.2022-7-26.json deleted file mode 100644 index 5d98a41275..0000000000 --- a/Docs/Tools/stats/stats.2022-7-26.json +++ /dev/null @@ -1,4871 +0,0 @@ -{ - "features": [ - { - "id": 124116161, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -86.136347, - 39.9275168 - ], - [ - -86.1283761, - 39.9275168 - ], - [ - -86.1283761, - 39.9279836 - ], - [ - -86.136347, - 39.9279836 - ], - [ - -86.136347, - 39.9275168 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Kanellar", - "uid": "16249964", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-26T23:39:47Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_repair_station", - "bicycle_parking", - "drinking_water" - ], - "service:bicycle:pump": [ - "yes" - ], - "service:bicycle:tools": [ - "no" - ] - }, - "create": 2, - "modify": 2, - "delete": 0, - "area": 0.00000372081611998658, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "move": 1, - "theme": "cyclofix", - "answer": 4, - "create": 2, - "locale": "en", - "imagery": "Mapbox", - "change_over_5000m": 1, - "change_within_25m": 3, - "move:node/3003576212": "improve_accuracy" - }, - "id": 124116161 - } - }, - { - "id": 124114336, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8598485, - 51.1492175 - ], - [ - 4.9216207, - 51.1492175 - ], - [ - 4.9216207, - 51.1650441 - ], - [ - 4.8598485, - 51.1650441 - ], - [ - 4.8598485, - 51.1492175 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T21:40:26Z", - "reviewed_features": [], - "tag_changes": { - "name": [ - "Kapel Onze-Lieve-Vrouw van het Heilig Hart", - "OLV van het Heilig Hert" - ], - "shop": [ - "car_repair" - ], - "route": [ - "bicycle", - "mtb" - ], - "aeroway": [ - "hangar" - ], - "highway": [ - "track", - "service", - "unclassified" - ], - "landuse": [ - "forest", - "grass", - "residential" - ], - "alt_name": [ - "De kapel van Schaatsbergen" - ], - "building": [ - "industrial", - "yes", - "house", - "chapel", - "garage", - "roof" - ], - "historic": [ - "chapel" - ], - "military": [ - "bunker" - ], - "architect": [ - "Jan Baptist Smets" - ], - "addr:street": [ - "Larumseweg" - ], - "nohousenumber": [ - "yes" - ], - "addr:housenumber": [ - "2;2A", - "2", - "105" - ], - "heritage:website": [ - "https://id.erfgoed.net/erfgoedobjecten/47525" - ], - "heritage:operator": [ - "OnroerendErfgoed" - ], - "wikimedia_commons": [ - "File:Olen_Rijtestraat_zonder_nummer_-_154410_-_onroerenderfgoed.jpg" - ], - "source:geometry:ref": [ - "Gbg/4045633", - "Gbg/6803487", - "Gbg/4045468", - "Gbg/4048291", - "Gbg/4048293", - "Gbg/6508501", - "Gbg/3839019", - "Gbg/4047569", - "Gbg/4045174", - "Gbg/4045173", - "Gbg/4045172", - "Gbg/6508531", - "Gbg/4045166", - "Gbg/4047119", - "Gbg/5167695", - "Gbg/5862528", - "Gbg/4045179", - "Gbg/4045178", - "Gbg/4045177", - "Gbg/4047700", - "Gbg/4045161", - "Gbg/4045160", - "Gbg/4045627", - "Gbg/4045628", - "Gbg/4048630", - "Gbg/4045629", - "Gbg/4045630", - "Gbg/4045631", - "Gbg/4045622", - "Gbg/4045623", - "Gbg/4045624", - "Gbg/4045625", - "Gbg/4045604", - "Gbg/4045603", - "Gbg/4045602", - "Gbg/4048807", - "Gbg/4045159", - "Gbg/4047656", - "Gbg/4045157", - "Gbg/4045156", - "Gbg/4045616", - "Gbg/4047655", - "Gbg/4045189", - "Gbg/3838112", - "Gbg/3838089", - "Gbg/3838059", - "Gbg/3838069", - "Gbg/3838070", - "Gbg/3838071", - "Gbg/4928312", - "Gbg/3838111", - "Gbg/3838068", - "Gbg/3838066", - "Gbg/3838065", - "Gbg/3838064", - "Gbg/3838088", - "Gbg/3838073", - "Gbg/3838087", - "Gbg/3838110", - "Gbg/3838086", - "Gbg/4928311", - "Gbg/3838085", - "Gbg/4928310", - "Gbg/4928288", - "Gbg/4045196", - "Gbg/4045182", - "Gbg/4045202", - "Gbg/4045195", - "Gbg/4045194", - "Gbg/7020110", - "Gbg/3838134", - "Gbg/5861340", - "Gbg/4013643" - ], - "ref:OnroerendErfgoed": [ - "47525" - ], - "source:geometry:date": [ - "2013-01-16", - "2020-06-05", - "2018-10-24", - "2015-05-06", - "2017-03-01", - "2013-02-20", - "2012-09-17", - "2014-12-04", - "2015-11-24", - "2021-09-10", - "2018-09-13", - "2016-05-02", - "2021-10-25", - "2013-01-07" - ], - "year_of_construction": [ - "1893" - ], - "OnroerendErfgoed:criteria": [ - "BE" - ] - }, - "create": 502, - "modify": 552, - "delete": 5, - "area": 0.000977643900520249, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 476, - "theme": "grb", - "answer": 3, - "delete": 5, - "import": 42, - "locale": "nl", - "imagery": "AGIV", - "conflation": 146 - }, - "id": 124114336 - } - }, - { - "id": 124113615, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 29.4947572, - 64.1296046 - ], - [ - 29.4948377, - 64.1296046 - ], - [ - 29.4948377, - 64.1296187 - ], - [ - 29.4947572, - 64.1296187 - ], - [ - 29.4947572, - 64.1296046 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "houtari", - "uid": "2186388", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-26T21:10:48Z", - "reviewed_features": [], - "tag_changes": { - "colour": [ - "brown" - ], - "amenity": [ - "bench", - "waste_basket" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 1.13505000014829e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 6, - "create": 1, - "locale": "en", - "imagery": "mml-orto" - }, - "id": 124113615 - } - }, - { - "id": 124113608, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 29.4947572, - 64.1296187 - ], - [ - 29.4947572, - 64.1296187 - ], - [ - 29.4947572, - 64.1296187 - ], - [ - 29.4947572, - 64.1296187 - ], - [ - 29.4947572, - 64.1296187 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "houtari", - "uid": "2186388", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-26T21:10:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "mml-orto" - }, - "id": 124113608 - } - }, - { - "id": 124112565, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 29.494784, - 64.1279474 - ], - [ - 29.5422189, - 64.1279474 - ], - [ - 29.5422189, - 64.1310511 - ], - [ - 29.494784, - 64.1310511 - ], - [ - 29.494784, - 64.1279474 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "houtari", - "uid": "2186388", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #waste_basket", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-26T20:32:14Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "waste_basket" - ] - }, - "create": 3, - "modify": 0, - "delete": 0, - "area": 0.000147223699129862, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste_basket.html", - "theme": "waste_basket", - "answer": 3, - "create": 3, - "locale": "en", - "imagery": "mml-orto" - }, - "id": 124112565 - } - }, - { - "id": 124112499, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 8.9448646, - 47.0252344 - ], - [ - 8.9462318, - 47.0252344 - ], - [ - 8.9462318, - 47.025506 - ], - [ - 8.9448646, - 47.025506 - ], - [ - 8.9448646, - 47.0252344 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "habi", - "uid": "15671", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T20:30:12Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "leaf_type": [ - "broadleaved", - "needleleaved" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 3.71331519996719e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 5, - "locale": "en", - "imagery": "osm", - "change_within_25m": 3, - "change_within_50m": 2 - }, - "id": 124112499 - } - }, - { - "id": 124110803, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7326829, - 52.032167 - ], - [ - 13.7326829, - 52.032167 - ], - [ - 13.7326829, - 52.032167 - ], - [ - 13.7326829, - 52.032167 - ], - [ - 13.7326829, - 52.032167 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T19:33:13Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 5, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 6 - }, - "id": 124110803 - } - }, - { - "id": 124110726, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7330111, - 52.0311765 - ], - [ - 13.7367381, - 52.0311765 - ], - [ - 13.7367381, - 52.0318707 - ], - [ - 13.7330111, - 52.0318707 - ], - [ - 13.7330111, - 52.0311765 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T19:30:51Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 2, - "modify": 6, - "delete": 0, - "area": 0.0000025872833999926, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 10, - "create": 2, - "locale": "en", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 2, - "change_within_25m": 12 - }, - "id": 124110726 - } - }, - { - "id": 124110692, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7332552, - 52.0316366 - ], - [ - 13.7334183, - 52.0316366 - ], - [ - 13.7334183, - 52.0317948 - ], - [ - 13.7332552, - 52.0317948 - ], - [ - 13.7332552, - 52.0316366 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T19:29:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 3, - "delete": 0, - "area": 2.58024200002123e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 4, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 1, - "change_within_25m": 6 - }, - "id": 124110692 - } - }, - { - "id": 124110321, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7347059, - 52.0310655 - ], - [ - 13.7347059, - 52.0310655 - ], - [ - 13.7347059, - 52.0310655 - ], - [ - 13.7347059, - 52.0310655 - ], - [ - 13.7347059, - 52.0310655 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 43, - "name": "Invalid key value combination" - } - ], - "tags": [], - "features": [ - { - "url": "node-9913178928", - "osm_id": 9913178928, - "reasons": [ - 43 - ], - "version": 2, - "primary_tags": { - "tourism": "map" - } - } - ], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #maps", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T19:18:19Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "map" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maps.html", - "theme": "maps", - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 124110321 - } - }, - { - "id": 124110112, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7353016, - 52.0309049 - ], - [ - 13.7360753, - 52.0309049 - ], - [ - 13.7360753, - 52.0314422 - ], - [ - 13.7353016, - 52.0314422 - ], - [ - 13.7353016, - 52.0309049 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T19:12:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 3, - "modify": 5, - "delete": 0, - "area": 4.15709009998187e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "answer": 3, - "create": 3, - "locale": "en", - "imagery": "EsriWorldImagery", - "add-image": 4, - "change_over_5000m": 3, - "change_within_25m": 7 - }, - "id": 124110112 - } - }, - { - "id": 124110060, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7337135, - 52.030997 - ], - [ - 13.7368503, - 52.030997 - ], - [ - 13.7368503, - 52.0316282 - ], - [ - 13.7337135, - 52.0316282 - ], - [ - 13.7337135, - 52.030997 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #waste", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T19:11:09Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 4, - "modify": 4, - "delete": 0, - "area": 0.00000197994816000264, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/waste.html", - "theme": "waste", - "answer": 10, - "create": 4, - "locale": "en", - "imagery": "osm", - "add-image": 5, - "change_over_5000m": 4, - "change_within_25m": 15 - }, - "id": 124110060 - } - }, - { - "id": 124110035, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7348882, - 52.0311262 - ], - [ - 13.7369546, - 52.0311262 - ], - [ - 13.7369546, - 52.0317192 - ], - [ - 13.7348882, - 52.0317192 - ], - [ - 13.7348882, - 52.0311262 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T19:10:35Z", - "reviewed_features": [], - "tag_changes": { - "lit": [ - "no" - ], - "leisure": [ - "playground" - ], - "max_age": [ - "14" - ], - "surface": [ - "sand" - ], - "operator": [ - "Tropical Islands" - ], - "wheelchair": [ - "no" - ], - "opening_hours": [ - "24/7" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000122537519998979, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 6, - "locale": "en", - "imagery": "osm", - "change_within_25m": 1, - "change_within_50m": 5 - }, - "id": 124110035 - } - }, - { - "id": 124110008, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7369546, - 52.0314679 - ], - [ - 13.7369546, - 52.0314679 - ], - [ - 13.7369546, - 52.0314679 - ], - [ - 13.7369546, - 52.0314679 - ], - [ - 13.7369546, - 52.0314679 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #playgrounds", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T19:09:39Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/playgrounds.html", - "theme": "playgrounds", - "answer": 4, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 5 - }, - "id": 124110008 - } - }, - { - "id": 124109781, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7334183, - 52.03132 - ], - [ - 13.7387493, - 52.03132 - ], - [ - 13.7387493, - 52.0317504 - ], - [ - 13.7334183, - 52.0317504 - ], - [ - 13.7334183, - 52.03132 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T19:03:06Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 8, - "modify": 9, - "delete": 0, - "area": 0.00000229446239999494, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "answer": 33, - "create": 8, - "locale": "en", - "imagery": "osm", - "add-image": 7, - "change_over_5000m": 8, - "change_within_25m": 40 - }, - "id": 124109781 - } - }, - { - "id": 124109037, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.530727, - 48.7986872 - ], - [ - 13.530727, - 48.7986872 - ], - [ - 13.530727, - 48.7986872 - ], - [ - 13.530727, - 48.7986872 - ], - [ - 13.530727, - 48.7986872 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "APneunzehn74", - "uid": "12180500", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T18:40:50Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 4, - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 5 - }, - "id": 124109037 - } - }, - { - "id": 124108470, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6419512, - -33.4585131 - ], - [ - -70.6410943, - -33.4585131 - ], - [ - -70.6410943, - -33.457898 - ], - [ - -70.6419512, - -33.457898 - ], - [ - -70.6419512, - -33.4585131 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T18:25:14Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/dgmyn3D.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 2, - "modify": 3, - "delete": 0, - "area": 5.27079189990449e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "create": 2, - "locale": "es", - "imagery": "EsriWorldImagery", - "add-image": 3, - "change_over_5000m": 4 - }, - "id": 124108470 - } - }, - { - "id": 124108178, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.371955, - 50.8389828 - ], - [ - 4.3722822, - 50.8389828 - ], - [ - 4.3722822, - 50.8396101 - ], - [ - 4.371955, - 50.8396101 - ], - [ - 4.371955, - 50.8389828 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "bxl-forever", - "uid": "2644288", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #rainbow_crossings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-26T18:17:12Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/kq44MIE.jpg" - ], - "highway": [ - "crossing" - ], - "crossing:marking": [ - "rainbow" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 2.05252560001686e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/rainbow_crossings.html", - "theme": "rainbow_crossings", - "answer": 3, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 124108178 - } - }, - { - "id": 124105106, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.3167664, - 49.2583372 - ], - [ - 15.3169741, - 49.2583372 - ], - [ - 15.3169741, - 49.2585447 - ], - [ - 15.3167664, - 49.2585447 - ], - [ - 15.3167664, - 49.2583372 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #hailhydrant", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T16:55:55Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/ef1HZiO.jpg" - ], - "amenity": [ - "fire_station" - ], - "building": [ - "civic" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 4.30977500001741e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/hailhydrant.html", - "theme": "hailhydrant", - "locale": "de", - "imagery": "HDM_HOT", - "add-image": 1 - }, - "id": 124105106 - } - }, - { - "id": 124104908, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.3137793, - 49.2589661 - ], - [ - 15.3137793, - 49.2589661 - ], - [ - 15.3137793, - 49.2589661 - ], - [ - 15.3137793, - 49.2589661 - ], - [ - 15.3137793, - 49.2589661 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #maps", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T16:51:25Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/luMOvGQ.jpg" - ], - "tourism": [ - "information" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maps.html", - "theme": "maps", - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 124104908 - } - }, - { - "id": 124104465, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 6.584495, - 53.0170977 - ], - [ - 6.5864125, - 53.0170977 - ], - [ - 6.5864125, - 53.0183255 - ], - [ - 6.584495, - 53.0183255 - ], - [ - 6.584495, - 53.0170977 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #entrances", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T16:41:17Z", - "reviewed_features": [], - "tag_changes": { - "door": [ - "sliding", - "automatic" - ], - "width": [ - "1.78" - ], - "building": [ - "retail" - ], - "entrance": [ - "main", - "shop" - ], - "kerb:height": [ - "0" - ], - "automatic_door": [ - "motion" - ] - }, - "create": 2, - "modify": 6, - "delete": 0, - "area": 0.00000235430650000368, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/entrances.html", - "theme": "entrances", - "answer": 15, - "create": 4, - "locale": "nl", - "imagery": "osm", - "change_within_25m": 7, - "change_within_1000m": 12 - }, - "id": 124104465 - } - }, - { - "id": 124104316, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.3130951, - 49.2580325 - ], - [ - 15.3176725, - 49.2580325 - ], - [ - 15.3176725, - 49.2597369 - ], - [ - 15.3130951, - 49.2597369 - ], - [ - 15.3130951, - 49.2580325 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T16:37:35Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/ghPOrdV.jpg", - "https://i.imgur.com/5P3u0PV.jpg" - ], - "highway": [ - "bus_stop" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000780172056000669, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/personal.html", - "theme": "personal", - "locale": "de", - "imagery": "osm", - "add-image": 2 - }, - "id": 124104316 - } - }, - { - "id": 124104144, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.63971, - -33.4575867 - ], - [ - -70.63971, - -33.4575867 - ], - [ - -70.63971, - -33.4575867 - ], - [ - -70.63971, - -33.4575867 - ], - [ - -70.63971, - -33.4575867 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-26T16:33:02Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osm", - "add-image": 1 - }, - "id": 124104144 - } - }, - { - "id": 124103791, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3603832, - 52.4838013 - ], - [ - 13.3603832, - 52.4838013 - ], - [ - 13.3603832, - 52.4838013 - ], - [ - 13.3603832, - 52.4838013 - ], - [ - 13.3603832, - 52.4838013 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "BeaMe", - "uid": "16652088", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-26T16:23:21Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-03-09" - ], - "pump:status": [ - "ok" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 3, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 124103791 - } - }, - { - "id": 124103073, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9024311, - 51.1736791 - ], - [ - 4.9024311, - 51.1736791 - ], - [ - 4.9024311, - 51.1736791 - ], - [ - 4.9024311, - 51.1736791 - ], - [ - 4.9024311, - 51.1736791 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #shops", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T16:03:35Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "yes" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/shops.html", - "theme": "shops", - "answer": 1, - "create": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_50m": 1 - }, - "id": 124103073 - } - }, - { - "id": 124102499, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6388406, - -33.4598352 - ], - [ - -70.6388406, - -33.4598352 - ], - [ - -70.6388406, - -33.4598352 - ], - [ - -70.6388406, - -33.4598352 - ], - [ - -70.6388406, - -33.4598352 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #maps", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T15:47:46Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/QPsSUbD.jpg" - ], - "tourism": [ - "information" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maps.html", - "theme": "maps", - "answer": 1, - "locale": "es", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 3 - }, - "id": 124102499 - } - }, - { - "id": 124102461, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.5386867, - 49.2892046 - ], - [ - 14.5401029, - 49.2892046 - ], - [ - 14.5401029, - 49.2895838 - ], - [ - 14.5386867, - 49.2895838 - ], - [ - 14.5386867, - 49.2892046 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T15:46:31Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/ounn9dX.jpg", - "https://i.imgur.com/2farpjT.jpg", - "https://i.imgur.com/pYntO0y.jpg", - "https://i.imgur.com/My65Nl7.jpg" - ], - "tourism": [ - "artwork" - ], - "artwork_type": [ - "sculpture" - ] - }, - "create": 0, - "modify": 7, - "delete": 0, - "area": 5.37023040007135e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 3, - "locale": "de", - "imagery": "osm", - "add-image": 4, - "change_over_5000m": 7 - }, - "id": 124102461 - } - }, - { - "id": 124100096, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8588967, - 51.1552668 - ], - [ - 4.8598536, - 51.1552668 - ], - [ - 4.8598536, - 51.1573685 - ], - [ - 4.8588967, - 51.1573685 - ], - [ - 4.8588967, - 51.1552668 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T14:46:49Z", - "reviewed_features": [], - "tag_changes": { - "colour": [ - "gray" - ], - "amenity": [ - "bench" - ] - }, - "create": 1, - "modify": 6, - "delete": 0, - "area": 0.00000201111672999788, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "move": 1, - "theme": "benches", - "answer": 6, - "create": 1, - "locale": "nl", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 1, - "change_within_25m": 6, - "change_within_500m": 3, - "move:node/9912665922": "improve_accuracy" - }, - "id": 124100096 - } - }, - { - "id": 124098167, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3561591, - 50.8607836 - ], - [ - 4.3561591, - 50.8607836 - ], - [ - 4.3561591, - 50.8607836 - ], - [ - 4.3561591, - 50.8607836 - ], - [ - 4.3561591, - 50.8607836 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "jeborsel", - "uid": "16650871", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-26T13:56:22Z", - "reviewed_features": [], - "tag_changes": { - "automatic_door": [ - "no" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/onwheels.html", - "theme": "onwheels", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 124098167 - } - }, - { - "id": 124096749, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9184929, - 51.1645768 - ], - [ - 4.9207979, - 51.1645768 - ], - [ - 4.9207979, - 51.1650423 - ], - [ - 4.9184929, - 51.1650423 - ], - [ - 4.9184929, - 51.1645768 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T13:18:03Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "roof", - "yes" - ], - "source:geometry:ref": [ - "Gbg/3838067", - "Gbg/5862541", - "Gbg/3838062", - "Gbg/3838060", - "Gbg/3838061" - ], - "source:geometry:date": [ - "2012-09-17", - "2017-03-01" - ] - }, - "create": 27, - "modify": 27, - "delete": 0, - "area": 0.00000107297750000964, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 22, - "theme": "grb", - "import": 4, - "locale": "nl", - "imagery": "AGIV", - "conflation": 10 - }, - "id": 124096749 - } - }, - { - "id": 124096666, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9179593, - 51.1644867 - ], - [ - 4.9196871, - 51.1644867 - ], - [ - 4.9196871, - 51.1658622 - ], - [ - 4.9179593, - 51.1658622 - ], - [ - 4.9179593, - 51.1644867 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T13:16:01Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "shed", - "yes", - "garage" - ], - "source:geometry:ref": [ - "Gbg/3838098", - "Gbg/3838057", - "Gbg/4928307", - "Gbg/3838108", - "Gbg/3838058", - "Gbg/6427344", - "Gbg/6508033", - "Gbg/3838959" - ], - "source:geometry:date": [ - "2012-09-17", - "2014-12-04", - "2018-10-24", - "2013-02-20" - ] - }, - "create": 15, - "modify": 47, - "delete": 8, - "area": 0.00000237658890000341, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 36, - "theme": "grb", - "answer": 3, - "delete": 8, - "import": 1, - "locale": "nl", - "imagery": "AGIV", - "conflation": 16 - }, - "id": 124096666 - } - }, - { - "id": 124096620, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9190986, - 51.1649937 - ], - [ - 4.9204697, - 51.1649937 - ], - [ - 4.9204697, - 51.1654739 - ], - [ - 4.9190986, - 51.1654739 - ], - [ - 4.9190986, - 51.1649937 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T13:14:43Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes", - "shed" - ], - "source:geometry:ref": [ - "Gbg/3838104", - "Gbg/3838105", - "Gbg/3838106", - "Gbg/5862113", - "Gbg/3838958", - "Gbg/3838957", - "Gbg/5861829" - ], - "source:geometry:date": [ - "2013-02-20", - "2012-09-17", - "2017-03-01" - ] - }, - "create": 3, - "modify": 53, - "delete": 0, - "area": 6.58402220007549e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 45, - "theme": "grb", - "answer": 2, - "locale": "nl", - "imagery": "AGIV", - "conflation": 14 - }, - "id": 124096620 - } - }, - { - "id": 124096614, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9204993, - 51.1654213 - ], - [ - 4.9205826, - 51.1654213 - ], - [ - 4.9205826, - 51.1654992 - ], - [ - 4.9204993, - 51.1654992 - ], - [ - 4.9204993, - 51.1654213 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T13:14:33Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes" - ], - "source:geometry:ref": [ - "Gbg/3838956" - ], - "source:geometry:date": [ - "2015-11-24" - ] - }, - "create": 0, - "modify": 5, - "delete": 1, - "area": 6.48907000007165e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 4, - "theme": "grb", - "delete": 1, - "locale": "nl", - "imagery": "AGIV", - "conflation": 2 - }, - "id": 124096614 - } - }, - { - "id": 124096603, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9205228, - 51.1653862 - ], - [ - 4.9205867, - 51.1653862 - ], - [ - 4.9205867, - 51.1654223 - ], - [ - 4.9205228, - 51.1654223 - ], - [ - 4.9205228, - 51.1653862 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T13:14:24Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes" - ], - "source:geometry:ref": [ - "Gbg/3838955" - ], - "source:geometry:date": [ - "2012-09-17" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 2.30679000019345e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 4, - "theme": "grb", - "locale": "nl", - "imagery": "AGIV", - "conflation": 2 - }, - "id": 124096603 - } - }, - { - "id": 124096324, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.0936975, - 50.7256195 - ], - [ - 7.0937478, - 50.7256195 - ], - [ - 7.0937478, - 50.7257928 - ], - [ - 7.0936975, - 50.7257928 - ], - [ - 7.0936975, - 50.7256195 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ogmios", - "uid": "81983", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T13:06:17Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/6G6nPDh.jpg", - "https://i.imgur.com/lnRxxrr.jpg", - "https://i.imgur.com/X6Ru2pL.jpg" - ], - "natural": [ - "tree" - ], - "denotation": [ - "garden", - "park" - ], - "species:wikidata": [ - "Q156944", - "Q146149", - "Q161105" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 8.71698999997942e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees", - "theme": "trees", - "answer": 4, - "locale": "en", - "imagery": "osm", - "add-image": 3, - "change_over_5000m": 7 - }, - "id": 124096324 - } - }, - { - "id": 124095644, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.5535733, - 48.1233787 - ], - [ - 11.5535733, - 48.1233787 - ], - [ - 11.5535733, - 48.1233787 - ], - [ - 11.5535733, - 48.1233787 - ], - [ - 11.5535733, - 48.1233787 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "spieltag2", - "uid": "1168537", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #transit", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T12:50:33Z", - "reviewed_features": [], - "tag_changes": { - "bench": [ - "yes" - ], - "highway": [ - "bus_stop" - ], - "shelter": [ - "yes" - ], - "wheelchair": [ - "yes" - ], - "public_transport": [ - "stop_position" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/transit.html", - "theme": "transit", - "answer": 3, - "locale": "en", - "imagery": "osm", - "change_within_5000m": 3 - }, - "id": 124095644 - } - }, - { - "id": 124095244, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8947598, - 51.164707 - ], - [ - 4.9302568, - 51.164707 - ], - [ - 4.9302568, - 51.1907655 - ], - [ - 4.8947598, - 51.1907655 - ], - [ - 4.8947598, - 51.164707 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T12:41:22Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes", - "house", - "shed", - "garage", - "detached", - "roof" - ], - "addr:street": [ - "Spendijk", - "Spendijk / Olenseweg" - ], - "addr:housenumber": [ - "1" - ], - "source:geometry:ref": [ - "Gbg/1708464", - "Gbg/3948876", - "Gbg/3838084", - "Gbg/5862435", - "Gbg/3838082", - "Gbg/3838081", - "Gbg/6803492", - "Gbg/3838100", - "Gbg/3838101", - "Gbg/3838102", - "Gbg/3838103", - "Gbg/5862349", - "Gbg/3947883", - "Gbg/1709103", - "Gbg/1709042", - "Gbg/1708684", - "Gbg/5122931", - "Gbg/1708691", - "Gbg/5122929", - "Gbg/5122930", - "Gbg/6155156", - "Gbg/6151876", - "Gbg/1715039", - "Gbg/1715038", - "Gbg/1715037", - "Gbg/4928237", - "Gbg/3838954", - "Gbg/3838944" - ], - "source:geometry:date": [ - "2009-09-30", - "2015-11-24", - "2020-06-05", - "2017-03-01", - "2012-09-17", - "2021-10-25", - "2014-12-04", - "2020-03-16", - "2015-03-30", - "2017-11-20", - "2009-11-20" - ] - }, - "create": 128, - "modify": 256, - "delete": 7, - "area": 0.000924998574499929, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 225, - "theme": "grb", - "answer": 5, - "delete": 7, - "import": 14, - "locale": "nl", - "imagery": "AGIV", - "conflation": 56 - }, - "id": 124095244 - } - }, - { - "id": 124095134, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8990454, - 51.1903892 - ], - [ - 4.8996016, - 51.1903892 - ], - [ - 4.8996016, - 51.1910363 - ], - [ - 4.8990454, - 51.1910363 - ], - [ - 4.8990454, - 51.1903892 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T12:38:52Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "shed" - ], - "source:geometry:ref": [ - "Gbg/1715034", - "Gbg/1715035", - "Gbg/1715040", - "Gbg/6966330", - "Gbg/6642411", - "Gbg/5125386" - ], - "source:geometry:date": [ - "2009-11-20", - "2017-11-20", - "2021-07-05", - "2019-07-09", - "2015-03-30" - ] - }, - "create": 3, - "modify": 41, - "delete": 0, - "area": 3.59917020000558e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 37, - "theme": "grb", - "locale": "nl", - "imagery": "AGIV", - "conflation": 12 - }, - "id": 124095134 - } - }, - { - "id": 124095003, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8962561, - 51.1906474 - ], - [ - 4.8995677, - 51.1906474 - ], - [ - 4.8995677, - 51.1918668 - ], - [ - 4.8962561, - 51.1918668 - ], - [ - 4.8962561, - 51.1906474 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T12:35:30Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "shed", - "yes", - "roof" - ], - "source:geometry:ref": [ - "Gbg/6966329", - "Gbg/1715033", - "Gbg/5123498", - "Gbg/5123497", - "Gbg/1715030", - "Gbg/1715042", - "Gbg/5654850" - ], - "source:geometry:date": [ - "2021-07-05", - "2009-11-20", - "2015-03-30", - "2017-11-20", - "2016-07-28" - ] - }, - "create": 78, - "modify": 56, - "delete": 2, - "area": 0.0000040381650399885, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 49, - "theme": "grb", - "delete": 2, - "import": 13, - "locale": "nl", - "imagery": "AGIV", - "conflation": 14 - }, - "id": 124095003 - } - }, - { - "id": 124094606, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.8964216, - 51.1893566 - ], - [ - 4.904842, - 51.1893566 - ], - [ - 4.904842, - 51.191014 - ], - [ - 4.8964216, - 51.191014 - ], - [ - 4.8964216, - 51.1893566 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T12:27:34Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes", - "house", - "roof" - ], - "source:geometry:ref": [ - "Gbg/3947897", - "Gbg/3947896", - "Gbg/3947895", - "Gbg/3947894", - "Gbg/6155181", - "Gbg/1715032", - "Gbg/5122903", - "Gbg/6641302", - "Gbg/6155198", - "Gbg/1715123", - "Gbg/1715092", - "Gbg/1715122", - "Gbg/1715091", - "Gbg/1715065", - "Gbg/1715063", - "Gbg/5403822", - "Gba/551563", - "Gbg/6966332", - "Gbg/6966331" - ], - "source:geometry:date": [ - "2012-11-15", - "2017-11-20", - "2009-11-20", - "2016-11-21", - "2019-07-09", - "2015-11-24", - "2021-07-05" - ] - }, - "create": 107, - "modify": 138, - "delete": 2, - "area": 0.0000139559709599933, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 119, - "theme": "grb", - "delete": 2, - "import": 12, - "locale": "nl", - "imagery": "AGIV", - "conflation": 38 - }, - "id": 124094606 - } - }, - { - "id": 124094517, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9016832, - 51.1889524 - ], - [ - 4.9037694, - 51.1889524 - ], - [ - 4.9037694, - 51.190033 - ], - [ - 4.9016832, - 51.190033 - ], - [ - 4.9016832, - 51.1889524 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T12:26:19Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes" - ], - "addr:housenumber": [ - "12;14", - "12-14" - ], - "source:geometry:ref": [ - "Gbg/1715051", - "Gbg/1715061", - "Gbg/1715052", - "Gbg/1715047", - "Gbg/1715048", - "Gbg/1715049", - "Gbg/1715050", - "Gbg/1715044", - "Gbg/1715045" - ], - "source:geometry:date": [ - "2009-11-20", - "2016-07-28" - ] - }, - "create": 31, - "modify": 95, - "delete": 0, - "area": 0.00000225434772000337, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 87, - "theme": "grb", - "answer": 1, - "import": 4, - "locale": "nl", - "imagery": "AGIV", - "conflation": 18 - }, - "id": 124094517 - } - }, - { - "id": 124089779, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.340811, - 44.5105744 - ], - [ - 11.340811, - 44.5105744 - ], - [ - 11.340811, - 44.5105744 - ], - [ - 11.340811, - 44.5105744 - ], - [ - 11.340811, - 44.5105744 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "WinstonSmith", - "uid": "36030", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T10:48:39Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix", - "theme": "cyclofix", - "answer": 5, - "create": 1, - "locale": "it", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_5000m": 5 - }, - "id": 124089779 - } - }, - { - "id": 124089248, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.1847799, - 49.0375884 - ], - [ - 14.1847799, - 49.0375884 - ], - [ - 14.1847799, - 49.0375884 - ], - [ - 14.1847799, - 49.0375884 - ], - [ - 14.1847799, - 49.0375884 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #maps", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T10:36:43Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/ygkaSf4.jpg" - ], - "tourism": [ - "information" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maps.html", - "theme": "maps", - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 124089248 - } - }, - { - "id": 124089244, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.1822079, - 48.6966104 - ], - [ - 2.1871302, - 48.6966104 - ], - [ - 2.1871302, - 48.6974422 - ], - [ - 2.1822079, - 48.6974422 - ], - [ - 2.1822079, - 48.6966104 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "SorryImAnOctopus", - "uid": "13079289", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-26T10:36:40Z", - "reviewed_features": [], - "tag_changes": { - "bus": [ - "no" - ], - "hgv": [ - "no" - ], - "access": [ - "yes" - ], - "rental": [ - "ebike" - ], - "amenity": [ - "bicycle_parking", - "charging_station", - "bicycle_rental" - ], - "bicycle": [ - "no" - ], - "scooter": [ - "no" - ], - "website": [ - "https://www.zoov.eu/fr" - ], - "motorcar": [ - "yes" - ], - "cargo_bike": [ - "yes" - ], - "opening_hours": [ - "24/7" - ], - "bicycle_rental": [ - "docking_station" - ] - }, - "create": 0, - "modify": 8, - "delete": 0, - "area": 0.00000409436914000137, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 11, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 124089244 - } - }, - { - "id": 124088919, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.0936351, - 50.7255392 - ], - [ - 7.0936351, - 50.7255392 - ], - [ - 7.0936351, - 50.7255392 - ], - [ - 7.0936351, - 50.7255392 - ], - [ - 7.0936351, - 50.7255392 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ogmios", - "uid": "81983", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T10:29:43Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/R78togJ.jpg" - ], - "natural": [ - "tree" - ], - "species:wikidata": [ - "Q146149" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees", - "theme": "trees", - "answer": 5, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_within_25m": 6 - }, - "id": 124088919 - } - }, - { - "id": 124088640, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.5662176, - 52.4376784 - ], - [ - 13.6017327, - 52.4376784 - ], - [ - 13.6017327, - 52.4456638 - ], - [ - 13.5662176, - 52.4456638 - ], - [ - 13.5662176, - 52.4376784 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Paulus Maximus", - "uid": "16562534", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-26T10:23:51Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-26", - "2022-07-03" - ], - "pump:status": [ - "ok", - "blocked" - ] - }, - "create": 0, - "modify": 9, - "delete": 0, - "area": 0.000283602279539836, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 16, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 124088640 - } - }, - { - "id": 124084681, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.9018104, - 49.2584823 - ], - [ - 13.9018104, - 49.2584823 - ], - [ - 13.9018104, - 49.2584823 - ], - [ - 13.9018104, - 49.2584823 - ], - [ - 13.9018104, - 49.2584823 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T08:59:00Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "image": [ - "https://i.imgur.com/wUvMGeV.jpg" - ], - "amenity": [ - "toilets" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 1, - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 2 - }, - "id": 124084681 - } - }, - { - "id": 124084375, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.900041, - 49.2585096 - ], - [ - 13.9004433, - 49.2585096 - ], - [ - 13.9004433, - 49.2587144 - ], - [ - 13.900041, - 49.2587144 - ], - [ - 13.900041, - 49.2585096 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #parkings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T08:52:07Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/JO4IBfJ.jpg" - ], - "amenity": [ - "parking" - ], - "parking": [ - "surface" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 8.23910400022259e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/parkings.html", - "theme": "parkings", - "answer": 1, - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 2 - }, - "id": 124084375 - } - }, - { - "id": 124083453, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.9027798, - 49.2600504 - ], - [ - 13.9027798, - 49.2600504 - ], - [ - 13.9027798, - 49.2600504 - ], - [ - 13.9027798, - 49.2600504 - ], - [ - 13.9027798, - 49.2600504 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T08:33:32Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/Vl3S1gk.jpg" - ], - "amenity": [ - "public_bookcase" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1 - }, - "id": 124083453 - } - }, - { - "id": 124083379, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3514598, - 50.866326 - ], - [ - 4.3514598, - 50.866326 - ], - [ - 4.3514598, - 50.866326 - ], - [ - 4.3514598, - 50.866326 - ], - [ - 4.3514598, - 50.866326 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "AlexanderReb", - "uid": "16447083", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-26T08:31:36Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://1234-pietervdvn-mapcomplete-cbvf6umx6aw.ws-eu54.gitpod.io/theme.html", - "theme": "onwheels", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 124083379 - } - }, - { - "id": 124081308, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.7000704, - 49.3210318 - ], - [ - 13.7000704, - 49.3210318 - ], - [ - 13.7000704, - 49.3210318 - ], - [ - 13.7000704, - 49.3210318 - ], - [ - 13.7000704, - 49.3210318 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #maps", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T07:40:36Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/x0NjeZY.jpg" - ], - "tourism": [ - "information" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maps.html", - "theme": "maps", - "locale": "de", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1 - }, - "id": 124081308 - } - }, - { - "id": 124081121, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9054137, - 51.1802039 - ], - [ - 4.9099098, - 51.1802039 - ], - [ - 4.9099098, - 51.1824117 - ], - [ - 4.9054137, - 51.1824117 - ], - [ - 4.9054137, - 51.1802039 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T07:34:22Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes", - "roof" - ], - "source:geometry:ref": [ - "Gbg/3948832", - "Gbg/3949051", - "Gbg/3949048", - "Gbg/3949049", - "Gbg/6508570", - "Gbg/3949212", - "Gbg/3949213", - "Gbg/3949046", - "Gbg/3949045", - "Gbg/3949044", - "Gbg/3949043", - "Gbg/3949042", - "Gbg/3949041", - "Gbg/3949595" - ], - "source:geometry:date": [ - "2012-11-15", - "2018-10-24", - "2013-02-20" - ] - }, - "create": 206, - "modify": 86, - "delete": 0, - "area": 0.00000992648958000318, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 72, - "theme": "grb", - "import": 30, - "locale": "nl", - "imagery": "AGIV", - "conflation": 28 - }, - "id": 124081121 - } - }, - { - "id": 124080264, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 29.5110838, - 64.1212424 - ], - [ - 29.8368864, - 64.1212424 - ], - [ - 29.8368864, - 64.3884578 - ], - [ - 29.5110838, - 64.3884578 - ], - [ - 29.5110838, - 64.1212424 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "houtari", - "uid": "2186388", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #postboxes", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-26T07:11:49Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "post_box" - ] - }, - "create": 4, - "modify": 0, - "delete": 0, - "area": 0.0870594720800391, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/postboxes.html", - "theme": "postboxes", - "create": 4, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 124080264 - } - }, - { - "id": 124079882, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6994612, - 49.3210975 - ], - [ - 13.6994612, - 49.3210975 - ], - [ - 13.6994612, - 49.3210975 - ], - [ - 13.6994612, - 49.3210975 - ], - [ - 13.6994612, - 49.3210975 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T07:00:48Z", - "reviewed_features": [], - "tag_changes": { - "bottle": [ - "no" - ], - "amenity": [ - "drinking_water" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "locale": "de", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1 - }, - "id": 124079882 - } - }, - { - "id": 124079244, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9063727, - 51.1807937 - ], - [ - 4.9111445, - 51.1807937 - ], - [ - 4.9111445, - 51.1823049 - ], - [ - 4.9063727, - 51.1823049 - ], - [ - 4.9063727, - 51.1807937 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T06:39:18Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes", - "roof" - ], - "source:geometry:ref": [ - "Gbg/3948898", - "Gbg/3949020", - "Gbg/3948899", - "Gbg/3949021", - "Gbg/3948900", - "Gbg/3949019", - "Gbg/3949018", - "Gbg/3948901", - "Gbg/3949017", - "Gbg/3948912", - "Gbg/3948913", - "Gbg/3949016", - "Gbg/3948914", - "Gbg/3948916", - "Gbg/7019714", - "Gbg/3948896", - "Gbg/3948897", - "Gbg/3949032", - "Gbg/4928345", - "Gbg/3949034", - "Gbg/3949036", - "Gbg/3949037", - "Gbg/3949038" - ], - "source:geometry:date": [ - "2012-11-15", - "2017-03-01", - "2013-02-20", - "2018-10-24", - "2021-10-25", - "2014-12-04" - ] - }, - "create": 186, - "modify": 176, - "delete": 2, - "area": 0.00000721114415997977, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 155, - "theme": "grb", - "delete": 2, - "import": 29, - "locale": "nl", - "imagery": "AGIV", - "conflation": 46 - }, - "id": 124079244 - } - }, - { - "id": 124078380, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.5246391, - 52.4890908 - ], - [ - 13.5246391, - 52.4890908 - ], - [ - 13.5246391, - 52.4890908 - ], - [ - 13.5246391, - 52.4890908 - ], - [ - 13.5246391, - 52.4890908 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Paulus Maximus", - "uid": "16562534", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-26T06:14:18Z", - "reviewed_features": [], - "tag_changes": { - "image:0": [ - "https://i.imgur.com/ohhP3pw.jpg" - ], - "man_made": [ - "water_well" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 2 - }, - "id": 124078380 - } - }, - { - "id": 124077832, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9054353, - 51.1817328 - ], - [ - 4.9112997, - 51.1817328 - ], - [ - 4.9112997, - 51.1843531 - ], - [ - 4.9054353, - 51.1843531 - ], - [ - 4.9054353, - 51.1817328 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T05:56:34Z", - "reviewed_features": [], - "tag_changes": { - "uid": [ - "586389" - ], - "user": [ - "D!zzy" - ], - "version": [ - "1" - ], - "building": [ - "yes", - "roof", - "house" - ], - "changeset": [ - "16890244" - ], - "timestamp": [ - "2013-07-09T17:58:48Z" - ], - "source:geometry:ref": [ - "Gbg/3948856", - "Gbg/3948919", - "Gbg/3948920", - "Gbg/3948953", - "Gbg/6803123", - "Gbg/3948935", - "Gbg/3948932", - "Gbg/3948939", - "Gbg/3948936", - "Gbg/3948915", - "Gbg/3948917", - "Gbg/3948933", - "Gbg/3948937", - "Gbg/3948934", - "Gbg/3948952", - "Gbg/3948855", - "Gbg/3948976", - "Gbg/3948854", - "Gbg/6508572", - "Gbg/3948918", - "Gbg/3948940", - "Gbg/5862390", - "Gbg/3948941", - "Gbg/3952156", - "Gbg/5861038", - "Gbg/5861027", - "Gbg/4928608", - "Gbg/1708454", - "Gbg/1708453", - "Gbg/1708424", - "Gbg/1708425", - "Gbg/1708426", - "Gbg/6149500", - "Gbg/1708482", - "Gbg/6148979" - ], - "source:geometry:date": [ - "2012-11-15", - "2013-02-20", - "2020-06-05", - "2018-10-24", - "2017-03-01", - "2016-05-02", - "2009-09-30", - "2017-11-20" - ] - }, - "create": 273, - "modify": 317, - "delete": 0, - "area": 0.0000153664873200225, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 282, - "theme": "grb", - "import": 33, - "locale": "nl", - "imagery": "AGIV", - "conflation": 70 - }, - "id": 124077832 - } - }, - { - "id": 124077747, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.9086581, - 51.1822357 - ], - [ - 4.9102625, - 51.1822357 - ], - [ - 4.9102625, - 51.184182 - ], - [ - 4.9086581, - 51.184182 - ], - [ - 4.9086581, - 51.1822357 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dentonny", - "uid": "4198737", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T05:53:32Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes", - "house", - "roof" - ], - "addr:street": [ - "Grensstraat" - ], - "addr:housenumber": [ - "36", - "37" - ], - "source:geometry:ref": [ - "Gbg/3948938", - "Gbg/1710970", - "Gbg/1708460", - "Gbg/5122918", - "Gbg/1708462", - "Gbg/1708463", - "Gbg/1708455", - "Gbg/5122922", - "Gbg/1708457", - "Gbg/1708459", - "Gbg/6966612", - "Gbg/6834589" - ], - "source:geometry:date": [ - "2012-11-15", - "2017-11-20", - "2015-03-30", - "2009-09-30", - "2021-07-05", - "2020-09-04" - ] - }, - "create": 43, - "modify": 90, - "delete": 0, - "area": 0.00000312264371999976, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "move": 78, - "theme": "grb", - "import": 1, - "locale": "nl", - "imagery": "AGIV", - "conflation": 24 - }, - "id": 124077747 - } - }, - { - "id": 124072966, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4471091, - 52.5193287 - ], - [ - 13.4525515, - 52.5193287 - ], - [ - 13.4525515, - 52.5251867 - ], - [ - 13.4471091, - 52.5251867 - ], - [ - 13.4471091, - 52.5193287 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "BerolinaPlatz", - "uid": "16645084", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-26T00:50:49Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "pump:status": [ - "Die Pumpe wurde entfernt. Hier gibt es keine Pumpe mehr. Stand: 2022", - "ok" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000318815791999787, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 124072966 - } - }, - { - "id": 124072336, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -117.218239, - 47.6053578 - ], - [ - -117.1967167, - 47.6053578 - ], - [ - -117.1967167, - 47.6206696 - ], - [ - -117.218239, - 47.6206696 - ], - [ - -117.218239, - 47.6053578 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Coloradohusky", - "uid": "16345213", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-26T00:01:03Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential" - ], - "maxspeed": [ - "25 mph" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.000329545153139996, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "theme": "maxspeed", - "answer": 6, - "locale": "en", - "imagery": "osm" - }, - "id": 124072336 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-27.json b/Docs/Tools/stats/stats.2022-7-27.json deleted file mode 100644 index 08219d3f85..0000000000 --- a/Docs/Tools/stats/stats.2022-7-27.json +++ /dev/null @@ -1,3048 +0,0 @@ -{ - "features": [ - { - "id": 124161282, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.5327342, - -34.6392569 - ], - [ - -58.5327342, - -34.6392569 - ], - [ - -58.5327342, - -34.6392569 - ], - [ - -58.5327342, - -34.6392569 - ], - [ - -58.5327342, - -34.6392569 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AgusQui", - "uid": "331218", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-27T23:55:23Z", - "reviewed_features": [], - "tag_changes": { - "railway": [ - "signal" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", - "answer": 5, - "create": 1, - "locale": "es", - "imagery": "osm", - "change_over_5000m": 1, - "change_within_500m": 5 - }, - "id": 124161282 - } - }, - { - "id": 124161217, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6416714, - -33.4499735 - ], - [ - -70.6416714, - -33.4499735 - ], - [ - -70.6416714, - -33.4499735 - ], - [ - -70.6416714, - -33.4499735 - ], - [ - -70.6416714, - -33.4499735 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #ghostbikes", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-27T23:49:54Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/eMkwUpm.jpg" - ], - "historic": [ - "memorial" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/ghostbikes.html", - "theme": "ghostbikes", - "locale": "en", - "imagery": "CartoDB.Positron", - "add-image": 1 - }, - "id": 124161217 - } - }, - { - "id": 124160745, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7379716, - 50.7371929 - ], - [ - 3.7379716, - 50.7371929 - ], - [ - 3.7379716, - 50.7371929 - ], - [ - 3.7379716, - 50.7371929 - ], - [ - 3.7379716, - 50.7371929 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-27T23:09:39Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/ohWLbct.jpg" - ], - "tourism": [ - "artwork" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 124160745 - } - }, - { - "id": 124160107, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -86.128883, - 39.9755497 - ], - [ - -86.128883, - 39.9755497 - ], - [ - -86.128883, - 39.9755497 - ], - [ - -86.128883, - 39.9755497 - ], - [ - -86.128883, - 39.9755497 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Kanellar", - "uid": "16249964", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-27T22:23:19Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_25m": 1 - }, - "id": 124160107 - } - }, - { - "id": 124160037, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -86.1288777, - 39.9754052 - ], - [ - -86.1288214, - 39.9754052 - ], - [ - -86.1288214, - 39.9754094 - ], - [ - -86.1288777, - 39.9754094 - ], - [ - -86.1288777, - 39.9754052 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Kanellar", - "uid": "16249964", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-27T22:18:57Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_repair_station", - "bicycle_parking" - ] - }, - "create": 2, - "modify": 1, - "delete": 0, - "area": 2.3645999995096e-10, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 6, - "create": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_over_5000m": 2, - "change_within_25m": 7 - }, - "id": 124160037 - } - }, - { - "id": 124157333, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 29.46807, - 64.1280205 - ], - [ - 29.4728972, - 64.1280205 - ], - [ - 29.4728972, - 64.1298258 - ], - [ - 29.46807, - 64.1298258 - ], - [ - 29.46807, - 64.1280205 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "houtari", - "uid": "2186388", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #street_lighting", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-27T20:32:00Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "street_lamp" - ] - }, - "create": 9, - "modify": 1, - "delete": 0, - "area": 0.00000871454415999998, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/street_lighting.html", - "move": 1, - "theme": "street_lighting", - "answer": 2, - "create": 9, - "locale": "en", - "imagery": "mml-orto", - "move:node/9909683041": "improve_accuracy" - }, - "id": 124157333 - } - }, - { - "id": 124157040, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 29.4723882, - 64.1291692 - ], - [ - 29.5178336, - 64.1291692 - ], - [ - 29.5178336, - 64.1295508 - ], - [ - 29.4723882, - 64.1295508 - ], - [ - 29.4723882, - 64.1291692 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "houtari", - "uid": "2186388", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-27T20:22:37Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0.0000173419646398724, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "move": 1, - "theme": "trees", - "answer": 2, - "create": 1, - "locale": "en", - "imagery": "mml-orto", - "move:node/9909683040": "improve_accuracy" - }, - "id": 124157040 - } - }, - { - "id": 124156354, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "houtari", - "uid": "2186388", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-27T20:03:17Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 124156354 - } - }, - { - "id": 124156330, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.483103, - 49.2902435 - ], - [ - 15.483103, - 49.2902435 - ], - [ - 15.483103, - 49.2902435 - ], - [ - 15.483103, - 49.2902435 - ], - [ - 15.483103, - 49.2902435 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-27T20:02:47Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/47Zscmh.jpg" - ], - "tourism": [ - "artwork" - ], - "artwork_type": [ - "sculpture" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 1, - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 124156330 - } - }, - { - "id": 124156055, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-27T19:54:35Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 124156055 - } - }, - { - "id": 124154485, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.3417019, - 51.6672337 - ], - [ - 14.3417019, - 51.6672337 - ], - [ - 14.3417019, - 51.6672337 - ], - [ - 14.3417019, - 51.6672337 - ], - [ - 14.3417019, - 51.6672337 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "tomtom616", - "uid": "16546724", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-27T19:01:59Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 124154485 - } - }, - { - "id": 124154448, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.0251685, - 50.6905223 - ], - [ - 7.0251685, - 50.6905223 - ], - [ - 7.0251685, - 50.6905223 - ], - [ - 7.0251685, - 50.6905223 - ], - [ - 7.0251685, - 50.6905223 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ogmios", - "uid": "81983", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-27T19:00:50Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "species:wikidata": [ - "Q156895" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 2, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_within_500m": 3 - }, - "id": 124154448 - } - }, - { - "id": 124153705, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.6020496, - 42.5880798 - ], - [ - 12.6020496, - 42.5880798 - ], - [ - 12.6020496, - 42.5880798 - ], - [ - 12.6020496, - 42.5880798 - ], - [ - 12.6020496, - 42.5880798 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Gabriele Ponzo", - "uid": "10074887", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-27T18:38:53Z", - "reviewed_features": [], - "tag_changes": { - "bus": [ - "no" - ], - "hgv": [ - "no" - ], - "amenity": [ - "charging_station" - ], - "bicycle": [ - "no" - ], - "scooter": [ - "no" - ], - "motorcar": [ - "yes" - ], - "opening_hours": [ - "24/7" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 2, - "locale": "it", - "imagery": "CartoDB.Voyager" - }, - "id": 124153705 - } - }, - { - "id": 124152247, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3619419, - 52.4914261 - ], - [ - 13.3625761, - 52.4914261 - ], - [ - 13.3625761, - 52.4932957 - ], - [ - 13.3619419, - 52.4932957 - ], - [ - 13.3619419, - 52.4914261 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "queerfish", - "uid": "16620126", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-27T17:54:12Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "pump:status": [ - "Wird regelmäßig für die Straßenbaumbewässerung genutzt (queerfish | giessdenkiez.de)", - "queerfish nutzt diese Pumpe für Straßenbaumbewässerung (giessdenkiez.de)" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.00000118570032000013, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 3, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 124152247 - } - }, - { - "id": 124150160, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3860751, - 52.5167667 - ], - [ - 13.3860751, - 52.5167667 - ], - [ - 13.3860751, - 52.5167667 - ], - [ - 13.3860751, - 52.5167667 - ], - [ - 13.3860751, - 52.5167667 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-27T16:55:00Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/d6UheOw.jpg" - ], - "bottle": [ - "no" - ], - "amenity": [ - "drinking_water" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 4, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 5 - }, - "id": 124150160 - } - }, - { - "id": 124148731, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.4831327, - 49.2900845 - ], - [ - 15.4831327, - 49.2900845 - ], - [ - 15.4831327, - 49.2900845 - ], - [ - 15.4831327, - 49.2900845 - ], - [ - 15.4831327, - 49.2900845 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-27T16:18:20Z", - "reviewed_features": [], - "tag_changes": { - "bottle": [ - "no" - ], - "amenity": [ - "drinking_water" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "locale": "de", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1 - }, - "id": 124148731 - } - }, - { - "id": 124148269, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "yopaseopor", - "uid": "500572", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/limits.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-27T16:05:25Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/limits.json", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 124148269 - } - }, - { - "id": 124145305, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.6523787, - 45.0145251 - ], - [ - 4.6523787, - 45.0145251 - ], - [ - 4.6523787, - 45.0145251 - ], - [ - 4.6523787, - 45.0145251 - ], - [ - 4.6523787, - 45.0145251 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Gnaf", - "uid": "16661315", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-27T14:48:41Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "drinking_water" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "create": 1, - "locale": "fr", - "imagery": "CartoDB.Voyager" - }, - "id": 124145305 - } - }, - { - "id": 124144234, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3660039, - 50.8548443 - ], - [ - 4.3667392, - 50.8548443 - ], - [ - 4.3667392, - 50.8556218 - ], - [ - 4.3660039, - 50.8556218 - ], - [ - 4.3660039, - 50.8548443 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-27T14:24:56Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "hotel" - ], - "building": [ - "yes" - ] - }, - "create": 1, - "modify": 2, - "delete": 0, - "area": 5.71695749998339e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/onwheels.html", - "theme": "onwheels", - "answer": 4, - "create": 2, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 7 - }, - "id": 124144234 - } - }, - { - "id": 124144203, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 72.8416474, - 15.8370078 - ], - [ - 88.3636577, - 15.8370078 - ], - [ - 88.3636577, - 28.6662101 - ], - [ - 72.8416474, - 28.6662101 - ], - [ - 72.8416474, - 15.8370078 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-27T14:24:00Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "college" - ], - "barrier": [ - "fence" - ], - "highway": [ - "mini_roundabout", - "tertiary", - "residential", - "unclassified", - "secondary" - ], - "leisure": [ - "park" - ], - "tourism": [ - "museum" - ], - "name:etymology:wikidata": [ - "Q314394", - "Q512431" - ] - }, - "create": 0, - "modify": 33, - "delete": 0, - "area": 199.135010241384, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 42, - "locale": "en", - "imagery": "osm" - }, - "id": 124144203 - } - }, - { - "id": 124144176, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.2821889, - 52.472466 - ], - [ - 13.2821889, - 52.472466 - ], - [ - 13.2821889, - 52.472466 - ], - [ - 13.2821889, - 52.472466 - ], - [ - 13.2821889, - 52.472466 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "ChSchadler", - "uid": "16563053", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-27T14:23:08Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-27" - ], - "pump:status": [ - "ok" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 3, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 124144176 - } - }, - { - "id": 124143061, - "type": "Feature", - "geometry": null, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-27T13:55:44Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 0, - "delete": 0, - "area": null, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 27, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_25m": 27 - }, - "id": 124143061 - } - }, - { - "id": 124142215, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.3259037, - 52.4301839 - ], - [ - 14.3259037, - 52.4301839 - ], - [ - 14.3259037, - 52.4301839 - ], - [ - 14.3259037, - 52.4301839 - ], - [ - 14.3259037, - 52.4301839 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Reiko Rockendorf", - "uid": "16637335", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-27T13:36:23Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 124142215 - } - }, - { - "id": 124141948, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.1897978, - 52.5365089 - ], - [ - 13.2130552, - 52.5365089 - ], - [ - 13.2130552, - 52.5518991 - ], - [ - 13.1897978, - 52.5518991 - ], - [ - 13.1897978, - 52.5365089 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Paulus Maximus", - "uid": "16562534", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-27T13:30:18Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-27", - "2019-07-25" - ], - "pump:status": [ - "broken", - "ok" - ] - }, - "create": 0, - "modify": 14, - "delete": 0, - "area": 0.000357936037479977, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 22, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 124141948 - } - }, - { - "id": 124138156, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5123634, - 50.8239934 - ], - [ - 4.521153, - 50.8239934 - ], - [ - 4.521153, - 50.8305204 - ], - [ - 4.5123634, - 50.8305204 - ], - [ - 4.5123634, - 50.8239934 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "jolien1234", - "uid": "16659925", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-27T12:08:31Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 56, - "modify": 10, - "delete": 3, - "area": 0.0000573697191999863, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "move": 11, - "theme": "toerisme_vlaanderen", - "answer": 6, - "create": 56, - "locale": "nl", - "imagery": "AGIV", - "deletion": 3, - "move:node/-18": "improve_accuracy", - "move:node/-28": "improve_accuracy", - "move:node/9911748646": "improve_accuracy", - "move:node/9914476383": "improve_accuracy", - "move:node/9914483646": "improve_accuracy", - "move:node/9914491733": "improve_accuracy", - "move:node/9914550755": "improve_accuracy", - "move:node/9914660952": "improve_accuracy", - "deletion:node/3175383908": "not found", - "deletion:node/9914495661": "testing point", - "deletion:node/9914550755": "duplicate" - }, - "id": 124138156 - } - }, - { - "id": 124137888, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 121.0666229, - 14.5853122 - ], - [ - 121.0666282, - 14.5853122 - ], - [ - 121.0666282, - 14.5853668 - ], - [ - 121.0666229, - 14.5853668 - ], - [ - 121.0666229, - 14.5853122 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "tubbylita", - "uid": "16660054", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-27T12:03:08Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bar" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 2.8937999988255e-10, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "move": 1, - "theme": "https://raw.githubusercontent.com/mapbeks/mapcomplete_lgbt/main/version 5", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "osm", - "move:node/9914446516": "improve_accuracy" - }, - "id": 124137888 - } - }, - { - "id": 124134777, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.3794023, - 52.5095536 - ], - [ - 13.3794023, - 52.5095536 - ], - [ - 13.3794023, - 52.5095536 - ], - [ - 13.3794023, - 52.5095536 - ], - [ - 13.3794023, - 52.5095536 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "wjtje", - "uid": "11949970", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #drinking_water", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-27T10:54:58Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/VIuGLEp.jpg" - ], - "bottle": [ - "no", - "yes" - ], - "amenity": [ - "drinking_water" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/drinking_water.html", - "theme": "drinking_water", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 2 - }, - "id": 124134777 - } - }, - { - "id": 124134304, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.2200635, - 52.5263608 - ], - [ - 13.2200635, - 52.5263608 - ], - [ - 13.2200635, - 52.5263608 - ], - [ - 13.2200635, - 52.5263608 - ], - [ - 13.2200635, - 52.5263608 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Paulus Maximus", - "uid": "16562534", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-27T10:44:08Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-27" - ], - "pump:status": [ - "ok" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 124134304 - } - }, - { - "id": 124133581, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.1955018, - 52.5321585 - ], - [ - 13.2038262, - 52.5321585 - ], - [ - 13.2038262, - 52.5361782 - ], - [ - 13.1955018, - 52.5361782 - ], - [ - 13.1955018, - 52.5321585 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Paulus Maximus", - "uid": "16562534", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-27T10:29:59Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-27" - ], - "pump:status": [ - "ok" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000334615906800026, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 124133581 - } - }, - { - "id": 124132271, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.4932445, - 52.2219404 - ], - [ - 5.4932445, - 52.2219404 - ], - [ - 5.4932445, - 52.2219404 - ], - [ - 5.4932445, - 52.2219404 - ], - [ - 5.4932445, - 52.2219404 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-27T10:00:49Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 3, - "create": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1, - "change_over_5000m": 1, - "change_within_25m": 4 - }, - "id": 124132271 - } - }, - { - "id": 124130765, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.1231323, - 49.6051377 - ], - [ - 11.1305198, - 49.6051377 - ], - [ - 11.1305198, - 49.6120825 - ], - [ - 11.1231323, - 49.6120825 - ], - [ - 11.1231323, - 49.6051377 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "womped", - "uid": "1880469", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-27T09:31:23Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential", - "living_street" - ], - "name:etymology:wikidata": [ - "Q41390036", - "Q110993973", - "Q41388731" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000513047099999964, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 4, - "locale": "en", - "imagery": "osm" - }, - "id": 124130765 - } - }, - { - "id": 124130746, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.3966114, - 51.0407931 - ], - [ - 3.3966114, - 51.0407931 - ], - [ - 3.3966114, - 51.0407931 - ], - [ - 3.3966114, - 51.0407931 - ], - [ - 3.3966114, - 51.0407931 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #postboxes", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-27T09:30:54Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "post_box" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/postboxes.html", - "theme": "postboxes", - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 124130746 - } - }, - { - "id": 124128013, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.8106272, - 51.4642163 - ], - [ - 13.9048558, - 51.4642163 - ], - [ - 13.9048558, - 51.4932094 - ], - [ - 13.8106272, - 51.4932094 - ], - [ - 13.8106272, - 51.4642163 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "duracellakku", - "uid": "7590124", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-27T08:33:01Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 12, - "modify": 7, - "delete": 0, - "area": 0.00273197922266007, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 124128013 - } - }, - { - "id": 124126540, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 73.734105, - 8.4938249 - ], - [ - 92.5733758, - 8.4938249 - ], - [ - 92.5733758, - 30.323282 - ], - [ - 73.734105, - 30.323282 - ], - [ - 73.734105, - 8.4938249 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "NaanAvanIllai", - "uid": "14062769", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #etymology", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-27T07:58:30Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential", - "secondary", - "service", - "unclassified", - "tertiary", - "primary", - "tertiary_link" - ], - "landuse": [ - "residential" - ], - "leisure": [ - "park" - ], - "boundary": [ - "administrative", - "political", - "marker" - ], - "building": [ - "yes" - ], - "name:etymology:wikidata": [ - "Q1154693", - "Q7240159", - "Q90756270", - "Q684198", - "Q7399623", - "Q3630453", - "Q2628981", - "Q3634691", - "Q312966" - ] - }, - "create": 0, - "modify": 80, - "delete": 0, - "area": 411.251053723883, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/etymology.html", - "theme": "etymology", - "answer": 132, - "locale": "en", - "imagery": "osm" - }, - "id": 124126540 - } - }, - { - "id": 124124655, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.8130036, - 51.4716902 - ], - [ - 13.9100754, - 51.4716902 - ], - [ - 13.9100754, - 51.483389 - ], - [ - 13.8130036, - 51.483389 - ], - [ - 13.8130036, - 51.4716902 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "duracellakku", - "uid": "7590124", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-27T07:15:45Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 9, - "modify": 2, - "delete": 0, - "area": 0.00113562357384048, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 124124655 - } - }, - { - "id": 124120443, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.314284, - 49.2594423 - ], - [ - 15.314284, - 49.2594423 - ], - [ - 15.314284, - 49.2594423 - ], - [ - 15.314284, - 49.2594423 - ], - [ - 15.314284, - 49.2594423 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-27T05:10:07Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/5iFF39o.jpg" - ], - "tourism": [ - "artwork" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 124120443 - } - }, - { - "id": 124120000, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 11.9673514, - 54.6904815 - ], - [ - 11.9673514, - 54.6904815 - ], - [ - 11.9673514, - 54.6904815 - ], - [ - 11.9673514, - 54.6904815 - ], - [ - 11.9673514, - 54.6904815 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "dk011074", - "uid": "85402", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-27T04:52:07Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "charging_station" - ] - }, - "create": 1, - "modify": 10, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "answer": 12, - "create": 1, - "locale": "en", - "imagery": "Geodatastyrelsen_Denmark", - "add-image": 2, - "change_over_5000m": 15 - }, - "id": 124120000 - } - }, - { - "id": 124119306, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.9627646, - 48.8271261 - ], - [ - 12.9644641, - 48.8271261 - ], - [ - 12.9644641, - 48.8290292 - ], - [ - 12.9627646, - 48.8290292 - ], - [ - 12.9627646, - 48.8271261 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "APneunzehn74", - "uid": "12180500", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-27T04:20:35Z", - "reviewed_features": [], - "tag_changes": { - "shop": [ - "bicycle" - ], - "service:bicycle:rental": [ - "yes" - ], - "service:bicycle:repair": [ - "yes" - ], - "service:bicycle:retail": [ - "yes" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 0.00000323431845000133, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 4, - "locale": "de", - "imagery": "CartoDB.Voyager", - "change_within_50m": 2, - "change_within_500m": 2 - }, - "id": 124119306 - } - }, - { - "id": 124118607, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.3169395, - 49.2585561 - ], - [ - 15.3169395, - 49.2585561 - ], - [ - 15.3169395, - 49.2585561 - ], - [ - 15.3169395, - 49.2585561 - ], - [ - 15.3169395, - 49.2585561 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #maps", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-27T03:46:12Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/INtqw2Q.jpg" - ], - "tourism": [ - "information" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maps.html", - "theme": "maps", - "locale": "de", - "imagery": "osm", - "add-image": 1 - }, - "id": 124118607 - } - }, - { - "id": 124118270, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.3061122, - 49.2538665 - ], - [ - 15.306748, - 49.2538665 - ], - [ - 15.306748, - 49.2540712 - ], - [ - 15.3061122, - 49.2540712 - ], - [ - 15.3061122, - 49.2538665 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #transit", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-27T03:18:30Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/oEUaFE7.jpg", - "https://i.imgur.com/cXkSmpE.jpg" - ], - "highway": [ - "bus_stop" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.30148259998749e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/transit.html", - "theme": "transit", - "locale": "de", - "imagery": "osm", - "add-image": 2 - }, - "id": 124118270 - } - }, - { - "id": 124118095, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -117.2104905, - 47.6478439 - ], - [ - -117.1298578, - 47.6478439 - ], - [ - -117.1298578, - 47.6636153 - ], - [ - -117.2104905, - 47.6636153 - ], - [ - -117.2104905, - 47.6478439 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Coloradohusky", - "uid": "16345213", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #education", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-27T03:00:22Z", - "reviewed_features": [], - "tag_changes": { - "phone": [ - "+1 509 558 5100" - ], - "amenity": [ - "school" - ], - "capacity": [ - "270" - ], - "school:gender": [ - "mixed" - ], - "school:language": [ - "en" - ] - }, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.00127169056478002, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/education.html", - "theme": "education", - "answer": 7, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 124118095 - } - }, - { - "id": 124118019, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -117.1964358, - 47.6478756 - ], - [ - -117.1923964, - 47.6478756 - ], - [ - -117.1923964, - 47.6506935 - ], - [ - -117.1964358, - 47.6506935 - ], - [ - -117.1964358, - 47.6478756 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Coloradohusky", - "uid": "16345213", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #parkings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-27T02:54:01Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "parking" - ], - "capacity": [ - "6" - ], - "capacity:disabled": [ - "10", - "4", - "2" - ] - }, - "create": 0, - "modify": 4, - "delete": 0, - "area": 0.0000113826252600047, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/parkings.html", - "theme": "parkings", - "answer": 4, - "locale": "en", - "imagery": "Mapbox" - }, - "id": 124118019 - } - }, - { - "id": 124117728, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.637488, - -33.4600296 - ], - [ - -70.6374384, - -33.4600296 - ], - [ - -70.6374384, - -33.4599711 - ], - [ - -70.637488, - -33.4599711 - ], - [ - -70.637488, - -33.4600296 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-27T02:21:13Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/v5LjVU2.jpg", - "https://i.imgur.com/xG0fP5K.jpg" - ], - "natural": [ - "tree" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 2.90160000073016e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "locale": "es", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 2 - }, - "id": 124117728 - } - } - ] -} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-7-28.json b/Docs/Tools/stats/stats.2022-7-28.json deleted file mode 100644 index 7bb071ddfa..0000000000 --- a/Docs/Tools/stats/stats.2022-7-28.json +++ /dev/null @@ -1,3400 +0,0 @@ -{ - "features": [ - { - "id": 124206612, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.9373451, - 42.6812754 - ], - [ - 2.9376092, - 42.6812754 - ], - [ - 2.9376092, - 42.6814783 - ], - [ - 2.9373451, - 42.6814783 - ], - [ - 2.9373451, - 42.6812754 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "LySioS", - "uid": "11579673", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #rainbow_crossings", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-28T23:28:13Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "crossing" - ], - "crossing:marking": [ - "rainbow" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 5.35858900012963e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/rainbow_crossings.html", - "theme": "rainbow_crossings", - "answer": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_1000m": 2 - }, - "id": 124206612 - } - }, - { - "id": 124203501, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 9.1510186, - 48.380229 - ], - [ - 9.1812202, - 48.380229 - ], - [ - 9.1812202, - 48.390305 - ], - [ - 9.1510186, - 48.390305 - ], - [ - 9.1510186, - 48.380229 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "SeeIt123", - "uid": "16674589", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #parkings", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-28T21:02:44Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "parking" - ] - }, - "create": 4, - "modify": 3, - "delete": 0, - "area": 0.000304311321599937, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/parkings.html", - "theme": "parkings", - "answer": 9, - "create": 4, - "locale": "de", - "imagery": "osm" - }, - "id": 124203501 - } - }, - { - "id": 124202942, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2248056, - 51.2092223 - ], - [ - 3.2248056, - 51.2092223 - ], - [ - 3.2248056, - 51.2092223 - ], - [ - 3.2248056, - 51.2092223 - ], - [ - 3.2248056, - 51.2092223 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-28T20:44:52Z", - "reviewed_features": [], - "tag_changes": { - "access": [ - "yes" - ], - "amenity": [ - "bicycle_repair_station" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1 - }, - "id": 124202942 - } - }, - { - "id": 124202646, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.4471091, - 52.5183341 - ], - [ - 13.451872, - 52.5183341 - ], - [ - 13.451872, - 52.5193287 - ], - [ - 13.4471091, - 52.5193287 - ], - [ - 13.4471091, - 52.5183341 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "SeeIt123", - "uid": "16674589", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-28T20:33:43Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-28", - "2018" - ], - "pump:status": [ - "ok" - ] - }, - "create": 0, - "modify": 2, - "delete": 1, - "area": 0.00000473718034002611, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager", - "deletion": 1, - "deletion:node/1274104661": "not found" - }, - "id": 124202646 - } - }, - { - "id": 124202607, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.7334233, - 51.0133649 - ], - [ - 3.7453822, - 51.0133649 - ], - [ - 3.7453822, - 51.0352804 - ], - [ - 3.7334233, - 51.0352804 - ], - [ - 3.7334233, - 51.0133649 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #benches", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-28T20:32:14Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/i2ClBXW.jpg", - "https://i.imgur.com/k2eswSP.jpg", - "https://i.imgur.com/QxcsL62.jpg", - "https://i.imgur.com/QwnC7AK.jpg", - "https://i.imgur.com/BtqdtpG.jpg", - "https://i.imgur.com/znFaz2D.jpg", - "https://i.imgur.com/kr69p4z.jpg" - ], - "amenity": [ - "bench" - ] - }, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.000262085272949979, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/benches.html", - "theme": "benches", - "locale": "nl", - "imagery": "osm", - "add-image": 7 - }, - "id": 124202607 - } - }, - { - "id": 124202481, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.1097432, - 52.0976755 - ], - [ - 5.1141105, - 52.0976755 - ], - [ - 5.1141105, - 52.1042969 - ], - [ - 5.1097432, - 52.1042969 - ], - [ - 5.1097432, - 52.0976755 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Koen Rijnsent", - "uid": "4569696", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-28T20:26:40Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "artwork" - ] - }, - "create": 6, - "modify": 9, - "delete": 0, - "area": 0.0000289176402200022, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 10, - "create": 6, - "locale": "en", - "imagery": "osm", - "add-image": 6 - }, - "id": 124202481 - } - }, - { - "id": 124202285, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0994779, - 52.0962987 - ], - [ - 5.1284287, - 52.0962987 - ], - [ - 5.1284287, - 52.1178026 - ], - [ - 5.0994779, - 52.1178026 - ], - [ - 5.0994779, - 52.0962987 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Koen Rijnsent", - "uid": "4569696", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-28T20:19:42Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/UwvWIqe.png" - ], - "tourism": [ - "artwork" - ], - "artist_name": [ - "Jan is de Man & DeefFeed" - ], - "artwork_type": [ - "mural" - ] - }, - "create": 4, - "modify": 3, - "delete": 0, - "area": 0.000622555108119963, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 6, - "create": 4, - "locale": "en", - "imagery": "osm", - "add-image": 5 - }, - "id": 124202285 - } - }, - { - "id": 124202049, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.023214, - 50.6918819 - ], - [ - 7.023214, - 50.6918819 - ], - [ - 7.023214, - 50.6918819 - ], - [ - 7.023214, - 50.6918819 - ], - [ - 7.023214, - 50.6918819 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ogmios", - "uid": "81983", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-28T20:12:03Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/WroTpLi.jpg" - ], - "natural": [ - "tree" - ], - "denotation": [ - "urban" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 1, - "locale": "en", - "imagery": "osm", - "add-image": 1 - }, - "id": 124202049 - } - }, - { - "id": 124202040, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.9834191, - 48.8497497 - ], - [ - 12.9834423, - 48.8497497 - ], - [ - 12.9834423, - 48.8497516 - ], - [ - 12.9834191, - 48.8497516 - ], - [ - 12.9834191, - 48.8497497 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "APneunzehn74", - "uid": "12180500", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-28T20:11:50Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/1N96aZW.jpg" - ], - "access": [ - "yes" - ], - "bottle": [ - "yes" - ], - "amenity": [ - "bicycle_repair_station" - ], - "man_made": [ - "water_tap" - ], - "service:bicycle:pump:operational_status": [ - "operational" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 4.40800000193217e-11, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 3, - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_5000m": 4 - }, - "id": 124202040 - } - }, - { - "id": 124200695, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 7.023214, - 50.6918819 - ], - [ - 7.023214, - 50.6918819 - ], - [ - 7.023214, - 50.6918819 - ], - [ - 7.023214, - 50.6918819 - ], - [ - 7.023214, - 50.6918819 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Ogmios", - "uid": "81983", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #trees", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-28T19:28:46Z", - "reviewed_features": [], - "tag_changes": { - "natural": [ - "tree" - ], - "leaf_type": [ - "broadleaved" - ], - "leaf_cycle": [ - "deciduous" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/trees.html", - "theme": "trees", - "answer": 2, - "locale": "en", - "imagery": "osm" - }, - "id": 124200695 - } - }, - { - "id": 124200690, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6324487, - 52.450505 - ], - [ - 13.6343075, - 52.450505 - ], - [ - 13.6343075, - 52.4578187 - ], - [ - 13.6324487, - 52.4578187 - ], - [ - 13.6324487, - 52.450505 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Paulus Maximus", - "uid": "16562534", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-28T19:28:42Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-28", - "2022-07-10", - "2020-02-15" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000135947055600013, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 2, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 124200690 - } - }, - { - "id": 124200658, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3453395, - 50.8659811 - ], - [ - 4.3453395, - 50.8659811 - ], - [ - 4.3453395, - 50.8659811 - ], - [ - 4.3453395, - 50.8659811 - ], - [ - 4.3453395, - 50.8659811 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-28T19:28:00Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no", - "yes" - ], - "amenity": [ - "toilets" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/onwheels.html", - "theme": "onwheels", - "answer": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_within_500m": 1 - }, - "id": 124200658 - } - }, - { - "id": 124200493, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 5.0817046, - 52.0656456 - ], - [ - 5.1414356, - 52.0656456 - ], - [ - 5.1414356, - 52.1049059 - ], - [ - 5.0817046, - 52.1049059 - ], - [ - 5.0817046, - 52.0656456 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Koen Rijnsent", - "uid": "4569696", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-28T19:22:40Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/jSgNrFa.png", - "https://i.imgur.com/g7pZEbo.png", - "https://i.imgur.com/rSEhExI.png" - ], - "image:0": [ - "https://i.imgur.com/3778o2J.png" - ], - "tourism": [ - "artwork" - ], - "artist_name": [ - "De strakke hand" - ], - "artwork_type": [ - "mural", - "graffiti" - ] - }, - "create": 22, - "modify": 25, - "delete": 0, - "area": 0.00234505697929972, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "move": 1, - "theme": "artwork", - "answer": 33, - "create": 22, - "locale": "en", - "imagery": "osm", - "add-image": 25, - "move:node/9917683361": "improve_accuracy" - }, - "id": 124200493 - } - }, - { - "id": 124200133, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3590807, - 50.8200345 - ], - [ - 4.3593308, - 50.8200345 - ], - [ - 4.3593308, - 50.8201855 - ], - [ - 4.3590807, - 50.8201855 - ], - [ - 4.3590807, - 50.8200345 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-28T19:12:28Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "yes" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 3.77651000007024e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/onwheels.html", - "theme": "onwheels", - "answer": 1, - "create": 2, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_within_25m": 3 - }, - "id": 124200133 - } - }, - { - "id": 124197510, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4111738, - 50.748191 - ], - [ - 3.4111738, - 50.748191 - ], - [ - 3.4111738, - 50.748191 - ], - [ - 3.4111738, - 50.748191 - ], - [ - 3.4111738, - 50.748191 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-28T17:54:17Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "public_bookcase" - ], - "image:0": [ - "https://i.imgur.com/sDM9sHw.jpg" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 124197510 - } - }, - { - "id": 124197295, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.4004145, - 51.043391 - ], - [ - 3.4006077, - 51.043391 - ], - [ - 3.4006077, - 51.0435455 - ], - [ - 3.4004145, - 51.0435455 - ], - [ - 3.4004145, - 51.043391 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-28T17:47:14Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 2.98494000001405e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/onwheels.html", - "theme": "onwheels", - "create": 2, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 124197295 - } - }, - { - "id": 124196069, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.6212464, - 52.4535258 - ], - [ - 13.6355299, - 52.4535258 - ], - [ - 13.6355299, - 52.4549429 - ], - [ - 13.6212464, - 52.4549429 - ], - [ - 13.6212464, - 52.4535258 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Paulus Maximus", - "uid": "16562534", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-28T17:11:13Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-28", - "2022-07-10" - ], - "pump:status": [ - "ok" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0.0000202411478499652, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 3, - "locale": "de", - "imagery": "CartoDB.Voyager" - }, - "id": 124196069 - } - }, - { - "id": 124196054, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3337656, - 50.8354464 - ], - [ - 4.3337656, - 50.8354464 - ], - [ - 4.3337656, - 50.8354464 - ], - [ - 4.3337656, - 50.8354464 - ], - [ - 4.3337656, - 50.8354464 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Pieter Vander Vennet", - "uid": "3818858", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-28T17:11:03Z", - "reviewed_features": [], - "tag_changes": { - "rental": [ - "city_bike" - ], - "amenity": [ - "bicycle_rental" - ], - "payment:app": [ - "yes" - ], - "payment:cash": [ - "no" - ], - "payment:cards": [ - "no" - ], - "bicycle_rental": [ - "dropoff_point" - ], - "payment:membership_card": [ - "no" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "answer": 3, - "locale": "en", - "imagery": "osm", - "change_within_100m": 3 - }, - "id": 124196054 - } - }, - { - "id": 124195378, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3460828, - 50.8663641 - ], - [ - 4.3460828, - 50.8663641 - ], - [ - 4.3460828, - 50.8663641 - ], - [ - 4.3460828, - 50.8663641 - ], - [ - 4.3460828, - 50.8663641 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-28T16:52:26Z", - "reviewed_features": [], - "tag_changes": { - "door": [ - "sliding" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/onwheels.html", - "theme": "onwheels", - "answer": 1, - "locale": "nl", - "imagery": "CartoDB.Voyager" - }, - "id": 124195378 - } - }, - { - "id": 124195010, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3295454, - 50.8388468 - ], - [ - 4.3300281, - 50.8388468 - ], - [ - 4.3300281, - 50.8392113 - ], - [ - 4.3295454, - 50.8392113 - ], - [ - 4.3295454, - 50.8388468 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thierry1030", - "uid": "286563", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-28T16:43:21Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bicycle_parking" - ] - }, - "create": 0, - "modify": 2, - "delete": 0, - "area": 1.75944150001678e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 2 - }, - "id": 124195010 - } - }, - { - "id": 124192261, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 14.279142, - 52.4078401 - ], - [ - 14.3172991, - 52.4078401 - ], - [ - 14.3172991, - 52.4491967 - ], - [ - 14.279142, - 52.4491967 - ], - [ - 14.279142, - 52.4078401 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "Reiko Rockendorf", - "uid": "16637335", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-28T15:27:53Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 11, - "modify": 0, - "delete": 0, - "area": 0.00157804792185999, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 124192261 - } - }, - { - "id": 124191399, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.361821, - 52.4914155 - ], - [ - 13.3625761, - 52.4914155 - ], - [ - 13.3625761, - 52.4932957 - ], - [ - 13.361821, - 52.4932957 - ], - [ - 13.361821, - 52.4914155 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "queerfish", - "uid": "16620126", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-28T15:07:36Z", - "reviewed_features": [], - "tag_changes": { - "man_made": [ - "water_well" - ], - "check_date": [ - "2022-07-28" - ] - }, - "create": 0, - "modify": 3, - "delete": 1, - "area": 0.00000141973901999487, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme", - "move": 1, - "theme": "https://tordans.github.io/MapComplete-ThemeHelper/OSM-Berlin-Themes/man_made-walter_well-status-checker/theme.json", - "answer": 3, - "locale": "de", - "imagery": "CartoDB.Voyager", - "deletion": 1, - "move:node/5239619476": "improve_accuracy", - "deletion:node/5239619476": "duplicate" - }, - "id": 124191399 - } - }, - { - "id": 124190665, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3736063, - 50.8380947 - ], - [ - 4.3736063, - 50.8380947 - ], - [ - 4.3736063, - 50.8380947 - ], - [ - 4.3736063, - 50.8380947 - ], - [ - 4.3736063, - 50.8380947 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "oeuropeu", - "uid": "16088041", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-28T14:49:40Z", - "reviewed_features": [], - "tag_changes": { - "door": [ - "sliding" - ], - "width": [ - "2 meters" - ], - "entrance": [ - "secondary", - "staircase" - ], - "kerb:height": [ - "0" - ], - "automatic_door": [ - "motion" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/onwheels.html", - "theme": "onwheels", - "answer": 6, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 124190665 - } - }, - { - "id": 124188012, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5273918, - 50.8323992 - ], - [ - 4.5378041, - 50.8323992 - ], - [ - 4.5378041, - 50.8347759 - ], - [ - 4.5273918, - 50.8347759 - ], - [ - 4.5273918, - 50.8323992 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "jolien1234", - "uid": "16659925", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-28T13:44:01Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 2, - "modify": 0, - "delete": 0, - "area": 0.000024746913409991, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 2, - "locale": "nl", - "imagery": "AGIV" - }, - "id": 124188012 - } - }, - { - "id": 124186807, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7073079, - -34.6667118 - ], - [ - -58.7072881, - -34.6667118 - ], - [ - -58.7072881, - -34.6666371 - ], - [ - -58.7073079, - -34.6666371 - ], - [ - -58.7073079, - -34.6667118 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AgusQui", - "uid": "331218", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-28T13:18:56Z", - "reviewed_features": [], - "tag_changes": { - "railway": [ - "crossing" - ], - "supervised": [ - "no" - ], - "crossing:bell": [ - "no" - ], - "crossing:light": [ - "no" - ], - "crossing:chicane": [ - "yes" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 1.47906000027951e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "answer": 9, - "locale": "es", - "imagery": "osm", - "change_within_25m": 9 - }, - "id": 124186807 - } - }, - { - "id": 124186733, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -58.7178971, - -34.6669765 - ], - [ - -58.7073079, - -34.6669765 - ], - [ - -58.7073079, - -34.6659937 - ], - [ - -58.7178971, - -34.6659937 - ], - [ - -58.7178971, - -34.6669765 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "AgusQui", - "uid": "331218", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-28T13:16:50Z", - "reviewed_features": [], - "tag_changes": { - "railway": [ - "crossing" - ], - "supervised": [ - "no" - ], - "crossing:bell": [ - "no" - ], - "crossing:light": [ - "no" - ], - "crossing:chicane": [ - "yes" - ] - }, - "create": 0, - "modify": 8, - "delete": 0, - "area": 0.000010407065759952, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/theme.html", - "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", - "answer": 20, - "locale": "es", - "imagery": "osm", - "change_within_25m": 8, - "change_within_50m": 4, - "change_within_500m": 8 - }, - "id": 124186733 - } - }, - { - "id": 124184873, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -86.1297253, - 39.976458 - ], - [ - -86.1297253, - 39.976458 - ], - [ - -86.1297253, - 39.976458 - ], - [ - -86.1297253, - 39.976458 - ], - [ - -86.1297253, - 39.976458 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Kanellar", - "uid": "16249964", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cyclofix", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-28T12:30:36Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "drinking_water" - ] - }, - "create": 1, - "modify": 0, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cyclofix.html", - "theme": "cyclofix", - "answer": 1, - "create": 1, - "locale": "en", - "imagery": "CartoDB.Voyager", - "change_over_5000m": 1, - "change_within_100m": 1 - }, - "id": 124184873 - } - }, - { - "id": 124184638, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.5185566, - 50.8258715 - ], - [ - 4.5298943, - 50.8258715 - ], - [ - 4.5298943, - 50.8309804 - ], - [ - 4.5185566, - 50.8309804 - ], - [ - 4.5185566, - 50.8258715 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "jolien1234", - "uid": "16659925", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-28T12:26:09Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 28, - "modify": 0, - "delete": 1, - "area": 0.0000579231755300346, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen.html", - "theme": "toerisme_vlaanderen", - "create": 28, - "locale": "nl", - "imagery": "AGIV", - "deletion": 1, - "deletion:node/9917036417": "testing point" - }, - "id": 124184638 - } - }, - { - "id": 124184509, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3495888, - 50.8658337 - ], - [ - 4.3497872, - 50.8658337 - ], - [ - 4.3497872, - 50.8659881 - ], - [ - 4.3495888, - 50.8659881 - ], - [ - 4.3495888, - 50.8658337 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-28T12:23:31Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "image": [ - "https://i.imgur.com/s7HAZYt.jpg" - ], - "amenity": [ - "toilets" - ], - "wheelchair": [ - "designated", - "yes" - ], - "kerb:height": [ - "0" - ], - "automatic_door": [ - "no" - ], - "changing_table": [ - "no" - ], - "toilets:handwashing": [ - "yes" - ], - "toilets:paper_supplied": [ - "yes" - ] - }, - "create": 0, - "modify": 7, - "delete": 0, - "area": 3.06329599998326e-8, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/onwheels.html", - "theme": "onwheels", - "answer": 10, - "locale": "en", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 11 - }, - "id": 124184509 - } - }, - { - "id": 124183852, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 12.9620174, - 48.8337165 - ], - [ - 12.9620174, - 48.8337165 - ], - [ - 12.9620174, - 48.8337165 - ], - [ - 12.9620174, - 48.8337165 - ], - [ - 12.9620174, - 48.8337165 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "APneunzehn74", - "uid": "12180500", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-28T12:12:28Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 1, - "modify": 4, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/aed.html", - "theme": "aed", - "answer": 5, - "create": 1, - "locale": "de", - "imagery": "osm", - "add-image": 2, - "change_over_5000m": 1, - "change_within_25m": 2, - "change_within_50m": 5 - }, - "id": 124183852 - } - }, - { - "id": 124182426, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 13.8024518, - 51.4654646 - ], - [ - 13.9061916, - 51.4654646 - ], - [ - 13.9061916, - 51.4944368 - ], - [ - 13.8024518, - 51.4944368 - ], - [ - 13.8024518, - 51.4654646 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 40, - "name": "New mapper" - } - ], - "tags": [], - "features": [], - "user": "duracellakku", - "uid": "7590124", - "editor": "MapComplete 0.7.2l", - "comment": "Adding data with #MapComplete for theme #waldbrand", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-28T11:42:00Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 21, - "modify": 18, - "delete": 0, - "area": 0.00300557023356055, - "is_suspect": true, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "waldbrand-app.de", - "theme": "waldbrand", - "imagery": "osm", - "language": "de", - "theme-creator": "Sebastian Kürten" - }, - "id": 124182426 - } - }, - { - "id": 124175666, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.5922915, - 49.2021449 - ], - [ - 16.6050691, - 49.2021449 - ], - [ - 16.6050691, - 49.2192867 - ], - [ - 16.5922915, - 49.2192867 - ], - [ - 16.5922915, - 49.2021449 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "martin-kokos", - "uid": "297918", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #cycle_infra", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-28T09:18:04Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "cycleway" - ], - "separation": [ - "kerb" - ], - "smoothness": [ - "good" - ] - }, - "create": 0, - "modify": 5, - "delete": 0, - "area": 0.000219031063679962, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/cycle_infra.html", - "theme": "cycle_infra", - "answer": 10, - "locale": "en", - "imagery": "CartoDB.Voyager" - }, - "id": 124175666 - } - }, - { - "id": 124174886, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 2.8849652, - 51.2192955 - ], - [ - 2.8849652, - 51.2192955 - ], - [ - 2.8849652, - 51.2192955 - ], - [ - 2.8849652, - 51.2192955 - ], - [ - 2.8849652, - 51.2192955 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "joost schouppe", - "uid": "67832", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-28T09:03:38Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "bench" - ] - }, - "create": 1, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "answer": 3, - "import": 1, - "locale": "nl", - "imagery": "osm", - "change_over_5000m": 4, - "import:node/9916617531": "source: https://osm.org/note/3261957" - }, - "id": 124174886 - } - }, - { - "id": 124174804, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3496107, - 50.8658363 - ], - [ - 4.3496107, - 50.8658363 - ], - [ - 4.3496107, - 50.8658363 - ], - [ - 4.3496107, - 50.8658363 - ], - [ - 4.3496107, - 50.8658363 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-28T09:01:48Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/2ews4Q8.jpg" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/onwheels.html", - "theme": "onwheels", - "locale": "nl", - "imagery": "CartoDB.Voyager", - "add-image": 1, - "change_within_25m": 1 - }, - "id": 124174804 - } - }, - { - "id": 124174727, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.3496107, - 50.8658363 - ], - [ - 4.3496107, - 50.8658363 - ], - [ - 4.3496107, - 50.8658363 - ], - [ - 4.3496107, - 50.8658363 - ], - [ - 4.3496107, - 50.8658363 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Robin van der Linde", - "uid": "5093765", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #onwheels", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-28T09:00:07Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 2, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://pietervdvn.github.io/mc/develop/onwheels.html", - "theme": "onwheels", - "answer": 3, - "locale": "nl", - "imagery": "CartoDB.Voyager", - "change_within_25m": 3 - }, - "id": 124174727 - } - }, - { - "id": 124172801, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 16.0939751, - 49.0640208 - ], - [ - 16.0940036, - 49.0640208 - ], - [ - 16.0940036, - 49.0640845 - ], - [ - 16.0939751, - 49.0640845 - ], - [ - 16.0939751, - 49.0640208 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-28T08:21:01Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no" - ], - "access": [ - "customers" - ], - "amenity": [ - "toilets" - ], - "wheelchair": [ - "no" - ], - "opening_hours": [ - "24/7" - ], - "toilets:position": [ - "seated;urinal" - ], - "toilets:paper_supplied": [ - "yes" - ] - }, - "create": 0, - "modify": 3, - "delete": 0, - "area": 1.81544999989512e-9, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 7, - "locale": "de", - "imagery": "osm", - "change_within_25m": 2 - }, - "id": 124172801 - } - }, - { - "id": 124169578, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6028212, - 50.7443664 - ], - [ - 3.6028212, - 50.7443664 - ], - [ - 3.6028212, - 50.7443664 - ], - [ - 3.6028212, - 50.7443664 - ], - [ - 3.6028212, - 50.7443664 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #bookcases", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-28T07:01:47Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "public_bookcase" - ], - "image:0": [ - "https://i.imgur.com/nK4IEEb.jpg" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/bookcases.html", - "theme": "bookcases", - "locale": "nl", - "imagery": "osm", - "add-image": 1 - }, - "id": 124169578 - } - }, - { - "id": 124169208, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.2901268, - 50.8913499 - ], - [ - 3.2918711, - 50.8913499 - ], - [ - 3.2918711, - 50.8936563 - ], - [ - 3.2901268, - 50.8936563 - ], - [ - 3.2901268, - 50.8913499 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Thibaultmol", - "uid": "2916921", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #grb", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-28T06:50:58Z", - "reviewed_features": [], - "tag_changes": { - "building": [ - "house", - "yes", - "roof" - ] - }, - "create": 106, - "modify": 0, - "delete": 0, - "area": 0.00000402305352000318, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/grb.html", - "theme": "grb", - "import": 54, - "locale": "nl", - "imagery": "AGIVFlandersGRB" - }, - "id": 124169208 - } - }, - { - "id": 124166766, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 3.6685619, - 50.7403084 - ], - [ - 3.7431513, - 50.7403084 - ], - [ - 3.7431513, - 50.7462567 - ], - [ - 3.6685619, - 50.7462567 - ], - [ - 3.6685619, - 50.7403084 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "vjyblauw", - "uid": "2844254", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-28T05:41:21Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/9sxVNwy.jpg", - "https://i.imgur.com/X8mdMpA.jpg", - "https://i.imgur.com/MiM2BO9.jpg", - "https://i.imgur.com/nJ35NDo.jpg", - "https://i.imgur.com/bkh1lMH.jpg", - "https://i.imgur.com/SYtqPEB.jpg" - ], - "amenity": [ - "bench" - ], - "leisure": [ - "picnic_table" - ] - }, - "create": 0, - "modify": 6, - "delete": 0, - "area": 0.000443680128020003, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toerisme_vlaanderen", - "theme": "toerisme_vlaanderen", - "locale": "nl", - "imagery": "osm", - "add-image": 6 - }, - "id": 124166766 - } - }, - { - "id": 124165747, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.4829448, - 49.2170834 - ], - [ - 15.8722507, - 49.2170834 - ], - [ - 15.8722507, - 49.2904159 - ], - [ - 15.4829448, - 49.2904159 - ], - [ - 15.4829448, - 49.2170834 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #toilets", - "comments_count": 0, - "source": "survey", - "imagery_used": "Not reported", - "date": "2022-07-28T05:10:14Z", - "reviewed_features": [], - "tag_changes": { - "fee": [ - "no", - "yes" - ], - "image": [ - "https://i.imgur.com/49naPmw.jpg", - "https://i.imgur.com/CMCFZ8p.jpg" - ], - "access": [ - "yes" - ], - "charge": [ - "5" - ], - "amenity": [ - "toilets" - ], - "opening_hours": [ - "Mo-Fr 07:00-17:00;Sa-Su 08:00-17:00", - "Mo-Fr 17:00-18:00; Sa, Su 08:00-17:00" - ], - "toilets:position": [ - "seated;urinal" - ], - "toilets:handwashing": [ - "yes" - ], - "toilets:paper_supplied": [ - "yes" - ] - }, - "create": 0, - "modify": 7, - "delete": 0, - "area": 0.0285487749117498, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/toilets.html", - "theme": "toilets", - "answer": 12, - "locale": "de", - "imagery": "osm", - "add-image": 2 - }, - "id": 124165747 - } - }, - { - "id": 124165572, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -117.1965774, - 47.6384083 - ], - [ - -117.1537622, - 47.6384083 - ], - [ - -117.1537622, - 47.6801441 - ], - [ - -117.1965774, - 47.6801441 - ], - [ - -117.1965774, - 47.6384083 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [ - { - "id": 87, - "name": "Irrelevant tags on highway" - } - ], - "tags": [], - "features": [ - { - "url": "way-457362965", - "name": "North Flora Road", - "osm_id": 457362965, - "reasons": [ - 87 - ], - "version": 4, - "primary_tags": { - "highway": "secondary" - } - }, - { - "url": "way-457362963", - "name": "North Flora Road", - "osm_id": 457362963, - "reasons": [ - 87 - ], - "version": 2, - "primary_tags": { - "highway": "secondary" - } - }, - { - "url": "way-457362964", - "name": "North Flora Road", - "osm_id": 457362964, - "reasons": [ - 87 - ], - "version": 3, - "primary_tags": { - "highway": "secondary" - } - } - ], - "user": "Coloradohusky", - "uid": "16345213", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #maxspeed", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-28T05:04:12Z", - "reviewed_features": [], - "tag_changes": { - "highway": [ - "residential", - "secondary" - ], - "maxspeed": [ - "25 mph", - "35 mph", - "30 mph" - ] - }, - "create": 0, - "modify": 12, - "delete": 0, - "area": 0.0017869266241596, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/maxspeed.html", - "theme": "maxspeed", - "answer": 12, - "locale": "en", - "imagery": "osm" - }, - "id": 124165572 - } - }, - { - "id": 124163829, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 15.8772508, - 49.2148279 - ], - [ - 15.8772508, - 49.2148279 - ], - [ - 15.8772508, - 49.2148279 - ], - [ - 15.8772508, - 49.2148279 - ], - [ - 15.8772508, - 49.2148279 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "5R-MFT", - "uid": "3417876", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #charging_stations", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-28T03:37:45Z", - "reviewed_features": [], - "tag_changes": { - "image": [ - "https://i.imgur.com/oiIgdfM.jpg" - ], - "amenity": [ - "charging_station" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 0, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/charging_stations.html", - "theme": "charging_stations", - "locale": "de", - "imagery": "CartoDB.Voyager", - "add-image": 1 - }, - "id": 124163829 - } - }, - { - "id": 124163106, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -117.2126657, - 47.6566645 - ], - [ - -117.2122407, - 47.6566645 - ], - [ - -117.2122407, - 47.6568999 - ], - [ - -117.2126657, - 47.6568999 - ], - [ - -117.2126657, - 47.6566645 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Coloradohusky", - "uid": "16345213", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-28T02:36:48Z", - "reviewed_features": [], - "tag_changes": { - "amenity": [ - "veterinary" - ], - "building": [ - "yes" - ], - "opening_hours": [ - "Mo-Fr 07:00-19:00;Sa 08:00-17:00;Su 12:00-17:00" - ] - }, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.00045000002119e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 124163106 - } - }, - { - "id": 124163098, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -117.2126657, - 47.6566645 - ], - [ - -117.2122407, - 47.6566645 - ], - [ - -117.2122407, - 47.6568999 - ], - [ - -117.2126657, - 47.6568999 - ], - [ - -117.2126657, - 47.6566645 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Coloradohusky", - "uid": "16345213", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #pets", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-28T02:35:27Z", - "reviewed_features": [], - "tag_changes": {}, - "create": 0, - "modify": 1, - "delete": 0, - "area": 1.00045000002119e-7, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/pets.html", - "theme": "pets", - "answer": 1, - "locale": "en", - "imagery": "osm" - }, - "id": 124163098 - } - }, - { - "id": 124163090, - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - -70.6312953, - -33.4471609 - ], - [ - -70.6033341, - -33.4471609 - ], - [ - -70.6033341, - -33.4245599 - ], - [ - -70.6312953, - -33.4245599 - ], - [ - -70.6312953, - -33.4471609 - ] - ] - ] - }, - "properties": { - "check_user": null, - "reasons": [], - "tags": [], - "features": [], - "user": "Awo", - "uid": "196556", - "editor": "MapComplete 0.23.0", - "comment": "Adding data with #MapComplete for theme #artwork", - "comments_count": 0, - "source": "Not reported", - "imagery_used": "Not reported", - "date": "2022-07-28T02:34:31Z", - "reviewed_features": [], - "tag_changes": { - "tourism": [ - "artwork" - ] - }, - "create": 2, - "modify": 5, - "delete": 0, - "area": 0.000631951081200207, - "is_suspect": false, - "harmful": null, - "checked": false, - "check_date": null, - "metadata": { - "host": "https://mapcomplete.osm.be/artwork.html", - "theme": "artwork", - "answer": 3, - "create": 2, - "locale": "zh_Hans", - "imagery": "osm", - "add-image": 2 - }, - "id": 124163090 - } - } - ] -} \ No newline at end of file diff --git a/UI/Base/VariableUIElement.ts b/UI/Base/VariableUIElement.ts index 3163ac39b5..5093b85d1d 100644 --- a/UI/Base/VariableUIElement.ts +++ b/UI/Base/VariableUIElement.ts @@ -3,9 +3,9 @@ import BaseUIElement from "../BaseUIElement"; import Combine from "./Combine"; export class VariableUiElement extends BaseUIElement { - private readonly _contents: Store; + private readonly _contents?: Store; - constructor(contents: Store) { + constructor(contents?: Store) { super(); this._contents = contents; } diff --git a/UI/BigComponents/BackgroundSelector.ts b/UI/BigComponents/BackgroundSelector.ts index f5d1a14150..6d4f6cdf8a 100644 --- a/UI/BigComponents/BackgroundSelector.ts +++ b/UI/BigComponents/BackgroundSelector.ts @@ -3,11 +3,15 @@ import Translations from "../i18n/Translations"; import State from "../../State"; import BaseLayer from "../../Models/BaseLayer"; import {VariableUiElement} from "../Base/VariableUIElement"; +import {Store} from "../../Logic/UIEventSource"; export default class BackgroundSelector extends VariableUiElement { - constructor() { - const available = State.state.availableBackgroundLayers.map(available => { + constructor(state: {availableBackgroundLayers?:Store} ) { + const available = state.availableBackgroundLayers?.map(available => { + if(available === undefined){ + return undefined + } const baseLayers: { value: BaseLayer, shown: string }[] = []; for (const i in available) { if (!available.hasOwnProperty(i)) { @@ -21,8 +25,8 @@ export default class BackgroundSelector extends VariableUiElement { ) super( - available.map(baseLayers => { - if (baseLayers.length <= 1) { + available?.map(baseLayers => { + if (baseLayers === undefined || baseLayers.length <= 1) { return undefined; } return new DropDown(Translations.t.general.backgroundMap.Clone(), baseLayers, State.state.backgroundLayer, { diff --git a/UI/BigComponents/FilterView.ts b/UI/BigComponents/FilterView.ts index 59bd73d080..cf3b406a72 100644 --- a/UI/BigComponents/FilterView.ts +++ b/UI/BigComponents/FilterView.ts @@ -9,7 +9,6 @@ import {Translation} from "../i18n/Translation"; import Svg from "../../Svg"; import {ImmutableStore, Store, UIEventSource} from "../../Logic/UIEventSource"; import BaseUIElement from "../BaseUIElement"; -import State from "../../State"; import FilteredLayer, {FilterState} from "../../Models/FilteredLayer"; import BackgroundSelector from "./BackgroundSelector"; import FilterConfig from "../../Models/ThemeConfig/FilterConfig"; @@ -21,25 +20,33 @@ import {TagUtils} from "../../Logic/Tags/TagUtils"; import {InputElement} from "../Input/InputElement"; import {DropDown} from "../Input/DropDown"; import {FixedUiElement} from "../Base/FixedUiElement"; +import BaseLayer from "../../Models/BaseLayer"; +import Loc from "../../Models/Loc"; export default class FilterView extends VariableUiElement { - constructor(filteredLayer: UIEventSource, - tileLayers: { config: TilesourceConfig, isDisplayed: UIEventSource }[]) { + constructor(filteredLayer: Store, + tileLayers: { config: TilesourceConfig, isDisplayed: UIEventSource }[], + state: { + availableBackgroundLayers?: Store, + featureSwitchBackgroundSelection?: UIEventSource, + featureSwitchIsDebugging?: UIEventSource, + locationControl?: UIEventSource + }) { const backgroundSelector = new Toggle( - new BackgroundSelector(), + new BackgroundSelector(state), undefined, - State.state.featureSwitchBackgroundSelection + state.featureSwitchBackgroundSelection ?? new ImmutableStore(false) ) super( filteredLayer.map((filteredLayers) => { // Create the views which toggle layers (and filters them) ... let elements = filteredLayers - ?.map(l => FilterView.createOneFilteredLayerElement(l, State.state)?.SetClass("filter-panel")) + ?.map(l => FilterView.createOneFilteredLayerElement(l, state)?.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))) + elements = elements.concat(tileLayers.map(tl => FilterView.createOverlayToggle(state, tl))) // ... and add the dropdown to select a different background return elements.concat(backgroundSelector); } @@ -47,7 +54,7 @@ export default class FilterView extends VariableUiElement { ); } - private static createOverlayToggle(config: { config: TilesourceConfig, isDisplayed: UIEventSource }) { + private static createOverlayToggle(state: { locationControl?: UIEventSource }, config: { config: TilesourceConfig, isDisplayed: UIEventSource }) { const iconStyle = "width:1.5rem;height:1.5rem;margin-left:1.25rem;flex-shrink: 0;"; @@ -66,7 +73,7 @@ export default class FilterView extends VariableUiElement { Translations.t.general.layerSelection.zoomInToSeeThisLayer .SetClass("alert") .SetStyle("display: block ruby;width:min-content;"), - State.state.locationControl.map(location => location.zoom >= config.config.minzoom) + state.locationControl?.map(location => location.zoom >= config.config.minzoom) ?? new ImmutableStore(false) ) @@ -88,13 +95,14 @@ export default class FilterView extends VariableUiElement { ); } - private static createOneFilteredLayerElement(filteredLayer: FilteredLayer, state: {featureSwitchIsDebugging: UIEventSource}) { + private static createOneFilteredLayerElement(filteredLayer: FilteredLayer, + state: { featureSwitchIsDebugging?: Store, locationControl?: Store }) { if (filteredLayer.layerDef.name === undefined) { // Name is not defined: we hide this one return new Toggle( - new FixedUiElement(filteredLayer?.layerDef?.id ).SetClass("block") , + new FixedUiElement(filteredLayer?.layerDef?.id).SetClass("block"), undefined, - state?.featureSwitchIsDebugging + state?.featureSwitchIsDebugging ?? new ImmutableStore(false) ); } const iconStyle = "width:1.5rem;height:1.5rem;margin-left:1.25rem;flex-shrink: 0;"; @@ -118,7 +126,7 @@ export default class FilterView extends VariableUiElement { Translations.t.general.layerSelection.zoomInToSeeThisLayer .SetClass("alert") .SetStyle("display: block ruby;width:min-content;"), - State.state.locationControl.map(location => location.zoom >= filteredLayer.layerDef.minzoom) + state?.locationControl?.map(location => location.zoom >= filteredLayer.layerDef.minzoom) ?? new ImmutableStore(false) ) @@ -135,7 +143,7 @@ export default class FilterView extends VariableUiElement { .onClick(() => filteredLayer.isDisplayed.setData(true)); - const filterPanel: BaseUIElement = FilterView.createFilterPanel(filteredLayer) + const filterPanel: BaseUIElement = new LayerFilterPanel(state, filteredLayer) return new Toggle( @@ -144,8 +152,11 @@ export default class FilterView extends VariableUiElement { filteredLayer.isDisplayed ); } +} - private static createFilterPanel(flayer: FilteredLayer): BaseUIElement { +export class LayerFilterPanel extends Combine { + + public constructor(state: any, flayer: FilteredLayer) { const layer = flayer.layerDef if (layer.filters.length === 0) { return undefined; @@ -156,7 +167,7 @@ export default class FilterView extends VariableUiElement { for (const filter of layer.filters) { - const [ui, actualTags] = FilterView.createFilter(filter) + const [ui, actualTags] = LayerFilterPanel.createFilter(state, filter) ui.SetClass("mt-1") toShow.push(ui) @@ -170,13 +181,12 @@ export default class FilterView extends VariableUiElement { } - return new Combine(toShow) - .SetClass("flex flex-col p-2 ml-12 pl-1 pt-0 layer-filters") - + super(toShow) + this.SetClass("flex flex-col p-2 ml-12 pl-1 pt-0 layer-filters") } // Filter which uses one or more textfields - private static createFilterWithFields(filterConfig: FilterConfig): [BaseUIElement, UIEventSource] { + private static createFilterWithFields(state: any, filterConfig: FilterConfig): [BaseUIElement, UIEventSource] { const filter = filterConfig.options[0] const mappings = new Map() @@ -197,7 +207,7 @@ export default class FilterView extends VariableUiElement { allFields.push(field) allValid = allValid.map(previous => previous && field.IsValid(stable.data) && stable.data !== "", [stable]) } - const tr = new SubstitutedTranslation(filter.question, new UIEventSource({id: filterConfig.id}), State.state, mappings) + const tr = new SubstitutedTranslation(filter.question, new UIEventSource({id: filterConfig.id}), state, mappings) const trigger: Store = allValid.map(isValid => { if (!isValid) { return undefined @@ -223,15 +233,15 @@ export default class FilterView extends VariableUiElement { state: JSON.stringify(props) } }, [properties]) - + const settableFilter = new UIEventSource(undefined) trigger.addCallbackAndRun(state => settableFilter.setData(state)) settableFilter.addCallback(state => { - if(state === undefined){ + if (state === undefined) { // still initializing return } - if(state.currentFilter === undefined){ + if (state.currentFilter === undefined) { allFields.forEach(f => f.GetValue().setData(undefined)); } }) @@ -299,18 +309,18 @@ export default class FilterView extends VariableUiElement { )] } - private static createFilter(filterConfig: FilterConfig): [BaseUIElement, UIEventSource] { + private static createFilter(state: {}, filterConfig: FilterConfig): [BaseUIElement, UIEventSource] { if (filterConfig.options[0].fields.length > 0) { - return FilterView.createFilterWithFields(filterConfig) + return LayerFilterPanel.createFilterWithFields(state, filterConfig) } if (filterConfig.options.length === 1) { - return FilterView.createCheckboxFilter(filterConfig) + return LayerFilterPanel.createCheckboxFilter(filterConfig) } - const filter = FilterView.createMultiFilter(filterConfig) + const filter = LayerFilterPanel.createMultiFilter(filterConfig) filter[0].SetClass("pl-2") return filter } diff --git a/UI/BigComponents/LeftControls.ts b/UI/BigComponents/LeftControls.ts index 30af72531e..a53f51df38 100644 --- a/UI/BigComponents/LeftControls.ts +++ b/UI/BigComponents/LeftControls.ts @@ -93,7 +93,7 @@ export default class LeftControls extends Combine { new ScrollableFullScreen( () => Translations.t.general.layerSelection.title.Clone(), () => - new FilterView(state.filteredLayers, state.overlayToggles).SetClass( + new FilterView(state.filteredLayers, state.overlayToggles, state).SetClass( "block p-1" ), "filters", diff --git a/UI/BigComponents/TagRenderingChart.ts b/UI/BigComponents/TagRenderingChart.ts index 32aa49f0c3..cce769cafb 100644 --- a/UI/BigComponents/TagRenderingChart.ts +++ b/UI/BigComponents/TagRenderingChart.ts @@ -3,6 +3,8 @@ import TagRenderingConfig from "../../Models/ThemeConfig/TagRenderingConfig"; import {ChartConfiguration} from 'chart.js'; import Combine from "../Base/Combine"; import {TagUtils} from "../../Logic/Tags/TagUtils"; +import {Utils} from "../../Utils"; +import {OsmFeature} from "../../Models/OsmFeature"; export interface TagRenderingChartOptions { @@ -10,6 +12,115 @@ export interface TagRenderingChartOptions { sort?: boolean } +export class StackedRenderingChart extends ChartJs { + constructor(tr: TagRenderingConfig, features: (OsmFeature & {properties : {date: string}})[], period: "day" | "month" = "day") { + const {labels, data} = TagRenderingChart.extractDataAndLabels(tr, features, { + sort: true + }) + if (labels === undefined || data === undefined) { + throw ("No labels or data given...") + } + // labels: ["cyclofix", "buurtnatuur", ...]; data : [ ["cyclofix-changeset", "cyclofix-changeset", ...], ["buurtnatuur-cs", "buurtnatuur-cs"], ... ] + + console.log("LABELS:", labels, "DATA:", data) + + const datasets: { label: string /*themename*/, data: number[]/*counts per day*/, backgroundColor: string }[] = [] + const allDays = StackedRenderingChart.getAllDays(features) + let trimmedDays = allDays.map(d => d.substr(0, d.indexOf("T"))) + + if (period === "month") { + trimmedDays = trimmedDays.map(d => d.substr(0, 7)) + } + trimmedDays = Utils.Dedup(trimmedDays) + + for (let i = 0; i < labels.length; i++) { + const label = labels[i]; + const changesetsForTheme = data[i] + const perDay: Record = {} + for (const changeset of changesetsForTheme) { + const csDate = new Date(changeset.properties.date) + Utils.SetMidnight(csDate) + let str = csDate.toISOString(); + if (period === "month") { + csDate.setUTCDate(1) + str = csDate.toISOString().substr(0, 7); + } + if (perDay[str] === undefined) { + perDay[str] = [changeset] + } else { + perDay[str].push(changeset) + } + } + + const countsPerDay: number[] = [] + for (let i = 0; i < trimmedDays.length; i++) { + const day = trimmedDays[i]; + countsPerDay[i] = perDay[day]?.length ?? 0 + } + datasets.push({ + data: countsPerDay, + backgroundColor: TagRenderingChart.borderColors[i % TagRenderingChart.borderColors.length], + label + }) + } + + const perDayData = { + labels: trimmedDays, + datasets + } + + const config = { + type: 'bar', + data: perDayData, + options: { + responsive: true, + legend: { + display: false + }, + scales: { + x: { + stacked: true, + }, + y: { + stacked: true + } + } + } + } + super(config) + } + + public static getAllDays(features: (OsmFeature & {properties : {date: string}})[]): string[] { + let earliest: Date = undefined + let latest: Date = undefined; + let allDates = new Set(); + features.forEach((value, key) => { + const d = new Date(value.properties.date); + Utils.SetMidnight(d) + + if (earliest === undefined) { + earliest = d + } else if (d < earliest) { + earliest = d + } + if (latest === undefined) { + latest = d + } else if (d > latest) { + latest = d + } + allDates.add(d.toISOString()) + }) + + while (earliest < latest) { + earliest.setDate(earliest.getDate() + 1) + allDates.add(earliest.toISOString()) + } + const days = Array.from(allDates) + days.sort() + return days + } +} + export default class TagRenderingChart extends Combine { private static readonly unkownColor = 'rgba(128, 128, 128, 0.2)' @@ -30,7 +141,7 @@ export default class TagRenderingChart extends Combine { 'rgba(255, 159, 64, 0.2)' ] - private static readonly borderColors = [ + public static readonly borderColors = [ 'rgba(255, 99, 132, 1)', 'rgba(54, 162, 235, 1)', 'rgba(255, 206, 86, 1)', diff --git a/UI/DashboardGui.ts b/UI/DashboardGui.ts index d657f9667a..266747954c 100644 --- a/UI/DashboardGui.ts +++ b/UI/DashboardGui.ts @@ -152,7 +152,7 @@ export default class DashboardGui { }) const filterView = new Lazy(() => { - return new FilterView(state.filteredLayers, state.overlayToggles) + return new FilterView(state.filteredLayers, state.overlayToggles, state) }); const welcome = new Combine([state.layoutToUse.description, state.layoutToUse.descriptionTail]) self.currentView.setData({title: state.layoutToUse.title, contents: welcome}) diff --git a/UI/Popup/DeleteWizard.ts b/UI/Popup/DeleteWizard.ts index 373a22dc19..5bd7c3228d 100644 --- a/UI/Popup/DeleteWizard.ts +++ b/UI/Popup/DeleteWizard.ts @@ -232,7 +232,7 @@ export default class DeleteWizard extends Toggle { )).SetClass("block") } - private static constructMultipleChoice(config: DeleteConfig, tagsSource: UIEventSource, state: FeaturePipelineState): + private static constructMultipleChoice(config: DeleteConfig, tagsSource: UIEventSource>, state: FeaturePipelineState): InputElement<{ deleteReason: string } | { retagTo: TagsFilter }> { const elements: InputElement<{ deleteReason: string } | { retagTo: TagsFilter }>[ ] = [] diff --git a/UI/StatisticsGUI.ts b/UI/StatisticsGUI.ts index 36e22e1b55..51ba553ad9 100644 --- a/UI/StatisticsGUI.ts +++ b/UI/StatisticsGUI.ts @@ -3,15 +3,15 @@ */ import {UIEventSource} from "../Logic/UIEventSource"; import {VariableUiElement} from "./Base/VariableUIElement"; -import ChartJs from "./Base/ChartJs"; import Loading from "./Base/Loading"; import {Utils} from "../Utils"; import Combine from "./Base/Combine"; import BaseUIElement from "./BaseUIElement"; -import TagRenderingChart from "./BigComponents/TagRenderingChart"; +import TagRenderingChart, {StackedRenderingChart} from "./BigComponents/TagRenderingChart"; import TagRenderingConfig from "../Models/ThemeConfig/TagRenderingConfig"; -import {ChartConfiguration} from "chart.js"; -import {FixedUiElement} from "./Base/FixedUiElement"; +import FilterView, {LayerFilterPanel} from "./BigComponents/FilterView"; +import FilteredLayer, {FilterState} from "../Models/FilteredLayer"; +import {AllKnownLayouts} from "../Customizations/AllKnownLayouts"; export default class StatisticsGUI { @@ -22,6 +22,8 @@ export default class StatisticsGUI { public setup(): void { + const appliedFilters = new UIEventSource>(new Map()) + const layer = AllKnownLayouts.allKnownLayouts.get("mapcomplete-changes").layers[0] new VariableUiElement(this.index.map(paths => { if (paths === undefined) { @@ -43,17 +45,45 @@ export default class StatisticsGUI { return new Combine([ new VariableUiElement(downloaded.map(dl => "Downloaded " + dl.length + " items")), new VariableUiElement(downloaded.map(l => [...l]).stabilized(250).map(downloaded => { - const overview = ChangesetsOverview.fromDirtyData([].concat(...downloaded.map(d => d.features))) - .filter(cs => new Date(cs.properties.date) > new Date(2022,6,1)) - + let overview = ChangesetsOverview.fromDirtyData([].concat(...downloaded.map(d => d.features))) // return overview.breakdownPerDay(overview.themeBreakdown) - return overview.breakdownPer(overview.themeBreakdown, "month") - })).SetClass("block w-full h-full") + + if (appliedFilters.data.size > 0) { + appliedFilters.data.forEach((filterSpec) => { + const tf = filterSpec?.currentFilter + if (tf === undefined) { + return + } + overview = overview.filter(cs => tf.matchesProperties(cs.properties)) + }) + } + + if (downloaded.length === 0) { + return "No data matched the filter" + } + return new Combine(layer.tagRenderings.map(tr => { + + try { + + return new StackedRenderingChart(tr, overview._meta, "month") + } catch (e) { + return "Could not create stats for " + tr.id + } + }) + ) + }, [appliedFilters])).SetClass("block w-full h-full") ]).SetClass("block w-full h-full") })).SetClass("block w-full h-full").AttachTo("maindiv") + const filteredLayer = { + appliedFilters, + layerDef: layer, + isDisplayed: new UIEventSource(true) + } + new LayerFilterPanel(undefined, filteredLayer).AttachTo("extradiv") + } } @@ -83,9 +113,9 @@ class ChangesetsOverview { "entrances": "indoor", "https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json": "geveltuintjes" } - private readonly _meta: ChangeSetData[]; + public readonly _meta: ChangeSetData[]; - public static fromDirtyData(meta: ChangeSetData[]){ + public static fromDirtyData(meta: ChangeSetData[]) { return new ChangesetsOverview(meta.map(cs => ChangesetsOverview.cleanChangesetData(cs))) } @@ -139,99 +169,6 @@ class ChangesetsOverview { ) } - public getAllDays(perMonth = false): string[] { - let earliest: Date = undefined - let latest: Date = undefined; - let allDates = new Set(); - this._meta.forEach((value, key) => { - const d = new Date(value.properties.date); - Utils.SetMidnight(d) - if(perMonth){ - d.setUTCDate(1) - } - if (earliest === undefined) { - earliest = d - } else if (d < earliest) { - earliest = d - } - if (latest === undefined) { - latest = d - } else if (d > latest) { - latest = d - } - allDates.add(d.toISOString()) - }) - - while (earliest < latest) { - earliest.setDate(earliest.getDate() + 1) - allDates.add(earliest.toISOString()) - } - const days = Array.from(allDates) - days.sort() - return days - } - - public breakdownPer(tr: TagRenderingConfig, period: "day" | "month" = "day" ): BaseUIElement { - const {labels, data} = TagRenderingChart.extractDataAndLabels(tr, this._meta, { - sort: true - }) - if (labels === undefined || data === undefined) { - return new FixedUiElement("No labels or data given...") - } - // labels: ["cyclofix", "buurtnatuur", ...]; data : [ ["cyclofix-changeset", "cyclofix-changeset", ...], ["buurtnatuur-cs", "buurtnatuur-cs"], ... ] - - const datasets: { label: string /*themename*/, data: number[]/*counts per day*/, backgroundColor: string }[] = [] - - const allDays = this.getAllDays() - for (let i = 0; i < labels.length; i++) { - const label = labels[i]; - const changesetsForTheme = data[i] - const perDay: ChangeSetData[][] = [] - for (const day of allDays) { - const today: ChangeSetData[] = [] - for (const changeset of changesetsForTheme) { - const csDate = new Date(changeset.properties.date) - Utils.SetMidnight(csDate) - if(period === "month"){ - csDate.setUTCDate(1) - } - if (csDate.toISOString() !== day) { - continue - } - today.push(changeset) - } - perDay.push(today) - } - datasets.push({ - data: perDay.map(cs => cs.length), - backgroundColor: TagRenderingChart.backgroundColors[i % TagRenderingChart.backgroundColors.length], - label - }) - } - - const perDayData = { - labels: allDays.map(d => d.substr(0, d.indexOf("T"))), - datasets - } - - const config = { - type: 'bar', - data: perDayData, - options: { - responsive: true, - scales: { - x: { - stacked: true, - }, - y: { - stacked: true - } - } - } - } - - return new ChartJs(config) - } } diff --git a/UI/SubstitutedTranslation.ts b/UI/SubstitutedTranslation.ts index 8fcac61beb..8a25daa1b4 100644 --- a/UI/SubstitutedTranslation.ts +++ b/UI/SubstitutedTranslation.ts @@ -1,4 +1,4 @@ -import {Store, UIEventSource} from "../Logic/UIEventSource"; +import {UIEventSource} from "../Logic/UIEventSource"; import {Translation} from "./i18n/Translation"; import Locale from "./i18n/Locale"; import {FixedUiElement} from "./Base/FixedUiElement"; @@ -15,10 +15,10 @@ export class SubstitutedTranslation extends VariableUiElement { public constructor( translation: Translation, - tagsSource: UIEventSource, + tagsSource: UIEventSource>, state: FeaturePipelineState, mapping: Map, argument: string[], guistate: DefaultGuiState) => BaseUIElement)> = undefined) { + ((state: FeaturePipelineState, tagSource: UIEventSource>, argument: string[], guistate: DefaultGuiState) => BaseUIElement)> = undefined) { const extraMappings: SpecialVisualization[] = []; diff --git a/assets/themes/mapcomplete-changes/mapcomplete-changes.json b/assets/themes/mapcomplete-changes/mapcomplete-changes.json index eeb934ac2a..d2de2927fb 100644 --- a/assets/themes/mapcomplete-changes/mapcomplete-changes.json +++ b/assets/themes/mapcomplete-changes/mapcomplete-changes.json @@ -52,7 +52,13 @@ { "id": "contributor", "render": { - "en": "Change made by {_last_edit:contributor}" + "en": "Change made by {_last_edit:contributor}{user}" + }, + "question": { + "en": "What contributor made this change?" + }, + "freeform": { + "key": "user" } }, { @@ -60,8 +66,15 @@ "render": { "en": "Change with theme {theme}" }, + "question":{ + "en": "What theme was this change made with?" + }, + "freeform": { + "key": "theme" + }, "mappings": [ { + "hideInAnswer": true, "if": "theme~http.*", "then": { "en": "Change with unofficial theme {theme}" @@ -381,7 +394,12 @@ "id": "created_by", "options": [ { - "osmTags": "_last_edit:contributor:lc~i~.*{search}.*", + "osmTags": { + "or":[ + "_last_edit:contributor:lc~i~.*{search}.*", + "user~i~.*{search}.*" + ] + }, "fields": [ { "name": "search" diff --git a/assets/themes/mapcomplete-changes/mapcomplete-changes.proto.json b/assets/themes/mapcomplete-changes/mapcomplete-changes.proto.json index 7e8b69d51a..3fbb16efbf 100644 --- a/assets/themes/mapcomplete-changes/mapcomplete-changes.proto.json +++ b/assets/themes/mapcomplete-changes/mapcomplete-changes.proto.json @@ -31,9 +31,6 @@ "geoJsonZoomLevel": 8, "maxCacheAge": 0 }, - "calculatedTags": [ - "_last_edit:contributor:lc:=feat.properties['_last_edit:contributor'].toLowerCase()" - ], "title": { "render": { "en": "Changeset for {theme}" @@ -65,7 +62,8 @@ "if": "theme~http.*", "then": { "en": "Change with unofficial theme {theme}" - } + }, + "hideInAnswer": true } ] } @@ -103,7 +101,7 @@ "id": "created_by", "options": [ { - "osmTags": "_last_edit:contributor:lc~i~.*{search}.*", + "osmTags": "user~i~.*{search}.*", "fields": [ { "name": "search" @@ -119,7 +117,7 @@ "id": "not_created_by", "options": [ { - "osmTags": "_last_edit:contributor:lc!~i~.*{search}.*", + "osmTags": "user!~i~.*{search}.*", "fields": [ { "name": "search"